CREATE ROLE adichatz WITH LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION; ALTER ROLE adichatz WITH SUPERUSER INHERIT CREATEROLE CREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'md5afad15b2bc0a1aef8fd777d13b238361' VALID UNTIL 'infinity'; CREATE DATABASE pagila WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'French_France.1252' LC_CTYPE = 'French_France.1252'; ALTER DATABASE pagila OWNER TO adichatz; \connect pagila SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; CREATE TYPE mpaa_rating AS ENUM ( 'G', 'PG', 'PG-13', 'R', 'NC-17' ); ALTER TYPE mpaa_rating OWNER TO adichatz; CREATE DOMAIN year AS integer CONSTRAINT year_check CHECK (((VALUE >= 1901) AND (VALUE <= 2155))); ALTER DOMAIN year OWNER TO postgres; CREATE FUNCTION last_updated() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.last_update = CURRENT_TIMESTAMP; RETURN NEW; END $$; ALTER FUNCTION public.last_updated() OWNER TO postgres; SET default_tablespace = ''; SET default_with_oids = false; CREATE SEQUENCE actor_actor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE actor_actor_id_seq OWNER TO adichatz; CREATE TABLE actor ( actor_id integer DEFAULT nextval('actor_actor_id_seq'::regclass) NOT NULL, first_name character varying(45) NOT NULL, last_name character varying(45) NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE actor OWNER TO adichatz; CREATE SEQUENCE address_address_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE address_address_id_seq OWNER TO adichatz; CREATE TABLE address ( address_id integer DEFAULT nextval('address_address_id_seq'::regclass) NOT NULL, address character varying(50) NOT NULL, address2 character varying(50), district character varying(20) NOT NULL, city_id smallint NOT NULL, postal_code character varying(10), phone character varying(20) NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE address OWNER TO adichatz; CREATE SEQUENCE category_category_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE category_category_id_seq OWNER TO adichatz; CREATE TABLE category ( category_id integer DEFAULT nextval('category_category_id_seq'::regclass) NOT NULL, name character varying(25) NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE category OWNER TO adichatz; CREATE SEQUENCE city_city_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE city_city_id_seq OWNER TO adichatz; CREATE TABLE city ( city_id integer DEFAULT nextval('city_city_id_seq'::regclass) NOT NULL, city character varying(50) NOT NULL, country_id smallint NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE city OWNER TO adichatz; CREATE SEQUENCE country_country_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE country_country_id_seq OWNER TO adichatz; CREATE TABLE country ( country_id integer DEFAULT nextval('country_country_id_seq'::regclass) NOT NULL, country character varying(50) NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE country OWNER TO adichatz; CREATE SEQUENCE customer_customer_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE customer_customer_id_seq OWNER TO adichatz; CREATE TABLE customer ( customer_id integer DEFAULT nextval('customer_customer_id_seq'::regclass) NOT NULL, store_id smallint NOT NULL, first_name character varying(45) NOT NULL, last_name character varying(45) NOT NULL, email character varying(50), address_id smallint NOT NULL, active boolean DEFAULT true NOT NULL, create_date date DEFAULT ('now'::text)::date NOT NULL, last_update timestamp without time zone DEFAULT now() ); ALTER TABLE customer OWNER TO adichatz; CREATE SEQUENCE film_film_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE film_film_id_seq OWNER TO adichatz; CREATE TABLE film ( film_id integer DEFAULT nextval('film_film_id_seq'::regclass) NOT NULL, title character varying(255) NOT NULL, description text, release_year year, language_id smallint NOT NULL, original_language_id smallint, active boolean DEFAULT true NOT NULL, rental_duration smallint DEFAULT 3 NOT NULL, rental_rate numeric(4,2) DEFAULT 4.99 NOT NULL, length smallint, replacement_cost numeric(5,2) DEFAULT 19.99 NOT NULL, rating mpaa_rating DEFAULT 'G'::mpaa_rating, image_url character varying(255), last_update timestamp without time zone DEFAULT now() NOT NULL, special_features text[], fulltext tsvector NOT NULL ); ALTER TABLE film OWNER TO adichatz; CREATE TABLE film_actor ( actor_id smallint NOT NULL, film_id smallint NOT NULL ); ALTER TABLE film_actor OWNER TO adichatz; CREATE TABLE film_category ( film_id smallint NOT NULL, category_id smallint NOT NULL ); ALTER TABLE film_category OWNER TO adichatz; CREATE TABLE film_desc ( film_id integer NOT NULL, description text, last_update timestamp without time zone DEFAULT now(), image bytea ); ALTER TABLE film_desc OWNER TO adichatz; CREATE SEQUENCE inventory_inventory_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE inventory_inventory_id_seq OWNER TO adichatz; CREATE TABLE inventory ( inventory_id integer DEFAULT nextval('inventory_inventory_id_seq'::regclass) NOT NULL, film_id smallint NOT NULL, store_id smallint NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE inventory OWNER TO adichatz; CREATE SEQUENCE language_language_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE language_language_id_seq OWNER TO adichatz; CREATE TABLE language ( language_id integer DEFAULT nextval('language_language_id_seq'::regclass) NOT NULL, name character(20) NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE language OWNER TO adichatz; CREATE SEQUENCE payment_payment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE payment_payment_id_seq OWNER TO adichatz; CREATE TABLE payment ( payment_id integer DEFAULT nextval('payment_payment_id_seq'::regclass) NOT NULL, customer_id smallint NOT NULL, staff_id smallint NOT NULL, rental_id integer NOT NULL, amount numeric(5,2) NOT NULL, payment_date timestamp without time zone NOT NULL ); ALTER TABLE payment OWNER TO adichatz; CREATE SEQUENCE rental_rental_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE rental_rental_id_seq OWNER TO adichatz; CREATE TABLE rental ( rental_id integer DEFAULT nextval('rental_rental_id_seq'::regclass) NOT NULL, rental_date timestamp without time zone NOT NULL, inventory_id integer NOT NULL, customer_id smallint NOT NULL, return_date timestamp without time zone, staff_id smallint NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE rental OWNER TO adichatz; CREATE SEQUENCE staff_staff_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE staff_staff_id_seq OWNER TO adichatz; CREATE TABLE staff ( staff_id integer DEFAULT nextval('staff_staff_id_seq'::regclass) NOT NULL, first_name character varying(45) NOT NULL, last_name character varying(45) NOT NULL, address_id smallint NOT NULL, email character varying(50), store_id smallint NOT NULL, active boolean DEFAULT true NOT NULL, username character varying(16) NOT NULL, password character varying(40), last_update timestamp without time zone DEFAULT now() NOT NULL, picture bytea ); ALTER TABLE staff OWNER TO adichatz; CREATE SEQUENCE store_store_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE store_store_id_seq OWNER TO adichatz; CREATE TABLE store ( store_id integer DEFAULT nextval('store_store_id_seq'::regclass) NOT NULL, manager_staff_id smallint NOT NULL, address_id smallint NOT NULL, last_update timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE store OWNER TO adichatz; INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (1, 'PENELOPE', 'GUINESS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (2, 'NICK', 'WAHLBERG', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (3, 'ED', 'CHASE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (4, 'JENNIFER', 'DAVIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (5, 'JOHNNY', 'LOLLOBRIGIDA', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (6, 'BETTE', 'NICHOLSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (7, 'GRACE', 'MOSTEL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (8, 'MATTHEW', 'JOHANSSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (9, 'JOE', 'SWANK', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (10, 'CHRISTIAN', 'GABLE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (11, 'ZERO', 'CAGE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (12, 'KARL', 'BERRY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (13, 'UMA', 'WOOD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (14, 'VIVIEN', 'BERGEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (15, 'CUBA', 'OLIVIER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (16, 'FRED', 'COSTNER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (17, 'HELEN', 'VOIGHT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (18, 'DAN', 'TORN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (19, 'BOB', 'FAWCETT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (20, 'LUCILLE', 'TRACY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (21, 'KIRSTEN', 'PALTROW', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (22, 'ELVIS', 'MARX', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (23, 'SANDRA', 'KILMER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (24, 'CAMERON', 'STREEP', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (25, 'KEVIN', 'BLOOM', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (26, 'RIP', 'CRAWFORD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (27, 'JULIA', 'MCQUEEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (28, 'WOODY', 'HOFFMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (29, 'ALEC', 'WAYNE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (30, 'SANDRA', 'PECK', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (31, 'SISSY', 'SOBIESKI', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (32, 'TIM', 'HACKMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (33, 'MILLA', 'PECK', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (34, 'AUDREY', 'OLIVIER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (35, 'JUDY', 'DEAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (36, 'BURT', 'DUKAKIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (37, 'VAL', 'BOLGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (38, 'TOM', 'MCKELLEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (39, 'GOLDIE', 'BRODY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (40, 'JOHNNY', 'CAGE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (41, 'JODIE', 'DEGENERES', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (42, 'TOM', 'MIRANDA', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (43, 'KIRK', 'JOVOVICH', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (44, 'NICK', 'STALLONE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (45, 'REESE', 'KILMER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (46, 'PARKER', 'GOLDBERG', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (47, 'JULIA', 'BARRYMORE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (48, 'FRANCES', 'DAY-LEWIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (49, 'ANNE', 'CRONYN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (50, 'NATALIE', 'HOPKINS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (51, 'GARY', 'PHOENIX', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (52, 'CARMEN', 'HUNT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (53, 'MENA', 'TEMPLE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (54, 'PENELOPE', 'PINKETT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (55, 'FAY', 'KILMER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (56, 'DAN', 'HARRIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (57, 'JUDE', 'CRUISE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (58, 'CHRISTIAN', 'AKROYD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (59, 'DUSTIN', 'TAUTOU', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (60, 'HENRY', 'BERRY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (61, 'CHRISTIAN', 'NEESON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (62, 'JAYNE', 'NEESON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (63, 'CAMERON', 'WRAY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (64, 'RAY', 'JOHANSSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (65, 'ANGELA', 'HUDSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (66, 'MARY', 'TANDY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (67, 'JESSICA', 'BAILEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (68, 'RIP', 'WINSLET', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (69, 'KENNETH', 'PALTROW', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (70, 'MICHELLE', 'MCCONAUGHEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (71, 'ADAM', 'GRANT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (72, 'SEAN', 'WILLIAMS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (73, 'GARY', 'PENN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (74, 'MILLA', 'KEITEL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (75, 'BURT', 'POSEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (76, 'ANGELINA', 'ASTAIRE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (77, 'CARY', 'MCCONAUGHEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (78, 'GROUCHO', 'SINATRA', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (79, 'MAE', 'HOFFMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (80, 'RALPH', 'CRUZ', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (81, 'SCARLETT', 'DAMON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (82, 'WOODY', 'JOLIE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (83, 'BEN', 'WILLIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (84, 'JAMES', 'PITT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (85, 'MINNIE', 'ZELLWEGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (86, 'GREG', 'CHAPLIN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (87, 'SPENCER', 'PECK', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (88, 'KENNETH', 'PESCI', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (89, 'CHARLIZE', 'DENCH', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (90, 'SEAN', 'GUINESS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (91, 'CHRISTOPHER', 'BERRY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (92, 'KIRSTEN', 'AKROYD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (93, 'ELLEN', 'PRESLEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (94, 'KENNETH', 'TORN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (95, 'DARYL', 'WAHLBERG', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (96, 'GENE', 'WILLIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (97, 'MEG', 'HAWKE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (98, 'CHRIS', 'BRIDGES', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (99, 'JIM', 'MOSTEL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (100, 'SPENCER', 'DEPP', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (101, 'SUSAN', 'DAVIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (102, 'WALTER', 'TORN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (103, 'MATTHEW', 'LEIGH', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (104, 'PENELOPE', 'CRONYN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (105, 'SIDNEY', 'CROWE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (106, 'GROUCHO', 'DUNST', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (107, 'GINA', 'DEGENERES', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (108, 'WARREN', 'NOLTE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (109, 'SYLVESTER', 'DERN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (110, 'SUSAN', 'DAVIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (111, 'CAMERON', 'ZELLWEGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (112, 'RUSSELL', 'BACALL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (113, 'MORGAN', 'HOPKINS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (114, 'MORGAN', 'MCDORMAND', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (115, 'HARRISON', 'BALE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (116, 'DAN', 'STREEP', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (117, 'RENEE', 'TRACY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (118, 'CUBA', 'ALLEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (119, 'WARREN', 'JACKMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (120, 'PENELOPE', 'MONROE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (121, 'LIZA', 'BERGMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (122, 'SALMA', 'NOLTE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (123, 'JULIANNE', 'DENCH', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (124, 'SCARLETT', 'BENING', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (125, 'ALBERT', 'NOLTE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (126, 'FRANCES', 'TOMEI', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (127, 'KEVIN', 'GARLAND', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (128, 'CATE', 'MCQUEEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (129, 'DARYL', 'CRAWFORD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (130, 'GRETA', 'KEITEL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (131, 'JANE', 'JACKMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (132, 'ADAM', 'HOPPER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (133, 'RICHARD', 'PENN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (134, 'GENE', 'HOPKINS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (135, 'RITA', 'REYNOLDS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (136, 'ED', 'MANSFIELD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (137, 'MORGAN', 'WILLIAMS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (138, 'LUCILLE', 'DEE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (139, 'EWAN', 'GOODING', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (140, 'WHOOPI', 'HURT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (141, 'CATE', 'HARRIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (142, 'JADA', 'RYDER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (143, 'RIVER', 'DEAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (144, 'ANGELA', 'WITHERSPOON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (145, 'KIM', 'ALLEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (146, 'ALBERT', 'JOHANSSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (147, 'FAY', 'WINSLET', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (148, 'EMILY', 'DEE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (149, 'RUSSELL', 'TEMPLE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (150, 'JAYNE', 'NOLTE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (151, 'GEOFFREY', 'HESTON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (152, 'BEN', 'HARRIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (153, 'MINNIE', 'KILMER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (154, 'MERYL', 'GIBSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (155, 'IAN', 'TANDY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (156, 'FAY', 'WOOD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (157, 'GRETA', 'MALDEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (158, 'VIVIEN', 'BASINGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (159, 'LAURA', 'BRODY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (160, 'CHRIS', 'DEPP', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (161, 'HARVEY', 'HOPE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (162, 'OPRAH', 'KILMER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (163, 'CHRISTOPHER', 'WEST', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (164, 'HUMPHREY', 'WILLIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (165, 'AL', 'GARLAND', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (166, 'NICK', 'DEGENERES', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (167, 'LAURENCE', 'BULLOCK', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (168, 'WILL', 'WILSON', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (169, 'KENNETH', 'HOFFMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (170, 'MENA', 'HOPPER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (171, 'OLYMPIA', 'PFEIFFER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (172, 'GROUCHO', 'WILLIAMS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (173, 'ALAN', 'DREYFUSS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (174, 'MICHAEL', 'BENING', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (175, 'WILLIAM', 'HACKMAN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (176, 'JON', 'CHASE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (177, 'GENE', 'MCKELLEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (178, 'LISA', 'MONROE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (179, 'ED', 'GUINESS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (180, 'JEFF', 'SILVERSTONE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (181, 'MATTHEW', 'CARREY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (182, 'DEBBIE', 'AKROYD', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (183, 'RUSSELL', 'CLOSE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (184, 'HUMPHREY', 'GARLAND', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (185, 'MICHAEL', 'BOLGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (186, 'JULIA', 'ZELLWEGER', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (187, 'RENEE', 'BALL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (188, 'ROCK', 'DUKAKIS', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (189, 'CUBA', 'BIRCH', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (190, 'AUDREY', 'BAILEY', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (191, 'GREGORY', 'GOODING', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (192, 'JOHN', 'SUVARI', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (193, 'BURT', 'TEMPLE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (194, 'MERYL', 'ALLEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (195, 'JAYNE', 'SILVERSTONE', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (196, 'BELA', 'WALKEN', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (197, 'REESE', 'WEST', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (198, 'MARY', 'KEITEL', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (199, 'JULIA', 'FAWCETT', '2006-02-15 09:34:33'); INSERT INTO actor (actor_id, first_name, last_name, last_update) VALUES (200, 'THORA', 'TEMPLE', '2006-02-15 09:34:33'); SELECT pg_catalog.setval('actor_actor_id_seq', 200, true); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (3, '23 Workhaven Lane', NULL, 'Alberta', 300, '', '14033335568', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (4, '1411 Lillydale Drive', NULL, 'QLD', 576, '', '6172235589', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (5, '1913 Hanoi Way', '', 'Nagasaki', 463, '35200', '28303384290', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (6, '1121 Loja Avenue', '', 'California', 449, '17886', '838635286649', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (7, '692 Joliet Street', '', 'Attika', 38, '83579', '448477190408', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (8, '1566 Inegl Manor', '', 'Mandalay', 349, '53561', '705814003527', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (9, '53 Idfu Parkway', '', 'Nantou', 361, '42399', '10655648674', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (10, '1795 Santiago de Compostela Way', '', 'Texas', 295, '18743', '860452626434', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (11, '900 Santiago de Compostela Parkway', '', 'Central Serbia', 280, '93896', '716571220373', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (12, '478 Joliet Way', '', 'Hamilton', 200, '77948', '657282285970', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (13, '613 Korolev Drive', '', 'Masqat', 329, '45844', '380657522649', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (14, '1531 Sal Drive', '', 'Esfahan', 162, '53628', '648856936185', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (15, '1542 Tarlac Parkway', '', 'Kanagawa', 440, '1027', '635297277345', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (16, '808 Bhopal Manor', '', 'Haryana', 582, '10672', '465887807014', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (17, '270 Amroha Parkway', '', 'Osmaniye', 384, '29610', '695479687538', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (18, '770 Bydgoszcz Avenue', '', 'California', 120, '16266', '517338314235', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (19, '419 Iligan Lane', '', 'Madhya Pradesh', 76, '72878', '990911107354', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (20, '360 Toulouse Parkway', '', 'England', 495, '54308', '949312333307', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (21, '270 Toulon Boulevard', '', 'Kalmykia', 156, '81766', '407752414682', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (22, '320 Brest Avenue', '', 'Kaduna', 252, '43331', '747791594069', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (23, '1417 Lancaster Avenue', '', 'Northern Cape', 267, '72192', '272572357893', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (24, '1688 Okara Way', '', 'Nothwest Border Prov', 327, '21954', '144453869132', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (25, '262 A Corua (La Corua) Parkway', '', 'Dhaka', 525, '34418', '892775750063', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (26, '28 Charlotte Amalie Street', '', 'Rabat-Sal-Zammour-Z', 443, '37551', '161968374323', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (27, '1780 Hino Boulevard', '', 'Liepaja', 303, '7716', '902731229323', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (28, '96 Tafuna Way', '', 'Crdoba', 128, '99865', '934730187245', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (29, '934 San Felipe de Puerto Plata Street', '', 'Sind', 472, '99780', '196495945706', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (30, '18 Duisburg Boulevard', '', '', 121, '58327', '998009777982', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (31, '217 Botshabelo Place', '', 'Southern Mindanao', 138, '49521', '665356572025', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (32, '1425 Shikarpur Manor', '', 'Bihar', 346, '65599', '678220867005', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (33, '786 Aurora Avenue', '', 'Yamaguchi', 474, '65750', '18461860151', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (34, '1668 Anpolis Street', '', 'Taipei', 316, '50199', '525255540978', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (35, '33 Gorontalo Way', '', 'West Bengali', 257, '30348', '745994947458', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (36, '176 Mandaluyong Place', '', 'Uttar Pradesh', 239, '65213', '627705991774', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (37, '127 Purnea (Purnia) Manor', '', 'Piemonte', 17, '79388', '911872220378', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (38, '61 Tama Street', '', 'Okayama', 284, '94065', '708403338270', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (39, '391 Callao Drive', '', 'Midi-Pyrnes', 544, '34021', '440512153169', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (40, '334 Munger (Monghyr) Lane', '', 'Markazi', 31, '38145', '481183273622', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (41, '1440 Fukuyama Loop', '', 'Henan', 362, '47929', '912257250465', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (42, '269 Cam Ranh Parkway', '', 'Chisinau', 115, '34689', '489783829737', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (43, '306 Antofagasta Place', '', 'Esprito Santo', 569, '3989', '378318851631', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (44, '671 Graz Street', '', 'Oriental', 353, '94399', '680768868518', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (45, '42 Brindisi Place', '', 'Yerevan', 586, '16744', '42384721397', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (46, '1632 Bislig Avenue', '', 'Nonthaburi', 394, '61117', '471675840679', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (47, '1447 Imus Way', '', 'Tahiti', 167, '48942', '539758313890', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (48, '1998 Halifax Drive', '', 'Lipetsk', 308, '76022', '177727722820', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (49, '1718 Valencia Street', '', 'Antofagasta', 27, '37359', '675292816413', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (50, '46 Pjatigorsk Lane', '', 'Moscow (City)', 343, '23616', '262076994845', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (51, '686 Garland Manor', '', 'Cear', 247, '52535', '69493378813', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (52, '909 Garland Manor', '', 'Tatarstan', 367, '69367', '705800322606', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (53, '725 Isesaki Place', '', 'Mekka', 237, '74428', '876295323994', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (54, '115 Hidalgo Parkway', '', 'Khartum', 379, '80168', '307703950263', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (55, '1135 Izumisano Parkway', '', 'California', 171, '48150', '171822533480', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (56, '939 Probolinggo Loop', '', 'Galicia', 1, '4166', '680428310138', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (57, '17 Kabul Boulevard', '', 'Chiba', 355, '38594', '697760867968', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (58, '1964 Allappuzha (Alleppey) Street', '', 'Yamaguchi', 227, '48980', '920811325222', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (59, '1697 Kowloon and New Kowloon Loop', '', 'Moskova', 49, '57807', '499352017190', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (60, '1668 Saint Louis Place', '', 'Tahiti', 397, '39072', '347487831378', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (61, '943 Tokat Street', '', 'Vaduz', 560, '45428', '889318963672', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (62, '1114 Liepaja Street', '', 'Sarawak', 282, '69226', '212869228936', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (63, '1213 Ranchi Parkway', '', 'Karnataka', 350, '94352', '800024380485', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (64, '81 Hodeida Way', '', 'Rajasthan', 231, '55561', '250767749542', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (65, '915 Ponce Place', '', 'Basel-Stadt', 56, '83980', '1395251317', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (66, '1717 Guadalajara Lane', '', 'Missouri', 441, '85505', '914090181665', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (67, '1214 Hanoi Way', '', 'Nebraska', 306, '67055', '491001136577', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (68, '1966 Amroha Avenue', '', 'Sichuan', 139, '70385', '333489324603', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (69, '698 Otsu Street', '', 'Cayenne', 105, '71110', '409983924481', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (70, '1150 Kimchon Manor', '', 'Skne ln', 321, '96109', '663449333709', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (71, '1586 Guaruj Place', '', 'Hunan', 579, '5135', '947233365992', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (72, '57 Arlington Manor', '', 'Madhya Pradesh', 475, '48960', '990214419142', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (73, '1031 Daugavpils Parkway', '', 'Bchar', 63, '59025', '107137400143', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (74, '1124 Buenaventura Drive', '', 'Mekka', 13, '6856', '407733804223', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (75, '492 Cam Ranh Street', '', 'Eastern Visayas', 61, '50805', '565018274456', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (76, '89 Allappuzha (Alleppey) Manor', '', 'National Capital Reg', 517, '75444', '255800440636', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (77, '1947 Poos de Caldas Boulevard', '', 'Chiayi', 114, '60951', '427454485876', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (78, '1206 Dos Quebradas Place', '', 'So Paulo', 431, '20207', '241832790687', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (79, '1551 Rampur Lane', '', 'Changhwa', 108, '72394', '251164340471', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (80, '602 Paarl Street', '', 'Pavlodar', 402, '98889', '896314772871', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (81, '1692 Ede Loop', '', 'So Paulo', 30, '9223', '918711376618', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (82, '936 Salzburg Lane', '', 'Uttar Pradesh', 425, '96709', '875756771675', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (83, '586 Tete Way', '', 'Kanagawa', 256, '1079', '18581624103', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (84, '1888 Kabul Drive', '', 'Oyo & Osun', 217, '20936', '701457319790', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (85, '320 Baiyin Parkway', '', 'Mahajanga', 319, '37307', '223664661973', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (86, '927 Baha Blanca Parkway', '', 'Krim', 479, '9495', '821972242086', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (87, '929 Tallahassee Loop', '', 'Gauteng', 497, '74671', '800716535041', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (88, '125 Citt del Vaticano Boulevard', '', 'Puebla', 40, '67912', '48417642933', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (89, '1557 Ktahya Boulevard', '', 'England', 88, '88002', '720998247660', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (90, '870 Ashqelon Loop', '', 'Songkhla', 489, '84931', '135117278909', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (91, '1740 Portoviejo Avenue', '', 'Sucre', 480, '29932', '198123170793', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (92, '1942 Ciparay Parkway', '', 'Cheju', 113, '82624', '978987363654', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (93, '1926 El Alto Avenue', '', 'Buenos Aires', 289, '75543', '846225459260', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (94, '1952 Chatsworth Drive', '', 'Guangdong', 332, '25958', '991562402283', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (95, '1370 Le Mans Avenue', '', 'Brunei and Muara', 53, '52163', '345679835036', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (96, '984 Effon-Alaiye Avenue', '', 'Gois', 183, '17119', '132986892228', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (97, '832 Nakhon Sawan Manor', '', 'Inner Mongolia', 592, '49021', '275595571388', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (98, '152 Kitwe Parkway', '', 'Caraga', 82, '53182', '835433605312', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (99, '1697 Tanauan Lane', '', 'Punjab', 399, '22870', '4764773857', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (100, '1308 Arecibo Way', '', 'Georgia', 41, '30695', '6171054059', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (101, '1599 Plock Drive', '', 'Tete', 534, '71986', '817248913162', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (102, '669 Firozabad Loop', '', 'Abu Dhabi', 12, '92265', '412903167998', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (103, '588 Vila Velha Manor', '', 'Kyongsangbuk', 268, '51540', '333339908719', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (104, '1913 Kamakura Place', '', 'Lipetsk', 238, '97287', '942570536750', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (105, '733 Mandaluyong Place', '', 'Asir', 2, '77459', '196568435814', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (106, '659 Vaduz Drive', '', 'Ha Darom', 34, '49708', '709935135487', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (107, '1177 Jelets Way', '', 'Kwara & Kogi', 220, '3305', '484292626944', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (108, '1386 Yangor Avenue', '', 'Provence-Alpes-Cte', 543, '80720', '449216226468', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (109, '454 Nakhon Sawan Boulevard', '', 'Funafuti', 173, '76383', '963887147572', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (110, '1867 San Juan Bautista Tuxtepec Avenue', '', 'Ivanovo', 225, '78311', '547003310357', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (111, '1532 Dzerzinsk Way', '', 'Buenos Aires', 334, '9599', '330838016880', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (112, '1002 Ahmadnagar Manor', '', 'Mxico', 213, '93026', '371490777743', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (113, '682 Junan Way', '', 'North West', 273, '30418', '622255216127', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (114, '804 Elista Drive', '', 'Hubei', 159, '61069', '379804592943', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (115, '1378 Alvorada Avenue', '', 'Distrito Federal', 102, '75834', '272234298332', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (116, '793 Cam Ranh Avenue', '', 'California', 292, '87057', '824370924746', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (117, '1079 Tel Aviv-Jaffa Boulevard', '', 'Sucre', 132, '10885', '358178933857', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (118, '442 Rae Bareli Place', '', 'Nordrhein-Westfalen', 148, '24321', '886636413768', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (119, '1107 Nakhon Sawan Avenue', '', 'Mxico', 365, '75149', '867546627903', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (120, '544 Malm Parkway', '', 'Central Java', 403, '63502', '386759646229', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (121, '1967 Sincelejo Place', '', 'Gujarat', 176, '73644', '577812616052', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (122, '333 Goinia Way', '', 'Texas', 185, '78625', '909029256431', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (123, '1987 Coacalco de Berriozbal Loop', '', 'al-Qalyubiya', 476, '96065', '787654415858', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (124, '241 Mosul Lane', '', 'Risaralda', 147, '76157', '765345144779', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (125, '211 Chiayi Drive', '', 'Uttar Pradesh', 164, '58186', '665993880048', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (126, '1175 Tanauan Way', '', 'Lima', 305, '64615', '937222955822', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (127, '117 Boa Vista Way', '', 'Uttar Pradesh', 566, '6804', '677976133614', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (128, '848 Tafuna Manor', '', 'Ktahya', 281, '45142', '614935229095', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (129, '569 Baicheng Lane', '', 'Gauteng', 85, '60304', '490211944645', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (130, '1666 Qomsheh Drive', '', 'So Paulo', 410, '66255', '582835362905', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (131, '801 Hagonoy Drive', '', 'Smolensk', 484, '8439', '237426099212', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (132, '1050 Garden Grove Avenue', '', 'Slaskie', 236, '4999', '973047364353', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (133, '1854 Tieli Street', '', 'Shandong', 302, '15819', '509492324775', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (134, '758 Junan Lane', '', 'Gois', 190, '82639', '935448624185', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (135, '1752 So Leopoldo Parkway', '', 'Taka-Karpatia', 345, '14014', '252265130067', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (136, '898 Belm Manor', '', 'Free State', 87, '49757', '707169393853', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (137, '261 Saint Louis Way', '', 'Coahuila de Zaragoza', 541, '83401', '321944036800', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (138, '765 Southampton Drive', '', 'al-Qalyubiya', 421, '4285', '23712411567', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (139, '943 Johannesburg Avenue', '', 'Maharashtra', 417, '5892', '90921003005', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (140, '788 Atinsk Street', '', 'Karnataka', 211, '81691', '146497509724', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (141, '1749 Daxian Place', '', 'Gelderland', 29, '11044', '963369996279', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (142, '1587 Sullana Lane', '', 'Inner Mongolia', 207, '85769', '468060467018', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (143, '1029 Dzerzinsk Manor', '', 'Ynlin', 542, '57519', '33173584456', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (144, '1666 Beni-Mellal Place', '', 'Tennessee', 123, '13377', '9099941466', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (145, '928 Jaffna Loop', '', 'Hiroshima', 172, '93762', '581852137991', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (146, '483 Ljubertsy Parkway', '', 'Scotland', 149, '60562', '581174211853', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (147, '374 Bat Yam Boulevard', '', 'Kilis', 266, '97700', '923261616249', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (148, '1027 Songkhla Manor', '', 'Minsk', 340, '30861', '563660187896', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (149, '999 Sanaa Loop', '', 'Gauteng', 491, '3439', '918032330119', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (150, '879 Newcastle Way', '', 'Michigan', 499, '90732', '206841104594', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (151, '1337 Lincoln Parkway', '', 'Saitama', 555, '99457', '597815221267', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (152, '1952 Pune Lane', '', 'Saint-Denis', 442, '92150', '354615066969', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (153, '782 Mosul Street', '', 'Massachusetts', 94, '25545', '885899703621', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (154, '781 Shimonoseki Drive', '', 'Michoacn de Ocampo', 202, '95444', '632316273199', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (155, '1560 Jelets Boulevard', '', 'Shandong', 291, '77777', '189446090264', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (156, '1963 Moscow Place', '', 'Assam', 354, '64863', '761379480249', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (157, '456 Escobar Way', '', 'Jakarta Raya', 232, '36061', '719202533520', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (158, '798 Cianjur Avenue', '', 'Shanxi', 590, '76990', '499408708580', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (159, '185 Novi Sad Place', '', 'Bern', 72, '41778', '904253967161', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (160, '1367 Yantai Manor', '', 'Ondo & Ekiti', 381, '21294', '889538496300', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (161, '1386 Nakhon Sawan Boulevard', '', 'Pyongyang-si', 420, '53502', '368899174225', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (162, '369 Papeete Way', '', 'North Carolina', 187, '66639', '170117068815', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (163, '1440 Compton Place', '', 'North Austria', 307, '81037', '931059836497', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (164, '1623 Baha Blanca Manor', '', 'Moskova', 310, '81511', '149981248346', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (165, '97 Shimoga Avenue', '', 'Tel Aviv', 533, '44660', '177167004331', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (166, '1740 Le Mans Loop', '', 'Pays de la Loire', 297, '22853', '168476538960', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (167, '1287 Xiangfan Boulevard', '', 'Gifu', 253, '57844', '819416131190', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (168, '842 Salzburg Lane', '', 'Adana', 529, '3313', '697151428760', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (169, '154 Tallahassee Loop', '', 'Xinxiang', 199, '62250', '935508855935', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (170, '710 San Felipe del Progreso Avenue', '', 'Lilongwe', 304, '76901', '843801144113', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (171, '1540 Wroclaw Drive', '', 'Maharashtra', 107, '62686', '182363341674', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (172, '475 Atinsk Way', '', 'Gansu', 240, '59571', '201705577290', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (173, '1294 Firozabad Drive', '', 'Jiangxi', 407, '70618', '161801569569', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (174, '1877 Ezhou Lane', '', 'Rajasthan', 550, '63337', '264541743403', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (175, '316 Uruapan Street', '', 'Perak', 223, '58194', '275788967899', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (176, '29 Pyongyang Loop', '', 'Batman', 58, '47753', '734780743462', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (177, '1010 Klerksdorp Way', '', 'Steiermark', 186, '6802', '493008546874', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (178, '1848 Salala Boulevard', '', 'Miranda', 373, '25220', '48265851133', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (179, '431 Xiangtan Avenue', '', 'Kerala', 18, '4854', '230250973122', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (180, '757 Rustenburg Avenue', '', 'Skikda', 483, '89668', '506134035434', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (181, '146 Johannesburg Way', '', 'Tamaulipas', 330, '54132', '953689007081', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (182, '1891 Rizhao Boulevard', '', 'So Paulo', 456, '47288', '391065549876', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (183, '1089 Iwatsuki Avenue', '', 'Kirov', 270, '35109', '866092335135', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (184, '1410 Benin City Parkway', '', 'Risaralda', 405, '29747', '104150372603', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (185, '682 Garden Grove Place', '', 'Tennessee', 333, '67497', '72136330362', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (186, '533 al-Ayn Boulevard', '', 'California', 126, '8862', '662227486184', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (187, '1839 Szkesfehrvr Parkway', '', 'Gois', 317, '55709', '947468818183', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (188, '741 Ambattur Manor', '', 'Noord-Brabant', 438, '43310', '302590383819', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (189, '927 Barcelona Street', '', 'Chaharmahal va Bakht', 467, '65121', '951486492670', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (190, '435 0 Way', '', 'West Bengali', 195, '74750', '760171523969', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (191, '140 Chiayi Parkway', '', 'Sumy', 506, '38982', '855863906434', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (192, '1166 Changhwa Street', '', 'Caraga', 62, '58852', '650752094490', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (193, '891 Novi Sad Manor', '', 'Ontario', 383, '5379', '247646995453', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (194, '605 Rio Claro Parkway', '', 'Tabora', 513, '49348', '352469351088', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (195, '1077 San Felipe de Puerto Plata Place', '', 'Rostov-na-Donu', 369, '65387', '812824036424', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (196, '9 San Miguel de Tucumn Manor', '', 'Uttar Pradesh', 169, '90845', '956188728558', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (197, '447 Surakarta Loop', '', 'Nyanza', 271, '10428', '940830176580', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (198, '345 Oshawa Boulevard', '', 'Tokyo-to', 204, '32114', '104491201771', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (199, '1792 Valle de la Pascua Place', '', 'Nordrhein-Westfalen', 477, '15540', '419419591240', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (200, '1074 Binzhou Manor', '', 'Baden-Wrttemberg', 325, '36490', '331132568928', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (201, '817 Bradford Loop', '', 'Jiangsu', 109, '89459', '264286442804', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (202, '955 Bamenda Way', '', 'Ondo & Ekiti', 218, '1545', '768481779568', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (203, '1149 A Corua (La Corua) Boulevard', '', 'Haiphong', 194, '95824', '470884141195', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (204, '387 Mwene-Ditu Drive', '', 'Ahal', 35, '8073', '764477681869', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (205, '68 Molodetno Manor', '', 'Nordrhein-Westfalen', 575, '4662', '146640639760', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (206, '642 Nador Drive', '', 'Maharashtra', 77, '3924', '369050085652', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (207, '1688 Nador Lane', '', 'Sulawesi Utara', 184, '61613', '652218196731', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (208, '1215 Pyongyang Parkway', '', 'Usak', 557, '25238', '646237101779', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (209, '1679 Antofagasta Street', '', 'Alto Paran', 122, '86599', '905903574913', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (210, '1304 s-Hertogenbosch Way', '', 'Santa Catarina', 83, '10925', '90336226227', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (211, '850 Salala Loop', '', 'Kitaa', 371, '10800', '403404780639', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (212, '624 Oshawa Boulevard', '', 'West Bengali', 51, '89959', '49677664184', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (213, '43 Dadu Avenue', '', 'Rajasthan', 74, '4855', '95666951770', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (214, '751 Lima Loop', '', 'Aden', 7, '99405', '756460337785', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (215, '1333 Haldia Street', '', 'Jilin', 174, '82161', '408304391718', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (216, '660 Jedda Boulevard', '', 'Washington', 65, '25053', '168758068397', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (217, '1001 Miyakonojo Lane', '', 'Taizz', 518, '67924', '584316724815', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (218, '226 Brest Manor', '', 'California', 508, '2299', '785881412500', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (219, '1229 Valencia Parkway', '', 'Haskovo', 498, '99124', '352679173732', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (220, '1201 Qomsheh Manor', '', 'Gois', 28, '21464', '873492228462', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (221, '866 Shivapuri Manor', '', 'Uttar Pradesh', 448, '22474', '778502731092', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (222, '1168 Najafabad Parkway', '', 'Kabol', 251, '40301', '886649065861', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (223, '1244 Allappuzha (Alleppey) Place', '', 'Buenos Aires', 567, '20657', '991802825778', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (224, '1842 Luzinia Boulevard', '', 'Zanzibar West', 593, '94420', '706878974831', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (225, '1926 Gingoog Street', '', 'Sisilia', 511, '22824', '469738825391', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (226, '810 Palghat (Palakkad) Boulevard', '', 'Jaroslavl', 235, '73431', '516331171356', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (227, '1820 Maring Parkway', '', 'Punjab', 324, '88307', '99760893676', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (228, '60 Poos de Caldas Street', '', 'Rajasthan', 243, '82338', '963063788669', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (229, '1014 Loja Manor', '', 'Tamil Nadu', 22, '66851', '460795526514', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (230, '201 Effon-Alaiye Way', '', 'Asuncin', 37, '64344', '684192903087', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (231, '430 Alessandria Loop', '', 'Saarland', 439, '47446', '669828224459', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (232, '754 Valencia Place', '', 'Phnom Penh', 406, '87911', '594319417514', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (233, '356 Olomouc Manor', '', 'Gois', 26, '93323', '22326410776', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (234, '1256 Bislig Boulevard', '', 'Botosani', 86, '50598', '479007229460', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (235, '954 Kimchon Place', '', 'West Bengali', 559, '42420', '541327526474', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (236, '885 Yingkou Manor', '', 'Kaduna', 596, '31390', '588964509072', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (237, '1736 Cavite Place', '', 'Qina', 216, '98775', '431770603551', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (238, '346 Skikda Parkway', '', 'Hawalli', 233, '90628', '630424482919', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (239, '98 Stara Zagora Boulevard', '', 'Valle', 96, '76448', '610173756082', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (240, '1479 Rustenburg Boulevard', '', 'Southern Tagalog', 527, '18727', '727785483194', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (241, '647 A Corua (La Corua) Street', '', 'Chollanam', 357, '36971', '792557457753', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (242, '1964 Gijn Manor', '', 'Karnataka', 473, '14408', '918119601885', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (243, '47 Syktyvkar Lane', '', 'West Java', 118, '22236', '63937119031', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (244, '1148 Saarbrcken Parkway', '', 'Fukushima', 226, '1921', '137773001988', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (245, '1103 Bilbays Parkway', '', 'Hubei', 578, '87660', '279979529227', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (246, '1246 Boksburg Parkway', '', 'Hebei', 422, '28349', '890283544295', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (247, '1483 Pathankot Street', '', 'Tucumn', 454, '37288', '686015532180', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (248, '582 Papeete Loop', '', 'Central Visayas', 294, '27722', '569868543137', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (249, '300 Junan Street', '', 'Kyonggi', 553, '81314', '890289150158', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (250, '829 Grand Prairie Way', '', 'Paran', 328, '6461', '741070712873', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (251, '1473 Changhwa Parkway', '', 'Mxico', 124, '75933', '266798132374', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (252, '1309 Weifang Street', '', 'Florida', 520, '57338', '435785045362', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (253, '1760 Oshawa Manor', '', 'Tianjin', 535, '38140', '56257502250', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (254, '786 Stara Zagora Way', '', 'Oyo & Osun', 390, '98332', '716256596301', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (255, '1966 Tonghae Street', '', 'Anhalt Sachsen', 198, '36481', '567359279425', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (256, '1497 Yuzhou Drive', '', 'England', 312, '3433', '246810237916', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (258, '752 Ondo Loop', '', 'Miyazaki', 338, '32474', '134673576619', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (259, '1338 Zalantun Lane', '', 'Minas Gerais', 413, '45403', '840522972766', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (260, '127 Iwakuni Boulevard', '', 'Central Luzon', 192, '20777', '987442542471', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (261, '51 Laredo Avenue', '', 'Sagaing', 342, '68146', '884536620568', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (262, '771 Yaound Manor', '', 'Sofala', 64, '86768', '245477603573', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (263, '532 Toulon Street', '', 'Santiago', 460, '69517', '46871694740', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (264, '1027 Banjul Place', '', 'West Bengali', 197, '50390', '538241037443', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (265, '1158 Mandi Bahauddin Parkway', '', 'Shanxi', 136, '98484', '276555730211', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (266, '862 Xintai Lane', '', 'Cagayan Valley', 548, '30065', '265153400632', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (267, '816 Cayenne Parkway', '', 'Manab', 414, '93629', '282874611748', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (268, '1831 Nam Dinh Loop', '', 'National Capital Reg', 323, '51990', '322888976727', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (269, '446 Kirovo-Tepetsk Lane', '', 'Osaka', 203, '19428', '303967439816', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (270, '682 Halisahar Place', '', 'Severn Morava', 378, '20536', '475553436330', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (271, '1587 Loja Manor', '', 'Salzburg', 447, '5410', '621625204422', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (272, '1762 Paarl Parkway', '', 'Hunan', 298, '53928', '192459639410', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (273, '1519 Ilorin Place', '', 'Kerala', 395, '49298', '357445645426', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (274, '920 Kumbakonam Loop', '', 'California', 446, '75090', '685010736240', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (275, '906 Goinia Way', '', 'Wielkopolskie', 255, '83565', '701767622697', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (276, '1675 Xiangfan Manor', '', 'Tamil Nadu', 283, '11763', '271149517630', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (277, '85 San Felipe de Puerto Plata Drive', '', 'Shandong', 584, '46063', '170739645687', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (278, '144 South Hill Loop', '', 'Guanajuato', 445, '2012', '45387294817', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (279, '1884 Shikarpur Avenue', '', 'Haryana', 263, '85548', '959949395183', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (280, '1980 Kamjanets-Podilskyi Street', '', 'Illinois', 404, '89502', '874337098891', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (281, '1944 Bamenda Way', '', 'Michigan', 573, '24645', '75975221996', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (282, '556 Baybay Manor', '', 'Oyo & Osun', 374, '55802', '363982224739', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (283, '457 Tongliao Loop', '', 'Bursa', 222, '56254', '880756161823', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (284, '600 Bradford Street', '', 'East Azerbaidzan', 514, '96204', '117592274996', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (285, '1006 Santa Brbara dOeste Manor', '', 'Ondo & Ekiti', 389, '36229', '85059738746', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (286, '1308 Sumy Loop', '', 'Fujian', 175, '30657', '583021225407', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (287, '1405 Chisinau Place', '', 'Ponce', 411, '8160', '62781725285', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (288, '226 Halifax Street', '', 'Xinxiang', 277, '58492', '790651020929', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (289, '1279 Udine Parkway', '', 'Edo & Delta', 69, '75860', '195003555232', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (290, '1336 Benin City Drive', '', 'Shiga', 386, '46044', '341242939532', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (291, '1155 Liaocheng Place', '', 'Oyo & Osun', 152, '22650', '558236142492', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (292, '1993 Tabuk Lane', '', 'Tamil Nadu', 522, '64221', '648482415405', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (293, '86 Higashiosaka Lane', '', 'Guanajuato', 563, '33768', '957128697225', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (294, '1912 Allende Manor', '', 'Kowloon and New Kowl', 279, '58124', '172262454487', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (295, '544 Tarsus Boulevard', '', 'Gurico', 562, '53145', '892523334', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (296, '1936 Cuman Avenue', '', 'Virginia', 433, '61195', '976798660411', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (297, '1192 Tongliao Street', '', 'Sharja', 470, '19065', '350970907017', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (298, '44 Najafabad Way', '', 'Baskimaa', 146, '61391', '96604821070', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (299, '32 Pudukkottai Lane', '', 'Ohio', 140, '38834', '967274728547', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (300, '661 Chisinau Lane', '', 'Pietari', 274, '8856', '816436065431', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (301, '951 Stara Zagora Manor', '', 'Punjab', 400, '98573', '429925609431', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (302, '922 Vila Velha Loop', '', 'Maharashtra', 9, '4085', '510737228015', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (303, '898 Jining Lane', '', 'Pohjois-Pohjanmaa', 387, '40070', '161643343536', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (304, '1635 Kuwana Boulevard', '', 'Hiroshima', 205, '52137', '710603868323', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (305, '41 El Alto Parkway', '', 'Maharashtra', 398, '56883', '51917807050', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (306, '1883 Maikop Lane', '', 'Kaliningrad', 254, '68469', '96110042435', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (307, '1908 Gaziantep Place', '', 'Liaoning', 536, '58979', '108053751300', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (308, '687 Alessandria Parkway', '', 'Sanaa', 455, '57587', '407218522294', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (309, '827 Yuncheng Drive', '', 'Callao', 99, '79047', '504434452842', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (310, '913 Coacalco de Berriozbal Loop', '', 'Texas', 33, '42141', '262088367001', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (311, '715 So Bernardo do Campo Lane', '', 'Kedah', 507, '84804', '181179321332', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (312, '1354 Siegen Street', '', 'Rio de Janeiro', 25, '80184', '573441801529', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (313, '1191 Sungai Petani Boulevard', '', 'Missouri', 262, '9668', '983259819766', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (314, '1224 Huejutla de Reyes Boulevard', '', 'Lombardia', 91, '70923', '806016930576', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (315, '543 Bergamo Avenue', '', 'Minas Gerais', 215, '59686', '103602195112', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (316, '746 Joliet Lane', '', 'Kursk', 286, '94878', '688485191923', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (317, '780 Kimberley Way', '', 'Tabuk', 515, '17032', '824396883951', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (318, '1774 Yaound Place', '', 'Hubei', 166, '91400', '613124286867', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (319, '1957 Yantai Lane', '', 'So Paulo', 490, '59255', '704948322302', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (320, '1542 Lubumbashi Boulevard', '', 'Tel Aviv', 57, '62472', '508800331065', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (321, '651 Pathankot Loop', '', 'Maharashtra', 336, '59811', '139378397418', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (322, '1359 Zhoushan Parkway', '', 'Streymoyar', 545, '29763', '46568045367', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (323, '1769 Iwaki Lane', '', 'Kujawsko-Pomorskie', 97, '25787', '556100547674', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (324, '1145 Vilnius Manor', '', 'Mxico', 451, '73170', '674805712553', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (325, '1892 Nabereznyje Telny Lane', '', 'Tutuila', 516, '28396', '478229987054', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (326, '470 Boksburg Street', '', 'Central', 81, '97960', '908029859266', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (327, '1427 A Corua (La Corua) Place', '', 'Buenos Aires', 45, '85799', '972574862516', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (328, '479 San Felipe del Progreso Avenue', '', 'Morelos', 130, '54949', '869051782691', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (329, '867 Benin City Avenue', '', 'Henan', 591, '78543', '168884817145', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (330, '981 Kumbakonam Place', '', 'Distrito Federal', 89, '87611', '829116184079', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (331, '1016 Iwakuni Street', '', 'St George', 269, '49833', '961370847344', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (332, '663 Baha Blanca Parkway', '', 'Adana', 5, '33463', '834418779292', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (333, '1860 Taguig Loop', '', 'West Java', 119, '59550', '38158430589', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (334, '1816 Bydgoszcz Loop', '', 'Dhaka', 234, '64308', '965273813662', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (335, '587 Benguela Manor', '', 'Illinois', 42, '91590', '165450987037', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (336, '430 Kumbakonam Drive', '', 'Santa F', 457, '28814', '105470691550', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (337, '1838 Tabriz Lane', '', 'Dhaka', 143, '1195', '38988715447', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (338, '431 Szkesfehrvr Avenue', '', 'Baki', 48, '57828', '119501405123', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (339, '503 Sogamoso Loop', '', 'Sumqayit', 505, '49812', '834626715837', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (340, '507 Smolensk Loop', '', 'Sousse', 492, '22971', '80303246192', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (341, '1920 Weifang Avenue', '', 'Uttar Pradesh', 427, '15643', '869507847714', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (342, '124 al-Manama Way', '', 'Hiroshima', 382, '52368', '647899404952', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (343, '1443 Mardan Street', '', 'Western Cape', 392, '31483', '231383037471', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (344, '1909 Benguela Lane', '', 'Henan', 581, '19913', '624138001031', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (345, '68 Ponce Parkway', '', 'Hanoi', 201, '85926', '870635127812', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (346, '1217 Konotop Avenue', '', 'Gelderland', 151, '504', '718917251754', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (347, '1293 Nam Dinh Way', '', 'Roraima', 84, '71583', '697656479977', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (348, '785 Vaduz Street', '', 'Baja California', 335, '36170', '895616862749', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (349, '1516 Escobar Drive', '', 'Tongatapu', 370, '46069', '64536069371', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (350, '1628 Nagareyama Lane', '', 'Central', 453, '60079', '20064292617', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (351, '1157 Nyeri Loop', '', 'Adygea', 320, '56380', '262744791493', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (352, '1673 Tangail Drive', '', 'Daugavpils', 137, '26857', '627924259271', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (353, '381 Kabul Way', '', 'Taipei', 209, '87272', '55477302294', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (354, '953 Hodeida Street', '', 'Southern Tagalog', 221, '18841', '53912826864', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (355, '469 Nakhon Sawan Street', '', 'Tuvassia', 531, '58866', '689199636560', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (356, '1378 Beira Loop', '', 'Krasnojarsk', 597, '40792', '840957664136', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (357, '1641 Changhwa Place', '', 'Nord-Ouest', 52, '37636', '256546485220', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (358, '1698 Southport Loop', '', 'Hidalgo', 393, '49009', '754358349853', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (359, '519 Nyeri Manor', '', 'So Paulo', 461, '37650', '764680915323', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (360, '619 Hunuco Avenue', '', 'Shimane', 331, '81508', '142596392389', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (361, '45 Aparecida de Goinia Place', '', 'Madhya Pradesh', 464, '7431', '650496654258', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (362, '482 Kowloon and New Kowloon Manor', '', 'Bratislava', 90, '97056', '738968474939', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (363, '604 Bern Place', '', 'Jharkhand', 429, '5373', '620719383725', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (364, '1623 Kingstown Drive', '', 'Buenos Aires', 20, '91299', '296394569728', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (365, '1009 Zanzibar Lane', '', 'Arecibo', 32, '64875', '102396298916', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (366, '114 Jalib al-Shuyukh Manor', '', 'Centre', 585, '60440', '845378657301', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (367, '1163 London Parkway', '', 'Par', 66, '6066', '675120358494', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (368, '1658 Jastrzebie-Zdrj Loop', '', 'Central', 372, '96584', '568367775448', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (369, '817 Laredo Avenue', '', 'Jalisco', 188, '77449', '151249681135', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (370, '1565 Tangail Manor', '', 'Okinawa', 377, '45750', '634445428822', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (371, '1912 Emeishan Drive', '', 'Balikesir', 50, '33050', '99883471275', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (372, '230 Urawa Drive', '', 'Andhra Pradesh', 8, '2738', '166898395731', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (373, '1922 Miraj Way', '', 'Esfahan', 356, '13203', '320471479776', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (374, '433 Florencia Street', '', 'Chihuahua', 250, '91330', '561729882725', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (375, '1049 Matamoros Parkway', '', 'Karnataka', 191, '69640', '960505250340', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (376, '1061 Ede Avenue', '', 'Southern Tagalog', 98, '57810', '333390595558', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (377, '154 Oshawa Manor', '', 'East Java', 415, '72771', '440365973660', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (378, '1191 Tandil Drive', '', 'Southern Tagalog', 523, '6362', '45554316010', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (379, '1133 Rizhao Avenue', '', 'Pernambuco', 572, '2800', '600264533987', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (380, '1519 Santiago de los Caballeros Loop', '', 'East Kasai', 348, '22025', '409315295763', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (381, '1618 Olomouc Manor', '', 'Kurgan', 285, '26385', '96846695220', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (382, '220 Hidalgo Drive', '', 'Kermanshah', 265, '45298', '342720754566', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (383, '686 Donostia-San Sebastin Lane', '', 'Guangdong', 471, '97390', '71857599858', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (384, '97 Mogiljov Lane', '', 'Gujarat', 73, '89294', '924815207181', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (385, '1642 Charlotte Amalie Drive', '', 'Slaskie', 549, '75442', '821476736117', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (386, '1368 Maracabo Boulevard', '', '', 493, '32716', '934352415130', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (387, '401 Sucre Boulevard', '', 'New Hampshire', 322, '25007', '486395999608', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (388, '368 Hunuco Boulevard', '', 'Namibe', 360, '17165', '106439158941', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (389, '500 Lincoln Parkway', '', 'Jiangsu', 210, '95509', '550306965159', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (390, '102 Chapra Drive', '', 'Ibaragi', 521, '14073', '776031833752', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (391, '1793 Meixian Place', '', 'Hmelnytskyi', 258, '33535', '619966287415', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (392, '514 Ife Way', '', 'Shaba', 315, '69973', '900235712074', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (393, '717 Changzhou Lane', '', 'Southern Tagalog', 104, '21615', '426255288071', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (394, '753 Ilorin Avenue', '', 'Sichuan', 157, '3656', '464511145118', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (395, '1337 Mit Ghamr Avenue', '', 'Nakhon Sawan', 358, '29810', '175283210378', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (396, '767 Pyongyang Drive', '', 'Osaka', 229, '83536', '667736124769', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (397, '614 Pak Kret Street', '', 'Addis Abeba', 6, '27796', '47808359842', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (398, '954 Lapu-Lapu Way', '', 'Moskova', 278, '8816', '737229003916', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (399, '331 Bydgoszcz Parkway', '', 'Asturia', 181, '966', '537374465982', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (400, '1152 Citrus Heights Manor', '', 'al-Qadarif', 15, '5239', '765957414528', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (401, '168 Cianjur Manor', '', 'Saitama', 228, '73824', '679095087143', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (402, '616 Hagonoy Avenue', '', 'Krasnojarsk', 39, '46043', '604177838256', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (403, '1190 0 Place', '', 'Rio Grande do Sul', 44, '10417', '841876514789', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (404, '734 Bchar Place', '', 'Punjab', 375, '30586', '280578750435', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (405, '530 Lausanne Lane', '', 'Texas', 135, '11067', '775235029633', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (406, '454 Patiala Lane', '', 'Fukushima', 276, '13496', '794553031307', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (407, '1346 Mysore Drive', '', 'Bretagne', 92, '61507', '516647474029', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (408, '990 Etawah Loop', '', 'Tamil Nadu', 564, '79940', '206169448769', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (409, '1266 Laredo Parkway', '', 'Saitama', 380, '7664', '1483365694', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (410, '88 Nagaon Manor', '', 'Buenos Aires', 524, '86868', '779461480495', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (411, '264 Bhimavaram Manor', '', 'St Thomas', 111, '54749', '302526949177', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (412, '1639 Saarbrcken Drive', '', 'North West', 437, '9827', '328494873422', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (413, '692 Amroha Drive', '', 'Northern', 230, '35575', '359478883004', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (414, '1936 Lapu-Lapu Parkway', '', 'Bauchi & Gombe', 141, '7122', '653436985797', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (415, '432 Garden Grove Street', '', 'Ontario', 430, '65630', '615964523510', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (416, '1445 Carmen Parkway', '', 'West Java', 117, '70809', '598912394463', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (417, '791 Salinas Street', '', 'Punjab', 208, '40509', '129953030512', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (418, '126 Acua Parkway', '', 'West Bengali', 71, '58888', '480039662421', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (419, '397 Sunnyvale Avenue', '', 'Guanajuato', 19, '55566', '680851640676', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (420, '992 Klerksdorp Loop', '', 'Utrecht', 23, '33711', '855290087237', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (421, '966 Arecibo Loop', '', 'Sind', 134, '94018', '15273765306', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (422, '289 Santo Andr Manor', '', 'al-Sharqiya', 16, '72410', '214976066017', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (423, '437 Chungho Drive', '', 'Puerto Plata', 450, '59489', '491271355190', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (424, '1948 Bayugan Parkway', '', 'Bihar', 264, '60622', '987306329957', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (425, '1866 al-Qatif Avenue', '', 'California', 155, '89420', '546793516940', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (426, '1661 Abha Drive', '', 'Tamil Nadu', 416, '14400', '270456873752', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (427, '1557 Cape Coral Parkway', '', 'Hubei', 293, '46875', '368284120423', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (428, '1727 Matamoros Place', '', 'Sawhaj', 465, '78813', '129673677866', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (429, '1269 Botosani Manor', '', 'Guangdong', 468, '47394', '736517327853', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (430, '355 Vitria de Santo Anto Way', '', 'Oaxaca', 452, '81758', '548003849552', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (431, '1596 Acua Parkway', '', 'Jharkhand', 418, '70425', '157133457169', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (432, '259 Ipoh Drive', '', 'So Paulo', 189, '64964', '419009857119', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (433, '1823 Hoshiarpur Lane', '', 'Komi', 510, '33191', '307133768620', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (434, '1404 Taguig Drive', '', 'Okayama', 547, '87212', '572068624538', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (435, '740 Udaipur Lane', '', 'Nizni Novgorod', 150, '33505', '497288595103', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (436, '287 Cuautla Boulevard', '', 'Chuquisaca', 501, '72736', '82619513349', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (437, '1766 Almirante Brown Street', '', 'KwaZulu-Natal', 364, '63104', '617567598243', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (438, '596 Huixquilucan Place', '', 'Nampula', 351, '65892', '342709348083', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (439, '1351 Aparecida de Goinia Parkway', '', 'Northern Mindanao', 391, '41775', '959834530529', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (440, '722 Bradford Lane', '', 'Shandong', 249, '90920', '746251338300', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (441, '983 Santa F Way', '', 'British Colombia', 565, '47472', '145720452260', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (442, '1245 Ibirit Way', '', 'La Romana', 290, '40926', '331888642162', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (443, '1836 Korla Parkway', '', 'Copperbelt', 272, '55405', '689681677428', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (444, '231 Kaliningrad Place', '', 'Lombardia', 70, '57833', '575081026569', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (445, '495 Bhimavaram Lane', '', 'Maharashtra', 144, '3', '82088937724', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (446, '1924 Shimonoseki Drive', '', 'Batna', 59, '52625', '406784385440', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (447, '105 Dzerzinsk Manor', '', 'Inner Mongolia', 540, '48570', '240776414296', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (448, '614 Denizli Parkway', '', 'Rio Grande do Sul', 486, '29444', '876491807547', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (449, '1289 Belm Boulevard', '', 'Tartumaa', 530, '88306', '237368926031', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (450, '203 Tambaram Street', '', 'Buenos Aires', 161, '73942', '411549550611', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (451, '1704 Tambaram Manor', '', 'West Bengali', 554, '2834', '39463554936', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (452, '207 Cuernavaca Loop', '', 'Tatarstan', 352, '52671', '782900030287', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (453, '319 Springs Loop', '', 'Baijeri', 160, '99552', '72524459905', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (454, '956 Nam Dinh Manor', '', 'Kerman', 481, '21872', '474047727727', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (455, '1947 Paarl Way', '', 'Central Java', 509, '23636', '834061016202', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (456, '814 Simferopol Loop', '', 'Sinaloa', 154, '48745', '524567129902', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (457, '535 Ahmadnagar Manor', '', 'Abu Dhabi', 3, '41136', '985109775584', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (458, '138 Caracas Boulevard', '', 'Zulia', 326, '16790', '974433019532', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (459, '251 Florencia Drive', '', 'Michoacn de Ocampo', 556, '16119', '118011831565', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (460, '659 Gatineau Boulevard', '', 'La Paz', 153, '28587', '205524798287', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (461, '1889 Valparai Way', '', 'Ziguinchor', 600, '75559', '670370974122', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (462, '1485 Bratislava Place', '', 'Illinois', 435, '83183', '924663855568', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (463, '935 Aden Boulevard', '', 'Central Java', 532, '64709', '335052544020', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (464, '76 Kermanshah Manor', '', 'Esfahan', 423, '23343', '762361821578', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (465, '734 Tanshui Avenue', '', 'Caquet', 170, '70664', '366776723320', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (466, '118 Jaffna Loop', '', 'Northern Mindanao', 182, '10447', '325526730021', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (467, '1621 Tongliao Avenue', '', 'Irkutsk', 558, '22173', '209342540247', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (468, '1844 Usak Avenue', '', 'Nova Scotia', 196, '84461', '164414772677', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (469, '1872 Toulon Loop', '', 'OHiggins', 428, '7939', '928809465153', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (470, '1088 Ibirit Place', '', 'Jalisco', 595, '88502', '49084281333', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (471, '1322 Mosul Parkway', '', 'Shandong', 145, '95400', '268053970382', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (472, '1447 Chatsworth Place', '', 'Chihuahua', 129, '41545', '769370126331', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (473, '1257 Guadalajara Street', '', 'Karnataka', 78, '33599', '195337700615', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (474, '1469 Plock Lane', '', 'Galicia', 388, '95835', '622884741180', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (475, '434 Ourense (Orense) Manor', '', 'Hodeida', 206, '14122', '562370137426', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (476, '270 Tambaram Parkway', '', 'Gauteng', 244, '9668', '248446668735', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (477, '1786 Salinas Place', '', 'Nam Ha', 359, '66546', '206060652238', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (478, '1078 Stara Zagora Drive', '', 'Aceh', 301, '69221', '932992626595', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (479, '1854 Okara Boulevard', '', 'Drenthe', 158, '42123', '131912793873', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (480, '421 Yaound Street', '', 'Sumy', 385, '11363', '726875628268', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (481, '1153 Allende Way', '', 'Qubec', 179, '20336', '856872225376', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (482, '808 Naala-Porto Parkway', '', 'England', 500, '41060', '553452430707', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (483, '632 Usolje-Sibirskoje Parkway', '', 'Ha Darom', 36, '73085', '667648979883', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (484, '98 Pyongyang Boulevard', '', 'Ohio', 11, '88749', '191958435142', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (485, '984 Novoterkassk Loop', '', 'Gaziantep', 180, '28165', '435118527255', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (486, '64 Korla Street', '', 'Mwanza', 347, '25145', '510383179153', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (487, '1785 So Bernardo do Campo Street', '', 'Veracruz', 125, '71182', '684529463244', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (488, '698 Jelets Boulevard', '', 'Denizli', 142, '2596', '975185523021', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (489, '1297 Alvorada Parkway', '', 'Ningxia', 587, '11839', '508348602835', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (490, '1909 Dayton Avenue', '', 'Guangdong', 469, '88513', '702955450528', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (491, '1789 Saint-Denis Parkway', '', 'Coahuila de Zaragoza', 4, '8268', '936806643983', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (492, '185 Mannheim Lane', '', 'Stavropol', 408, '23661', '589377568313', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (493, '184 Mandaluyong Street', '', 'Baja California Sur', 288, '94239', '488425406814', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (494, '591 Sungai Petani Drive', '', 'Okayama', 376, '46400', '37247325001', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (495, '656 Matamoros Drive', '', 'Boyac', 487, '19489', '17305839123', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (496, '775 ostka Drive', '', 'al-Daqahliya', 337, '22358', '171973024401', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (497, '1013 Tabuk Boulevard', '', 'West Bengali', 261, '96203', '158399646978', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (498, '319 Plock Parkway', '', 'Istanbul', 504, '26101', '854259976812', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (499, '1954 Kowloon and New Kowloon Way', '', 'Chimborazo', 434, '63667', '898559280434', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (500, '362 Rajkot Lane', '', 'Gansu', 47, '98030', '962020153680', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (501, '1060 Tandil Lane', '', 'Shandong', 432, '72349', '211256301880', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (502, '1515 Korla Way', '', 'England', 589, '57197', '959467760895', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (503, '1416 San Juan Bautista Tuxtepec Avenue', '', 'Zufar', 444, '50592', '144206758053', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (504, '1 Valle de Santiago Avenue', '', 'Apulia', 93, '86208', '465897838272', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (505, '519 Brescia Parkway', '', 'East Java', 318, '69504', '793996678771', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (506, '414 Mandaluyong Street', '', 'Lubelskie', 314, '16370', '52709222667', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (507, '1197 Sokoto Boulevard', '', 'West Bengali', 478, '87687', '868602816371', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (508, '496 Celaya Drive', '', 'Nagano', 552, '90797', '759586584889', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (509, '786 Matsue Way', '', 'Illinois', 245, '37469', '111177206479', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (510, '48 Maracabo Place', '', 'Central Luzon', 519, '1570', '82671830126', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (511, '1152 al-Qatif Lane', '', 'Kalimantan Barat', 412, '44816', '131370665218', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (512, '1269 Ipoh Avenue', '', 'Eskisehir', 163, '54674', '402630109080', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (513, '758 Korolev Parkway', '', 'Andhra Pradesh', 568, '75474', '441628280920', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (514, '1747 Rustenburg Place', '', 'Bihar', 110, '51369', '442673923363', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (515, '886 Tonghae Place', '', 'Volgograd', 259, '19450', '711928348157', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (516, '1574 Goinia Boulevard', '', 'Heilongjiang', 502, '39529', '59634255214', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (517, '548 Uruapan Street', '', 'Ontario', 312, '35653', '879347453467', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (519, '962 Tama Loop', '', '', 583, '65952', '282667506728', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (520, '1778 Gijn Manor', '', 'Hubei', 594, '35156', '288910576761', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (521, '568 Dhule (Dhulia) Loop', '', 'Coquimbo', 127, '92568', '602101369463', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (522, '1768 Udine Loop', '', 'Battambang', 60, '32347', '448876499197', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (523, '608 Birgunj Parkway', '', 'Taipei', 116, '400', '627425618482', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (524, '680 A Corua (La Corua) Manor', '', 'Sivas', 482, '49806', '158326114853', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (525, '1949 Sanya Street', '', 'Gumma', 224, '61244', '132100972047', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (526, '617 Klerksdorp Place', '', 'Khanh Hoa', 366, '94707', '574973479129', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (527, '1993 0 Loop', '', 'Liaoning', 588, '41214', '25865528181', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (528, '1176 Southend-on-Sea Manor', '', 'Southern Tagalog', 458, '81651', '236679267178', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (529, '600 Purnea (Purnia) Avenue', '', 'Nghe An', 571, '18043', '638409958875', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (530, '1003 Qinhuangdao Street', '', 'West Java', 419, '25972', '35533115997', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (531, '1986 Sivas Place', '', 'Friuli-Venezia Giuli', 551, '95775', '182059202712', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (532, '1427 Tabuk Place', '', 'Florida', 101, '31342', '214756839122', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (533, '556 Asuncin Way', '', 'Mogiljov', 339, '35364', '338244023543', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (534, '486 Ondo Parkway', '', 'Benguela', 67, '35202', '105882218332', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (535, '635 Brest Manor', '', 'Andhra Pradesh', 75, '40899', '80593242951', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (536, '166 Jinchang Street', '', 'Buenos Aires', 165, '86760', '717566026669', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (537, '958 Sagamihara Lane', '', 'Mie', 287, '88408', '427274926505', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (538, '1817 Livorno Way', '', 'Khanh Hoa', 100, '79401', '478380208348', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (539, '1332 Gaziantep Lane', '', 'Shandong', 80, '22813', '383353187467', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (540, '949 Allende Lane', '', 'Uttar Pradesh', 24, '67521', '122981120653', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (541, '195 Ilorin Street', '', 'Chari-Baguirmi', 363, '49250', '8912935608', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (542, '193 Bhusawal Place', '', 'Kang-won', 539, '9750', '745267607502', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (543, '43 Vilnius Manor', '', 'Colorado', 42, '79814', '484500282381', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (544, '183 Haiphong Street', '', 'Jilin', 46, '69953', '488600270038', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (545, '163 Augusta-Richmond County Loop', '', 'Carabobo', 561, '33030', '754579047924', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (546, '191 Jos Azueta Parkway', '', 'Ruse', 436, '13629', '932156667696', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (547, '379 Lublin Parkway', '', 'Toscana', 309, '74568', '921960450089', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (548, '1658 Cuman Loop', '', 'Sumatera Selatan', 396, '51309', '784907335610', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (549, '454 Qinhuangdao Drive', '', 'Tadla-Azilal', 68, '25866', '786270036240', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (550, '1715 Okayama Street', '', 'So Paulo', 485, '55676', '169352919175', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (551, '182 Nukualofa Drive', '', 'Sumy', 275, '15414', '426346224043', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (552, '390 Wroclaw Way', '', 'Hainan', 462, '5753', '357593328658', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (553, '1421 Quilmes Lane', '', 'Ishikawa', 260, '19151', '135407755975', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (554, '947 Trshavn Place', '', 'Central Luzon', 528, '841', '50898428626', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (555, '1764 Jalib al-Shuyukh Parkway', '', 'Galicia', 459, '77642', '84794532510', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (556, '346 Cam Ranh Avenue', '', 'Zhejiang', 599, '39976', '978430786151', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (557, '1407 Pachuca de Soto Place', '', 'Rio Grande do Sul', 21, '26284', '380077794770', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (558, '904 Clarksville Drive', '', 'Zhejiang', 193, '52234', '955349440539', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (559, '1917 Kumbakonam Parkway', '', 'Vojvodina', 368, '11892', '698182547686', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (560, '1447 Imus Place', '', 'Gujarat', 426, '12905', '62127829280', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (561, '1497 Fengshan Drive', '', 'KwaZulu-Natal', 112, '63022', '368738360376', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (562, '869 Shikarpur Way', '', 'England', 496, '57380', '590764256785', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (563, '1059 Yuncheng Avenue', '', 'Vilna', 570, '47498', '107092893983', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (564, '505 Madiun Boulevard', '', 'Dolnoslaskie', 577, '97271', '970638808606', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (565, '1741 Hoshiarpur Boulevard', '', 'al-Sharqiya', 79, '22372', '855066328617', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (566, '1229 Varanasi (Benares) Manor', '', 'Buenos Aires', 43, '40195', '817740355461', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (567, '1894 Boa Vista Way', '', 'Texas', 178, '77464', '239357986667', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (568, '1342 Sharja Way', '', 'Sokoto & Kebbi & Zam', 488, '93655', '946114054231', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (569, '1342 Abha Boulevard', '', 'Bukarest', 95, '10714', '997453607116', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (570, '415 Pune Avenue', '', 'Shandong', 580, '44274', '203202500108', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (571, '1746 Faaa Way', '', 'Huanuco', 214, '32515', '863080561151', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (572, '539 Hami Way', '', 'Tokat', 538, '52196', '525518075499', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (573, '1407 Surakarta Manor', '', 'Moskova', 466, '33224', '324346485054', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (574, '502 Mandi Bahauddin Parkway', '', 'Anzotegui', 55, '15992', '618156722572', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (575, '1052 Pathankot Avenue', '', 'Sichuan', 299, '77397', '128499386727', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (576, '1351 Sousse Lane', '', 'Coahuila de Zaragoza', 341, '37815', '203804046132', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (577, '1501 Pangkal Pinang Avenue', '', 'Mazowieckie', 409, '943', '770864062795', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (578, '1405 Hagonoy Avenue', '', 'Slaskie', 133, '86587', '867287719310', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (579, '521 San Juan Bautista Tuxtepec Place', '', 'Qaraghandy', 598, '95093', '844018348565', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (580, '923 Tangail Boulevard', '', 'Tokyo-to', 10, '33384', '315528269898', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (581, '186 Skikda Lane', '', 'Morelos', 131, '89422', '14465669789', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (582, '1568 Celaya Parkway', '', 'Kaohsiung', 168, '34750', '278669994384', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (583, '1489 Kakamigahara Lane', '', 'Taipei', 526, '98883', '29341849811', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (584, '1819 Alessandria Loop', '', 'Campeche', 103, '53829', '377633994405', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (585, '1208 Tama Loop', '', 'Ninawa', 344, '73605', '954786054144', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (586, '951 Springs Lane', '', 'Central Mindanao', 219, '96115', '165164761435', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (587, '760 Miyakonojo Drive', '', 'Guerrero', 246, '64682', '294449058179', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (588, '966 Asuncin Way', '', 'Hidalgo', 212, '62703', '995527378381', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (589, '1584 Ljubertsy Lane', '', 'England', 494, '22954', '285710089439', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (590, '247 Jining Parkway', '', 'Banjul', 54, '53446', '170115379190', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (591, '773 Dallas Manor', '', 'Buenos Aires', 424, '12664', '914466027044', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (592, '1923 Stara Zagora Lane', '', 'Nantou', 546, '95179', '182178609211', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (593, '1402 Zanzibar Boulevard', '', 'Guanajuato', 106, '71102', '387448063440', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (594, '1464 Kursk Parkway', '', 'Shandong', 574, '17381', '338758048786', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (595, '1074 Sanaa Parkway', '', 'Loja', 311, '22474', '154124128457', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (596, '1759 Niznekamsk Avenue', '', 'al-Manama', 14, '39414', '864392582257', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (597, '32 Liaocheng Way', '', 'Minas Gerais', 248, '1944', '410877354933', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (598, '42 Fontana Avenue', '', 'Fejr', 512, '14684', '437829801725', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (599, '1895 Zhezqazghan Drive', '', 'California', 177, '36693', '137809746111', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (600, '1837 Kaduna Parkway', '', 'Inner Mongolia', 241, '82580', '640843562301', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (601, '844 Bucuresti Place', '', 'Liaoning', 242, '36603', '935952366111', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (602, '1101 Bucuresti Boulevard', '', 'West Greece', 401, '97661', '199514580428', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (603, '1103 Quilmes Boulevard', '', 'Piura', 503, '52137', '644021380889', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (604, '1331 Usak Boulevard', '', 'Vaud', 296, '61960', '145308717464', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (605, '1325 Fukuyama Street', '', 'Heilongjiang', 537, '27107', '288241215394', '2006-02-15 09:45:30'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (1, '47 MySakila Drive', NULL, 'Alberta', 300, '', '14033345123', '2016-06-03 11:29:48.374096'); INSERT INTO address (address_id, address, address2, district, city_id, postal_code, phone, last_update) VALUES (2, '28 MySQL Boulevard', NULL, 'QLD', 576, '', '6162534552', '2016-06-03 11:31:22.904963'); SELECT pg_catalog.setval('address_address_id_seq', 605, true); INSERT INTO category (category_id, name, last_update) VALUES (1, 'Action', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (2, 'Animation', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (3, 'Children', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (4, 'Classics', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (5, 'Comedy', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (6, 'Documentary', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (7, 'Drama', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (8, 'Family', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (9, 'Foreign', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (10, 'Games', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (11, 'Horror', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (12, 'Music', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (13, 'New', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (14, 'Sci-Fi', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (15, 'Sports', '2006-02-15 09:46:27'); INSERT INTO category (category_id, name, last_update) VALUES (16, 'Travel', '2006-02-15 09:46:27'); SELECT pg_catalog.setval('category_category_id_seq', 16, true); INSERT INTO city (city_id, city, country_id, last_update) VALUES (1, 'A Corua (La Corua)', 87, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (2, 'Abha', 82, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (3, 'Abu Dhabi', 101, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (4, 'Acua', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (5, 'Adana', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (6, 'Addis Abeba', 31, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (7, 'Aden', 107, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (8, 'Adoni', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (9, 'Ahmadnagar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (10, 'Akishima', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (11, 'Akron', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (12, 'al-Ayn', 101, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (13, 'al-Hawiya', 82, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (14, 'al-Manama', 11, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (15, 'al-Qadarif', 89, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (16, 'al-Qatif', 82, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (17, 'Alessandria', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (18, 'Allappuzha (Alleppey)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (19, 'Allende', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (20, 'Almirante Brown', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (21, 'Alvorada', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (22, 'Ambattur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (23, 'Amersfoort', 67, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (24, 'Amroha', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (25, 'Angra dos Reis', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (26, 'Anpolis', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (27, 'Antofagasta', 22, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (28, 'Aparecida de Goinia', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (29, 'Apeldoorn', 67, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (30, 'Araatuba', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (31, 'Arak', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (32, 'Arecibo', 77, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (33, 'Arlington', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (34, 'Ashdod', 48, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (35, 'Ashgabat', 98, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (36, 'Ashqelon', 48, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (37, 'Asuncin', 73, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (38, 'Athenai', 39, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (39, 'Atinsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (40, 'Atlixco', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (41, 'Augusta-Richmond County', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (42, 'Aurora', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (43, 'Avellaneda', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (44, 'Bag', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (45, 'Baha Blanca', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (46, 'Baicheng', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (47, 'Baiyin', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (48, 'Baku', 10, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (49, 'Balaiha', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (50, 'Balikesir', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (51, 'Balurghat', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (52, 'Bamenda', 19, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (53, 'Bandar Seri Begawan', 16, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (54, 'Banjul', 37, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (55, 'Barcelona', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (56, 'Basel', 91, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (57, 'Bat Yam', 48, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (58, 'Batman', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (59, 'Batna', 2, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (60, 'Battambang', 18, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (61, 'Baybay', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (62, 'Bayugan', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (63, 'Bchar', 2, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (64, 'Beira', 63, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (65, 'Bellevue', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (66, 'Belm', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (67, 'Benguela', 4, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (68, 'Beni-Mellal', 62, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (69, 'Benin City', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (70, 'Bergamo', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (71, 'Berhampore (Baharampur)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (72, 'Bern', 91, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (73, 'Bhavnagar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (74, 'Bhilwara', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (75, 'Bhimavaram', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (76, 'Bhopal', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (77, 'Bhusawal', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (78, 'Bijapur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (79, 'Bilbays', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (80, 'Binzhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (81, 'Birgunj', 66, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (82, 'Bislig', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (83, 'Blumenau', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (84, 'Boa Vista', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (85, 'Boksburg', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (86, 'Botosani', 78, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (87, 'Botshabelo', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (88, 'Bradford', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (89, 'Braslia', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (90, 'Bratislava', 84, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (91, 'Brescia', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (92, 'Brest', 34, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (93, 'Brindisi', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (94, 'Brockton', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (95, 'Bucuresti', 78, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (96, 'Buenaventura', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (97, 'Bydgoszcz', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (98, 'Cabuyao', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (99, 'Callao', 74, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (100, 'Cam Ranh', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (101, 'Cape Coral', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (102, 'Caracas', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (103, 'Carmen', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (104, 'Cavite', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (105, 'Cayenne', 35, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (106, 'Celaya', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (107, 'Chandrapur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (108, 'Changhwa', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (109, 'Changzhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (110, 'Chapra', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (111, 'Charlotte Amalie', 106, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (112, 'Chatsworth', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (113, 'Cheju', 86, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (114, 'Chiayi', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (115, 'Chisinau', 61, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (116, 'Chungho', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (117, 'Cianjur', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (118, 'Ciomas', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (119, 'Ciparay', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (120, 'Citrus Heights', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (121, 'Citt del Vaticano', 41, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (122, 'Ciudad del Este', 73, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (123, 'Clarksville', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (124, 'Coacalco de Berriozbal', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (125, 'Coatzacoalcos', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (126, 'Compton', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (127, 'Coquimbo', 22, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (128, 'Crdoba', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (129, 'Cuauhtmoc', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (130, 'Cuautla', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (131, 'Cuernavaca', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (132, 'Cuman', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (133, 'Czestochowa', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (134, 'Dadu', 72, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (135, 'Dallas', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (136, 'Datong', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (137, 'Daugavpils', 54, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (138, 'Davao', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (139, 'Daxian', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (140, 'Dayton', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (141, 'Deba Habe', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (142, 'Denizli', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (143, 'Dhaka', 12, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (144, 'Dhule (Dhulia)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (145, 'Dongying', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (146, 'Donostia-San Sebastin', 87, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (147, 'Dos Quebradas', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (148, 'Duisburg', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (149, 'Dundee', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (150, 'Dzerzinsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (151, 'Ede', 67, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (152, 'Effon-Alaiye', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (153, 'El Alto', 14, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (154, 'El Fuerte', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (155, 'El Monte', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (156, 'Elista', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (157, 'Emeishan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (158, 'Emmen', 67, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (159, 'Enshi', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (160, 'Erlangen', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (161, 'Escobar', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (162, 'Esfahan', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (163, 'Eskisehir', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (164, 'Etawah', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (165, 'Ezeiza', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (166, 'Ezhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (167, 'Faaa', 36, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (168, 'Fengshan', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (169, 'Firozabad', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (170, 'Florencia', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (171, 'Fontana', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (172, 'Fukuyama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (173, 'Funafuti', 99, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (174, 'Fuyu', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (175, 'Fuzhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (176, 'Gandhinagar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (177, 'Garden Grove', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (178, 'Garland', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (179, 'Gatineau', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (180, 'Gaziantep', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (181, 'Gijn', 87, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (182, 'Gingoog', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (183, 'Goinia', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (184, 'Gorontalo', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (185, 'Grand Prairie', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (186, 'Graz', 9, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (187, 'Greensboro', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (188, 'Guadalajara', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (189, 'Guaruj', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (190, 'guas Lindas de Gois', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (191, 'Gulbarga', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (192, 'Hagonoy', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (193, 'Haining', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (194, 'Haiphong', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (195, 'Haldia', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (196, 'Halifax', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (197, 'Halisahar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (198, 'Halle/Saale', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (199, 'Hami', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (200, 'Hamilton', 68, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (201, 'Hanoi', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (202, 'Hidalgo', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (203, 'Higashiosaka', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (204, 'Hino', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (205, 'Hiroshima', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (206, 'Hodeida', 107, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (207, 'Hohhot', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (208, 'Hoshiarpur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (209, 'Hsichuh', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (210, 'Huaian', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (211, 'Hubli-Dharwad', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (212, 'Huejutla de Reyes', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (213, 'Huixquilucan', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (214, 'Hunuco', 74, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (215, 'Ibirit', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (216, 'Idfu', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (217, 'Ife', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (218, 'Ikerre', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (219, 'Iligan', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (220, 'Ilorin', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (221, 'Imus', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (222, 'Inegl', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (223, 'Ipoh', 59, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (224, 'Isesaki', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (225, 'Ivanovo', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (226, 'Iwaki', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (227, 'Iwakuni', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (228, 'Iwatsuki', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (229, 'Izumisano', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (230, 'Jaffna', 88, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (231, 'Jaipur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (232, 'Jakarta', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (233, 'Jalib al-Shuyukh', 53, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (234, 'Jamalpur', 12, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (235, 'Jaroslavl', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (236, 'Jastrzebie-Zdrj', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (237, 'Jedda', 82, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (238, 'Jelets', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (239, 'Jhansi', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (240, 'Jinchang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (241, 'Jining', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (242, 'Jinzhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (243, 'Jodhpur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (244, 'Johannesburg', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (245, 'Joliet', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (246, 'Jos Azueta', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (247, 'Juazeiro do Norte', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (248, 'Juiz de Fora', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (249, 'Junan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (250, 'Jurez', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (251, 'Kabul', 1, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (252, 'Kaduna', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (253, 'Kakamigahara', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (254, 'Kaliningrad', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (255, 'Kalisz', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (256, 'Kamakura', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (257, 'Kamarhati', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (258, 'Kamjanets-Podilskyi', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (259, 'Kamyin', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (260, 'Kanazawa', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (261, 'Kanchrapara', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (262, 'Kansas City', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (263, 'Karnal', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (264, 'Katihar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (265, 'Kermanshah', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (266, 'Kilis', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (267, 'Kimberley', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (268, 'Kimchon', 86, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (269, 'Kingstown', 81, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (270, 'Kirovo-Tepetsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (271, 'Kisumu', 52, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (272, 'Kitwe', 109, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (273, 'Klerksdorp', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (274, 'Kolpino', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (275, 'Konotop', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (276, 'Koriyama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (277, 'Korla', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (278, 'Korolev', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (279, 'Kowloon and New Kowloon', 42, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (280, 'Kragujevac', 108, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (281, 'Ktahya', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (282, 'Kuching', 59, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (283, 'Kumbakonam', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (284, 'Kurashiki', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (285, 'Kurgan', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (286, 'Kursk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (287, 'Kuwana', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (288, 'La Paz', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (289, 'La Plata', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (290, 'La Romana', 27, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (291, 'Laiwu', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (292, 'Lancaster', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (293, 'Laohekou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (294, 'Lapu-Lapu', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (295, 'Laredo', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (296, 'Lausanne', 91, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (297, 'Le Mans', 34, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (298, 'Lengshuijiang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (299, 'Leshan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (300, 'Lethbridge', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (301, 'Lhokseumawe', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (302, 'Liaocheng', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (303, 'Liepaja', 54, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (304, 'Lilongwe', 58, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (305, 'Lima', 74, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (306, 'Lincoln', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (307, 'Linz', 9, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (308, 'Lipetsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (309, 'Livorno', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (310, 'Ljubertsy', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (311, 'Loja', 28, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (312, 'London', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (313, 'London', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (314, 'Lublin', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (315, 'Lubumbashi', 25, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (316, 'Lungtan', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (317, 'Luzinia', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (318, 'Madiun', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (319, 'Mahajanga', 57, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (320, 'Maikop', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (321, 'Malm', 90, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (322, 'Manchester', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (323, 'Mandaluyong', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (324, 'Mandi Bahauddin', 72, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (325, 'Mannheim', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (326, 'Maracabo', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (327, 'Mardan', 72, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (328, 'Maring', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (329, 'Masqat', 71, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (330, 'Matamoros', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (331, 'Matsue', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (332, 'Meixian', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (333, 'Memphis', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (334, 'Merlo', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (335, 'Mexicali', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (336, 'Miraj', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (337, 'Mit Ghamr', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (338, 'Miyakonojo', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (339, 'Mogiljov', 13, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (340, 'Molodetno', 13, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (341, 'Monclova', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (342, 'Monywa', 64, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (343, 'Moscow', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (344, 'Mosul', 47, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (345, 'Mukateve', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (346, 'Munger (Monghyr)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (347, 'Mwanza', 93, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (348, 'Mwene-Ditu', 25, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (349, 'Myingyan', 64, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (350, 'Mysore', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (351, 'Naala-Porto', 63, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (352, 'Nabereznyje Telny', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (353, 'Nador', 62, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (354, 'Nagaon', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (355, 'Nagareyama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (356, 'Najafabad', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (357, 'Naju', 86, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (358, 'Nakhon Sawan', 94, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (359, 'Nam Dinh', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (360, 'Namibe', 4, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (361, 'Nantou', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (362, 'Nanyang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (363, 'NDjamna', 21, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (364, 'Newcastle', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (365, 'Nezahualcyotl', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (366, 'Nha Trang', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (367, 'Niznekamsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (368, 'Novi Sad', 108, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (369, 'Novoterkassk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (370, 'Nukualofa', 95, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (371, 'Nuuk', 40, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (372, 'Nyeri', 52, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (373, 'Ocumare del Tuy', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (374, 'Ogbomosho', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (375, 'Okara', 72, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (376, 'Okayama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (377, 'Okinawa', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (378, 'Olomouc', 26, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (379, 'Omdurman', 89, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (380, 'Omiya', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (381, 'Ondo', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (382, 'Onomichi', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (383, 'Oshawa', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (384, 'Osmaniye', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (385, 'ostka', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (386, 'Otsu', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (387, 'Oulu', 33, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (388, 'Ourense (Orense)', 87, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (389, 'Owo', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (390, 'Oyo', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (391, 'Ozamis', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (392, 'Paarl', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (393, 'Pachuca de Soto', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (394, 'Pak Kret', 94, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (395, 'Palghat (Palakkad)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (396, 'Pangkal Pinang', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (397, 'Papeete', 36, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (398, 'Parbhani', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (399, 'Pathankot', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (400, 'Patiala', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (401, 'Patras', 39, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (402, 'Pavlodar', 51, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (403, 'Pemalang', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (404, 'Peoria', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (405, 'Pereira', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (406, 'Phnom Penh', 18, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (407, 'Pingxiang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (408, 'Pjatigorsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (409, 'Plock', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (410, 'Po', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (411, 'Ponce', 77, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (412, 'Pontianak', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (413, 'Poos de Caldas', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (414, 'Portoviejo', 28, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (415, 'Probolinggo', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (416, 'Pudukkottai', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (417, 'Pune', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (418, 'Purnea (Purnia)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (419, 'Purwakarta', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (420, 'Pyongyang', 70, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (421, 'Qalyub', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (422, 'Qinhuangdao', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (423, 'Qomsheh', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (424, 'Quilmes', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (425, 'Rae Bareli', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (426, 'Rajkot', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (427, 'Rampur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (428, 'Rancagua', 22, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (429, 'Ranchi', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (430, 'Richmond Hill', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (431, 'Rio Claro', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (432, 'Rizhao', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (433, 'Roanoke', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (434, 'Robamba', 28, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (435, 'Rockford', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (436, 'Ruse', 17, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (437, 'Rustenburg', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (438, 's-Hertogenbosch', 67, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (439, 'Saarbrcken', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (440, 'Sagamihara', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (441, 'Saint Louis', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (442, 'Saint-Denis', 79, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (443, 'Sal', 62, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (444, 'Salala', 71, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (445, 'Salamanca', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (446, 'Salinas', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (447, 'Salzburg', 9, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (448, 'Sambhal', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (449, 'San Bernardino', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (450, 'San Felipe de Puerto Plata', 27, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (451, 'San Felipe del Progreso', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (452, 'San Juan Bautista Tuxtepec', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (453, 'San Lorenzo', 73, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (454, 'San Miguel de Tucumn', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (455, 'Sanaa', 107, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (456, 'Santa Brbara dOeste', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (457, 'Santa F', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (458, 'Santa Rosa', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (459, 'Santiago de Compostela', 87, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (460, 'Santiago de los Caballeros', 27, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (461, 'Santo Andr', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (462, 'Sanya', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (463, 'Sasebo', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (464, 'Satna', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (465, 'Sawhaj', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (466, 'Serpuhov', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (467, 'Shahr-e Kord', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (468, 'Shanwei', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (469, 'Shaoguan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (470, 'Sharja', 101, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (471, 'Shenzhen', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (472, 'Shikarpur', 72, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (473, 'Shimoga', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (474, 'Shimonoseki', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (475, 'Shivapuri', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (476, 'Shubra al-Khayma', 29, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (477, 'Siegen', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (478, 'Siliguri (Shiliguri)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (479, 'Simferopol', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (480, 'Sincelejo', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (481, 'Sirjan', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (482, 'Sivas', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (483, 'Skikda', 2, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (484, 'Smolensk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (485, 'So Bernardo do Campo', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (486, 'So Leopoldo', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (487, 'Sogamoso', 24, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (488, 'Sokoto', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (489, 'Songkhla', 94, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (490, 'Sorocaba', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (491, 'Soshanguve', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (492, 'Sousse', 96, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (493, 'South Hill', 5, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (494, 'Southampton', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (495, 'Southend-on-Sea', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (496, 'Southport', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (497, 'Springs', 85, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (498, 'Stara Zagora', 17, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (499, 'Sterling Heights', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (500, 'Stockport', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (501, 'Sucre', 14, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (502, 'Suihua', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (503, 'Sullana', 74, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (504, 'Sultanbeyli', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (505, 'Sumqayit', 10, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (506, 'Sumy', 100, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (507, 'Sungai Petani', 59, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (508, 'Sunnyvale', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (509, 'Surakarta', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (510, 'Syktyvkar', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (511, 'Syrakusa', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (512, 'Szkesfehrvr', 43, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (513, 'Tabora', 93, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (514, 'Tabriz', 46, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (515, 'Tabuk', 82, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (516, 'Tafuna', 3, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (517, 'Taguig', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (518, 'Taizz', 107, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (519, 'Talavera', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (520, 'Tallahassee', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (521, 'Tama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (522, 'Tambaram', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (523, 'Tanauan', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (524, 'Tandil', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (525, 'Tangail', 12, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (526, 'Tanshui', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (527, 'Tanza', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (528, 'Tarlac', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (529, 'Tarsus', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (530, 'Tartu', 30, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (531, 'Teboksary', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (532, 'Tegal', 45, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (533, 'Tel Aviv-Jaffa', 48, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (534, 'Tete', 63, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (535, 'Tianjin', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (536, 'Tiefa', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (537, 'Tieli', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (538, 'Tokat', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (539, 'Tonghae', 86, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (540, 'Tongliao', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (541, 'Torren', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (542, 'Touliu', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (543, 'Toulon', 34, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (544, 'Toulouse', 34, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (545, 'Trshavn', 32, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (546, 'Tsaotun', 92, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (547, 'Tsuyama', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (548, 'Tuguegarao', 75, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (549, 'Tychy', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (550, 'Udaipur', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (551, 'Udine', 49, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (552, 'Ueda', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (553, 'Uijongbu', 86, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (554, 'Uluberia', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (555, 'Urawa', 50, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (556, 'Uruapan', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (557, 'Usak', 97, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (558, 'Usolje-Sibirskoje', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (559, 'Uttarpara-Kotrung', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (560, 'Vaduz', 55, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (561, 'Valencia', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (562, 'Valle de la Pascua', 104, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (563, 'Valle de Santiago', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (564, 'Valparai', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (565, 'Vancouver', 20, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (566, 'Varanasi (Benares)', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (567, 'Vicente Lpez', 6, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (568, 'Vijayawada', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (569, 'Vila Velha', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (570, 'Vilnius', 56, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (571, 'Vinh', 105, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (572, 'Vitria de Santo Anto', 15, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (573, 'Warren', 103, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (574, 'Weifang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (575, 'Witten', 38, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (576, 'Woodridge', 8, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (577, 'Wroclaw', 76, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (578, 'Xiangfan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (579, 'Xiangtan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (580, 'Xintai', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (581, 'Xinxiang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (582, 'Yamuna Nagar', 44, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (583, 'Yangor', 65, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (584, 'Yantai', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (585, 'Yaound', 19, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (586, 'Yerevan', 7, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (587, 'Yinchuan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (588, 'Yingkou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (589, 'York', 102, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (590, 'Yuncheng', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (591, 'Yuzhou', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (592, 'Zalantun', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (593, 'Zanzibar', 93, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (594, 'Zaoyang', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (595, 'Zapopan', 60, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (596, 'Zaria', 69, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (597, 'Zeleznogorsk', 80, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (598, 'Zhezqazghan', 51, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (599, 'Zhoushan', 23, '2006-02-15 09:45:25'); INSERT INTO city (city_id, city, country_id, last_update) VALUES (600, 'Ziguinchor', 83, '2006-02-15 09:45:25'); SELECT pg_catalog.setval('city_city_id_seq', 600, true); INSERT INTO country (country_id, country, last_update) VALUES (1, 'Afghanistan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (2, 'Algeria', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (3, 'American Samoa', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (4, 'Angola', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (5, 'Anguilla', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (6, 'Argentina', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (7, 'Armenia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (8, 'Australia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (9, 'Austria', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (10, 'Azerbaijan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (11, 'Bahrain', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (12, 'Bangladesh', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (13, 'Belarus', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (14, 'Bolivia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (15, 'Brazil', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (16, 'Brunei', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (17, 'Bulgaria', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (18, 'Cambodia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (19, 'Cameroon', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (20, 'Canada', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (21, 'Chad', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (22, 'Chile', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (23, 'China', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (24, 'Colombia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (25, 'Congo, The Democratic Republic of the', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (26, 'Czech Republic', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (27, 'Dominican Republic', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (28, 'Ecuador', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (29, 'Egypt', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (30, 'Estonia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (31, 'Ethiopia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (32, 'Faroe Islands', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (33, 'Finland', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (34, 'France', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (35, 'French Guiana', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (36, 'French Polynesia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (37, 'Gambia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (38, 'Germany', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (39, 'Greece', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (40, 'Greenland', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (41, 'Holy See (Vatican City State)', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (42, 'Hong Kong', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (43, 'Hungary', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (44, 'India', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (45, 'Indonesia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (46, 'Iran', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (47, 'Iraq', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (48, 'Israel', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (49, 'Italy', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (50, 'Japan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (51, 'Kazakstan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (52, 'Kenya', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (53, 'Kuwait', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (54, 'Latvia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (55, 'Liechtenstein', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (56, 'Lithuania', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (57, 'Madagascar', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (58, 'Malawi', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (59, 'Malaysia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (60, 'Mexico', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (61, 'Moldova', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (62, 'Morocco', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (63, 'Mozambique', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (64, 'Myanmar', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (65, 'Nauru', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (66, 'Nepal', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (67, 'Netherlands', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (68, 'New Zealand', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (69, 'Nigeria', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (70, 'North Korea', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (71, 'Oman', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (72, 'Pakistan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (73, 'Paraguay', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (74, 'Peru', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (75, 'Philippines', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (76, 'Poland', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (77, 'Puerto Rico', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (78, 'Romania', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (79, 'Runion', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (80, 'Russian Federation', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (81, 'Saint Vincent and the Grenadines', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (82, 'Saudi Arabia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (83, 'Senegal', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (84, 'Slovakia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (85, 'South Africa', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (86, 'South Korea', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (87, 'Spain', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (88, 'Sri Lanka', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (89, 'Sudan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (90, 'Sweden', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (91, 'Switzerland', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (92, 'Taiwan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (93, 'Tanzania', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (94, 'Thailand', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (95, 'Tonga', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (96, 'Tunisia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (97, 'Turkey', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (98, 'Turkmenistan', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (99, 'Tuvalu', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (100, 'Ukraine', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (101, 'United Arab Emirates', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (102, 'United Kingdom', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (103, 'United States', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (104, 'Venezuela', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (105, 'Vietnam', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (106, 'Virgin Islands, U.S.', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (107, 'Yemen', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (108, 'Yugoslavia', '2006-02-15 09:44:00'); INSERT INTO country (country_id, country, last_update) VALUES (109, 'Zambia', '2006-02-15 09:44:00'); SELECT pg_catalog.setval('country_country_id_seq', 109, true); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (1, 1, 'MARY', 'SMITH', 'MARY.SMITH@sakilacustomer.org', 5, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (2, 1, 'PATRICIA', 'JOHNSON', 'PATRICIA.JOHNSON@sakilacustomer.org', 6, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (4, 2, 'BARBARA', 'JONES', 'BARBARA.JONES@sakilacustomer.org', 8, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (5, 1, 'ELIZABETH', 'BROWN', 'ELIZABETH.BROWN@sakilacustomer.org', 9, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (6, 2, 'JENNIFER', 'DAVIS', 'JENNIFER.DAVIS@sakilacustomer.org', 10, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (7, 1, 'MARIA', 'MILLER', 'MARIA.MILLER@sakilacustomer.org', 11, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (8, 2, 'SUSAN', 'WILSON', 'SUSAN.WILSON@sakilacustomer.org', 12, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (9, 2, 'MARGARET', 'MOORE', 'MARGARET.MOORE@sakilacustomer.org', 13, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (10, 1, 'DOROTHY', 'TAYLOR', 'DOROTHY.TAYLOR@sakilacustomer.org', 14, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (11, 2, 'LISA', 'ANDERSON', 'LISA.ANDERSON@sakilacustomer.org', 15, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (12, 1, 'NANCY', 'THOMAS', 'NANCY.THOMAS@sakilacustomer.org', 16, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (13, 2, 'KAREN', 'JACKSON', 'KAREN.JACKSON@sakilacustomer.org', 17, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (14, 2, 'BETTY', 'WHITE', 'BETTY.WHITE@sakilacustomer.org', 18, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (15, 1, 'HELEN', 'HARRIS', 'HELEN.HARRIS@sakilacustomer.org', 19, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (16, 2, 'SANDRA', 'MARTIN', 'SANDRA.MARTIN@sakilacustomer.org', 20, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (18, 2, 'CAROL', 'GARCIA', 'CAROL.GARCIA@sakilacustomer.org', 22, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (19, 1, 'RUTH', 'MARTINEZ', 'RUTH.MARTINEZ@sakilacustomer.org', 23, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (20, 2, 'SHARON', 'ROBINSON', 'SHARON.ROBINSON@sakilacustomer.org', 24, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (21, 1, 'MICHELLE', 'CLARK', 'MICHELLE.CLARK@sakilacustomer.org', 25, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (22, 1, 'LAURA', 'RODRIGUEZ', 'LAURA.RODRIGUEZ@sakilacustomer.org', 26, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (23, 2, 'SARAH', 'LEWIS', 'SARAH.LEWIS@sakilacustomer.org', 27, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (24, 2, 'KIMBERLY', 'LEE', 'KIMBERLY.LEE@sakilacustomer.org', 28, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (25, 1, 'DEBORAH', 'WALKER', 'DEBORAH.WALKER@sakilacustomer.org', 29, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (26, 2, 'JESSICA', 'HALL', 'JESSICA.HALL@sakilacustomer.org', 30, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (27, 2, 'SHIRLEY', 'ALLEN', 'SHIRLEY.ALLEN@sakilacustomer.org', 31, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (28, 1, 'CYNTHIA', 'YOUNG', 'CYNTHIA.YOUNG@sakilacustomer.org', 32, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (29, 2, 'ANGELA', 'HERNANDEZ', 'ANGELA.HERNANDEZ@sakilacustomer.org', 33, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (30, 1, 'MELISSA', 'KING', 'MELISSA.KING@sakilacustomer.org', 34, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (31, 2, 'BRENDA', 'WRIGHT', 'BRENDA.WRIGHT@sakilacustomer.org', 35, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (32, 1, 'AMY', 'LOPEZ', 'AMY.LOPEZ@sakilacustomer.org', 36, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (33, 2, 'ANNA', 'HILL', 'ANNA.HILL@sakilacustomer.org', 37, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (34, 2, 'REBECCA', 'SCOTT', 'REBECCA.SCOTT@sakilacustomer.org', 38, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (35, 2, 'VIRGINIA', 'GREEN', 'VIRGINIA.GREEN@sakilacustomer.org', 39, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (36, 2, 'KATHLEEN', 'ADAMS', 'KATHLEEN.ADAMS@sakilacustomer.org', 40, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (37, 1, 'PAMELA', 'BAKER', 'PAMELA.BAKER@sakilacustomer.org', 41, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (38, 1, 'MARTHA', 'GONZALEZ', 'MARTHA.GONZALEZ@sakilacustomer.org', 42, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (39, 1, 'DEBRA', 'NELSON', 'DEBRA.NELSON@sakilacustomer.org', 43, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (40, 2, 'AMANDA', 'CARTER', 'AMANDA.CARTER@sakilacustomer.org', 44, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (41, 1, 'STEPHANIE', 'MITCHELL', 'STEPHANIE.MITCHELL@sakilacustomer.org', 45, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (42, 2, 'CAROLYN', 'PEREZ', 'CAROLYN.PEREZ@sakilacustomer.org', 46, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (43, 2, 'CHRISTINE', 'ROBERTS', 'CHRISTINE.ROBERTS@sakilacustomer.org', 47, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (44, 1, 'MARIE', 'TURNER', 'MARIE.TURNER@sakilacustomer.org', 48, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (45, 1, 'JANET', 'PHILLIPS', 'JANET.PHILLIPS@sakilacustomer.org', 49, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (46, 2, 'CATHERINE', 'CAMPBELL', 'CATHERINE.CAMPBELL@sakilacustomer.org', 50, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (47, 1, 'FRANCES', 'PARKER', 'FRANCES.PARKER@sakilacustomer.org', 51, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (48, 1, 'ANN', 'EVANS', 'ANN.EVANS@sakilacustomer.org', 52, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (49, 2, 'JOYCE', 'EDWARDS', 'JOYCE.EDWARDS@sakilacustomer.org', 53, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (50, 1, 'DIANE', 'COLLINS', 'DIANE.COLLINS@sakilacustomer.org', 54, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (51, 1, 'ALICE', 'STEWART', 'ALICE.STEWART@sakilacustomer.org', 55, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (52, 1, 'JULIE', 'SANCHEZ', 'JULIE.SANCHEZ@sakilacustomer.org', 56, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (53, 1, 'HEATHER', 'MORRIS', 'HEATHER.MORRIS@sakilacustomer.org', 57, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (54, 1, 'TERESA', 'ROGERS', 'TERESA.ROGERS@sakilacustomer.org', 58, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (55, 2, 'DORIS', 'REED', 'DORIS.REED@sakilacustomer.org', 59, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (56, 1, 'GLORIA', 'COOK', 'GLORIA.COOK@sakilacustomer.org', 60, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (57, 2, 'EVELYN', 'MORGAN', 'EVELYN.MORGAN@sakilacustomer.org', 61, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (58, 1, 'JEAN', 'BELL', 'JEAN.BELL@sakilacustomer.org', 62, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (59, 1, 'CHERYL', 'MURPHY', 'CHERYL.MURPHY@sakilacustomer.org', 63, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (60, 1, 'MILDRED', 'BAILEY', 'MILDRED.BAILEY@sakilacustomer.org', 64, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (61, 2, 'KATHERINE', 'RIVERA', 'KATHERINE.RIVERA@sakilacustomer.org', 65, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (62, 1, 'JOAN', 'COOPER', 'JOAN.COOPER@sakilacustomer.org', 66, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (63, 1, 'ASHLEY', 'RICHARDSON', 'ASHLEY.RICHARDSON@sakilacustomer.org', 67, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (64, 2, 'JUDITH', 'COX', 'JUDITH.COX@sakilacustomer.org', 68, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (65, 2, 'ROSE', 'HOWARD', 'ROSE.HOWARD@sakilacustomer.org', 69, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (66, 2, 'JANICE', 'WARD', 'JANICE.WARD@sakilacustomer.org', 70, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (67, 1, 'KELLY', 'TORRES', 'KELLY.TORRES@sakilacustomer.org', 71, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (68, 1, 'NICOLE', 'PETERSON', 'NICOLE.PETERSON@sakilacustomer.org', 72, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (69, 2, 'JUDY', 'GRAY', 'JUDY.GRAY@sakilacustomer.org', 73, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (70, 2, 'CHRISTINA', 'RAMIREZ', 'CHRISTINA.RAMIREZ@sakilacustomer.org', 74, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (71, 1, 'KATHY', 'JAMES', 'KATHY.JAMES@sakilacustomer.org', 75, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (72, 2, 'THERESA', 'WATSON', 'THERESA.WATSON@sakilacustomer.org', 76, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (73, 2, 'BEVERLY', 'BROOKS', 'BEVERLY.BROOKS@sakilacustomer.org', 77, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (74, 1, 'DENISE', 'KELLY', 'DENISE.KELLY@sakilacustomer.org', 78, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (75, 2, 'TAMMY', 'SANDERS', 'TAMMY.SANDERS@sakilacustomer.org', 79, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (76, 2, 'IRENE', 'PRICE', 'IRENE.PRICE@sakilacustomer.org', 80, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (77, 2, 'JANE', 'BENNETT', 'JANE.BENNETT@sakilacustomer.org', 81, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (78, 1, 'LORI', 'WOOD', 'LORI.WOOD@sakilacustomer.org', 82, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (79, 1, 'RACHEL', 'BARNES', 'RACHEL.BARNES@sakilacustomer.org', 83, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (80, 1, 'MARILYN', 'ROSS', 'MARILYN.ROSS@sakilacustomer.org', 84, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (81, 1, 'ANDREA', 'HENDERSON', 'ANDREA.HENDERSON@sakilacustomer.org', 85, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (17, 1, 'DONNA', 'THOMPSON', 'DONNA.THOMPSON@sakilacustomer.org', 21, true, '2006-02-14', '2018-12-13 17:34:43.777019'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (82, 1, 'KATHRYN', 'COLEMAN', 'KATHRYN.COLEMAN@sakilacustomer.org', 86, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (83, 1, 'LOUISE', 'JENKINS', 'LOUISE.JENKINS@sakilacustomer.org', 87, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (84, 2, 'SARA', 'PERRY', 'SARA.PERRY@sakilacustomer.org', 88, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (85, 2, 'ANNE', 'POWELL', 'ANNE.POWELL@sakilacustomer.org', 89, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (86, 2, 'JACQUELINE', 'LONG', 'JACQUELINE.LONG@sakilacustomer.org', 90, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (87, 1, 'WANDA', 'PATTERSON', 'WANDA.PATTERSON@sakilacustomer.org', 91, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (88, 2, 'BONNIE', 'HUGHES', 'BONNIE.HUGHES@sakilacustomer.org', 92, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (89, 1, 'JULIA', 'FLORES', 'JULIA.FLORES@sakilacustomer.org', 93, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (90, 2, 'RUBY', 'WASHINGTON', 'RUBY.WASHINGTON@sakilacustomer.org', 94, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (91, 2, 'LOIS', 'BUTLER', 'LOIS.BUTLER@sakilacustomer.org', 95, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (92, 2, 'TINA', 'SIMMONS', 'TINA.SIMMONS@sakilacustomer.org', 96, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (93, 1, 'PHYLLIS', 'FOSTER', 'PHYLLIS.FOSTER@sakilacustomer.org', 97, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (94, 1, 'NORMA', 'GONZALES', 'NORMA.GONZALES@sakilacustomer.org', 98, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (95, 2, 'PAULA', 'BRYANT', 'PAULA.BRYANT@sakilacustomer.org', 99, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (96, 1, 'DIANA', 'ALEXANDER', 'DIANA.ALEXANDER@sakilacustomer.org', 100, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (97, 2, 'ANNIE', 'RUSSELL', 'ANNIE.RUSSELL@sakilacustomer.org', 101, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (98, 1, 'LILLIAN', 'GRIFFIN', 'LILLIAN.GRIFFIN@sakilacustomer.org', 102, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (99, 2, 'EMILY', 'DIAZ', 'EMILY.DIAZ@sakilacustomer.org', 103, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (100, 1, 'ROBIN', 'HAYES', 'ROBIN.HAYES@sakilacustomer.org', 104, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (101, 1, 'PEGGY', 'MYERS', 'PEGGY.MYERS@sakilacustomer.org', 105, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (102, 1, 'CRYSTAL', 'FORD', 'CRYSTAL.FORD@sakilacustomer.org', 106, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (103, 1, 'GLADYS', 'HAMILTON', 'GLADYS.HAMILTON@sakilacustomer.org', 107, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (104, 1, 'RITA', 'GRAHAM', 'RITA.GRAHAM@sakilacustomer.org', 108, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (105, 1, 'DAWN', 'SULLIVAN', 'DAWN.SULLIVAN@sakilacustomer.org', 109, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (106, 1, 'CONNIE', 'WALLACE', 'CONNIE.WALLACE@sakilacustomer.org', 110, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (107, 1, 'FLORENCE', 'WOODS', 'FLORENCE.WOODS@sakilacustomer.org', 111, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (108, 1, 'TRACY', 'COLE', 'TRACY.COLE@sakilacustomer.org', 112, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (109, 2, 'EDNA', 'WEST', 'EDNA.WEST@sakilacustomer.org', 113, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (110, 2, 'TIFFANY', 'JORDAN', 'TIFFANY.JORDAN@sakilacustomer.org', 114, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (111, 1, 'CARMEN', 'OWENS', 'CARMEN.OWENS@sakilacustomer.org', 115, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (112, 2, 'ROSA', 'REYNOLDS', 'ROSA.REYNOLDS@sakilacustomer.org', 116, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (113, 2, 'CINDY', 'FISHER', 'CINDY.FISHER@sakilacustomer.org', 117, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (114, 2, 'GRACE', 'ELLIS', 'GRACE.ELLIS@sakilacustomer.org', 118, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (115, 1, 'WENDY', 'HARRISON', 'WENDY.HARRISON@sakilacustomer.org', 119, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (116, 1, 'VICTORIA', 'GIBSON', 'VICTORIA.GIBSON@sakilacustomer.org', 120, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (117, 1, 'EDITH', 'MCDONALD', 'EDITH.MCDONALD@sakilacustomer.org', 121, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (118, 1, 'KIM', 'CRUZ', 'KIM.CRUZ@sakilacustomer.org', 122, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (119, 1, 'SHERRY', 'MARSHALL', 'SHERRY.MARSHALL@sakilacustomer.org', 123, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (120, 2, 'SYLVIA', 'ORTIZ', 'SYLVIA.ORTIZ@sakilacustomer.org', 124, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (121, 1, 'JOSEPHINE', 'GOMEZ', 'JOSEPHINE.GOMEZ@sakilacustomer.org', 125, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (122, 1, 'THELMA', 'MURRAY', 'THELMA.MURRAY@sakilacustomer.org', 126, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (123, 2, 'SHANNON', 'FREEMAN', 'SHANNON.FREEMAN@sakilacustomer.org', 127, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (124, 1, 'SHEILA', 'WELLS', 'SHEILA.WELLS@sakilacustomer.org', 128, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (125, 1, 'ETHEL', 'WEBB', 'ETHEL.WEBB@sakilacustomer.org', 129, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (126, 1, 'ELLEN', 'SIMPSON', 'ELLEN.SIMPSON@sakilacustomer.org', 130, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (127, 2, 'ELAINE', 'STEVENS', 'ELAINE.STEVENS@sakilacustomer.org', 131, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (128, 1, 'MARJORIE', 'TUCKER', 'MARJORIE.TUCKER@sakilacustomer.org', 132, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (129, 1, 'CARRIE', 'PORTER', 'CARRIE.PORTER@sakilacustomer.org', 133, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (130, 1, 'CHARLOTTE', 'HUNTER', 'CHARLOTTE.HUNTER@sakilacustomer.org', 134, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (131, 2, 'MONICA', 'HICKS', 'MONICA.HICKS@sakilacustomer.org', 135, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (132, 2, 'ESTHER', 'CRAWFORD', 'ESTHER.CRAWFORD@sakilacustomer.org', 136, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (133, 1, 'PAULINE', 'HENRY', 'PAULINE.HENRY@sakilacustomer.org', 137, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (134, 1, 'EMMA', 'BOYD', 'EMMA.BOYD@sakilacustomer.org', 138, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (135, 2, 'JUANITA', 'MASON', 'JUANITA.MASON@sakilacustomer.org', 139, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (136, 2, 'ANITA', 'MORALES', 'ANITA.MORALES@sakilacustomer.org', 140, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (137, 2, 'RHONDA', 'KENNEDY', 'RHONDA.KENNEDY@sakilacustomer.org', 141, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (138, 1, 'HAZEL', 'WARREN', 'HAZEL.WARREN@sakilacustomer.org', 142, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (139, 1, 'AMBER', 'DIXON', 'AMBER.DIXON@sakilacustomer.org', 143, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (140, 1, 'EVA', 'RAMOS', 'EVA.RAMOS@sakilacustomer.org', 144, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (141, 1, 'DEBBIE', 'REYES', 'DEBBIE.REYES@sakilacustomer.org', 145, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (142, 1, 'APRIL', 'BURNS', 'APRIL.BURNS@sakilacustomer.org', 146, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (143, 1, 'LESLIE', 'GORDON', 'LESLIE.GORDON@sakilacustomer.org', 147, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (144, 1, 'CLARA', 'SHAW', 'CLARA.SHAW@sakilacustomer.org', 148, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (145, 1, 'LUCILLE', 'HOLMES', 'LUCILLE.HOLMES@sakilacustomer.org', 149, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (146, 1, 'JAMIE', 'RICE', 'JAMIE.RICE@sakilacustomer.org', 150, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (147, 2, 'JOANNE', 'ROBERTSON', 'JOANNE.ROBERTSON@sakilacustomer.org', 151, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (148, 1, 'ELEANOR', 'HUNT', 'ELEANOR.HUNT@sakilacustomer.org', 152, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (149, 1, 'VALERIE', 'BLACK', 'VALERIE.BLACK@sakilacustomer.org', 153, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (150, 2, 'DANIELLE', 'DANIELS', 'DANIELLE.DANIELS@sakilacustomer.org', 154, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (151, 2, 'MEGAN', 'PALMER', 'MEGAN.PALMER@sakilacustomer.org', 155, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (152, 1, 'ALICIA', 'MILLS', 'ALICIA.MILLS@sakilacustomer.org', 156, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (153, 2, 'SUZANNE', 'NICHOLS', 'SUZANNE.NICHOLS@sakilacustomer.org', 157, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (154, 2, 'MICHELE', 'GRANT', 'MICHELE.GRANT@sakilacustomer.org', 158, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (155, 1, 'GAIL', 'KNIGHT', 'GAIL.KNIGHT@sakilacustomer.org', 159, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (156, 1, 'BERTHA', 'FERGUSON', 'BERTHA.FERGUSON@sakilacustomer.org', 160, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (157, 2, 'DARLENE', 'ROSE', 'DARLENE.ROSE@sakilacustomer.org', 161, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (158, 1, 'VERONICA', 'STONE', 'VERONICA.STONE@sakilacustomer.org', 162, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (159, 1, 'JILL', 'HAWKINS', 'JILL.HAWKINS@sakilacustomer.org', 163, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (160, 2, 'ERIN', 'DUNN', 'ERIN.DUNN@sakilacustomer.org', 164, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (161, 1, 'GERALDINE', 'PERKINS', 'GERALDINE.PERKINS@sakilacustomer.org', 165, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (162, 2, 'LAUREN', 'HUDSON', 'LAUREN.HUDSON@sakilacustomer.org', 166, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (163, 1, 'CATHY', 'SPENCER', 'CATHY.SPENCER@sakilacustomer.org', 167, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (164, 2, 'JOANN', 'GARDNER', 'JOANN.GARDNER@sakilacustomer.org', 168, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (165, 2, 'LORRAINE', 'STEPHENS', 'LORRAINE.STEPHENS@sakilacustomer.org', 169, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (166, 1, 'LYNN', 'PAYNE', 'LYNN.PAYNE@sakilacustomer.org', 170, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (167, 2, 'SALLY', 'PIERCE', 'SALLY.PIERCE@sakilacustomer.org', 171, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (168, 1, 'REGINA', 'BERRY', 'REGINA.BERRY@sakilacustomer.org', 172, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (169, 2, 'ERICA', 'MATTHEWS', 'ERICA.MATTHEWS@sakilacustomer.org', 173, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (170, 1, 'BEATRICE', 'ARNOLD', 'BEATRICE.ARNOLD@sakilacustomer.org', 174, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (171, 2, 'DOLORES', 'WAGNER', 'DOLORES.WAGNER@sakilacustomer.org', 175, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (172, 1, 'BERNICE', 'WILLIS', 'BERNICE.WILLIS@sakilacustomer.org', 176, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (173, 1, 'AUDREY', 'RAY', 'AUDREY.RAY@sakilacustomer.org', 177, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (174, 2, 'YVONNE', 'WATKINS', 'YVONNE.WATKINS@sakilacustomer.org', 178, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (175, 1, 'ANNETTE', 'OLSON', 'ANNETTE.OLSON@sakilacustomer.org', 179, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (176, 1, 'JUNE', 'CARROLL', 'JUNE.CARROLL@sakilacustomer.org', 180, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (177, 2, 'SAMANTHA', 'DUNCAN', 'SAMANTHA.DUNCAN@sakilacustomer.org', 181, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (178, 2, 'MARION', 'SNYDER', 'MARION.SNYDER@sakilacustomer.org', 182, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (179, 1, 'DANA', 'HART', 'DANA.HART@sakilacustomer.org', 183, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (180, 2, 'STACY', 'CUNNINGHAM', 'STACY.CUNNINGHAM@sakilacustomer.org', 184, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (181, 2, 'ANA', 'BRADLEY', 'ANA.BRADLEY@sakilacustomer.org', 185, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (182, 1, 'RENEE', 'LANE', 'RENEE.LANE@sakilacustomer.org', 186, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (183, 2, 'IDA', 'ANDREWS', 'IDA.ANDREWS@sakilacustomer.org', 187, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (184, 1, 'VIVIAN', 'RUIZ', 'VIVIAN.RUIZ@sakilacustomer.org', 188, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (185, 1, 'ROBERTA', 'HARPER', 'ROBERTA.HARPER@sakilacustomer.org', 189, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (186, 2, 'HOLLY', 'FOX', 'HOLLY.FOX@sakilacustomer.org', 190, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (187, 2, 'BRITTANY', 'RILEY', 'BRITTANY.RILEY@sakilacustomer.org', 191, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (188, 1, 'MELANIE', 'ARMSTRONG', 'MELANIE.ARMSTRONG@sakilacustomer.org', 192, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (189, 1, 'LORETTA', 'CARPENTER', 'LORETTA.CARPENTER@sakilacustomer.org', 193, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (190, 2, 'YOLANDA', 'WEAVER', 'YOLANDA.WEAVER@sakilacustomer.org', 194, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (191, 1, 'JEANETTE', 'GREENE', 'JEANETTE.GREENE@sakilacustomer.org', 195, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (192, 1, 'LAURIE', 'LAWRENCE', 'LAURIE.LAWRENCE@sakilacustomer.org', 196, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (193, 2, 'KATIE', 'ELLIOTT', 'KATIE.ELLIOTT@sakilacustomer.org', 197, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (194, 2, 'KRISTEN', 'CHAVEZ', 'KRISTEN.CHAVEZ@sakilacustomer.org', 198, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (195, 1, 'VANESSA', 'SIMS', 'VANESSA.SIMS@sakilacustomer.org', 199, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (196, 1, 'ALMA', 'AUSTIN', 'ALMA.AUSTIN@sakilacustomer.org', 200, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (197, 2, 'SUE', 'PETERS', 'SUE.PETERS@sakilacustomer.org', 201, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (198, 2, 'ELSIE', 'KELLEY', 'ELSIE.KELLEY@sakilacustomer.org', 202, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (199, 2, 'BETH', 'FRANKLIN', 'BETH.FRANKLIN@sakilacustomer.org', 203, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (200, 2, 'JEANNE', 'LAWSON', 'JEANNE.LAWSON@sakilacustomer.org', 204, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (201, 1, 'VICKI', 'FIELDS', 'VICKI.FIELDS@sakilacustomer.org', 205, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (202, 2, 'CARLA', 'GUTIERREZ', 'CARLA.GUTIERREZ@sakilacustomer.org', 206, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (203, 1, 'TARA', 'RYAN', 'TARA.RYAN@sakilacustomer.org', 207, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (204, 1, 'ROSEMARY', 'SCHMIDT', 'ROSEMARY.SCHMIDT@sakilacustomer.org', 208, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (205, 2, 'EILEEN', 'CARR', 'EILEEN.CARR@sakilacustomer.org', 209, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (206, 1, 'TERRI', 'VASQUEZ', 'TERRI.VASQUEZ@sakilacustomer.org', 210, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (207, 1, 'GERTRUDE', 'CASTILLO', 'GERTRUDE.CASTILLO@sakilacustomer.org', 211, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (208, 1, 'LUCY', 'WHEELER', 'LUCY.WHEELER@sakilacustomer.org', 212, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (209, 2, 'TONYA', 'CHAPMAN', 'TONYA.CHAPMAN@sakilacustomer.org', 213, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (210, 2, 'ELLA', 'OLIVER', 'ELLA.OLIVER@sakilacustomer.org', 214, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (211, 1, 'STACEY', 'MONTGOMERY', 'STACEY.MONTGOMERY@sakilacustomer.org', 215, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (212, 2, 'WILMA', 'RICHARDS', 'WILMA.RICHARDS@sakilacustomer.org', 216, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (213, 1, 'GINA', 'WILLIAMSON', 'GINA.WILLIAMSON@sakilacustomer.org', 217, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (214, 1, 'KRISTIN', 'JOHNSTON', 'KRISTIN.JOHNSTON@sakilacustomer.org', 218, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (215, 2, 'JESSIE', 'BANKS', 'JESSIE.BANKS@sakilacustomer.org', 219, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (216, 1, 'NATALIE', 'MEYER', 'NATALIE.MEYER@sakilacustomer.org', 220, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (217, 2, 'AGNES', 'BISHOP', 'AGNES.BISHOP@sakilacustomer.org', 221, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (218, 1, 'VERA', 'MCCOY', 'VERA.MCCOY@sakilacustomer.org', 222, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (219, 2, 'WILLIE', 'HOWELL', 'WILLIE.HOWELL@sakilacustomer.org', 223, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (220, 2, 'CHARLENE', 'ALVAREZ', 'CHARLENE.ALVAREZ@sakilacustomer.org', 224, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (221, 1, 'BESSIE', 'MORRISON', 'BESSIE.MORRISON@sakilacustomer.org', 225, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (222, 2, 'DELORES', 'HANSEN', 'DELORES.HANSEN@sakilacustomer.org', 226, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (223, 1, 'MELINDA', 'FERNANDEZ', 'MELINDA.FERNANDEZ@sakilacustomer.org', 227, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (224, 2, 'PEARL', 'GARZA', 'PEARL.GARZA@sakilacustomer.org', 228, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (225, 1, 'ARLENE', 'HARVEY', 'ARLENE.HARVEY@sakilacustomer.org', 229, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (226, 2, 'MAUREEN', 'LITTLE', 'MAUREEN.LITTLE@sakilacustomer.org', 230, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (227, 1, 'COLLEEN', 'BURTON', 'COLLEEN.BURTON@sakilacustomer.org', 231, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (228, 2, 'ALLISON', 'STANLEY', 'ALLISON.STANLEY@sakilacustomer.org', 232, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (229, 1, 'TAMARA', 'NGUYEN', 'TAMARA.NGUYEN@sakilacustomer.org', 233, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (230, 2, 'JOY', 'GEORGE', 'JOY.GEORGE@sakilacustomer.org', 234, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (231, 1, 'GEORGIA', 'JACOBS', 'GEORGIA.JACOBS@sakilacustomer.org', 235, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (232, 2, 'CONSTANCE', 'REID', 'CONSTANCE.REID@sakilacustomer.org', 236, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (233, 2, 'LILLIE', 'KIM', 'LILLIE.KIM@sakilacustomer.org', 237, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (234, 1, 'CLAUDIA', 'FULLER', 'CLAUDIA.FULLER@sakilacustomer.org', 238, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (235, 1, 'JACKIE', 'LYNCH', 'JACKIE.LYNCH@sakilacustomer.org', 239, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (236, 1, 'MARCIA', 'DEAN', 'MARCIA.DEAN@sakilacustomer.org', 240, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (237, 1, 'TANYA', 'GILBERT', 'TANYA.GILBERT@sakilacustomer.org', 241, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (238, 1, 'NELLIE', 'GARRETT', 'NELLIE.GARRETT@sakilacustomer.org', 242, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (239, 2, 'MINNIE', 'ROMERO', 'MINNIE.ROMERO@sakilacustomer.org', 243, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (240, 1, 'MARLENE', 'WELCH', 'MARLENE.WELCH@sakilacustomer.org', 244, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (241, 2, 'HEIDI', 'LARSON', 'HEIDI.LARSON@sakilacustomer.org', 245, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (242, 1, 'GLENDA', 'FRAZIER', 'GLENDA.FRAZIER@sakilacustomer.org', 246, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (243, 1, 'LYDIA', 'BURKE', 'LYDIA.BURKE@sakilacustomer.org', 247, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (244, 2, 'VIOLA', 'HANSON', 'VIOLA.HANSON@sakilacustomer.org', 248, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (245, 1, 'COURTNEY', 'DAY', 'COURTNEY.DAY@sakilacustomer.org', 249, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (246, 1, 'MARIAN', 'MENDOZA', 'MARIAN.MENDOZA@sakilacustomer.org', 250, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (247, 1, 'STELLA', 'MORENO', 'STELLA.MORENO@sakilacustomer.org', 251, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (248, 1, 'CAROLINE', 'BOWMAN', 'CAROLINE.BOWMAN@sakilacustomer.org', 252, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (249, 2, 'DORA', 'MEDINA', 'DORA.MEDINA@sakilacustomer.org', 253, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (250, 2, 'JO', 'FOWLER', 'JO.FOWLER@sakilacustomer.org', 254, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (251, 2, 'VICKIE', 'BREWER', 'VICKIE.BREWER@sakilacustomer.org', 255, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (252, 2, 'MATTIE', 'HOFFMAN', 'MATTIE.HOFFMAN@sakilacustomer.org', 256, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (253, 1, 'TERRY', 'CARLSON', 'TERRY.CARLSON@sakilacustomer.org', 258, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (254, 2, 'MAXINE', 'SILVA', 'MAXINE.SILVA@sakilacustomer.org', 259, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (255, 2, 'IRMA', 'PEARSON', 'IRMA.PEARSON@sakilacustomer.org', 260, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (256, 2, 'MABEL', 'HOLLAND', 'MABEL.HOLLAND@sakilacustomer.org', 261, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (257, 2, 'MARSHA', 'DOUGLAS', 'MARSHA.DOUGLAS@sakilacustomer.org', 262, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (258, 1, 'MYRTLE', 'FLEMING', 'MYRTLE.FLEMING@sakilacustomer.org', 263, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (259, 2, 'LENA', 'JENSEN', 'LENA.JENSEN@sakilacustomer.org', 264, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (260, 1, 'CHRISTY', 'VARGAS', 'CHRISTY.VARGAS@sakilacustomer.org', 265, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (261, 1, 'DEANNA', 'BYRD', 'DEANNA.BYRD@sakilacustomer.org', 266, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (262, 2, 'PATSY', 'DAVIDSON', 'PATSY.DAVIDSON@sakilacustomer.org', 267, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (263, 1, 'HILDA', 'HOPKINS', 'HILDA.HOPKINS@sakilacustomer.org', 268, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (264, 1, 'GWENDOLYN', 'MAY', 'GWENDOLYN.MAY@sakilacustomer.org', 269, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (265, 2, 'JENNIE', 'TERRY', 'JENNIE.TERRY@sakilacustomer.org', 270, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (266, 2, 'NORA', 'HERRERA', 'NORA.HERRERA@sakilacustomer.org', 271, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (267, 1, 'MARGIE', 'WADE', 'MARGIE.WADE@sakilacustomer.org', 272, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (268, 1, 'NINA', 'SOTO', 'NINA.SOTO@sakilacustomer.org', 273, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (269, 1, 'CASSANDRA', 'WALTERS', 'CASSANDRA.WALTERS@sakilacustomer.org', 274, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (270, 1, 'LEAH', 'CURTIS', 'LEAH.CURTIS@sakilacustomer.org', 275, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (271, 1, 'PENNY', 'NEAL', 'PENNY.NEAL@sakilacustomer.org', 276, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (272, 1, 'KAY', 'CALDWELL', 'KAY.CALDWELL@sakilacustomer.org', 277, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (273, 2, 'PRISCILLA', 'LOWE', 'PRISCILLA.LOWE@sakilacustomer.org', 278, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (274, 1, 'NAOMI', 'JENNINGS', 'NAOMI.JENNINGS@sakilacustomer.org', 279, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (275, 2, 'CAROLE', 'BARNETT', 'CAROLE.BARNETT@sakilacustomer.org', 280, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (276, 1, 'BRANDY', 'GRAVES', 'BRANDY.GRAVES@sakilacustomer.org', 281, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (277, 2, 'OLGA', 'JIMENEZ', 'OLGA.JIMENEZ@sakilacustomer.org', 282, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (278, 2, 'BILLIE', 'HORTON', 'BILLIE.HORTON@sakilacustomer.org', 283, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (279, 2, 'DIANNE', 'SHELTON', 'DIANNE.SHELTON@sakilacustomer.org', 284, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (280, 2, 'TRACEY', 'BARRETT', 'TRACEY.BARRETT@sakilacustomer.org', 285, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (281, 2, 'LEONA', 'OBRIEN', 'LEONA.OBRIEN@sakilacustomer.org', 286, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (282, 2, 'JENNY', 'CASTRO', 'JENNY.CASTRO@sakilacustomer.org', 287, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (283, 1, 'FELICIA', 'SUTTON', 'FELICIA.SUTTON@sakilacustomer.org', 288, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (284, 1, 'SONIA', 'GREGORY', 'SONIA.GREGORY@sakilacustomer.org', 289, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (285, 1, 'MIRIAM', 'MCKINNEY', 'MIRIAM.MCKINNEY@sakilacustomer.org', 290, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (286, 1, 'VELMA', 'LUCAS', 'VELMA.LUCAS@sakilacustomer.org', 291, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (287, 2, 'BECKY', 'MILES', 'BECKY.MILES@sakilacustomer.org', 292, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (288, 1, 'BOBBIE', 'CRAIG', 'BOBBIE.CRAIG@sakilacustomer.org', 293, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (289, 1, 'VIOLET', 'RODRIQUEZ', 'VIOLET.RODRIQUEZ@sakilacustomer.org', 294, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (290, 1, 'KRISTINA', 'CHAMBERS', 'KRISTINA.CHAMBERS@sakilacustomer.org', 295, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (291, 1, 'TONI', 'HOLT', 'TONI.HOLT@sakilacustomer.org', 296, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (292, 2, 'MISTY', 'LAMBERT', 'MISTY.LAMBERT@sakilacustomer.org', 297, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (293, 2, 'MAE', 'FLETCHER', 'MAE.FLETCHER@sakilacustomer.org', 298, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (294, 2, 'SHELLY', 'WATTS', 'SHELLY.WATTS@sakilacustomer.org', 299, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (295, 1, 'DAISY', 'BATES', 'DAISY.BATES@sakilacustomer.org', 300, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (296, 2, 'RAMONA', 'HALE', 'RAMONA.HALE@sakilacustomer.org', 301, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (297, 1, 'SHERRI', 'RHODES', 'SHERRI.RHODES@sakilacustomer.org', 302, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (298, 1, 'ERIKA', 'PENA', 'ERIKA.PENA@sakilacustomer.org', 303, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (299, 2, 'JAMES', 'GANNON', 'JAMES.GANNON@sakilacustomer.org', 304, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (300, 1, 'JOHN', 'FARNSWORTH', 'JOHN.FARNSWORTH@sakilacustomer.org', 305, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (301, 2, 'ROBERT', 'BAUGHMAN', 'ROBERT.BAUGHMAN@sakilacustomer.org', 306, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (302, 1, 'MICHAEL', 'SILVERMAN', 'MICHAEL.SILVERMAN@sakilacustomer.org', 307, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (303, 2, 'WILLIAM', 'SATTERFIELD', 'WILLIAM.SATTERFIELD@sakilacustomer.org', 308, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (304, 2, 'DAVID', 'ROYAL', 'DAVID.ROYAL@sakilacustomer.org', 309, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (305, 1, 'RICHARD', 'MCCRARY', 'RICHARD.MCCRARY@sakilacustomer.org', 310, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (306, 1, 'CHARLES', 'KOWALSKI', 'CHARLES.KOWALSKI@sakilacustomer.org', 311, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (307, 2, 'JOSEPH', 'JOY', 'JOSEPH.JOY@sakilacustomer.org', 312, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (308, 1, 'THOMAS', 'GRIGSBY', 'THOMAS.GRIGSBY@sakilacustomer.org', 313, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (309, 1, 'CHRISTOPHER', 'GRECO', 'CHRISTOPHER.GRECO@sakilacustomer.org', 314, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (310, 2, 'DANIEL', 'CABRAL', 'DANIEL.CABRAL@sakilacustomer.org', 315, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (311, 2, 'PAUL', 'TROUT', 'PAUL.TROUT@sakilacustomer.org', 316, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (312, 2, 'MARK', 'RINEHART', 'MARK.RINEHART@sakilacustomer.org', 317, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (313, 2, 'DONALD', 'MAHON', 'DONALD.MAHON@sakilacustomer.org', 318, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (314, 1, 'GEORGE', 'LINTON', 'GEORGE.LINTON@sakilacustomer.org', 319, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (315, 2, 'KENNETH', 'GOODEN', 'KENNETH.GOODEN@sakilacustomer.org', 320, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (316, 1, 'STEVEN', 'CURLEY', 'STEVEN.CURLEY@sakilacustomer.org', 321, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (317, 2, 'EDWARD', 'BAUGH', 'EDWARD.BAUGH@sakilacustomer.org', 322, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (318, 1, 'BRIAN', 'WYMAN', 'BRIAN.WYMAN@sakilacustomer.org', 323, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (319, 2, 'RONALD', 'WEINER', 'RONALD.WEINER@sakilacustomer.org', 324, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (320, 2, 'ANTHONY', 'SCHWAB', 'ANTHONY.SCHWAB@sakilacustomer.org', 325, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (321, 1, 'KEVIN', 'SCHULER', 'KEVIN.SCHULER@sakilacustomer.org', 326, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (322, 1, 'JASON', 'MORRISSEY', 'JASON.MORRISSEY@sakilacustomer.org', 327, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (323, 2, 'MATTHEW', 'MAHAN', 'MATTHEW.MAHAN@sakilacustomer.org', 328, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (324, 2, 'GARY', 'COY', 'GARY.COY@sakilacustomer.org', 329, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (325, 1, 'TIMOTHY', 'BUNN', 'TIMOTHY.BUNN@sakilacustomer.org', 330, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (326, 1, 'JOSE', 'ANDREW', 'JOSE.ANDREW@sakilacustomer.org', 331, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (327, 2, 'LARRY', 'THRASHER', 'LARRY.THRASHER@sakilacustomer.org', 332, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (328, 2, 'JEFFREY', 'SPEAR', 'JEFFREY.SPEAR@sakilacustomer.org', 333, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (329, 2, 'FRANK', 'WAGGONER', 'FRANK.WAGGONER@sakilacustomer.org', 334, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (330, 1, 'SCOTT', 'SHELLEY', 'SCOTT.SHELLEY@sakilacustomer.org', 335, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (331, 1, 'ERIC', 'ROBERT', 'ERIC.ROBERT@sakilacustomer.org', 336, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (332, 1, 'STEPHEN', 'QUALLS', 'STEPHEN.QUALLS@sakilacustomer.org', 337, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (333, 2, 'ANDREW', 'PURDY', 'ANDREW.PURDY@sakilacustomer.org', 338, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (334, 2, 'RAYMOND', 'MCWHORTER', 'RAYMOND.MCWHORTER@sakilacustomer.org', 339, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (335, 1, 'GREGORY', 'MAULDIN', 'GREGORY.MAULDIN@sakilacustomer.org', 340, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (336, 1, 'JOSHUA', 'MARK', 'JOSHUA.MARK@sakilacustomer.org', 341, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (337, 1, 'JERRY', 'JORDON', 'JERRY.JORDON@sakilacustomer.org', 342, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (338, 1, 'DENNIS', 'GILMAN', 'DENNIS.GILMAN@sakilacustomer.org', 343, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (339, 2, 'WALTER', 'PERRYMAN', 'WALTER.PERRYMAN@sakilacustomer.org', 344, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (340, 1, 'PATRICK', 'NEWSOM', 'PATRICK.NEWSOM@sakilacustomer.org', 345, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (341, 1, 'PETER', 'MENARD', 'PETER.MENARD@sakilacustomer.org', 346, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (342, 1, 'HAROLD', 'MARTINO', 'HAROLD.MARTINO@sakilacustomer.org', 347, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (343, 1, 'DOUGLAS', 'GRAF', 'DOUGLAS.GRAF@sakilacustomer.org', 348, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (344, 1, 'HENRY', 'BILLINGSLEY', 'HENRY.BILLINGSLEY@sakilacustomer.org', 349, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (345, 1, 'CARL', 'ARTIS', 'CARL.ARTIS@sakilacustomer.org', 350, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (346, 1, 'ARTHUR', 'SIMPKINS', 'ARTHUR.SIMPKINS@sakilacustomer.org', 351, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (347, 2, 'RYAN', 'SALISBURY', 'RYAN.SALISBURY@sakilacustomer.org', 352, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (348, 2, 'ROGER', 'QUINTANILLA', 'ROGER.QUINTANILLA@sakilacustomer.org', 353, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (349, 2, 'JOE', 'GILLILAND', 'JOE.GILLILAND@sakilacustomer.org', 354, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (350, 1, 'JUAN', 'FRALEY', 'JUAN.FRALEY@sakilacustomer.org', 355, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (351, 1, 'JACK', 'FOUST', 'JACK.FOUST@sakilacustomer.org', 356, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (352, 1, 'ALBERT', 'CROUSE', 'ALBERT.CROUSE@sakilacustomer.org', 357, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (353, 1, 'JONATHAN', 'SCARBOROUGH', 'JONATHAN.SCARBOROUGH@sakilacustomer.org', 358, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (354, 2, 'JUSTIN', 'NGO', 'JUSTIN.NGO@sakilacustomer.org', 359, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (355, 2, 'TERRY', 'GRISSOM', 'TERRY.GRISSOM@sakilacustomer.org', 360, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (356, 2, 'GERALD', 'FULTZ', 'GERALD.FULTZ@sakilacustomer.org', 361, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (357, 1, 'KEITH', 'RICO', 'KEITH.RICO@sakilacustomer.org', 362, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (358, 2, 'SAMUEL', 'MARLOW', 'SAMUEL.MARLOW@sakilacustomer.org', 363, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (359, 2, 'WILLIE', 'MARKHAM', 'WILLIE.MARKHAM@sakilacustomer.org', 364, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (360, 2, 'RALPH', 'MADRIGAL', 'RALPH.MADRIGAL@sakilacustomer.org', 365, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (361, 2, 'LAWRENCE', 'LAWTON', 'LAWRENCE.LAWTON@sakilacustomer.org', 366, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (362, 1, 'NICHOLAS', 'BARFIELD', 'NICHOLAS.BARFIELD@sakilacustomer.org', 367, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (363, 2, 'ROY', 'WHITING', 'ROY.WHITING@sakilacustomer.org', 368, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (364, 1, 'BENJAMIN', 'VARNEY', 'BENJAMIN.VARNEY@sakilacustomer.org', 369, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (365, 2, 'BRUCE', 'SCHWARZ', 'BRUCE.SCHWARZ@sakilacustomer.org', 370, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (366, 1, 'BRANDON', 'HUEY', 'BRANDON.HUEY@sakilacustomer.org', 371, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (367, 1, 'ADAM', 'GOOCH', 'ADAM.GOOCH@sakilacustomer.org', 372, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (368, 1, 'HARRY', 'ARCE', 'HARRY.ARCE@sakilacustomer.org', 373, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (369, 2, 'FRED', 'WHEAT', 'FRED.WHEAT@sakilacustomer.org', 374, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (370, 2, 'WAYNE', 'TRUONG', 'WAYNE.TRUONG@sakilacustomer.org', 375, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (371, 1, 'BILLY', 'POULIN', 'BILLY.POULIN@sakilacustomer.org', 376, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (372, 2, 'STEVE', 'MACKENZIE', 'STEVE.MACKENZIE@sakilacustomer.org', 377, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (373, 1, 'LOUIS', 'LEONE', 'LOUIS.LEONE@sakilacustomer.org', 378, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (374, 2, 'JEREMY', 'HURTADO', 'JEREMY.HURTADO@sakilacustomer.org', 379, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (375, 2, 'AARON', 'SELBY', 'AARON.SELBY@sakilacustomer.org', 380, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (376, 1, 'RANDY', 'GAITHER', 'RANDY.GAITHER@sakilacustomer.org', 381, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (377, 1, 'HOWARD', 'FORTNER', 'HOWARD.FORTNER@sakilacustomer.org', 382, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (378, 1, 'EUGENE', 'CULPEPPER', 'EUGENE.CULPEPPER@sakilacustomer.org', 383, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (379, 1, 'CARLOS', 'COUGHLIN', 'CARLOS.COUGHLIN@sakilacustomer.org', 384, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (380, 1, 'RUSSELL', 'BRINSON', 'RUSSELL.BRINSON@sakilacustomer.org', 385, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (381, 2, 'BOBBY', 'BOUDREAU', 'BOBBY.BOUDREAU@sakilacustomer.org', 386, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (382, 2, 'VICTOR', 'BARKLEY', 'VICTOR.BARKLEY@sakilacustomer.org', 387, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (383, 1, 'MARTIN', 'BALES', 'MARTIN.BALES@sakilacustomer.org', 388, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (384, 2, 'ERNEST', 'STEPP', 'ERNEST.STEPP@sakilacustomer.org', 389, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (385, 1, 'PHILLIP', 'HOLM', 'PHILLIP.HOLM@sakilacustomer.org', 390, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (386, 1, 'TODD', 'TAN', 'TODD.TAN@sakilacustomer.org', 391, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (387, 2, 'JESSE', 'SCHILLING', 'JESSE.SCHILLING@sakilacustomer.org', 392, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (388, 2, 'CRAIG', 'MORRELL', 'CRAIG.MORRELL@sakilacustomer.org', 393, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (389, 1, 'ALAN', 'KAHN', 'ALAN.KAHN@sakilacustomer.org', 394, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (390, 1, 'SHAWN', 'HEATON', 'SHAWN.HEATON@sakilacustomer.org', 395, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (391, 1, 'CLARENCE', 'GAMEZ', 'CLARENCE.GAMEZ@sakilacustomer.org', 396, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (392, 2, 'SEAN', 'DOUGLASS', 'SEAN.DOUGLASS@sakilacustomer.org', 397, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (393, 1, 'PHILIP', 'CAUSEY', 'PHILIP.CAUSEY@sakilacustomer.org', 398, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (394, 2, 'CHRIS', 'BROTHERS', 'CHRIS.BROTHERS@sakilacustomer.org', 399, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (395, 2, 'JOHNNY', 'TURPIN', 'JOHNNY.TURPIN@sakilacustomer.org', 400, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (396, 1, 'EARL', 'SHANKS', 'EARL.SHANKS@sakilacustomer.org', 401, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (397, 1, 'JIMMY', 'SCHRADER', 'JIMMY.SCHRADER@sakilacustomer.org', 402, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (398, 1, 'ANTONIO', 'MEEK', 'ANTONIO.MEEK@sakilacustomer.org', 403, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (399, 1, 'DANNY', 'ISOM', 'DANNY.ISOM@sakilacustomer.org', 404, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (400, 2, 'BRYAN', 'HARDISON', 'BRYAN.HARDISON@sakilacustomer.org', 405, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (401, 2, 'TONY', 'CARRANZA', 'TONY.CARRANZA@sakilacustomer.org', 406, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (402, 1, 'LUIS', 'YANEZ', 'LUIS.YANEZ@sakilacustomer.org', 407, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (403, 1, 'MIKE', 'WAY', 'MIKE.WAY@sakilacustomer.org', 408, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (404, 2, 'STANLEY', 'SCROGGINS', 'STANLEY.SCROGGINS@sakilacustomer.org', 409, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (405, 1, 'LEONARD', 'SCHOFIELD', 'LEONARD.SCHOFIELD@sakilacustomer.org', 410, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (406, 1, 'NATHAN', 'RUNYON', 'NATHAN.RUNYON@sakilacustomer.org', 411, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (407, 1, 'DALE', 'RATCLIFF', 'DALE.RATCLIFF@sakilacustomer.org', 412, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (408, 1, 'MANUEL', 'MURRELL', 'MANUEL.MURRELL@sakilacustomer.org', 413, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (409, 2, 'RODNEY', 'MOELLER', 'RODNEY.MOELLER@sakilacustomer.org', 414, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (410, 2, 'CURTIS', 'IRBY', 'CURTIS.IRBY@sakilacustomer.org', 415, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (411, 1, 'NORMAN', 'CURRIER', 'NORMAN.CURRIER@sakilacustomer.org', 416, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (412, 2, 'ALLEN', 'BUTTERFIELD', 'ALLEN.BUTTERFIELD@sakilacustomer.org', 417, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (413, 2, 'MARVIN', 'YEE', 'MARVIN.YEE@sakilacustomer.org', 418, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (414, 1, 'VINCENT', 'RALSTON', 'VINCENT.RALSTON@sakilacustomer.org', 419, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (415, 1, 'GLENN', 'PULLEN', 'GLENN.PULLEN@sakilacustomer.org', 420, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (416, 2, 'JEFFERY', 'PINSON', 'JEFFERY.PINSON@sakilacustomer.org', 421, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (417, 1, 'TRAVIS', 'ESTEP', 'TRAVIS.ESTEP@sakilacustomer.org', 422, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (418, 2, 'JEFF', 'EAST', 'JEFF.EAST@sakilacustomer.org', 423, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (419, 1, 'CHAD', 'CARBONE', 'CHAD.CARBONE@sakilacustomer.org', 424, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (420, 1, 'JACOB', 'LANCE', 'JACOB.LANCE@sakilacustomer.org', 425, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (421, 1, 'LEE', 'HAWKS', 'LEE.HAWKS@sakilacustomer.org', 426, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (422, 1, 'MELVIN', 'ELLINGTON', 'MELVIN.ELLINGTON@sakilacustomer.org', 427, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (423, 2, 'ALFRED', 'CASILLAS', 'ALFRED.CASILLAS@sakilacustomer.org', 428, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (424, 2, 'KYLE', 'SPURLOCK', 'KYLE.SPURLOCK@sakilacustomer.org', 429, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (425, 2, 'FRANCIS', 'SIKES', 'FRANCIS.SIKES@sakilacustomer.org', 430, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (426, 1, 'BRADLEY', 'MOTLEY', 'BRADLEY.MOTLEY@sakilacustomer.org', 431, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (427, 2, 'JESUS', 'MCCARTNEY', 'JESUS.MCCARTNEY@sakilacustomer.org', 432, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (428, 2, 'HERBERT', 'KRUGER', 'HERBERT.KRUGER@sakilacustomer.org', 433, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (429, 2, 'FREDERICK', 'ISBELL', 'FREDERICK.ISBELL@sakilacustomer.org', 434, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (430, 1, 'RAY', 'HOULE', 'RAY.HOULE@sakilacustomer.org', 435, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (431, 2, 'JOEL', 'FRANCISCO', 'JOEL.FRANCISCO@sakilacustomer.org', 436, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (432, 1, 'EDWIN', 'BURK', 'EDWIN.BURK@sakilacustomer.org', 437, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (433, 1, 'DON', 'BONE', 'DON.BONE@sakilacustomer.org', 438, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (434, 1, 'EDDIE', 'TOMLIN', 'EDDIE.TOMLIN@sakilacustomer.org', 439, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (435, 2, 'RICKY', 'SHELBY', 'RICKY.SHELBY@sakilacustomer.org', 440, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (436, 1, 'TROY', 'QUIGLEY', 'TROY.QUIGLEY@sakilacustomer.org', 441, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (437, 2, 'RANDALL', 'NEUMANN', 'RANDALL.NEUMANN@sakilacustomer.org', 442, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (438, 1, 'BARRY', 'LOVELACE', 'BARRY.LOVELACE@sakilacustomer.org', 443, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (439, 2, 'ALEXANDER', 'FENNELL', 'ALEXANDER.FENNELL@sakilacustomer.org', 444, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (440, 1, 'BERNARD', 'COLBY', 'BERNARD.COLBY@sakilacustomer.org', 445, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (441, 1, 'MARIO', 'CHEATHAM', 'MARIO.CHEATHAM@sakilacustomer.org', 446, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (442, 1, 'LEROY', 'BUSTAMANTE', 'LEROY.BUSTAMANTE@sakilacustomer.org', 447, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (443, 2, 'FRANCISCO', 'SKIDMORE', 'FRANCISCO.SKIDMORE@sakilacustomer.org', 448, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (444, 2, 'MARCUS', 'HIDALGO', 'MARCUS.HIDALGO@sakilacustomer.org', 449, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (445, 1, 'MICHEAL', 'FORMAN', 'MICHEAL.FORMAN@sakilacustomer.org', 450, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (446, 2, 'THEODORE', 'CULP', 'THEODORE.CULP@sakilacustomer.org', 451, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (447, 1, 'CLIFFORD', 'BOWENS', 'CLIFFORD.BOWENS@sakilacustomer.org', 452, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (448, 1, 'MIGUEL', 'BETANCOURT', 'MIGUEL.BETANCOURT@sakilacustomer.org', 453, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (449, 2, 'OSCAR', 'AQUINO', 'OSCAR.AQUINO@sakilacustomer.org', 454, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (450, 1, 'JAY', 'ROBB', 'JAY.ROBB@sakilacustomer.org', 455, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (451, 1, 'JIM', 'REA', 'JIM.REA@sakilacustomer.org', 456, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (452, 1, 'TOM', 'MILNER', 'TOM.MILNER@sakilacustomer.org', 457, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (453, 1, 'CALVIN', 'MARTEL', 'CALVIN.MARTEL@sakilacustomer.org', 458, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (454, 2, 'ALEX', 'GRESHAM', 'ALEX.GRESHAM@sakilacustomer.org', 459, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (455, 2, 'JON', 'WILES', 'JON.WILES@sakilacustomer.org', 460, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (456, 2, 'RONNIE', 'RICKETTS', 'RONNIE.RICKETTS@sakilacustomer.org', 461, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (457, 2, 'BILL', 'GAVIN', 'BILL.GAVIN@sakilacustomer.org', 462, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (458, 1, 'LLOYD', 'DOWD', 'LLOYD.DOWD@sakilacustomer.org', 463, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (459, 1, 'TOMMY', 'COLLAZO', 'TOMMY.COLLAZO@sakilacustomer.org', 464, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (460, 1, 'LEON', 'BOSTIC', 'LEON.BOSTIC@sakilacustomer.org', 465, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (461, 1, 'DEREK', 'BLAKELY', 'DEREK.BLAKELY@sakilacustomer.org', 466, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (462, 2, 'WARREN', 'SHERROD', 'WARREN.SHERROD@sakilacustomer.org', 467, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (463, 2, 'DARRELL', 'POWER', 'DARRELL.POWER@sakilacustomer.org', 468, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (464, 1, 'JEROME', 'KENYON', 'JEROME.KENYON@sakilacustomer.org', 469, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (465, 1, 'FLOYD', 'GANDY', 'FLOYD.GANDY@sakilacustomer.org', 470, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (466, 1, 'LEO', 'EBERT', 'LEO.EBERT@sakilacustomer.org', 471, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (467, 2, 'ALVIN', 'DELOACH', 'ALVIN.DELOACH@sakilacustomer.org', 472, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (468, 1, 'TIM', 'CARY', 'TIM.CARY@sakilacustomer.org', 473, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (469, 2, 'WESLEY', 'BULL', 'WESLEY.BULL@sakilacustomer.org', 474, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (470, 1, 'GORDON', 'ALLARD', 'GORDON.ALLARD@sakilacustomer.org', 475, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (471, 1, 'DEAN', 'SAUER', 'DEAN.SAUER@sakilacustomer.org', 476, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (472, 1, 'GREG', 'ROBINS', 'GREG.ROBINS@sakilacustomer.org', 477, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (473, 2, 'JORGE', 'OLIVARES', 'JORGE.OLIVARES@sakilacustomer.org', 478, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (474, 2, 'DUSTIN', 'GILLETTE', 'DUSTIN.GILLETTE@sakilacustomer.org', 479, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (475, 2, 'PEDRO', 'CHESTNUT', 'PEDRO.CHESTNUT@sakilacustomer.org', 480, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (476, 1, 'DERRICK', 'BOURQUE', 'DERRICK.BOURQUE@sakilacustomer.org', 481, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (477, 1, 'DAN', 'PAINE', 'DAN.PAINE@sakilacustomer.org', 482, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (478, 1, 'LEWIS', 'LYMAN', 'LEWIS.LYMAN@sakilacustomer.org', 483, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (479, 1, 'ZACHARY', 'HITE', 'ZACHARY.HITE@sakilacustomer.org', 484, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (480, 1, 'COREY', 'HAUSER', 'COREY.HAUSER@sakilacustomer.org', 485, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (481, 1, 'HERMAN', 'DEVORE', 'HERMAN.DEVORE@sakilacustomer.org', 486, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (482, 1, 'MAURICE', 'CRAWLEY', 'MAURICE.CRAWLEY@sakilacustomer.org', 487, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (483, 2, 'VERNON', 'CHAPA', 'VERNON.CHAPA@sakilacustomer.org', 488, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (484, 1, 'ROBERTO', 'VU', 'ROBERTO.VU@sakilacustomer.org', 489, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (485, 1, 'CLYDE', 'TOBIAS', 'CLYDE.TOBIAS@sakilacustomer.org', 490, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (486, 1, 'GLEN', 'TALBERT', 'GLEN.TALBERT@sakilacustomer.org', 491, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (487, 2, 'HECTOR', 'POINDEXTER', 'HECTOR.POINDEXTER@sakilacustomer.org', 492, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (488, 2, 'SHANE', 'MILLARD', 'SHANE.MILLARD@sakilacustomer.org', 493, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (489, 1, 'RICARDO', 'MEADOR', 'RICARDO.MEADOR@sakilacustomer.org', 494, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (490, 1, 'SAM', 'MCDUFFIE', 'SAM.MCDUFFIE@sakilacustomer.org', 495, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (491, 2, 'RICK', 'MATTOX', 'RICK.MATTOX@sakilacustomer.org', 496, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (492, 2, 'LESTER', 'KRAUS', 'LESTER.KRAUS@sakilacustomer.org', 497, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (493, 1, 'BRENT', 'HARKINS', 'BRENT.HARKINS@sakilacustomer.org', 498, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (494, 2, 'RAMON', 'CHOATE', 'RAMON.CHOATE@sakilacustomer.org', 499, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (495, 2, 'CHARLIE', 'BESS', 'CHARLIE.BESS@sakilacustomer.org', 500, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (496, 2, 'TYLER', 'WREN', 'TYLER.WREN@sakilacustomer.org', 501, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (497, 2, 'GILBERT', 'SLEDGE', 'GILBERT.SLEDGE@sakilacustomer.org', 502, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (498, 1, 'GENE', 'SANBORN', 'GENE.SANBORN@sakilacustomer.org', 503, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (499, 2, 'MARC', 'OUTLAW', 'MARC.OUTLAW@sakilacustomer.org', 504, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (500, 1, 'REGINALD', 'KINDER', 'REGINALD.KINDER@sakilacustomer.org', 505, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (501, 1, 'RUBEN', 'GEARY', 'RUBEN.GEARY@sakilacustomer.org', 506, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (502, 1, 'BRETT', 'CORNWELL', 'BRETT.CORNWELL@sakilacustomer.org', 507, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (503, 1, 'ANGEL', 'BARCLAY', 'ANGEL.BARCLAY@sakilacustomer.org', 508, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (504, 1, 'NATHANIEL', 'ADAM', 'NATHANIEL.ADAM@sakilacustomer.org', 509, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (505, 1, 'RAFAEL', 'ABNEY', 'RAFAEL.ABNEY@sakilacustomer.org', 510, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (506, 2, 'LESLIE', 'SEWARD', 'LESLIE.SEWARD@sakilacustomer.org', 511, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (507, 2, 'EDGAR', 'RHOADS', 'EDGAR.RHOADS@sakilacustomer.org', 512, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (508, 2, 'MILTON', 'HOWLAND', 'MILTON.HOWLAND@sakilacustomer.org', 513, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (509, 1, 'RAUL', 'FORTIER', 'RAUL.FORTIER@sakilacustomer.org', 514, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (510, 2, 'BEN', 'EASTER', 'BEN.EASTER@sakilacustomer.org', 515, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (511, 1, 'CHESTER', 'BENNER', 'CHESTER.BENNER@sakilacustomer.org', 516, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (512, 1, 'CECIL', 'VINES', 'CECIL.VINES@sakilacustomer.org', 517, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (513, 2, 'DUANE', 'TUBBS', 'DUANE.TUBBS@sakilacustomer.org', 519, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (514, 2, 'FRANKLIN', 'TROUTMAN', 'FRANKLIN.TROUTMAN@sakilacustomer.org', 520, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (515, 1, 'ANDRE', 'RAPP', 'ANDRE.RAPP@sakilacustomer.org', 521, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (516, 2, 'ELMER', 'NOE', 'ELMER.NOE@sakilacustomer.org', 522, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (517, 2, 'BRAD', 'MCCURDY', 'BRAD.MCCURDY@sakilacustomer.org', 523, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (518, 1, 'GABRIEL', 'HARDER', 'GABRIEL.HARDER@sakilacustomer.org', 524, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (519, 2, 'RON', 'DELUCA', 'RON.DELUCA@sakilacustomer.org', 525, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (520, 2, 'MITCHELL', 'WESTMORELAND', 'MITCHELL.WESTMORELAND@sakilacustomer.org', 526, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (521, 2, 'ROLAND', 'SOUTH', 'ROLAND.SOUTH@sakilacustomer.org', 527, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (522, 2, 'ARNOLD', 'HAVENS', 'ARNOLD.HAVENS@sakilacustomer.org', 528, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (523, 1, 'HARVEY', 'GUAJARDO', 'HARVEY.GUAJARDO@sakilacustomer.org', 529, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (524, 1, 'JARED', 'ELY', 'JARED.ELY@sakilacustomer.org', 530, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (525, 2, 'ADRIAN', 'CLARY', 'ADRIAN.CLARY@sakilacustomer.org', 531, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (526, 2, 'KARL', 'SEAL', 'KARL.SEAL@sakilacustomer.org', 532, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (527, 1, 'CORY', 'MEEHAN', 'CORY.MEEHAN@sakilacustomer.org', 533, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (528, 1, 'CLAUDE', 'HERZOG', 'CLAUDE.HERZOG@sakilacustomer.org', 534, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (529, 2, 'ERIK', 'GUILLEN', 'ERIK.GUILLEN@sakilacustomer.org', 535, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (530, 2, 'DARRYL', 'ASHCRAFT', 'DARRYL.ASHCRAFT@sakilacustomer.org', 536, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (531, 2, 'JAMIE', 'WAUGH', 'JAMIE.WAUGH@sakilacustomer.org', 537, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (532, 2, 'NEIL', 'RENNER', 'NEIL.RENNER@sakilacustomer.org', 538, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (533, 1, 'JESSIE', 'MILAM', 'JESSIE.MILAM@sakilacustomer.org', 539, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (534, 1, 'CHRISTIAN', 'JUNG', 'CHRISTIAN.JUNG@sakilacustomer.org', 540, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (535, 1, 'JAVIER', 'ELROD', 'JAVIER.ELROD@sakilacustomer.org', 541, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (536, 2, 'FERNANDO', 'CHURCHILL', 'FERNANDO.CHURCHILL@sakilacustomer.org', 542, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (537, 2, 'CLINTON', 'BUFORD', 'CLINTON.BUFORD@sakilacustomer.org', 543, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (538, 2, 'TED', 'BREAUX', 'TED.BREAUX@sakilacustomer.org', 544, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (539, 1, 'MATHEW', 'BOLIN', 'MATHEW.BOLIN@sakilacustomer.org', 545, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (540, 1, 'TYRONE', 'ASHER', 'TYRONE.ASHER@sakilacustomer.org', 546, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (541, 2, 'DARREN', 'WINDHAM', 'DARREN.WINDHAM@sakilacustomer.org', 547, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (542, 2, 'LONNIE', 'TIRADO', 'LONNIE.TIRADO@sakilacustomer.org', 548, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (543, 1, 'LANCE', 'PEMBERTON', 'LANCE.PEMBERTON@sakilacustomer.org', 549, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (544, 2, 'CODY', 'NOLEN', 'CODY.NOLEN@sakilacustomer.org', 550, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (545, 2, 'JULIO', 'NOLAND', 'JULIO.NOLAND@sakilacustomer.org', 551, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (546, 1, 'KELLY', 'KNOTT', 'KELLY.KNOTT@sakilacustomer.org', 552, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (547, 1, 'KURT', 'EMMONS', 'KURT.EMMONS@sakilacustomer.org', 553, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (548, 1, 'ALLAN', 'CORNISH', 'ALLAN.CORNISH@sakilacustomer.org', 554, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (549, 1, 'NELSON', 'CHRISTENSON', 'NELSON.CHRISTENSON@sakilacustomer.org', 555, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (550, 2, 'GUY', 'BROWNLEE', 'GUY.BROWNLEE@sakilacustomer.org', 556, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (551, 2, 'CLAYTON', 'BARBEE', 'CLAYTON.BARBEE@sakilacustomer.org', 557, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (552, 2, 'HUGH', 'WALDROP', 'HUGH.WALDROP@sakilacustomer.org', 558, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (553, 1, 'MAX', 'PITT', 'MAX.PITT@sakilacustomer.org', 559, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (554, 1, 'DWAYNE', 'OLVERA', 'DWAYNE.OLVERA@sakilacustomer.org', 560, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (555, 1, 'DWIGHT', 'LOMBARDI', 'DWIGHT.LOMBARDI@sakilacustomer.org', 561, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (556, 2, 'ARMANDO', 'GRUBER', 'ARMANDO.GRUBER@sakilacustomer.org', 562, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (557, 1, 'FELIX', 'GAFFNEY', 'FELIX.GAFFNEY@sakilacustomer.org', 563, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (558, 1, 'JIMMIE', 'EGGLESTON', 'JIMMIE.EGGLESTON@sakilacustomer.org', 564, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (559, 2, 'EVERETT', 'BANDA', 'EVERETT.BANDA@sakilacustomer.org', 565, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (560, 1, 'JORDAN', 'ARCHULETA', 'JORDAN.ARCHULETA@sakilacustomer.org', 566, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (561, 2, 'IAN', 'STILL', 'IAN.STILL@sakilacustomer.org', 567, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (562, 1, 'WALLACE', 'SLONE', 'WALLACE.SLONE@sakilacustomer.org', 568, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (563, 2, 'KEN', 'PREWITT', 'KEN.PREWITT@sakilacustomer.org', 569, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (564, 2, 'BOB', 'PFEIFFER', 'BOB.PFEIFFER@sakilacustomer.org', 570, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (565, 2, 'JAIME', 'NETTLES', 'JAIME.NETTLES@sakilacustomer.org', 571, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (566, 1, 'CASEY', 'MENA', 'CASEY.MENA@sakilacustomer.org', 572, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (567, 2, 'ALFREDO', 'MCADAMS', 'ALFREDO.MCADAMS@sakilacustomer.org', 573, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (568, 2, 'ALBERTO', 'HENNING', 'ALBERTO.HENNING@sakilacustomer.org', 574, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (569, 2, 'DAVE', 'GARDINER', 'DAVE.GARDINER@sakilacustomer.org', 575, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (570, 2, 'IVAN', 'CROMWELL', 'IVAN.CROMWELL@sakilacustomer.org', 576, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (571, 2, 'JOHNNIE', 'CHISHOLM', 'JOHNNIE.CHISHOLM@sakilacustomer.org', 577, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (572, 1, 'SIDNEY', 'BURLESON', 'SIDNEY.BURLESON@sakilacustomer.org', 578, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (573, 1, 'BYRON', 'BOX', 'BYRON.BOX@sakilacustomer.org', 579, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (574, 2, 'JULIAN', 'VEST', 'JULIAN.VEST@sakilacustomer.org', 580, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (575, 2, 'ISAAC', 'OGLESBY', 'ISAAC.OGLESBY@sakilacustomer.org', 581, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (576, 2, 'MORRIS', 'MCCARTER', 'MORRIS.MCCARTER@sakilacustomer.org', 582, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (577, 2, 'CLIFTON', 'MALCOLM', 'CLIFTON.MALCOLM@sakilacustomer.org', 583, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (578, 2, 'WILLARD', 'LUMPKIN', 'WILLARD.LUMPKIN@sakilacustomer.org', 584, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (579, 2, 'DARYL', 'LARUE', 'DARYL.LARUE@sakilacustomer.org', 585, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (580, 1, 'ROSS', 'GREY', 'ROSS.GREY@sakilacustomer.org', 586, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (581, 1, 'VIRGIL', 'WOFFORD', 'VIRGIL.WOFFORD@sakilacustomer.org', 587, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (582, 2, 'ANDY', 'VANHORN', 'ANDY.VANHORN@sakilacustomer.org', 588, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (583, 1, 'MARSHALL', 'THORN', 'MARSHALL.THORN@sakilacustomer.org', 589, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (584, 2, 'SALVADOR', 'TEEL', 'SALVADOR.TEEL@sakilacustomer.org', 590, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (585, 1, 'PERRY', 'SWAFFORD', 'PERRY.SWAFFORD@sakilacustomer.org', 591, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (586, 1, 'KIRK', 'STCLAIR', 'KIRK.STCLAIR@sakilacustomer.org', 592, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (587, 1, 'SERGIO', 'STANFIELD', 'SERGIO.STANFIELD@sakilacustomer.org', 593, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (588, 1, 'MARION', 'OCAMPO', 'MARION.OCAMPO@sakilacustomer.org', 594, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (589, 1, 'TRACY', 'HERRMANN', 'TRACY.HERRMANN@sakilacustomer.org', 595, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (590, 2, 'SETH', 'HANNON', 'SETH.HANNON@sakilacustomer.org', 596, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (591, 1, 'KENT', 'ARSENAULT', 'KENT.ARSENAULT@sakilacustomer.org', 597, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (592, 1, 'TERRANCE', 'ROUSH', 'TERRANCE.ROUSH@sakilacustomer.org', 598, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (593, 2, 'RENE', 'MCALISTER', 'RENE.MCALISTER@sakilacustomer.org', 599, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (594, 1, 'EDUARDO', 'HIATT', 'EDUARDO.HIATT@sakilacustomer.org', 600, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (595, 1, 'TERRENCE', 'GUNDERSON', 'TERRENCE.GUNDERSON@sakilacustomer.org', 601, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (596, 1, 'ENRIQUE', 'FORSYTHE', 'ENRIQUE.FORSYTHE@sakilacustomer.org', 602, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (597, 1, 'FREDDIE', 'DUGGAN', 'FREDDIE.DUGGAN@sakilacustomer.org', 603, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (598, 1, 'WADE', 'DELVALLE', 'WADE.DELVALLE@sakilacustomer.org', 604, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (599, 2, 'AUSTIN', 'CINTRON', 'AUSTIN.CINTRON@sakilacustomer.org', 605, true, '2006-02-14', '2006-02-15 09:57:20'); INSERT INTO customer (customer_id, store_id, first_name, last_name, email, address_id, active, create_date, last_update) VALUES (3, 1, 'LINDA', 'WILLIAMS', 'LINDA.WILLIAMS@sakilacustomer.org', 7, false, '2006-02-14', '2018-12-13 17:31:58.113278'); SELECT pg_catalog.setval('customer_customer_id_seq', 599, true); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (3, 'ADAPTATION HOLES', 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory', 2006, 1, NULL, true, 7, 2.99, 50, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''adapt'':1 ''astound'':4 ''baloon'':19 ''car'':11 ''factori'':20 ''hole'':2 ''lumberjack'':8,16 ''must'':13 ''reflect'':5 ''sink'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (4, 'AFFAIR PREJUDICE', 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank', 2006, 1, NULL, true, 5, 2.99, 117, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''affair'':1 ''chase'':14 ''documentari'':5 ''fanci'':4 ''frisbe'':8 ''lumberjack'':11 ''monkey'':16 ''must'':13 ''prejudic'':2 ''shark'':19 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (5, 'AFRICAN EGG', 'A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico', 2006, 1, NULL, true, 6, 2.99, 130, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''african'':1 ''chef'':11 ''dentist'':14 ''documentari'':7 ''egg'':2 ''fast'':5 ''fast-pac'':4 ''forens'':19 ''gulf'':23 ''mexico'':25 ''must'':16 ''pace'':6 ''pastri'':10 ''psychologist'':20 ''pursu'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (6, 'AGENT TRUMAN', 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China', 2006, 1, NULL, true, 3, 2.99, 169, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''agent'':1 ''ancient'':19 ''boy'':11 ''china'':20 ''escap'':14 ''intrepid'':4 ''must'':13 ''panorama'':5 ''robot'':8 ''sumo'':16 ''truman'':2 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (7, 'AIRPLANE SIERRA', 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat', 2006, 1, NULL, true, 6, 4.99, 62, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''airplan'':1 ''boat'':20 ''butler'':11,16 ''discov'':14 ''hunter'':8 ''jet'':19 ''must'':13 ''saga'':5 ''sierra'':2 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (8, 'AIRPORT POLLOCK', 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India', 2006, 1, NULL, true, 6, 4.99, 54, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''airport'':1 ''ancient'':18 ''confront'':14 ''epic'':4 ''girl'':11 ''india'':19 ''monkey'':16 ''moos'':8 ''must'':13 ''pollock'':2 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (9, 'ALABAMA DEVIL', 'A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat', 2006, 1, NULL, true, 3, 2.99, 114, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''administr'':9 ''alabama'':1 ''boat'':23 ''databas'':8 ''devil'':2 ''jet'':22 ''mad'':12,18 ''must'':15 ''outgun'':16 ''panorama'':5 ''scientist'':13,19 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (10, 'ALADDIN CALENDAR', 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China', 2006, 1, NULL, true, 6, 4.99, 63, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''aladdin'':1 ''ancient'':20 ''calendar'':2 ''china'':21 ''feminist'':18 ''lumberjack'':13 ''man'':10 ''must'':15 ''pack'':6 ''reach'':16 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (11, 'ALAMO VIDEOTAPE', 'A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention', 2006, 1, NULL, true, 6, 0.99, 126, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''alamo'':1 ''bore'':4 ''butler'':8 ''cat'':11 ''chef'':17 ''convent'':21 ''epistl'':5 ''fight'':14 ''must'':13 ''mysql'':20 ''pastri'':16 ''videotap'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (12, 'ALASKA PHANTOM', 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia', 2006, 1, NULL, true, 6, 0.99, 136, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''alaska'':1 ''australia'':19 ''boy'':17 ''chef'':12 ''fanci'':4 ''hunter'':8 ''must'':14 ''pastri'':11 ''phantom'':2 ''saga'':5 ''vanquish'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (213, 'DATE SPEED', 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 104, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''compos'':8 ''convent'':20 ''date'':1 ''dentist'':16 ''discov'':14 ''moos'':11 ''must'':13 ''mysql'':19 ''saga'':5 ''speed'':2 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (13, 'ALI FOREVER', 'A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies', 2006, 1, NULL, true, 4, 4.99, 150, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''ali'':1 ''battl'':16 ''canadian'':21 ''crocodil'':13 ''dentist'':10 ''drama'':7 ''feminist'':18 ''forev'':2 ''must'':15 ''pack'':6 ''rocki'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (14, 'ALICE FANTASIA', 'A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia', 2006, 1, NULL, true, 6, 0.99, 94, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''administr'':13 ''alic'':1 ''databas'':12 ''drama'':5 ''emot'':4 ''fantasia'':2 ''georgia'':21 ''must'':15 ''pioneer'':18 ''shark'':9 ''soviet'':20 ''vanquish'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (15, 'ALIEN CENTER', 'A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention', 2006, 1, NULL, true, 5, 2.99, 46, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''alien'':1 ''battl'':15 ''brilliant'':4 ''cat'':8 ''center'':2 ''convent'':21 ''drama'':5 ''feminist'':17 ''mad'':11 ''must'':14 ''mysql'':20 ''scientist'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (16, 'ALLEY EVOLUTION', 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans', 2006, 1, NULL, true, 6, 2.99, 180, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''alley'':1 ''astronaut'':18 ''battl'':16 ''compos'':13 ''drama'':7 ''evolut'':2 ''fast'':5 ''fast-pac'':4 ''must'':15 ''new'':20 ''orlean'':21 ''pace'':6 ''robot'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (17, 'ALONE TRIP', 'A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House', 2006, 1, NULL, true, 3, 0.99, 82, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':22 ''alon'':1 ''boat'':19 ''charact'':7 ''compos'':11 ''dog'':14 ''fast'':5 ''fast-pac'':4 ''fun'':23 ''hous'':24 ''must'':16 ''outgun'':17 ''pace'':6 ''studi'':8 ''trip'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (18, 'ALTER VICTORY', 'A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 57, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''agent'':17 ''alter'':1 ''canadian'':20 ''compos'':8 ''drama'':5 ''feminist'':11 ''meet'':14 ''must'':13 ''rocki'':21 ''secret'':16 ''thought'':4 ''victori'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (19, 'AMADEUS HOLY', 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon', 2006, 1, NULL, true, 6, 0.99, 113, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''amadeus'':1 ''baloon'':20 ''battl'':15 ''display'':5 ''emot'':4 ''holi'':2 ''man'':17 ''must'':14 ''pioneer'':8 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (20, 'AMELIE HELLFIGHTERS', 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon', 2006, 1, NULL, true, 4, 4.99, 79, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ameli'':1 ''baloon'':19 ''bore'':4 ''conquer'':14 ''drama'':5 ''hellfight'':2 ''must'':13 ''squirrel'':11 ''student'':16 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (21, 'AMERICAN CIRCUS', 'A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank', 2006, 1, NULL, true, 3, 4.99, 129, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''administr'':17 ''american'':1 ''astronaut'':11 ''circus'':2 ''databas'':16 ''drama'':5 ''face'':14 ''girl'':8 ''insight'':4 ''must'':13 ''shark'':20 ''tank'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (22, 'AMISTAD MIDSUMMER', 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California', 2006, 1, NULL, true, 6, 2.99, 85, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''amistad'':1 ''california'':20 ''charact'':5 ''crocodil'':12 ''dentist'':9 ''emot'':4 ''meet'':15 ''midsumm'':2 ''must'':14 ''studi'':6 ''sumo'':17 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (23, 'ANACONDA CONFESSIONS', 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia', 2006, 1, NULL, true, 3, 0.99, 92, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''anaconda'':1 ''australia'':18 ''confess'':2 ''dentist'':8,11 ''display'':5 ''fight'':14 ''girl'':16 ''lacklustur'':4 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (24, 'ANALYZE HOOSIERS', 'A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert', 2006, 1, NULL, true, 6, 2.99, 181, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''analyz'':1 ''chef'':12 ''desert'':21 ''display'':5 ''explor'':8 ''feminist'':17 ''hoosier'':2 ''must'':14 ''overcom'':15 ''pastri'':11 ''sahara'':20 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (25, 'ANGELS LIFE', 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin', 2006, 1, NULL, true, 3, 2.99, 74, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''angel'':1 ''astronaut'':11 ''battl'':14 ''berlin'':18 ''display'':5 ''life'':2 ''must'':13 ''robot'':16 ''thought'':4 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (26, 'ANNIE IDENTITY', 'A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 86, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':20 ''amaz'':4 ''amus'':21 ''anni'':1 ''boat'':12 ''chef'':9 ''escap'':15 ''ident'':2 ''must'':14 ''panorama'':5 ''park'':22 ''pastri'':8 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (27, 'ANONYMOUS HUMAN', 'A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank', 2006, 1, NULL, true, 7, 0.99, 179, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':9,18 ''amaz'':4 ''anonym'':1 ''astronaut'':12 ''databas'':8,17 ''human'':2 ''must'':14 ''outrac'':15 ''reflect'':5 ''shark'':21 ''tank'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (28, 'ANTHEM LUKE', 'A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 4.99, 91, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''amus'':20 ''anthem'':1 ''dog'':16 ''luke'':2 ''must'':13 ''outrac'':14 ''panorama'':5 ''park'':21 ''touch'':4 ''waitress'':8 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (29, 'ANTITRUST TOMATOES', 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India', 2006, 1, NULL, true, 5, 2.99, 168, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':17 ''ancient'':19 ''antitrust'':1 ''databas'':16 ''fate'':4 ''feminist'':11 ''india'':20 ''must'':13 ''succumb'':14 ''tomato'':2 ''woman'':8 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (30, 'ANYTHING SAVANNAH', 'A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House', 2006, 1, NULL, true, 4, 2.99, 82, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''anyth'':1 ''chase'':15 ''chef'':9 ''epic'':4 ''feminist'':17 ''fun'':21 ''hous'':22 ''must'':14 ''pastri'':8 ''savannah'':2 ''stori'':5 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (31, 'APACHE DIVINE', 'A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat', 2006, 1, NULL, true, 5, 4.99, 92, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''apach'':1 ''awe'':5 ''awe-inspir'':4 ''boat'':25 ''chef'':11 ''divin'':2 ''inspir'':6 ''must'':16 ''overcom'':17 ''pastri'':10 ''reflect'':7 ''sumo'':19 ''teacher'':14 ''u'':24 ''u-boat'':23 ''wrestler'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (32, 'APOCALYPSE FLAMINGOS', 'A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 4.99, 119, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':19 ''amus'':20 ''apocalyps'':1 ''astound'':4 ''defeat'':14 ''dog'':8 ''flamingo'':2 ''must'':13 ''park'':21 ''squirrel'':11 ''stori'':5 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (33, 'APOLLO TEEN', 'A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 2.99, 153, 15.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':22 ''action'':5 ''action-pack'':4 ''apollo'':1 ''crocodil'':10 ''explor'':13 ''find'':16 ''mine'':23 ''must'':15 ''pack'':6 ''reflect'':7 ''shaft'':24 ''sumo'':18 ''teen'':2 ''wrestler'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (34, 'ARABIA DOGMA', 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria', 2006, 1, NULL, true, 6, 0.99, 62, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''arabia'':1 ''cow'':12 ''defeat'':15 ''dogma'':2 ''epistl'':5 ''mad'':11 ''madman'':8 ''must'':14 ''nigeria'':19 ''student'':17 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (35, 'ARACHNOPHOBIA ROLLERCOASTER', 'A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 147, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''arachnophobia'':1 ''chef'':11 ''compos'':14 ''discov'':17 ''first'':23 ''mad'':19 ''man'':24 ''must'':16 ''pack'':6 ''pastri'':10 ''reflect'':7 ''rollercoast'':2 ''scientist'':20 ''space'':25 ''station'':26'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (90, 'BOULEVARD MOB', 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China', 2006, 1, NULL, true, 3, 0.99, 63, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':18 ''boulevard'':1 ''china'':19 ''confront'':14 ''epistl'':5 ''fate'':4 ''lumberjack'':16 ''mob'':2 ''monkey'':11 ''moos'':8 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (36, 'ARGONAUTS TOWN', 'A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 0.99, 127, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':20 ''argonaut'':1 ''butler'':12 ''challeng'':15 ''emot'':4 ''epistl'':5 ''forens'':8 ''mine'':21 ''must'':14 ''psychologist'':9 ''shaft'':22 ''town'':2 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (37, 'ARIZONA BANG', 'A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery', 2006, 1, NULL, true, 3, 2.99, 121, 28.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''arizona'':1 ''bang'':2 ''brilliant'':4 ''cow'':13 ''mad'':8,12 ''meet'':16 ''monasteri'':21 ''must'':15 ''panorama'':5 ''pioneer'':18 ''scientist'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (38, 'ARK RIDGEMONT', 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert', 2006, 1, NULL, true, 6, 0.99, 68, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ark'':1 ''beauti'':4 ''desert'':20 ''explor'':16 ''monkey'':11 ''must'':13 ''pioneer'':8 ''pursu'':14 ''ridgemont'':2 ''sahara'':19 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (39, 'ARMAGEDDON LOST', 'A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 0.99, 99, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':21 ''armageddon'':1 ''boat'':10 ''compos'':18 ''fast'':5 ''fast-pac'':4 ''lost'':2 ''mine'':22 ''must'':15 ''pace'':6 ''shaft'':23 ''succumb'':16 ''tale'':7 ''teacher'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (40, 'ARMY FLINTSTONES', 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria', 2006, 1, NULL, true, 4, 0.99, 148, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':9 ''armi'':1 ''battl'':15 ''bore'':4 ''databas'':8 ''flintston'':2 ''must'':14 ''nigeria'':19 ''saga'':5 ''waitress'':17 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (41, 'ARSENIC INDEPENDENCE', 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin', 2006, 1, NULL, true, 4, 0.99, 137, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''arsenic'':1 ''berlin'':19 ''cow'':9 ''dentist'':17 ''documentari'':5 ''fanci'':4 ''find'':15 ''independ'':2 ''mad'':8 ''must'':14 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (42, 'ARTIST COLDBLOODED', 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California', 2006, 1, NULL, true, 5, 2.99, 170, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''artist'':1 ''california'':18 ''challeng'':14 ''coldblood'':2 ''moos'':11 ''must'':13 ''reflect'':5 ''robot'':8 ''stun'':4 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (43, 'ATLANTIS CAUSE', 'A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank', 2006, 1, NULL, true, 6, 2.99, 170, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''atlanti'':1 ''caus'':2 ''feminist'':8 ''fight'':14 ''hunter'':11 ''must'':13 ''shark'':20 ''tank'':21 ''technic'':16 ''thrill'':4 ''writer'':17 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (44, 'ATTACKS HATE', 'A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 4.99, 113, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':23 ''attack'':1 ''fast'':5 ''fast-pac'':4 ''feminist'':20 ''find'':18 ''hate'':2 ''mad'':14 ''mine'':24 ''must'':17 ''pace'':6 ''panorama'':7 ''scientist'':15 ''shaft'':25 ''technic'':10 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (45, 'ATTRACTION NEWTON', 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan', 2006, 1, NULL, true, 5, 4.99, 83, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''ancient'':18 ''astound'':4 ''attract'':1 ''compos'':8 ''frisbe'':11 ''husband'':16 ''japan'':19 ''must'':13 ''newton'':2 ''panorama'':5 ''reach'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (46, 'AUTUMN CROW', 'A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert', 2006, 1, NULL, true, 3, 4.99, 108, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''autumn'':1 ''battl'':15 ''beauti'':4 ''cow'':12 ''crow'':2 ''dentist'':8 ''desert'':21 ''mad'':11 ''moos'':17 ''must'':14 ''sahara'':20 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (47, 'BABY HALL', 'A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 4.99, 153, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':21 ''babi'':1 ''bore'':4 ''charact'':5 ''feminist'':18 ''girl'':13 ''hall'':2 ''mine'':22 ''must'':15 ''outrac'':16 ''shaft'':23 ''shark'':10 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (48, 'BACKLASH UNDEFEATED', 'A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery', 2006, 1, NULL, true, 3, 4.99, 118, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''backlash'':1 ''car'':19 ''charact'':5 ''cow'':14 ''kill'':17 ''mad'':9,13 ''monasteri'':22 ''must'':16 ''scientist'':10 ''studi'':6 ''stun'':4 ''undef'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (49, 'BADMAN DAWN', 'A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat', 2006, 1, NULL, true, 6, 2.99, 162, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''badman'':1 ''boat'':21 ''compos'':11 ''dawn'':2 ''emot'':4 ''escap'':14 ''jet'':20 ''mad'':16 ''must'':13 ''panorama'':5 ''pioneer'':8 ''scientist'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (50, 'BAKED CLEOPATRA', 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery', 2006, 1, NULL, true, 3, 2.99, 182, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''bake'':1 ''cleopatra'':2 ''drama'':5 ''forens'':8 ''husband'':12 ''monasteri'':20 ''must'':14 ''overcom'':15 ''psychologist'':9 ''stun'':4 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (51, 'BALLOON HOMEWARD', 'A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station', 2006, 1, NULL, true, 5, 2.99, 75, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''balloon'':1 ''build'':16 ''cow'':13 ''first'':22 ''forens'':8 ''homeward'':2 ''insight'':4 ''mad'':12,18 ''man'':23 ''must'':15 ''panorama'':5 ''psychologist'':9 ''scientist'':19 ''space'':24 ''station'':25'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (52, 'BALLROOM MOCKINGBIRD', 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California', 2006, 1, NULL, true, 6, 0.99, 173, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ballroom'':1 ''california'':18 ''compos'':8 ''documentari'':5 ''feminist'':16 ''find'':14 ''mockingbird'':2 ''monkey'':11 ''must'':13 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (53, 'BANG KWAI', 'A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 2.99, 87, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''amus'':21 ''bang'':1 ''cat'':11 ''drama'':5 ''epic'':4 ''face'':14 ''kwai'':2 ''madman'':8 ''must'':13 ''park'':22 ''shark'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (54, 'BANGER PINOCCHIO', 'A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station', 2006, 1, NULL, true, 5, 0.99, 113, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''banger'':1 ''car'':10 ''chase'':17 ''chef'':14 ''crocodil'':19 ''drama'':7 ''first'':22 ''inspir'':6 ''man'':23 ''must'':16 ''pastri'':13 ''pinocchio'':2 ''space'':24 ''station'':25'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (55, 'BARBARELLA STREETCAR', 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery', 2006, 1, NULL, true, 6, 2.99, 65, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''barbarella'':1 ''cat'':13 ''conquer'':16 ''dog'':18 ''feminist'':10 ''inspir'':6 ''monasteri'':21 ''must'':15 ''stori'':7 ''streetcar'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (56, 'BAREFOOT MANCHURIAN', 'A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 2.99, 129, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':19 ''amus'':20 ''barefoot'':1 ''cat'':8 ''girl'':16 ''intrepid'':4 ''manchurian'':2 ''must'':13 ''park'':21 ''stori'':5 ''student'':11 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (57, 'BASIC EASY', 'A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat', 2006, 1, NULL, true, 4, 2.99, 90, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''basic'':1 ''boat'':21 ''easi'':2 ''epistl'':5 ''husband'':11 ''jet'':20 ''mad'':16 ''man'':8 ''must'':13 ''reach'':14 ''scientist'':17 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (58, 'BEACH HEARTBREAKERS', 'A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia', 2006, 1, NULL, true, 6, 2.99, 122, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''beach'':1 ''display'':5 ''fate'':4 ''georgia'':21 ''heartbreak'':2 ''mad'':11 ''must'':14 ''outgun'':15 ''scientist'':12 ''shark'':18 ''soviet'':20 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (59, 'BEAR GRACELAND', 'A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 160, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''astound'':4 ''bear'':1 ''boy'':11 ''dog'':8 ''first'':19 ''graceland'':2 ''kill'':14 ''man'':20 ''must'':13 ''saga'':5 ''space'':21 ''station'':22 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (60, 'BEAST HUNCHBACK', 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China', 2006, 1, NULL, true, 3, 4.99, 89, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''beast'':1 ''boy'':18 ''china'':21 ''defeat'':16 ''epistl'':7 ''hunchback'':2 ''inspir'':6 ''must'':15 ''squirrel'':13 ''student'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (61, 'BEAUTY GREASE', 'A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 4.99, 175, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':21 ''beauti'':1 ''compos'':10 ''display'':7 ''fast'':5 ''fast-pac'':4 ''greas'':2 ''mine'':22 ''moos'':13 ''must'':15 ''pace'':6 ''robot'':18 ''shaft'':23 ''sink'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (62, 'BED HIGHBALL', 'A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House', 2006, 1, NULL, true, 5, 2.99, 106, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':19 ''astound'':4 ''bed'':1 ''dog'':11 ''fun'':20 ''highbal'':2 ''hous'':21 ''lumberjack'':8 ''must'':13 ''panorama'':5 ''redeem'':14 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (63, 'BEDAZZLED MARRIED', 'A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House', 2006, 1, NULL, true, 6, 0.99, 73, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':21 ''astound'':4 ''bedazzl'':1 ''charact'':5 ''fun'':22 ''hous'':23 ''mad'':17 ''madman'':9 ''marri'':2 ''meet'':15 ''must'':14 ''robot'':12 ''scientist'':18 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (64, 'BEETHOVEN EXORCIST', 'A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico', 2006, 1, NULL, true, 6, 0.99, 151, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''beethoven'':1 ''butler'':16 ''challeng'':14 ''display'':5 ''epic'':4 ''exorcist'':2 ''gulf'':19 ''mexico'':21 ''must'':13 ''pioneer'':8 ''student'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (65, 'BEHAVIOR RUNAWAY', 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin', 2006, 1, NULL, true, 3, 4.99, 100, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''behavior'':1 ''berlin'':19 ''drama'':5 ''husband'':11 ''must'':13 ''outrac'':14 ''runaway'':2 ''student'':8 ''sumo'':16 ''unbeliev'':4 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (66, 'BENEATH RUSH', 'A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station', 2006, 1, NULL, true, 6, 0.99, 53, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''astound'':4 ''beneath'':1 ''discov'':14 ''first'':19 ''man'':8,16,20 ''monkey'':11 ''must'':13 ''panorama'':5 ''rush'':2 ''space'':21 ''station'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (67, 'BERETS AGENT', 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China', 2006, 1, NULL, true, 5, 2.99, 77, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''agent'':2 ''ancient'':19 ''beret'':1 ''boy'':11 ''china'':20 ''crocodil'':8 ''must'':13 ''overcom'':14 ''saga'':5 ''taut'':4 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (68, 'BETRAYED REAR', 'A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank', 2006, 1, NULL, true, 5, 4.99, 122, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''betray'':1 ''boat'':9 ''charact'':5 ''emot'':4 ''explor'':17 ''find'':15 ''must'':14 ''pioneer'':12 ''rear'':2 ''shark'':20 ''studi'':6 ''tank'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (69, 'BEVERLY OUTLAW', 'A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station', 2006, 1, NULL, true, 3, 2.99, 85, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''bever'':1 ''boat'':11 ''defeat'':14 ''documentari'':5 ''fanci'':4 ''first'':19 ''madman'':16 ''man'':20 ''must'':13 ''outlaw'':2 ''space'':21 ''station'':22 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (70, 'BIKINI BORROWERS', 'A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station', 2006, 1, NULL, true, 7, 4.99, 142, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''astound'':4 ''astronaut'':8 ''bikini'':1 ''borrow'':2 ''cat'':11 ''discov'':14 ''drama'':5 ''first'':19 ''man'':20 ''must'':13 ''space'':21 ''station'':22 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (71, 'BILKO ANONYMOUS', 'A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station', 2006, 1, NULL, true, 3, 4.99, 100, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''anonym'':2 ''bilko'':1 ''cat'':16 ''emot'':4 ''first'':19 ''man'':11,20 ''meet'':14 ''must'':13 ''reflect'':5 ''space'':21 ''station'':22 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (72, 'BILL OTHERS', 'A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 93, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''bill'':1 ''challeng'':16 ''convent'':22 ''forens'':12 ''mad'':8 ''must'':15 ''mysql'':21 ''other'':2 ''psychologist'':13 ''saga'':5 ''scientist'':9 ''squirrel'':18 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (73, 'BINGO TALENTED', 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria', 2006, 1, NULL, true, 5, 2.99, 150, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''bingo'':1 ''crocodil'':11 ''discov'':14 ''girl'':8 ''must'':13 ''nigeria'':18 ''tale'':5 ''talent'':2 ''touch'':4 ''waitress'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (74, 'BIRCH ANTITRUST', 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon', 2006, 1, NULL, true, 4, 4.99, 162, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''antitrust'':2 ''baloon'':19 ''birch'':1 ''dog'':16 ''fanci'':4 ''husband'':8 ''must'':13 ''outgun'':14 ''panorama'':5 ''pioneer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (75, 'BIRD INDEPENDENCE', 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies', 2006, 1, NULL, true, 6, 4.99, 163, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''bird'':1 ''canadian'':19 ''car'':8 ''documentari'':5 ''hunter'':16 ''independ'':2 ''must'':13 ''rocki'':20 ''sink'':14 ''student'':11 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (76, 'BIRDCAGE CASPER', 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India', 2006, 1, NULL, true, 4, 0.99, 103, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':20 ''astronaut'':13 ''birdcag'':1 ''casper'':2 ''fast'':5 ''fast-pac'':4 ''feminist'':18 ''frisbe'':10 ''india'':21 ''must'':15 ''overcom'':16 ''pace'':6 ''saga'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (77, 'BIRDS PERDITION', 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California', 2006, 1, NULL, true, 5, 4.99, 61, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''bird'':1 ''bore'':4 ''california'':18 ''dog'':16 ''face'':14 ''must'':13 ''perdit'':2 ''pioneer'':11 ''stori'':5 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (78, 'BLACKOUT PRIVATE', 'A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan', 2006, 1, NULL, true, 7, 2.99, 85, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''agent'':19 ''ancient'':21 ''blackout'':1 ''challeng'':16 ''chef'':9 ''intrepid'':4 ''japan'':22 ''mad'':12 ''must'':15 ''pastri'':8 ''privat'':2 ''scientist'':13 ''secret'':18 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (79, 'BLADE POLISH', 'A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station', 2006, 1, NULL, true, 5, 0.99, 114, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''blade'':1 ''charact'':5 ''chef'':13 ''dentist'':18 ''fight'':16 ''first'':21 ''frisbe'':9 ''man'':22 ''must'':15 ''pastri'':12 ''polish'':2 ''space'':23 ''station'':24 ''studi'':6 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (80, 'BLANKET BEVERLY', 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria', 2006, 1, NULL, true, 7, 2.99, 148, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''bever'':2 ''blanket'':1 ''boat'':16 ''build'':14 ''documentari'':5 ''emot'':4 ''girl'':11 ''must'':13 ''nigeria'':18 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (81, 'BLINDNESS GUN', 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat', 2006, 1, NULL, true, 6, 4.99, 103, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''blind'':1 ''boat'':20 ''dentist'':11 ''drama'':5 ''gun'':2 ''hunter'':16 ''jet'':19 ''meet'':14 ''must'':13 ''robot'':8 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (82, 'BLOOD ARGONAUTS', 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 71, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''argonaut'':2 ''blood'':1 ''bore'':4 ''drama'':5 ''explor'':8 ''kill'':14 ''lumberjack'':16 ''man'':11 ''manhattan'':19 ''must'':13 ''penthous'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (83, 'BLUES INSTINCT', 'A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House', 2006, 1, NULL, true, 5, 2.99, 50, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''blue'':1 ''boat'':8 ''compos'':11 ''documentari'':5 ''forens'':16 ''fun'':21 ''hous'':22 ''insight'':4 ''instinct'':2 ''meet'':14 ''must'':13 ''psychologist'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (84, 'BOILED DARES', 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan', 2006, 1, NULL, true, 7, 4.99, 102, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''boil'':1 ''dare'':2 ''dentist'':18 ''discov'':16 ''dog'':13 ''inspir'':6 ''japan'':21 ''must'':15 ''stori'':7 ''waitress'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (85, 'BONNIE HOLOCAUST', 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan', 2006, 1, NULL, true, 4, 0.99, 63, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':20 ''bonni'':1 ''crocodil'':10 ''fast'':5 ''fast-pac'':4 ''find'':16 ''holocaust'':2 ''japan'':21 ''moos'':18 ''must'':15 ''pace'':6 ''robot'':13 ''stori'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (86, 'BOOGIE AMELIE', 'A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico', 2006, 1, NULL, true, 6, 4.99, 121, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''ameli'':2 ''boogi'':1 ''charact'':5 ''gulf'':22 ''husband'':9 ''lacklustur'':4 ''mexico'':24 ''must'':15 ''studi'':6 ''succumb'':16 ''sumo'':12 ''technic'':18 ''wrestler'':13 ''writer'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (87, 'BOONDOCK BALLROOM', 'A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico', 2006, 1, NULL, true, 7, 0.99, 76, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ballroom'':2 ''boondock'':1 ''boy'':11 ''crocodil'':8 ''defeat'':14 ''fate'':4 ''gulf'':19 ''mexico'':21 ''monkey'':16 ''must'':13 ''panorama'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (88, 'BORN SPINAL', 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria', 2006, 1, NULL, true, 7, 4.99, 179, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''born'':1 ''epistl'':5 ''frisbe'':8 ''husband'':11 ''must'':13 ''nigeria'':18 ''pursu'':14 ''spinal'':2 ''student'':16 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (89, 'BORROWERS BEDAZZLED', 'A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House', 2006, 1, NULL, true, 7, 0.99, 63, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''bedazzl'':2 ''borrow'':1 ''brilliant'':4 ''defeat'':15 ''epistl'':5 ''fun'':21 ''hous'':22 ''man'':17 ''must'':14 ''sumo'':11 ''teacher'':8 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (91, 'BOUND CHEAPER', 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon', 2006, 1, NULL, true, 5, 0.99, 98, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''administr'':9 ''astronaut'':12 ''baloon'':20 ''bound'':1 ''challeng'':15 ''cheaper'':2 ''databas'':8 ''lumberjack'':17 ''must'':14 ''panorama'':5 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (92, 'BOWFINGER GABLES', 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California', 2006, 1, NULL, true, 7, 4.99, 72, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''bowfing'':1 ''california'':20 ''compos'':13 ''dentist'':18 ''fast'':5 ''fast-pac'':4 ''gabl'':2 ''must'':15 ''outgun'':16 ''pace'':6 ''waitress'':10 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (93, 'BRANNIGAN SUNRISE', 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin', 2006, 1, NULL, true, 4, 4.99, 121, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''amaz'':4 ''berlin'':18 ''brannigan'':1 ''crocodil'':11 ''dog'':16 ''epistl'':5 ''moos'':8 ''must'':13 ''outrac'':14 ''sunris'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (94, 'BRAVEHEART HUMAN', 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin', 2006, 1, NULL, true, 7, 2.99, 176, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''battl'':15 ''berlin'':19 ''braveheart'':1 ''chef'':12 ''dog'':8 ''girl'':17 ''human'':2 ''insight'':4 ''must'':14 ''pastri'':11 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (95, 'BREAKFAST GOLDFINGER', 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin', 2006, 1, NULL, true, 5, 4.99, 123, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''beauti'':4 ''berlin'':18 ''breakfast'':1 ''fight'':14 ''goldfing'':2 ''moos'':16 ''must'':13 ''reflect'':5 ''student'':8,11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (96, 'BREAKING HOME', 'A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 2.99, 169, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':21 ''agent'':9 ''battl'':15 ''beauti'':4 ''break'':1 ''display'':5 ''home'':2 ''mine'':22 ''monkey'':12 ''must'':14 ''secret'':8 ''shaft'':23 ''sumo'':17 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (97, 'BRIDE INTRIGUE', 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans', 2006, 1, NULL, true, 7, 0.99, 56, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''bride'':1 ''epic'':4 ''intrigu'':2 ''man'':16 ''monkey'':11 ''must'':13 ''new'':18 ''orlean'':19 ''robot'':8 ''tale'':5 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (98, 'BRIGHT ENCOUNTERS', 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat', 2006, 1, NULL, true, 4, 4.99, 73, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':20 ''bright'':1 ''conquer'':14 ''encount'':2 ''fate'':4 ''feminist'':11 ''jet'':19 ''lumberjack'':8 ''must'':13 ''student'':16 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (99, 'BRINGING HYSTERICAL', 'A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat', 2006, 1, NULL, true, 7, 2.99, 136, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':22 ''bring'':1 ''fate'':4 ''find'':16 ''hyster'':2 ''jet'':21 ''must'':15 ''saga'':5 ''shark'':9 ''technic'':12 ''woman'':18 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (100, 'BROOKLYN DESERT', 'A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station', 2006, 1, NULL, true, 7, 4.99, 161, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''battl'':14 ''beauti'':4 ''brooklyn'':1 ''compos'':11 ''dentist'':8 ''desert'':2 ''drama'':5 ''first'':20 ''man'':21 ''must'':13 ''space'':22 ''station'':23 ''sumo'':16 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (101, 'BROTHERHOOD BLANKET', 'A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan', 2006, 1, NULL, true, 3, 0.99, 73, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':20 ''astronaut'':18 ''blanket'':2 ''brotherhood'':1 ''butler'':9 ''charact'':5 ''fate'':4 ''japan'':21 ''must'':15 ''sink'':16 ''studi'':6 ''technic'':12 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (102, 'BUBBLE GROSSE', 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon', 2006, 1, NULL, true, 4, 4.99, 60, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''baloon'':21 ''bubbl'':1 ''confront'':16 ''crocodil'':10 ''girl'':18 ''gross'':2 ''inspir'':6 ''moos'':13 ''must'':15 ''panorama'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (103, 'BUCKET BROTHERHOOD', 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory', 2006, 1, NULL, true, 7, 4.99, 133, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''amaz'':4 ''baloon'':19 ''brotherhood'':2 ''bucket'':1 ''display'':5 ''factori'':20 ''girl'':8 ''lumberjack'':16 ''must'':13 ''succumb'':14 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (104, 'BUGSY SONG', 'A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 119, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':12 ''awe'':5 ''awe-inspir'':4 ''boat'':15 ''bugsi'':1 ''charact'':7 ''find'':18 ''first'':23 ''inspir'':6 ''man'':24 ''must'':17 ''secret'':11 ''song'':2 ''space'':25 ''squirrel'':20 ''station'':26 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (105, 'BULL SHAWSHANK', 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 125, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''bull'':1 ''canadian'':19 ''conquer'':14 ''drama'':5 ''fanci'':4 ''moos'':8 ''must'':13 ''pioneer'':16 ''rocki'':20 ''shawshank'':2 ''squirrel'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (106, 'BULWORTH COMMANDMENTS', 'A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback', 2006, 1, NULL, true, 4, 2.99, 61, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''amaz'':4 ''bulworth'':1 ''command'':2 ''cow'':9 ''display'':5 ''mad'':8 ''must'':14 ''outback'':21 ''pioneer'':12 ''redeem'':15 ''sumo'':17 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (107, 'BUNCH MINDS', 'A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention', 2006, 1, NULL, true, 4, 2.99, 63, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''bunch'':1 ''chef'':17 ''convent'':21 ''emot'':4 ''escap'':14 ''feminist'':8,11 ''mind'':2 ''must'':13 ''mysql'':20 ''pastri'':16 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (108, 'BUTCH PANTHER', 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans', 2006, 1, NULL, true, 6, 0.99, 67, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':12 ''butch'':1 ''databas'':11 ''face'':15 ''feminist'':8 ''hunter'':17 ''lacklustur'':4 ''must'':14 ''new'':19 ''orlean'':20 ''panther'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (109, 'BUTTERFLY CHOCOLAT', 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 89, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''butterfli'':1 ''chocolat'':2 ''compos'':11 ''conquer'':14 ''fate'':4 ''girl'':8 ''husband'':16 ''must'':13 ''shark'':19 ''stori'':5 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (110, 'CABIN FLASH', 'A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory', 2006, 1, NULL, true, 4, 0.99, 53, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''baloon'':20 ''boat'':8 ''cabin'':1 ''challeng'':14 ''epistl'':5 ''factori'':21 ''flash'':2 ''man'':11 ''must'':13 ''shark'':17 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (111, 'CADDYSHACK JEDI', 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia', 2006, 1, NULL, true, 3, 0.99, 52, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''caddyshack'':1 ''epistl'':7 ''fight'':16 ''georgia'':21 ''inspir'':6 ''jedi'':2 ''madman'':13 ''must'':15 ''robot'':18 ''soviet'':20 ''woman'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (112, 'CALENDAR GUNFIGHT', 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria', 2006, 1, NULL, true, 4, 4.99, 120, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''calendar'':1 ''drama'':5 ''frisbe'':8 ''gunfight'':2 ''lumberjack'':11 ''man'':16 ''must'':13 ''nigeria'':18 ''sink'':14 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (113, 'CALIFORNIA BIRDS', 'A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India', 2006, 1, NULL, true, 4, 4.99, 75, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':9,18 ''ancient'':20 ''battl'':15 ''bird'':2 ''california'':1 ''databas'':8,17 ''india'':21 ''must'':14 ''robot'':12 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (114, 'CAMELOT VACATION', 'A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention', 2006, 1, NULL, true, 3, 0.99, 61, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''battl'':15 ''camelot'':1 ''charact'':5 ''chef'':18 ''convent'':22 ''must'':14 ''mysql'':21 ''pastri'':17 ''studi'':6 ''touch'':4 ''vacat'':2 ''waitress'':12 ''woman'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (115, 'CAMPUS REMEMBER', 'A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat', 2006, 1, NULL, true, 5, 2.99, 167, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astound'':4 ''boat'':21 ''build'':15 ''campus'':1 ''cow'':12 ''crocodil'':8 ''drama'':5 ''jet'':20 ''mad'':11 ''must'':14 ''rememb'':2 ''robot'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (116, 'CANDIDATE PERDITION', 'A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 70, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':12 ''brilliant'':4 ''candid'':1 ''compos'':8 ''databas'':11 ''epistl'':5 ''first'':21 ''mad'':17 ''man'':22 ''must'':14 ''perdit'':2 ''scientist'':18 ''space'':23 ''station'':24 ''vanquish'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (117, 'CANDLES GRAPES', 'A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House', 2006, 1, NULL, true, 6, 4.99, 135, 15.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':20 ''astronaut'':17 ''build'':15 ''candl'':1 ''charact'':5 ''explor'':12 ''fanci'':4 ''fun'':21 ''grape'':2 ''hous'':22 ''monkey'':9 ''must'':14 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (118, 'CANYON STOCK', 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 0.99, 85, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''canyon'':1 ''escap'':14 ''feminist'':11 ''manhattan'':19 ''must'':13 ''penthous'':20 ''reflect'':5 ''squirrel'':16 ''stock'':2 ''thought'':4 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (119, 'CAPER MOTIONS', 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention', 2006, 1, NULL, true, 6, 0.99, 176, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''caper'':1 ''car'':11 ''convent'':20 ''fate'':4 ''moos'':8 ''motion'':2 ''must'':13 ''mysql'':19 ''pursu'':14 ''saga'':5 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (120, 'CARIBBEAN LIBERTY', 'A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank', 2006, 1, NULL, true, 3, 4.99, 92, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''caribbean'':1 ''fanci'':4 ''liberti'':2 ''must'':14 ''outgun'':15 ''pioneer'':8,17 ''shark'':20 ''tale'':5 ''tank'':21 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (121, 'CAROL TEXAS', 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery', 2006, 1, NULL, true, 4, 2.99, 151, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astound'':4 ''carol'':1 ''charact'':5 ''compos'':9,17 ''monasteri'':20 ''must'':14 ''overcom'':15 ''student'':12 ''studi'':6 ''texa'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (122, 'CARRIE BUNCH', 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies', 2006, 1, NULL, true, 7, 0.99, 114, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''amaz'':4 ''astronaut'':11 ''bunch'':2 ''canadian'':19 ''carri'':1 ''discov'':14 ''epistl'':5 ''frisbe'':16 ''must'':13 ''rocki'':20 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (123, 'CASABLANCA SUPER', 'A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station', 2006, 1, NULL, true, 6, 4.99, 85, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''agent'':18 ''amaz'':4 ''casablanca'':1 ''crocodil'':8 ''first'':21 ''forens'':11 ''man'':22 ''must'':14 ''panorama'':5 ''psychologist'':12 ''pursu'':15 ''secret'':17 ''space'':23 ''station'':24 ''super'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (124, 'CASPER DRAGONFLY', 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert', 2006, 1, NULL, true, 3, 4.99, 163, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':8 ''casper'':1 ''chase'':14 ''crocodil'':11 ''desert'':20 ''documentari'':5 ''dragonfli'':2 ''intrepid'':4 ''must'':13 ''robot'':16 ''sahara'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (125, 'CASSIDY WYOMING', 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans', 2006, 1, NULL, true, 5, 2.99, 61, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''agent'':17 ''cassidi'':1 ''drama'':5 ''frisbe'':8 ''hunter'':11 ''intrepid'':4 ''kill'':14 ''must'':13 ''new'':19 ''orlean'':20 ''secret'':16 ''wyom'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (126, 'CASUALTIES ENCINO', 'A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery', 2006, 1, NULL, true, 3, 4.99, 179, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boy'':18 ''casualti'':1 ''chef'':13 ''encino'':2 ''face'':16 ''insight'':4 ''monasteri'':21 ''must'':15 ''pastri'':12 ''shark'':9 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (127, 'CAT CONEHEADS', 'A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India', 2006, 1, NULL, true, 5, 4.99, 112, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':21 ''boy'':19 ''cat'':1 ''conehead'':2 ''confront'':17 ''fast'':5 ''fast-pac'':4 ''girl'':10 ''india'':22 ''must'':16 ''pace'':6 ''panorama'':7 ''shark'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (128, 'CATCH AMISTAD', 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria', 2006, 1, NULL, true, 7, 0.99, 183, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''amistad'':2 ''bore'':4 ''catch'':1 ''discov'':14 ''feminist'':11 ''lumberjack'':8 ''must'':13 ''nigeria'':18 ''reflect'':5 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (129, 'CAUSE DATE', 'A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention', 2006, 1, NULL, true, 3, 2.99, 179, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''caus'':1 ''chef'':12 ''conquer'':15 ''convent'':21 ''date'':2 ''explor'':8 ''hunter'':17 ''must'':14 ''mysql'':20 ''pastri'':11 ''tale'':5 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (130, 'CELEBRITY HORN', 'A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank', 2006, 1, NULL, true, 7, 0.99, 110, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''agent'':9 ''amaz'':4 ''astronaut'':12 ''celebr'':1 ''documentari'':5 ''horn'':2 ''hunter'':17 ''must'':14 ''secret'':8 ''shark'':20 ''tank'':21 ''vanquish'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (131, 'CENTER DINOSAUR', 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California', 2006, 1, NULL, true, 5, 4.99, 152, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''beauti'':4 ''california'':20 ''center'':1 ''charact'':5 ''dentist'':13 ''dinosaur'':2 ''dog'':18 ''find'':16 ''must'':15 ''studi'':6 ''sumo'':9 ''wrestler'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (132, 'CHAINSAW UPTOWN', 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia', 2006, 1, NULL, true, 6, 0.99, 114, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''australia'':18 ''beauti'':4 ''boy'':8 ''chainsaw'':1 ''discov'':14 ''documentari'':5 ''must'':13 ''robot'':11 ''squirrel'':16 ''uptown'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (133, 'CHAMBER ITALIAN', 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria', 2006, 1, NULL, true, 7, 4.99, 117, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''chamber'':1 ''fate'':4 ''husband'':11 ''italian'':2 ''monkey'':16 ''moos'':8 ''must'':13 ''nigeria'':18 ''overcom'':14 ''reflect'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (134, 'CHAMPION FLATLINERS', 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery', 2006, 1, NULL, true, 4, 4.99, 51, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''amaz'':4 ''champion'':1 ''cow'':9 ''dog'':12 ''flatlin'':2 ''husband'':17 ''kill'':15 ''mad'':8 ''monasteri'':20 ''must'':14 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (135, 'CHANCE RESURRECTION', 'A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China', 2006, 1, NULL, true, 3, 2.99, 70, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':20 ''astound'':4 ''chanc'':1 ''china'':21 ''forens'':8,12 ''moos'':18 ''must'':15 ''overcom'':16 ''psychologist'':9,13 ''resurrect'':2 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (136, 'CHAPLIN LICENSE', 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India', 2006, 1, NULL, true, 7, 2.99, 146, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':19 ''bore'':4 ''chaplin'':1 ''dog'':8 ''drama'':5 ''explor'':17 ''forens'':11 ''india'':20 ''licens'':2 ''must'':14 ''outrac'':15 ''psychologist'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (137, 'CHARADE DUFFEL', 'A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention', 2006, 1, NULL, true, 3, 2.99, 66, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''build'':16 ''charad'':1 ''convent'':22 ''display'':7 ''dog'':18 ''duffel'':2 ''man'':10 ''must'':15 ''mysql'':21 ''pack'':6 ''waitress'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (138, 'CHARIOTS CONSPIRACY', 'A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station', 2006, 1, NULL, true, 5, 2.99, 71, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''chariot'':1 ''chase'':14 ''conspiraci'':2 ''epistl'':5 ''first'':19 ''husband'':11 ''man'':20 ''must'':13 ''robot'':8,16 ''space'':21 ''station'':22 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (139, 'CHASING FIGHT', 'A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank', 2006, 1, NULL, true, 7, 4.99, 114, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''astound'':4 ''battl'':15 ''butler'':12,17 ''chase'':1 ''fight'':2 ''must'':14 ''saga'':5 ''shark'':20 ''tank'':21 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (140, 'CHEAPER CLYDE', 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan', 2006, 1, NULL, true, 6, 0.99, 87, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':19 ''charact'':5 ''cheaper'':1 ''clyde'':2 ''discov'':15 ''dog'':17 ''emot'':4 ''girl'':12 ''japan'':20 ''must'':14 ''pioneer'':9 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (141, 'CHICAGO NORTH', 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California', 2006, 1, NULL, true, 6, 4.99, 185, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''battl'':15 ''california'':19 ''chicago'':1 ''cow'':9 ''fate'':4 ''mad'':8 ''must'':14 ''north'':2 ''student'':17 ''waitress'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (142, 'CHICKEN HELLFIGHTERS', 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia', 2006, 1, NULL, true, 3, 0.99, 122, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''australia'':19 ''chicken'':1 ''dog'':8 ''drama'':5 ''emot'':4 ''explor'':11 ''hellfight'':2 ''must'':13 ''outrac'':14 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (143, 'CHILL LUCK', 'A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 142, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''boat'':8 ''canadian'':21 ''chill'':1 ''epistl'':5 ''fight'':15 ''lacklustur'':4 ''luck'':2 ''must'':14 ''rocki'':22 ''shark'':18 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (144, 'CHINATOWN GLADIATOR', 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India', 2006, 1, NULL, true, 7, 4.99, 61, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''ancient'':19 ''brilliant'':4 ''butler'':17 ''chinatown'':1 ''escap'':15 ''gladiat'':2 ''india'':20 ''lumberjack'':12 ''must'':14 ''panorama'':5 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (145, 'CHISUM BEHAVIOR', 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India', 2006, 1, NULL, true, 5, 4.99, 124, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':19 ''behavior'':2 ''butler'':12 ''car'':17 ''chisum'':1 ''documentari'':5 ''epic'':4 ''india'':20 ''kill'':15 ''must'':14 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (146, 'CHITTY LOCK', 'A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station', 2006, 1, NULL, true, 6, 2.99, 107, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''administr'':12 ''boat'':8 ''bore'':4 ''chitti'':1 ''databas'':11 ''epistl'':5 ''first'':21 ''kill'':15 ''lock'':2 ''man'':22 ''must'':14 ''space'':23 ''station'':24 ''sumo'':17 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (147, 'CHOCOLAT HARRY', 'A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan', 2006, 1, NULL, true, 5, 0.99, 101, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''ancient'':21 ''chocolat'':1 ''cow'':19 ''dentist'':10 ''epistl'':7 ''harri'':2 ''japan'':22 ''mad'':18 ''meet'':16 ''moos'':13 ''must'':15 ''pack'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (148, 'CHOCOLATE DUCK', 'A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China', 2006, 1, NULL, true, 3, 2.99, 132, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':20 ''china'':21 ''chocol'':1 ''compos'':18 ''discov'':16 ''duck'':2 ''mad'':8 ''must'':15 ''scientist'':9 ''stori'':5 ''technic'':12 ''unbeliev'':4 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (149, 'CHRISTMAS MOONSHINE', 'A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 0.99, 150, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''astronaut'':13 ''boat'':18 ''christma'':1 ''conquer'':16 ''epistl'':7 ''feminist'':10 ''manhattan'':21 ''moonshin'':2 ''must'':15 ''pack'':6 ''penthous'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (150, 'CIDER DESIRE', 'A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia', 2006, 1, NULL, true, 7, 2.99, 101, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''cat'':18 ''charact'':5 ''cider'':1 ''compos'':9 ''cow'':13 ''desir'':2 ''georgia'':21 ''mad'':12 ''must'':15 ''soviet'':20 ''studi'':6 ''stun'':4 ''succumb'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (151, 'CINCINATTI WHISPERER', 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin', 2006, 1, NULL, true, 5, 4.99, 143, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''berlin'':19 ''brilliant'':4 ''butler'':17 ''chef'':9 ''cincinatti'':1 ''confront'':15 ''hunter'':12 ''must'':14 ''pastri'':8 ''saga'':5 ''whisper'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (152, 'CIRCUS YOUTH', 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon', 2006, 1, NULL, true, 5, 2.99, 90, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''chef'':9 ''circus'':1 ''dentist'':12 ''drama'':5 ''girl'':17 ''must'':14 ''pastri'':8 ''pursu'':15 ''thought'':4 ''youth'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (153, 'CITIZEN SHREK', 'A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback', 2006, 1, NULL, true, 7, 0.99, 165, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''charact'':5 ''citizen'':1 ''fanci'':4 ''husband'':13 ''must'':15 ''outback'':21 ''redeem'':16 ''robot'':18 ''shrek'':2 ''studi'':6 ''technic'':9 ''writer'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (154, 'CLASH FREDDY', 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia', 2006, 1, NULL, true, 6, 2.99, 81, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''amaz'':4 ''astronaut'':16 ''australia'':18 ''clash'':1 ''compos'':8 ''escap'':14 ''freddi'':2 ''must'':13 ''squirrel'':11 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (155, 'CLEOPATRA DEVIL', 'A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon', 2006, 1, NULL, true, 6, 0.99, 150, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''baloon'':21 ''cleopatra'':1 ''crocodil'':8 ''devil'':2 ''documentari'':5 ''fanci'':4 ''fight'':15 ''must'':14 ''shark'':18 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (156, 'CLERKS ANGELS', 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon', 2006, 1, NULL, true, 3, 4.99, 164, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''angel'':2 ''baloon'':20 ''clerk'':1 ''confront'':15 ''display'':5 ''girl'':12 ''man'':17 ''must'':14 ''sumo'':8 ''thrill'':4 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (157, 'CLOCKWORK PARADISE', 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon', 2006, 1, NULL, true, 7, 0.99, 143, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''cat'':17 ''challeng'':15 ''clockwork'':1 ''documentari'':5 ''feminist'':12 ''insight'':4 ''must'':14 ''paradis'':2 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (158, 'CLONES PINOCCHIO', 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans', 2006, 1, NULL, true, 6, 2.99, 124, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''amaz'':4 ''car'':8 ''clone'':1 ''dentist'':16 ''drama'':5 ''must'':13 ''new'':18 ''orlean'':19 ''pinocchio'':2 ''pursu'':14 ''robot'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (159, 'CLOSER BANG', 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India', 2006, 1, NULL, true, 5, 4.99, 58, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''ancient'':18 ''bang'':2 ''closer'':1 ''frisbe'':8 ''hunter'':11 ''india'':19 ''monkey'':16 ''must'':13 ''panorama'':5 ''unbeliev'':4 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (160, 'CLUB GRAFFITI', 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat', 2006, 1, NULL, true, 4, 0.99, 65, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''boat'':21 ''club'':1 ''epic'':4 ''escap'':14 ''girl'':16 ''graffiti'':2 ''hunter'':11 ''must'':13 ''pioneer'':8 ''tale'':5 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (161, 'CLUE GRAIL', 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China', 2006, 1, NULL, true, 6, 4.99, 70, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':19 ''build'':15 ''butler'':8 ''china'':20 ''clue'':1 ''crocodil'':17 ''grail'':2 ''mad'':11 ''must'':14 ''scientist'':12 ''tale'':5 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (162, 'CLUELESS BUCKET', 'A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House', 2006, 1, NULL, true, 4, 2.99, 95, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''bucket'':2 ''car'':8 ''clueless'':1 ''conquer'':14 ''fun'':21 ''hous'':22 ''must'':13 ''pioneer'':11 ''sumo'':16 ''tale'':5 ''taut'':4 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (163, 'CLYDE THEORY', 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat', 2006, 1, NULL, true, 4, 0.99, 139, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':8 ''beauti'':4 ''boat'':20 ''clyde'':1 ''explor'':16 ''frisbe'':11 ''jet'':19 ''must'':13 ''overcom'':14 ''theori'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (164, 'COAST RAINBOW', 'A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert', 2006, 1, NULL, true, 4, 0.99, 55, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astound'':4 ''butler'':17 ''challeng'':15 ''coast'':1 ''cow'':9 ''desert'':21 ''documentari'':5 ''mad'':8 ''must'':14 ''pioneer'':12 ''rainbow'':2 ''sahara'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (165, 'COLDBLOODED DARLING', 'A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico', 2006, 1, NULL, true, 7, 4.99, 70, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''brilliant'':4 ''coldblood'':1 ''darl'':2 ''dentist'':8 ''find'':14 ''gulf'':19 ''mexico'':21 ''moos'':11 ''must'':13 ''panorama'':5 ''student'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (166, 'COLOR PHILADELPHIA', 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert', 2006, 1, NULL, true, 6, 2.99, 149, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''car'':8 ''color'':1 ''crocodil'':11 ''desert'':20 ''monkey'':16 ''must'':13 ''panorama'':5 ''philadelphia'':2 ''sahara'':19 ''sink'':14 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (167, 'COMA HEAD', 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California', 2006, 1, NULL, true, 6, 4.99, 109, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''awe'':5 ''awe-inspir'':4 ''boy'':10 ''california'':21 ''chef'':19 ''coma'':1 ''drama'':7 ''escap'':16 ''frisbe'':13 ''head'':2 ''inspir'':6 ''must'':15 ''pastri'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (168, 'COMANCHEROS ENEMY', 'A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico', 2006, 1, NULL, true, 5, 0.99, 67, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''bore'':4 ''comanchero'':1 ''enemi'':2 ''find'':14 ''gulf'':19 ''lumberjack'':8 ''mexico'':21 ''monkey'':11,16 ''must'':13 ''saga'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (169, 'COMFORTS RUSH', 'A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft', 2006, 1, NULL, true, 3, 2.99, 76, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':20 ''comfort'':1 ''cow'':17 ''husband'':11 ''mad'':16 ''meet'':14 ''mine'':21 ''must'':13 ''panorama'':5 ''pioneer'':8 ''rush'':2 ''shaft'':22 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (170, 'COMMAND DARLING', 'A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan', 2006, 1, NULL, true, 5, 4.99, 120, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''administr'':20 ''ancient'':22 ''awe'':5 ''awe-inspir'':4 ''challeng'':17 ''command'':1 ''darl'':2 ''databas'':19 ''forens'':10 ''inspir'':6 ''japan'':23 ''must'':16 ''psychologist'':11 ''tale'':7 ''woman'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (171, 'COMMANDMENTS EXPRESS', 'A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 4.99, 59, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':20 ''battl'':15 ''command'':1 ''express'':2 ''fanci'':4 ''hunter'':17 ''mad'':11 ''mine'':21 ''must'':14 ''saga'':5 ''scientist'':12 ''shaft'':22 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (172, 'CONEHEADS SMOOCHY', 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria', 2006, 1, NULL, true, 7, 4.99, 112, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''compos'':11 ''conehead'':1 ''husband'':16 ''must'':13 ''nigeria'':18 ''pursu'':14 ''smoochi'':2 ''stori'':5 ''touch'':4 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (173, 'CONFESSIONS MAGUIRE', 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon', 2006, 1, NULL, true, 7, 4.99, 65, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':20 ''battl'':14 ''boy'':11 ''car'':8 ''confess'':1 ''insight'':4 ''maguir'':2 ''must'':13 ''stori'':5 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (174, 'CONFIDENTIAL INTERVIEW', 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan', 2006, 1, NULL, true, 6, 4.99, 180, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''ancient'':18 ''astronaut'':16 ''cat'':8 ''confidenti'':1 ''find'':14 ''interview'':2 ''japan'':19 ''must'':13 ''reflect'':5 ''stun'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (175, 'CONFUSED CANDLES', 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon', 2006, 1, NULL, true, 3, 2.99, 122, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''candl'':2 ''cat'':8 ''confront'':15 ''confus'':1 ''epistl'':5 ''forens'':11 ''must'':14 ''pioneer'':17 ''psychologist'':12 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (176, 'CONGENIALITY QUEST', 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon', 2006, 1, NULL, true, 6, 0.99, 87, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''baloon'':20 ''cat'':8 ''chef'':12 ''congeni'':1 ''documentari'':5 ''find'':15 ''lumberjack'':17 ''must'':14 ''pastri'':11 ''quest'':2 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (177, 'CONNECTICUT TRAMP', 'A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank', 2006, 1, NULL, true, 4, 4.99, 172, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''connecticut'':1 ''cow'':12 ''crocodil'':8 ''dentist'':17 ''drama'':5 ''mad'':11 ''must'':14 ''reach'':15 ''shark'':20 ''tank'':21 ''tramp'':2 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (178, 'CONNECTION MICROCOSMOS', 'A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station', 2006, 1, NULL, true, 6, 0.99, 115, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''connect'':1 ''crocodil'':8 ''documentari'':5 ''face'':14 ''fate'':4 ''first'':19 ''husband'':11,16 ''man'':20 ''microcosmo'':2 ''must'':13 ''space'':21 ''station'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (179, 'CONQUERER NUTS', 'A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 4.99, 173, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''conquer'':1 ''drama'':5 ''escap'':15 ''mad'':8 ''man'':12 ''mine'':21 ''must'':14 ''nut'':2 ''pioneer'':17 ''scientist'':9 ''shaft'':22 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (180, 'CONSPIRACY SPIRIT', 'A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 2.99, 184, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':21 ''awe'':5 ''awe-inspir'':4 ''conquer'':16 ''conspiraci'':1 ''crocodil'':18 ''frisbe'':13 ''inspir'':6 ''mine'':22 ''must'':15 ''shaft'':23 ''spirit'':2 ''stori'':7 ''student'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (181, 'CONTACT ANONYMOUS', 'A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India', 2006, 1, NULL, true, 7, 2.99, 166, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''administr'':18 ''ancient'':20 ''anonym'':2 ''contact'':1 ''databas'':17 ''display'':5 ''face'':15 ''india'':21 ''insight'':4 ''monkey'':12 ''must'':14 ''shark'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (182, 'CONTROL ANTHEM', 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery', 2006, 1, NULL, true, 7, 4.99, 185, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''anthem'':2 ''battl'':14 ''cat'':16 ''control'':1 ''documentari'':5 ''fate'':4 ''monasteri'':19 ''must'':13 ''robot'':8 ''student'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (183, 'CONVERSATION DOWNHILL', 'A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention', 2006, 1, NULL, true, 4, 4.99, 112, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''charact'':5 ''convent'':21 ''convers'':1 ''downhil'':2 ''husband'':9 ''must'':14 ''mysql'':20 ''sink'':15 ''squirrel'':17 ''studi'':6 ''taut'':4 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (184, 'CORE SUIT', 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 2.99, 92, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':16 ''car'':8 ''confront'':14 ''core'':1 ''explor'':11 ''manhattan'':19 ''must'':13 ''penthous'':20 ''suit'':2 ''tale'':5 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (185, 'COWBOY DOOM', 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon', 2006, 1, NULL, true, 3, 2.99, 146, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astound'':4 ''baloon'':19 ''boy'':8 ''butler'':16 ''cowboy'':1 ''doom'':2 ''drama'':5 ''fight'':14 ''lumberjack'':11 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (186, 'CRAFT OUTFIELD', 'A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory', 2006, 1, NULL, true, 6, 0.99, 64, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':17 ''baloon'':20 ''craft'':1 ''databas'':16 ''display'':5 ''explor'':8 ''factori'':21 ''hunter'':11 ''lacklustur'':4 ''must'':13 ''outfield'':2 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (187, 'CRANES RESERVOIR', 'A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory', 2006, 1, NULL, true, 5, 2.99, 57, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''baloon'':20 ''crane'':1 ''documentari'':5 ''dog'':11 ''factori'':21 ''fanci'':4 ''forens'':16 ''must'':13 ''outgun'':14 ''psychologist'':17 ''reservoir'':2 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (188, 'CRAZY HOME', 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback', 2006, 1, NULL, true, 7, 2.99, 136, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''administr'':17 ''boy'':8 ''crazi'':1 ''databas'':16 ''fanci'':4 ''home'':2 ''must'':13 ''outback'':20 ''panorama'':5 ''vanquish'':14 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (189, 'CREATURES SHAKESPEARE', 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India', 2006, 1, NULL, true, 3, 0.99, 139, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':18 ''creatur'':1 ''crocodil'':16 ''drama'':5 ''emot'':4 ''india'':19 ''must'':13 ''shakespear'':2 ''squirrel'':11 ''vanquish'':14 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (190, 'CREEPERS KANE', 'A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat', 2006, 1, NULL, true, 5, 4.99, 172, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':13,22 ''car'':18 ''creeper'':1 ''inspir'':6 ''jet'':21 ''kane'':2 ''must'':15 ''outrac'':16 ''reflect'':7 ''squirrel'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (191, 'CROOKED FROGMEN', 'A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 0.99, 143, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''administr'':12 ''amus'':21 ''battl'':15 ''crocodil'':17 ''crook'':1 ''databas'':11 ''drama'':5 ''frogmen'':2 ''hunter'':8 ''must'':14 ''park'':22 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (192, 'CROSSING DIVORCE', 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin', 2006, 1, NULL, true, 4, 4.99, 50, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''berlin'':18 ''cross'':1 ''divorc'':2 ''documentari'':5 ''dog'':8 ''must'':13 ''redeem'':14 ''robot'':11 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (193, 'CROSSROADS CASUALTIES', 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback', 2006, 1, NULL, true, 5, 2.99, 153, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astronaut'':12 ''battl'':15 ''casualti'':2 ''compos'':17 ''crossroad'':1 ''documentari'':5 ''intrepid'':4 ''must'':14 ''outback'':20 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (194, 'CROW GREASE', 'A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station', 2006, 1, NULL, true, 6, 0.99, 104, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''administr'':19 ''awe'':5 ''awe-inspir'':4 ''crow'':1 ''databas'':18 ''documentari'':7 ''first'':22 ''greas'':2 ''husband'':13 ''inspir'':6 ''man'':23 ''must'':15 ''sink'':16 ''space'':24 ''station'':25 ''woman'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (195, 'CROWDS TELEMARK', 'A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House', 2006, 1, NULL, true, 3, 4.99, 112, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':20 ''astronaut'':8 ''crowd'':1 ''documentari'':5 ''find'':15 ''forens'':11 ''frisbe'':17 ''fun'':21 ''hous'':22 ''intrepid'':4 ''must'':14 ''psychologist'':12 ''telemark'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (196, 'CRUELTY UNFORGIVEN', 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria', 2006, 1, NULL, true, 7, 0.99, 69, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''battl'':14 ''brilliant'':4 ''car'':8 ''cruelti'':1 ''dentist'':16 ''moos'':11 ''must'':13 ''nigeria'':18 ''tale'':5 ''unforgiven'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (197, 'CRUSADE HONEY', 'A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 2.99, 112, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':21 ''amus'':22 ''battl'':16 ''butler'':13 ''crusad'':1 ''explor'':10 ''fast'':5 ''fast-pac'':4 ''honey'':2 ''madman'':18 ''must'':15 ''pace'':6 ''park'':23 ''reflect'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (198, 'CRYSTAL BREAKING', 'A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 184, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':22 ''break'':2 ''charact'':7 ''chef'':20 ''crystal'':1 ''explor'':14 ''face'':17 ''fast'':5 ''fast-pac'':4 ''feminist'':11 ''japan'':23 ''must'':16 ''pace'':6 ''pastri'':19 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (199, 'CUPBOARD SINNERS', 'A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 2.99, 56, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':20 ''amus'':21 ''boat'':11 ''chef'':17 ''cupboard'':1 ''emot'':4 ''frisbe'':8 ''must'':13 ''park'':22 ''pastri'':16 ''reach'':14 ''reflect'':5 ''sinner'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (200, 'CURTAIN VIDEOTAPE', 'A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank', 2006, 1, NULL, true, 7, 0.99, 133, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''agent'':18 ''bore'':4 ''chase'':15 ''cow'':12 ''curtain'':1 ''dentist'':8 ''mad'':11 ''must'':14 ''reflect'':5 ''secret'':17 ''shark'':21 ''tank'':22 ''videotap'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (201, 'CYCLONE FAMILY', 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention', 2006, 1, NULL, true, 7, 2.99, 176, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''convent'':20 ''cyclon'':1 ''drama'':5 ''famili'':2 ''lacklustur'':4 ''monkey'':11 ''must'':13 ''mysql'':19 ''sink'':14 ''student'':8 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (202, 'DADDY PITTSBURGH', 'A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 161, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''confront'':15 ''daddi'':1 ''epic'':4 ''explor'':17 ''gulf'':20 ''mexico'':22 ''must'':14 ''pittsburgh'':2 ''shark'':9 ''stori'':5 ''student'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (203, 'DAISY MENAGERIE', 'A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India', 2006, 1, NULL, true, 5, 4.99, 84, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':21 ''chef'':11 ''compos'':19 ''daisi'':1 ''fast'':5 ''fast-pac'':4 ''india'':22 ''menageri'':2 ''monkey'':14 ''must'':16 ''pace'':6 ''pastri'':10 ''saga'':7 ''sink'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (204, 'DALMATIONS SWEDEN', 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 0.99, 106, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''dalmat'':1 ''emot'':4 ''epistl'':5 ''hunter'':11 ''manhattan'':19 ''moos'':8 ''must'':13 ''overcom'':14 ''penthous'':20 ''robot'':16 ''sweden'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (205, 'DANCES NONE', 'A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 58, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''amus'':21 ''butler'':17 ''danc'':1 ''dog'':12 ''insight'':4 ''kill'':15 ''must'':14 ''none'':2 ''park'':22 ''reflect'':5 ''shark'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (206, 'DANCING FEVER', 'A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank', 2006, 1, NULL, true, 6, 0.99, 144, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''crocodil'':17 ''danc'':1 ''explor'':8 ''face'':15 ''fever'':2 ''forens'':11 ''must'':14 ''psychologist'':12 ''shark'':20 ''stori'':5 ''stun'':4 ''tank'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (207, 'DANGEROUS UPTOWN', 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California', 2006, 1, NULL, true, 7, 4.99, 121, 26.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''california'':19 ''danger'':1 ''dog'':17 ''mad'':8 ''must'':14 ''overcom'':15 ''scientist'':9 ''stori'':5 ''unbeliev'':4 ''uptown'':2 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (208, 'DARES PLUTO', 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans', 2006, 1, NULL, true, 7, 2.99, 89, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astronaut'':16 ''dare'':1 ''defeat'':14 ''dentist'':11 ''fate'':4 ''must'':13 ''new'':18 ''orlean'':19 ''pluto'':2 ''robot'':8 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (209, 'DARKNESS WAR', 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert', 2006, 1, NULL, true, 6, 2.99, 99, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boy'':16 ''dark'':1 ''desert'':20 ''documentari'':5 ''escap'':14 ''hunter'':11 ''husband'':8 ''must'':13 ''sahara'':19 ''touch'':4 ''war'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (210, 'DARKO DORADO', 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans', 2006, 1, NULL, true, 3, 4.99, 130, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''darko'':1 ''dog'':16 ''dorado'':2 ''frisbe'':8 ''husband'':11 ''must'':13 ''new'':18 ''orlean'':19 ''redeem'':14 ''reflect'':5 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (211, 'DARLING BREAKING', 'A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico', 2006, 1, NULL, true, 7, 4.99, 165, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astronaut'':8 ''break'':2 ''brilliant'':4 ''darl'':1 ''documentari'':5 ''gulf'':19 ''mexico'':21 ''must'':13 ''squirrel'':11 ''student'':16 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (212, 'DARN FORRESTER', 'A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat', 2006, 1, NULL, true, 7, 4.99, 185, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':22 ''darn'':1 ''explor'':12 ''fate'':4 ''forrest'':2 ''jet'':21 ''must'':14 ''shark'':9 ''stori'':5 ''succumb'':15 ''technic'':17 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (214, 'DAUGHTER MADIGAN', 'A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station', 2006, 1, NULL, true, 3, 4.99, 59, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''beauti'':4 ''confront'':15 ''daughter'':1 ''first'':20 ''hunter'':8 ''mad'':11 ''madigan'':2 ''man'':21 ''must'':14 ''scientist'':12 ''space'':22 ''squirrel'':17 ''station'':23 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (215, 'DAWN POND', 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin', 2006, 1, NULL, true, 4, 4.99, 57, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''berlin'':19 ''dawn'':1 ''defeat'':15 ''dentist'':8 ''documentari'':5 ''forens'':11 ''must'':14 ''pond'':2 ''psychologist'':12 ''thought'':4 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (216, 'DAY UNFAITHFUL', 'A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat', 2006, 1, NULL, true, 3, 4.99, 113, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':23 ''compos'':8 ''day'':1 ''documentari'':5 ''find'':15 ''mad'':11 ''must'':14 ''scientist'':12 ''stun'':4 ''technic'':17 ''u'':22 ''u-boat'':21 ''unfaith'':2 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (217, 'DAZED PUNK', 'A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 4.99, 120, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':23 ''action'':5 ''action-pack'':4 ''amus'':24 ''daze'':1 ''discov'':17 ''forens'':19 ''must'':16 ''pack'':6 ''park'':25 ''pioneer'':10 ''psychologist'':20 ''punk'':2 ''stori'':7 ''technic'':13 ''writer'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (218, 'DECEIVER BETRAYED', 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India', 2006, 1, NULL, true, 7, 0.99, 122, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':18 ''betray'':2 ''build'':14 ''deceiv'':1 ''husband'':16 ''india'':19 ''moos'':8 ''must'':13 ''squirrel'':11 ''stori'':5 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (219, 'DEEP CRUSADE', 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia', 2006, 1, NULL, true, 6, 4.99, 51, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''amaz'':4 ''australia'':18 ''compos'':16 ''crocodil'':8 ''crusad'':2 ''deep'':1 ''discov'':14 ''must'':13 ''squirrel'':11 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (220, 'DEER VIRGINIAN', 'A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia', 2006, 1, NULL, true, 7, 2.99, 106, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''cow'':9 ''deer'':1 ''georgia'':21 ''mad'':8,17 ''must'':14 ''overcom'':15 ''scientist'':18 ''soviet'':20 ''stori'':5 ''thought'':4 ''virginian'':2 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (221, 'DELIVERANCE MULHOLLAND', 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank', 2006, 1, NULL, true, 4, 0.99, 100, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''astound'':4 ''butler'':16 ''conquer'':14 ''deliver'':1 ''monkey'':8 ''moos'':11 ''mulholland'':2 ''must'':13 ''saga'':5 ''shark'':19 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (222, 'DESERT POSEIDON', 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans', 2006, 1, NULL, true, 4, 4.99, 64, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astronaut'':16 ''brilliant'':4 ''build'':14 ''butler'':8 ''desert'':1 ''documentari'':5 ''frisbe'':11 ''must'':13 ''new'':18 ''orlean'':19 ''poseidon'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (223, 'DESIRE ALIEN', 'A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 76, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''alien'':2 ''astronaut'':19 ''desir'':1 ''dog'':10 ''fast'':5 ''fast-pac'':4 ''first'':22 ''forens'':13 ''man'':23 ''meet'':17 ''must'':16 ''pace'':6 ''psychologist'':14 ''space'':24 ''station'':25 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (224, 'DESPERATE TRAINSPOTTING', 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California', 2006, 1, NULL, true, 7, 4.99, 81, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''california'':19 ''desper'':1 ''epic'':4 ''face'':15 ''forens'':8 ''lumberjack'':17 ''must'':14 ''psychologist'':9 ''teacher'':12 ''trainspot'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (225, 'DESTINATION JERK', 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat', 2006, 1, NULL, true, 3, 0.99, 76, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''beauti'':4 ''boat'':21 ''build'':14 ''car'':16 ''cat'':11 ''destin'':1 ''jerk'':2 ''must'':13 ''teacher'':8 ''u'':20 ''u-boat'':19 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (226, 'DESTINY SATURDAY', 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia', 2006, 1, NULL, true, 4, 4.99, 56, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''conquer'':14 ''crocodil'':8,11 ''destini'':1 ''drama'':5 ''explor'':16 ''georgia'':19 ''must'':13 ''saturday'':2 ''soviet'':18 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (227, 'DETAILS PACKER', 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat', 2006, 1, NULL, true, 4, 4.99, 88, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''boat'':16,21 ''compos'':11 ''detail'':1 ''epic'':4 ''face'':14 ''must'':13 ''packer'':2 ''saga'':5 ''u'':20 ''u-boat'':19 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (228, 'DETECTIVE VISION', 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan', 2006, 1, NULL, true, 4, 0.99, 143, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':18 ''detect'':1 ''documentari'':5 ''fanci'':4 ''hunter'':16 ''japan'':19 ''must'':13 ''pioneer'':8 ''redeem'':14 ''vision'':2 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (229, 'DEVIL DESIRE', 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan', 2006, 1, NULL, true, 6, 4.99, 87, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''administr'':17 ''ancient'':19 ''beauti'':4 ''databas'':16 ''dentist'':11 ''desir'':2 ''devil'':1 ''face'':14 ''japan'':20 ''monkey'':8 ''must'':13 ''reflect'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (230, 'DIARY PANIC', 'A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India', 2006, 1, NULL, true, 7, 2.99, 107, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''ancient'':20 ''charact'':5 ''cow'':13 ''diari'':1 ''frisbe'':9 ''india'':21 ''mad'':12 ''man'':18 ''must'':15 ''outgun'':16 ''panic'':2 ''studi'':6 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (231, 'DINOSAUR SECRETARY', 'A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies', 2006, 1, NULL, true, 7, 2.99, 63, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''canadian'':21 ''dinosaur'':1 ''drama'':7 ''feminist'':10 ''girl'':13 ''must'':15 ''pack'':6 ''reach'':16 ''robot'':18 ''rocki'':22 ''secretari'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (232, 'DIRTY ACE', 'A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback', 2006, 1, NULL, true, 7, 2.99, 147, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ace'':2 ''action'':5 ''action-pack'':4 ''build'':18 ''charact'':7 ''dentist'':20 ''dirti'':1 ''forens'':11 ''girl'':15 ''must'':17 ''outback'':23 ''pack'':6 ''psychologist'':12 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (233, 'DISCIPLE MOTHER', 'A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 141, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''boat'':12 ''discipl'':1 ''face'':15 ''mad'':8 ''moos'':17 ''mother'':2 ''must'':14 ''reflect'':5 ''scientist'':9 ''shark'':20 ''tank'':21 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (234, 'DISTURBING SCARFACE', 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat', 2006, 1, NULL, true, 6, 2.99, 94, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boat'':21 ''butler'':11 ''crocodil'':8 ''display'':5 ''disturb'':1 ''lacklustur'':4 ''monkey'':16 ''must'':13 ''overcom'':14 ''scarfac'':2 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (235, 'DIVIDE MONSTER', 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery', 2006, 1, NULL, true, 6, 2.99, 68, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''divid'':1 ''forens'':11 ''intrepid'':4 ''man'':8 ''monasteri'':20 ''monster'':2 ''must'':14 ''psychologist'':12 ''reach'':15 ''saga'':5 ''squirrel'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (236, 'DIVINE RESURRECTION', 'A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 2.99, 100, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':20 ''amus'':21 ''bore'':4 ''charact'':5 ''divin'':1 ''man'':9 ''must'':14 ''park'':22 ''resurrect'':2 ''studi'':6 ''succumb'':15 ''teacher'':17 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (237, 'DIVORCE SHINING', 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India', 2006, 1, NULL, true, 3, 2.99, 47, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''ancient'':18 ''cat'':16 ''crocodil'':8 ''discov'':14 ''divorc'':1 ''india'':19 ''must'':13 ''saga'':5 ''shine'':2 ''student'':11 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (238, 'DOCTOR GRAIL', 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback', 2006, 1, NULL, true, 4, 2.99, 57, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''doctor'':1 ''drama'':5 ''forens'':16 ''grail'':2 ''insight'':4 ''must'':13 ''outback'':20 ''psychologist'':17 ''reach'':14 ''waitress'':11 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (239, 'DOGMA FAMILY', 'A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans', 2006, 1, NULL, true, 5, 4.99, 122, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''administr'':10 ''astronaut'':18 ''brilliant'':4 ''charact'':5 ''databas'':9 ''dogma'':1 ''famili'':2 ''monkey'':13 ''must'':15 ''new'':20 ''orlean'':21 ''studi'':6 ''succumb'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (240, 'DOLLS RAGE', 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback', 2006, 1, NULL, true, 7, 2.99, 120, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''display'':5 ''doll'':1 ''escap'':14 ''frisbe'':11 ''must'':13 ''outback'':19 ''pioneer'':8 ''rage'':2 ''teacher'':16 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (241, 'DONNIE ALLEY', 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan', 2006, 1, NULL, true, 4, 0.99, 125, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''alley'':2 ''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''butler'':10 ''donni'':1 ''frisbe'':13 ''inspir'':6 ''japan'':21 ''must'':15 ''tale'':7 ''teacher'':18 ''vanquish'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (242, 'DOOM DANCING', 'A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 68, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''astound'':4 ''battl'':15 ''car'':8 ''convent'':21 ''danc'':2 ''doom'':1 ''lumberjack'':17 ''mad'':11 ''must'':14 ''mysql'':20 ''panorama'':5 ''scientist'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (243, 'DOORS PRESIDENT', 'A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico', 2006, 1, NULL, true, 3, 4.99, 49, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boy'':18 ''display'':7 ''door'':1 ''gulf'':21 ''inspir'':6 ''mexico'':23 ''must'':15 ''overcom'':16 ''presid'':2 ''squirrel'':10 ''woman'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (244, 'DORADO NOTTING', 'A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California', 2006, 1, NULL, true, 5, 4.99, 139, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''action'':5 ''action-pack'':4 ''california'':22 ''dorado'':1 ''frisbe'':20 ''meet'':18 ''must'':17 ''not'':2 ''pack'':6 ''shark'':15 ''sumo'':10 ''tale'':7 ''wrestler'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (245, 'DOUBLE WRATH', 'A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 177, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''challeng'':14 ''dog'':11 ''doubl'':1 ''gulf'':19 ''madman'':16 ''mexico'':21 ''must'':13 ''thought'':4 ''woman'':8 ''wrath'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (246, 'DOUBTFIRE LABYRINTH', 'A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert', 2006, 1, NULL, true, 5, 4.99, 154, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''butler'':8 ''compos'':11 ''cow'':17 ''desert'':21 ''doubtfir'':1 ''intrepid'':4 ''labyrinth'':2 ''mad'':16 ''meet'':14 ''must'':13 ''panorama'':5 ''sahara'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (247, 'DOWNHILL ENOUGH', 'A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert', 2006, 1, NULL, true, 3, 0.99, 47, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''chef'':9 ''desert'':22 ''downhil'':1 ''emot'':4 ''enough'':2 ''forens'':12 ''monkey'':18 ''must'':15 ''pastri'':8 ''psychologist'':13 ''sahara'':21 ''succumb'':16 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (248, 'DOZEN LION', 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies', 2006, 1, NULL, true, 6, 4.99, 177, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''canadian'':19 ''cat'':8 ''defeat'':14 ''dozen'':1 ''drama'':5 ''frisbe'':16 ''girl'':11 ''lion'':2 ''must'':13 ''rocki'':20 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (249, 'DRACULA CRYSTAL', 'A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House', 2006, 1, NULL, true, 7, 0.99, 176, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':19 ''cat'':11 ''crystal'':2 ''dracula'':1 ''feminist'':8 ''find'':14 ''frisbe'':16 ''fun'':20 ''hous'':21 ''must'':13 ''reflect'':5 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (250, 'DRAGON SQUAD', 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China', 2006, 1, NULL, true, 4, 0.99, 170, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':18 ''boy'':8 ''china'':19 ''dragon'':1 ''must'':13 ''outgun'':14 ''reflect'':5 ''squad'':2 ''taut'':4 ''teacher'':16 ''waitress'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (251, 'DRAGONFLY STRANGERS', 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria', 2006, 1, NULL, true, 6, 4.99, 133, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''bore'':4 ''documentari'':5 ''dragonfli'':1 ''man'':11,16 ''must'':13 ''nigeria'':18 ''pioneer'':8 ''stranger'':2 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (252, 'DREAM PICKUP', 'A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico', 2006, 1, NULL, true, 6, 2.99, 135, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''car'':8 ''compos'':11 ''display'':5 ''dream'':1 ''epic'':4 ''forens'':16 ''gulf'':20 ''mexico'':22 ''must'':13 ''overcom'':14 ''pickup'':2 ''psychologist'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (253, 'DRIFTER COMMANDMENTS', 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat', 2006, 1, NULL, true, 5, 4.99, 61, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boat'':20 ''command'':2 ''discov'':14 ''drifter'':1 ''epic'':4 ''husband'':16 ''jet'':19 ''must'':13 ''reflect'':5 ''squirrel'':11 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (254, 'DRIVER ANNIE', 'A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House', 2006, 1, NULL, true, 4, 2.99, 159, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''anni'':2 ''boat'':17 ''butler'':9 ''car'':12 ''charact'':5 ''driver'':1 ''fun'':21 ''hous'':22 ''lacklustur'':4 ''must'':14 ''redeem'':15 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (255, 'DRIVING POLISH', 'A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 4.99, 175, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':22 ''action'':5 ''action-pack'':4 ''boat'':19 ''drive'':1 ''feminist'':10 ''mine'':23 ''must'':16 ''pack'':6 ''polish'':2 ''shaft'':24 ''sink'':17 ''technic'':13 ''writer'':14 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (256, 'DROP WATERFRONT', 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China', 2006, 1, NULL, true, 6, 4.99, 178, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':18 ''china'':19 ''documentari'':5 ''drop'':1 ''explor'':11 ''fanci'':4 ''husband'':8 ''madman'':16 ''must'':13 ''reach'':14 ''waterfront'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (257, 'DRUMLINE CYCLONE', 'A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies', 2006, 1, NULL, true, 3, 0.99, 110, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''canadian'':21 ''cyclon'':2 ''drumlin'':1 ''insight'':4 ''mad'':17 ''monkey'':8 ''must'':14 ''outrac'':15 ''panorama'':5 ''rocki'':22 ''scientist'':18 ''sumo'':11 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (258, 'DRUMS DYNAMITE', 'A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 0.99, 96, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':19 ''amus'':20 ''confront'':14 ''crocodil'':8,11 ''display'':5 ''dog'':16 ''drum'':1 ''dynamit'':2 ''epic'':4 ''must'':13 ''park'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (259, 'DUCK RACER', 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank', 2006, 1, NULL, true, 4, 2.99, 116, 15.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''dog'':16 ''duck'':1 ''lacklustur'':4 ''must'':13 ''overcom'':14 ''racer'':2 ''shark'':19 ''squirrel'':11 ''tank'':20 ''teacher'':8 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (260, 'DUDE BLINDNESS', 'A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House', 2006, 1, NULL, true, 3, 4.99, 132, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''blind'':2 ''dude'':1 ''face'':14 ''frisbe'':16 ''fun'':20 ''hous'':21 ''husband'':8 ''lumberjack'':11 ''must'':13 ''reflect'':5 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (261, 'DUFFEL APOCALYPSE', 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention', 2006, 1, NULL, true, 5, 0.99, 171, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''apocalyps'':2 ''boat'':8 ''challeng'':14 ''convent'':20 ''display'':5 ''duffel'':1 ''emot'':4 ''explor'':11 ''madman'':16 ''must'':13 ''mysql'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (262, 'DUMBO LUST', 'A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico', 2006, 1, NULL, true, 5, 0.99, 119, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''conquer'':14 ''dentist'':11 ''display'':5 ''dumbo'':1 ''feminist'':8 ''gulf'':19 ''husband'':16 ''lust'':2 ''mexico'':21 ''must'':13 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (263, 'DURHAM PANKY', 'A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 4.99, 154, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':20 ''boy'':11 ''brilliant'':4 ''durham'':1 ''face'':14 ''girl'':8 ''mad'':16 ''mine'':21 ''must'':13 ''panki'':2 ''panorama'':5 ''scientist'':17 ''shaft'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (264, 'DWARFS ALTER', 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 101, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''alter'':2 ''ancient'':18 ''challeng'':14 ''compos'':16 ''dog'':11 ''dwarf'':1 ''emot'':4 ''girl'':8 ''japan'':19 ''must'':13 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (265, 'DYING MAKER', 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California', 2006, 1, NULL, true, 5, 4.99, 168, 28.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''boat'':8 ''california'':18 ''cat'':16 ''die'':1 ''intrepid'':4 ''kill'':14 ''maker'':2 ''monkey'':11 ''must'':13 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (266, 'DYNAMITE TARZAN', 'A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat', 2006, 1, NULL, true, 4, 0.99, 141, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':23 ''documentari'':5 ''dynamit'':1 ''explor'':18 ''face'':16 ''forens'':8 ''intrepid'':4 ''mad'':12 ''must'':15 ''psychologist'':9 ''scientist'':13 ''tarzan'':2 ''u'':22 ''u-boat'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (267, 'EAGLES PANKY', 'A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 140, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boy'':11 ''car'':8 ''desert'':21 ''eagl'':1 ''find'':14 ''must'':13 ''panki'':2 ''sahara'':20 ''shark'':17 ''stori'':5 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (268, 'EARLY HOME', 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback', 2006, 1, NULL, true, 6, 4.99, 96, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''amaz'':4 ''earli'':1 ''home'':2 ''husband'':12 ''mad'':8 ''meet'':15 ''must'':14 ''outback'':20 ''panorama'':5 ''scientist'':9 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (269, 'EARRING INSTINCT', 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria', 2006, 1, NULL, true, 3, 0.99, 98, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''charact'':5 ''cow'':13 ''dentist'':9 ''earring'':1 ''find'':16 ''instinct'':2 ''mad'':12 ''must'':15 ''nigeria'':20 ''studi'':6 ''stun'':4 ''teacher'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (270, 'EARTH VISION', 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India', 2006, 1, NULL, true, 7, 0.99, 85, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''ancient'':18 ''butler'':8 ''drama'':5 ''earth'':1 ''india'':19 ''madman'':11 ''must'':13 ''outrac'':14 ''stun'':4 ''vision'':2 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (271, 'EASY GLADIATOR', 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India', 2006, 1, NULL, true, 5, 4.99, 148, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':19 ''chef'':17 ''easi'':1 ''fate'':4 ''girl'':11 ''gladiat'':2 ''india'':20 ''monkey'':8 ''must'':13 ''overcom'':14 ''pastri'':16 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (272, 'EDGE KISSING', 'A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat', 2006, 1, NULL, true, 5, 4.99, 153, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''beauti'':4 ''boat'':22 ''compos'':8 ''cow'':12 ''edg'':1 ''jet'':21 ''kiss'':2 ''mad'':11,17 ''must'':14 ''redeem'':15 ''scientist'':18 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (273, 'EFFECT GLADIATOR', 'A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 0.99, 107, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''beauti'':4 ''chef'':9,13 ''display'':5 ''effect'':1 ''forens'':18 ''gladiat'':2 ''manhattan'':22 ''must'':15 ''outgun'':16 ''pastri'':8,12 ''penthous'':23 ''psychologist'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (274, 'EGG IGBY', 'A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 67, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''administr'':18 ''beauti'':4 ''boat'':8 ''databas'':17 ''documentari'':5 ''egg'':1 ''first'':21 ''igbi'':2 ''man'':22 ''must'':14 ''space'':23 ''station'':24 ''succumb'':15 ''sumo'':11 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (275, 'EGYPT TENENBAUMS', 'A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 85, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''agent'':12 ''amus'':21 ''astronaut'':17 ''egypt'':1 ''intrepid'':4 ''madman'':8 ''must'':14 ''outrac'':15 ''park'':22 ''secret'':11 ''stori'':5 ''tenenbaum'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (276, 'ELEMENT FREDDY', 'A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat', 2006, 1, NULL, true, 6, 4.99, 115, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':23 ''cow'':19 ''element'':1 ''freddi'':2 ''inspir'':6 ''jet'':22 ''kill'':16 ''mad'':18 ''must'':15 ''reflect'':7 ''squirrel'':13 ''waitress'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (277, 'ELEPHANT TROJAN', 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon', 2006, 1, NULL, true, 4, 4.99, 126, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':20 ''beauti'':4 ''eleph'':1 ''forens'':11 ''frisbe'':17 ''lumberjack'':8 ''must'':14 ''overcom'':15 ''panorama'':5 ''psychologist'':12 ''trojan'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (278, 'ELF MURDER', 'A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 4.99, 155, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':21 ''action'':5 ''action-pack'':4 ''elf'':1 ''frisbe'':10 ''girl'':18 ''mine'':22 ''murder'':2 ''must'':15 ''pack'':6 ''reach'':16 ''shaft'':23 ''stori'':7 ''woman'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (279, 'ELIZABETH SHANE', 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan', 2006, 1, NULL, true, 7, 4.99, 152, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''display'':5 ''dog'':11 ''elizabeth'':1 ''face'':14 ''japan'':20 ''lacklustur'':4 ''must'':13 ''shane'':2 ''sumo'':16 ''woman'':8 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (280, 'EMPIRE MALKOVICH', 'A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House', 2006, 1, NULL, true, 7, 0.99, 177, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''abandon'':19 ''amaz'':4 ''car'':16 ''cat'':11 ''empir'':1 ''face'':14 ''feminist'':8 ''fun'':20 ''hous'':21 ''malkovich'':2 ''must'':13 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (281, 'ENCINO ELF', 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon', 2006, 1, NULL, true, 6, 0.99, 143, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astound'':4 ''baloon'':19 ''confront'':14 ''drama'':5 ''elf'':2 ''encino'':1 ''feminist'':8 ''husband'':16 ''must'':13 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (282, 'ENCOUNTERS CURTAIN', 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans', 2006, 1, NULL, true, 5, 0.99, 92, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':17 ''build'':15 ''chef'':9 ''curtain'':2 ''encount'':1 ''epistl'':5 ''insight'':4 ''must'':14 ''new'':19 ''orlean'':20 ''pastri'':8 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (283, 'ENDING CROWDS', 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin', 2006, 1, NULL, true, 6, 0.99, 85, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''berlin'':18 ''crowd'':2 ''dentist'':8 ''display'':5 ''end'':1 ''madman'':11 ''must'':13 ''squirrel'':16 ''unbeliev'':4 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (284, 'ENEMY ODDS', 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India', 2006, 1, NULL, true, 5, 4.99, 77, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':19 ''astronaut'':17 ''enemi'':1 ''fanci'':4 ''india'':20 ''mad'':8 ''must'':14 ''odd'':2 ''panorama'':5 ''pursu'':15 ''scientist'':9 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (285, 'ENGLISH BULWORTH', 'A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China', 2006, 1, NULL, true, 3, 0.99, 51, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':20 ''bulworth'':2 ''chef'':9,13 ''china'':21 ''crocodil'':18 ''english'':1 ''epistl'':5 ''intrepid'':4 ''must'':15 ''pastri'':8,12 ''pursu'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (286, 'ENOUGH RAGING', 'A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert', 2006, 1, NULL, true, 7, 2.99, 158, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':13 ''astound'':4 ''boat'':9 ''charact'':5 ''cow'':19 ''desert'':23 ''enough'':1 ''find'':16 ''mad'':18 ''must'':15 ''rage'':2 ''sahara'':22 ''secret'':12 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (287, 'ENTRAPMENT SATISFACTION', 'A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat', 2006, 1, NULL, true, 5, 0.99, 176, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':22 ''cow'':17 ''entrap'':1 ''hunter'':8 ''mad'':16 ''must'':13 ''panorama'':5 ''reach'':14 ''satisfact'':2 ''teacher'':11 ''thought'':4 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (288, 'ESCAPE METROPOLIS', 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans', 2006, 1, NULL, true, 7, 2.99, 167, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':8 ''boat'':17 ''escap'':1 ''metropoli'':2 ''must'':14 ''new'':19 ''orlean'':20 ''outgun'':15 ''taut'':4 ''technic'':11 ''writer'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (289, 'EVE RESURRECTION', 'A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon', 2006, 1, NULL, true, 5, 4.99, 66, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':15 ''awe'':5 ''awe-inspir'':4 ''baloon'':23 ''challeng'':18 ''chef'':11 ''databas'':14 ''eve'':1 ''inspir'':6 ''must'':17 ''pastri'':10 ''resurrect'':2 ''teacher'':20 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (290, 'EVERYONE CRAFT', 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria', 2006, 1, NULL, true, 4, 0.99, 163, 29.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''butler'':16 ''craft'':2 ''dentist'':11 ''display'':5 ''everyon'':1 ''fate'':4 ''must'':13 ''nigeria'':18 ''reach'':14 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (291, 'EVOLUTION ALTER', 'A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory', 2006, 1, NULL, true, 5, 0.99, 174, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''alter'':2 ''baloon'':20 ''charact'':5 ''evolut'':1 ''explor'':17 ''factori'':21 ''fanci'':4 ''feminist'':9 ''find'':15 ''madman'':12 ''must'':14 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (292, 'EXCITEMENT EVE', 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 51, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''brilliant'':4 ''car'':11 ''conquer'':14 ''crocodil'':16 ''documentari'':5 ''eve'':2 ''excit'':1 ''monkey'':8 ''must'':13 ''shark'':19 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (293, 'EXORCIST STING', 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin', 2006, 1, NULL, true, 6, 2.99, 167, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''berlin'':20 ''conquer'':15 ''dog'':8 ''drama'':5 ''exorcist'':1 ''mad'':17 ''must'':14 ''scientist'':18 ''sting'':2 ''sumo'':11 ''touch'':4 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (294, 'EXPECATIONS NATURAL', 'A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat', 2006, 1, NULL, true, 5, 4.99, 138, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''amaz'':4 ''boat'':22 ''butler'':8 ''drama'':5 ''expec'':1 ''husband'':11 ''must'':13 ''natur'':2 ''reach'':14 ''shark'':17 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (295, 'EXPENDABLE STALLION', 'A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat', 2006, 1, NULL, true, 3, 0.99, 97, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''amaz'':4 ''boat'':23 ''charact'':5 ''cow'':10 ''discov'':16 ''expend'':1 ''hunter'':18 ''mad'':9 ''must'':15 ''squirrel'':13 ''stallion'':2 ''studi'':6 ''u'':22 ''u-boat'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (296, 'EXPRESS LONELY', 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California', 2006, 1, NULL, true, 5, 2.99, 178, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':8 ''boat'':11,16 ''bore'':4 ''california'':18 ''drama'':5 ''express'':1 ''face'':14 ''lone'':2 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (297, 'EXTRAORDINARY CONQUERER', 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin', 2006, 1, NULL, true, 6, 2.99, 122, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''berlin'':19 ''conquer'':2 ''dog'':8 ''extraordinari'':1 ''face'':14 ''feminist'':11 ''forens'':16 ''must'':13 ''psychologist'':17 ''stori'':5 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (298, 'EYES DRIVING', 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback', 2006, 1, NULL, true, 4, 2.99, 172, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''cat'':8 ''drive'':2 ''explor'':16 ''eye'':1 ''fight'':14 ''must'':13 ''outback'':19 ''stori'':5 ''thrill'':4 ''waitress'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (299, 'FACTORY DRAGON', 'A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert', 2006, 1, NULL, true, 4, 0.99, 144, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''desert'':22 ''dragon'':2 ''escap'':16 ''factori'':1 ''frisbe'':13 ''lumberjack'':18 ''must'':15 ''pack'':6 ''saga'':7 ''sahara'':21 ''teacher'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (300, 'FALCON VOLUME', 'A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans', 2006, 1, NULL, true, 5, 4.99, 102, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''falcon'':1 ''fate'':4 ''hunter'':12 ''must'':14 ''new'':20 ''orlean'':21 ''redeem'':15 ''saga'':5 ''shark'':18 ''sumo'':8 ''volum'':2 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (301, 'FAMILY SWEET', 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin', 2006, 1, NULL, true, 4, 0.99, 155, 24.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''berlin'':18 ''boy'':11 ''documentari'':5 ''epic'':4 ''escap'':14 ''famili'':1 ''must'':13 ''sweet'':2 ''teacher'':8 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (302, 'FANTASIA PARK', 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia', 2006, 1, NULL, true, 5, 2.99, 131, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''australia'':20 ''documentari'':5 ''fantasia'':1 ''feminist'':18 ''mad'':8 ''must'':15 ''outrac'':16 ''park'':2 ''scientist'':9 ''shark'':13 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (303, 'FANTASY TROOPERS', 'A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention', 2006, 1, NULL, true, 6, 0.99, 58, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''agent'':17 ''convent'':21 ''fantasi'':1 ''monkey'':11 ''must'':13 ''mysql'':20 ''overcom'':14 ''saga'':5 ''secret'':16 ''teacher'':8 ''touch'':4 ''trooper'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (304, 'FARGO GANDHI', 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback', 2006, 1, NULL, true, 3, 2.99, 130, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''chef'':9 ''crocodil'':12 ''fargo'':1 ''gandhi'':2 ''must'':14 ''outback'':20 ''pastri'':8 ''reach'':15 ''reflect'':5 ''teacher'':17 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (305, 'FATAL HAUNTED', 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 91, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''agent'':12 ''ancient'':19 ''beauti'':4 ''confront'':15 ''dentist'':17 ''drama'':5 ''fatal'':1 ''haunt'':2 ''japan'':20 ''must'':14 ''secret'':11 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (306, 'FEATHERS METAL', 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia', 2006, 1, NULL, true, 3, 0.99, 104, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''australia'':18 ''dog'':16 ''feather'':1 ''find'':14 ''metal'':2 ''monkey'':8 ''must'':13 ''teacher'':11 ''thought'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (307, 'FELLOWSHIP AUTUMN', 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon', 2006, 1, NULL, true, 6, 4.99, 77, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''autumn'':2 ''baloon'':19 ''dentist'':8 ''fellowship'':1 ''hunter'':11 ''lacklustur'':4 ''meet'':14 ''must'':13 ''reflect'':5 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (308, 'FERRIS MOTHER', 'A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico', 2006, 1, NULL, true, 3, 2.99, 142, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''display'':5 ''ferri'':1 ''frisbe'':8,11 ''girl'':16 ''gulf'':19 ''kill'':14 ''mexico'':21 ''mother'':2 ''must'':13 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (309, 'FEUD FROGMEN', 'A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 98, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''brilliant'':4 ''canadian'':21 ''chase'':16 ''cow'':13 ''databas'':8 ''feud'':1 ''frogmen'':2 ''mad'':12 ''must'':15 ''reflect'':5 ''rocki'':22 ''woman'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (310, 'FEVER EMPIRE', 'A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 158, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''boat'':11,16 ''cat'':8 ''defeat'':14 ''empir'':2 ''fever'':1 ''gulf'':19 ''insight'':4 ''mexico'':21 ''must'':13 ''panorama'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (311, 'FICTION CHRISTMAS', 'A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 0.99, 72, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''battl'':15 ''christma'':2 ''emot'':4 ''fiction'':1 ''mine'':21 ''must'':14 ''robot'':17 ''shaft'':22 ''shark'':9 ''student'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (312, 'FIDDLER LOST', 'A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico', 2006, 1, NULL, true, 4, 4.99, 75, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''bore'':4 ''challeng'':14 ''dog'':11 ''fiddler'':1 ''gulf'':19 ''lost'':2 ''madman'':16 ''mexico'':21 ''must'':13 ''squirrel'':8 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (313, 'FIDELITY DEVIL', 'A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat', 2006, 1, NULL, true, 5, 4.99, 118, 11.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':25 ''chef'':20 ''compos'':14 ''devil'':2 ''drama'':7 ''fidel'':1 ''inspir'':6 ''must'':16 ''pastri'':19 ''reach'':17 ''technic'':10 ''u'':24 ''u-boat'':23 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (314, 'FIGHT JAWBREAKER', 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 91, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''escap'':14 ''fight'':1 ''girl'':11,16 ''intrepid'':4 ''jawbreak'':2 ''manhattan'':19 ''must'':13 ''panorama'':5 ''penthous'':20 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (315, 'FINDING ANACONDA', 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans', 2006, 1, NULL, true, 4, 0.99, 156, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':9 ''anaconda'':2 ''battl'':15 ''databas'':8 ''fate'':4 ''find'':1 ''girl'':12 ''must'':14 ''new'':19 ''orlean'':20 ''squirrel'':17 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (316, 'FIRE WOLVES', 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria', 2006, 1, NULL, true, 5, 4.99, 173, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''documentari'':5 ''dog'':11 ''fire'':1 ''frisbe'':8 ''intrepid'':4 ''lumberjack'':16 ''must'':13 ''nigeria'':18 ''outrac'':14 ''wolv'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (317, 'FIREBALL PHILADELPHIA', 'A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 0.99, 148, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':20 ''amaz'':4 ''dentist'':8 ''firebal'':1 ''madman'':17 ''mine'':21 ''must'':14 ''philadelphia'':2 ''shaft'':22 ''shark'':12 ''vanquish'':15 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (318, 'FIREHOUSE VIETNAM', 'A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert', 2006, 1, NULL, true, 7, 0.99, 103, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':11 ''boy'':14 ''charact'':7 ''chef'':20 ''desert'':24 ''firehous'':1 ''inspir'':6 ''kill'':17 ''must'':16 ''pastri'':19 ''sahara'':23 ''studi'':8 ''vietnam'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (319, 'FISH OPUS', 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia', 2006, 1, NULL, true, 4, 2.99, 125, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':16 ''australia'':18 ''confront'':14 ''display'':5 ''feminist'':8 ''fish'':1 ''girl'':11 ''must'':13 ''opus'':2 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (320, 'FLAMINGOS CONNECTICUT', 'A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 80, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''cat'':18 ''compos'':10,13 ''connecticut'':2 ''desert'':22 ''fast'':5 ''fast-pac'':4 ''flamingo'':1 ''meet'':16 ''must'':15 ''pace'':6 ''reflect'':7 ''sahara'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (321, 'FLASH WARS', 'A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico', 2006, 1, NULL, true, 3, 4.99, 123, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astound'':4 ''chase'':15 ''chef'':12 ''flash'':1 ''gulf'':20 ''mexico'':22 ''moos'':8 ''must'':14 ''pastri'':11 ''saga'':5 ''student'':17 ''war'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (322, 'FLATLINERS KILLER', 'A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 2.99, 100, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':20 ''agent'':9 ''display'':5 ''flatlin'':1 ''killer'':2 ''mine'':21 ''must'':14 ''robot'':17 ''secret'':8 ''shaft'':22 ''sink'':15 ''taut'':4 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (323, 'FLIGHT LIES', 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans', 2006, 1, NULL, true, 7, 4.99, 179, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''charact'':5 ''crocodil'':9 ''flight'':1 ''lie'':2 ''must'':14 ''new'':19 ''orlean'':20 ''pioneer'':12 ''pursu'':15 ''studi'':6 ''stun'':4 ''teacher'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (324, 'FLINTSTONES HAPPINESS', 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California', 2006, 1, NULL, true, 3, 4.99, 148, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boy'':16 ''california'':18 ''fate'':4 ''flintston'':1 ''happi'':2 ''husband'':8 ''moos'':11 ''must'':13 ''stori'':5 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (325, 'FLOATS GARDEN', 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 145, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''ancient'':20 ''boat'':18 ''car'':13 ''chase'':16 ''epistl'':7 ''float'':1 ''garden'':2 ''japan'':21 ''must'':15 ''pack'':6 ''robot'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (326, 'FLYING HOOK', 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria', 2006, 1, NULL, true, 6, 2.99, 69, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''challeng'':15 ''cow'':9 ''display'':5 ''dog'':12 ''fli'':1 ''frisbe'':17 ''hook'':2 ''mad'':8 ''must'':14 ''nigeria'':19 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (327, 'FOOL MOCKINGBIRD', 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat', 2006, 1, NULL, true, 3, 4.99, 158, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''boat'':21 ''compos'':11 ''crocodil'':8 ''defeat'':14 ''fool'':1 ''lacklustur'':4 ''madman'':16 ''mockingbird'':2 ''must'':13 ''tale'':5 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (328, 'FOREVER CANDIDATE', 'A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat', 2006, 1, NULL, true, 7, 2.99, 131, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':22 ''candid'':2 ''forev'':1 ''frisbe'':17 ''man'':12 ''must'':14 ''panorama'':5 ''pursu'':15 ''technic'':8 ''u'':21 ''u-boat'':20 ''unbeliev'':4 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (329, 'FORREST SONS', 'A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat', 2006, 1, NULL, true, 4, 2.99, 63, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':21 ''butler'':12 ''defeat'':15 ''documentari'':5 ''explor'':17 ''forens'':8 ''forrest'':1 ''jet'':20 ''must'':14 ''psychologist'':9 ''son'':2 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (330, 'FORRESTER COMANCHEROS', 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria', 2006, 1, NULL, true, 7, 4.99, 112, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''comanchero'':2 ''fate'':4 ''forens'':11 ''forrest'':1 ''man'':17 ''must'':14 ''nigeria'':19 ''psychologist'':12 ''redeem'':15 ''squirrel'':8 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (331, 'FORWARD TEMPLE', 'A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans', 2006, 1, NULL, true, 6, 2.99, 90, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astound'':4 ''challeng'':16 ''display'':5 ''forens'':8 ''forward'':1 ''girl'':18 ''mad'':12 ''must'':15 ''new'':20 ''orlean'':21 ''psychologist'':9 ''scientist'':13 ''templ'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (332, 'FRANKENSTEIN STRANGER', 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria', 2006, 1, NULL, true, 7, 0.99, 159, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''charact'':5 ''chef'':18 ''feminist'':9 ''frankenstein'':1 ''insight'':4 ''must'':14 ''nigeria'':20 ''pastri'':17 ''pioneer'':12 ''pursu'':15 ''stranger'':2 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (333, 'FREAKY POCUS', 'A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico', 2006, 1, NULL, true, 7, 2.99, 126, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''chase'':17 ''chef'':11 ''crocodil'':14 ''documentari'':7 ''fast'':5 ''fast-pac'':4 ''freaki'':1 ''gulf'':22 ''mexico'':24 ''must'':16 ''pace'':6 ''pastri'':10 ''pocus'':2 ''squirrel'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (334, 'FREDDY STORM', 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback', 2006, 1, NULL, true, 6, 4.99, 65, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''freddi'':1 ''husband'':16 ''intrepid'':4 ''lumberjack'':11 ''man'':8 ''must'':13 ''outback'':19 ''saga'':5 ''storm'':2 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (335, 'FREEDOM CLEOPATRA', 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon', 2006, 1, NULL, true, 5, 0.99, 133, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''baloon'':20 ''cleopatra'':2 ''cow'':12 ''dentist'':8 ''emot'':4 ''face'':15 ''freedom'':1 ''mad'':11 ''must'':14 ''reflect'':5 ''squirrel'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (336, 'FRENCH HOLIDAY', 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin', 2006, 1, NULL, true, 5, 4.99, 99, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''berlin'':18 ''dog'':8 ''epistl'':5 ''feminist'':11 ''french'':1 ''holiday'':2 ''kill'':14 ''madman'':16 ''must'':13 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (337, 'FRIDA SLIPPER', 'A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 73, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''boat'':16 ''car'':11 ''escap'':14 ''fate'':4 ''frida'':1 ''lumberjack'':8 ''mine'':20 ''must'':13 ''shaft'':21 ''slipper'':2 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (338, 'FRISCO FORREST', 'A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank', 2006, 1, NULL, true, 6, 4.99, 51, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''documentari'':5 ''forrest'':2 ''frisco'':1 ''mad'':16 ''must'':13 ''pioneer'':11 ''pursu'':14 ''scientist'':17 ''shark'':20 ''tank'':21 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (339, 'FROGMEN BREAKING', 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia', 2006, 1, NULL, true, 5, 0.99, 111, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''australia'':19 ''break'':2 ''cat'':12 ''chase'':15 ''frogmen'':1 ''lumberjack'':17 ''mad'':8 ''must'':14 ''scientist'':9 ''unbeliev'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (340, 'FRONTIER CABIN', 'A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House', 2006, 1, NULL, true, 6, 4.99, 183, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':19 ''battl'':14 ''cabin'':2 ''emot'':4 ''frontier'':1 ''fun'':20 ''hous'':21 ''madman'':8 ''must'':13 ''stori'':5 ''teacher'':16 ''waitress'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (341, 'FROST HEAD', 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention', 2006, 1, NULL, true, 5, 0.99, 82, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''amaz'':4 ''cat'':11 ''convent'':20 ''discov'':14 ''frost'':1 ''head'':2 ''husband'':16 ''lumberjack'':8 ''must'':13 ''mysql'':19 ''reflect'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (342, 'FUGITIVE MAGUIRE', 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia', 2006, 1, NULL, true, 7, 4.99, 83, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''australia'':19 ''battl'':15 ''crocodil'':17 ''epistl'':5 ''feminist'':8 ''fugit'':1 ''maguir'':2 ''must'':14 ''sumo'':11 ''taut'':4 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (343, 'FULL FLATLINERS', 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank', 2006, 1, NULL, true, 6, 2.99, 94, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''astronaut'':8 ''beauti'':4 ''documentari'':5 ''flatlin'':2 ''full'':1 ''monkey'':16 ''moos'':11 ''must'':13 ''pursu'':14 ''shark'':19 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (344, 'FURY MURDER', 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery', 2006, 1, NULL, true, 3, 0.99, 178, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':8 ''fight'':15 ''forens'':11 ''furi'':1 ''lacklustur'':4 ''monasteri'':20 ''murder'':2 ''must'':14 ''psychologist'':12 ''reflect'':5 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (345, 'GABLES METROPOLIS', 'A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory', 2006, 1, NULL, true, 3, 0.99, 161, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''baloon'':20 ''cat'':8 ''challeng'':14 ''chef'':17 ''display'':5 ''factori'':21 ''fate'':4 ''gabl'':1 ''metropoli'':2 ''must'':13 ''pastri'':16 ''pioneer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (346, 'GALAXY SWEETHEARTS', 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin', 2006, 1, NULL, true, 4, 4.99, 128, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''berlin'':18 ''emot'':4 ''face'':14 ''galaxi'':1 ''must'':13 ''pioneer'':11 ''reflect'':5 ''squirrel'':16 ''sweetheart'':2 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (347, 'GAMES BOWFINGER', 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery', 2006, 1, NULL, true, 7, 4.99, 119, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astound'':4 ''bowfing'':2 ''butler'':8,16 ''challeng'':14 ''documentari'':5 ''explor'':11 ''game'':1 ''monasteri'':19 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (348, 'GANDHI KWAI', 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin', 2006, 1, NULL, true, 7, 0.99, 86, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''agent'':13 ''berlin'':20 ''boat'':18 ''chase'':16 ''display'':5 ''gandhi'':1 ''kwai'':2 ''mad'':8 ''must'':15 ''scientist'':9 ''secret'':12 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (349, 'GANGS PRIDE', 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin', 2006, 1, NULL, true, 4, 2.99, 185, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''berlin'':20 ''charact'':5 ''confront'':16 ''frisbe'':18 ''gang'':1 ''must'':15 ''pride'':2 ''shark'':13 ''studi'':6 ''taut'':4 ''woman'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (350, 'GARDEN ISLAND', 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback', 2006, 1, NULL, true, 3, 4.99, 80, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''charact'':5 ''garden'':1 ''island'':2 ''madman'':12 ''man'':17 ''must'':14 ''outback'':20 ''reach'':15 ''studi'':6 ''unbeliev'':4 ''woman'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (351, 'GASLIGHT CRUSADE', 'A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico', 2006, 1, NULL, true, 4, 2.99, 106, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''amaz'':4 ''astronaut'':11 ''boy'':8 ''crusad'':2 ''epistl'':5 ''gaslight'':1 ''gulf'':19 ''man'':16 ''mexico'':21 ''must'':13 ''redeem'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (352, 'GATHERING CALENDAR', 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 176, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''calendar'':2 ''conquer'':14 ''convent'':20 ''frisbe'':16 ''gather'':1 ''intrepid'':4 ''moos'':11 ''must'':13 ''mysql'':19 ''pioneer'':8 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (353, 'GENTLEMEN STAGE', 'A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station', 2006, 1, NULL, true, 6, 2.99, 125, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''dentist'':18 ''first'':21 ''gentlemen'':1 ''inspir'':6 ''man'':22 ''monkey'':10 ''must'':15 ''overcom'':16 ''reflect'':7 ''space'':23 ''stage'':2 ''station'':24 ''student'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (354, 'GHOST GROUNDHOG', 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India', 2006, 1, NULL, true, 6, 4.99, 85, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':18 ''brilliant'':4 ''car'':16 ''compos'':11 ''ghost'':1 ''groundhog'':2 ''india'':19 ''madman'':8 ''must'':13 ''panorama'':5 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (355, 'GHOSTBUSTERS ELF', 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin', 2006, 1, NULL, true, 7, 0.99, 101, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''berlin'':18 ''chase'':14 ''compos'':16 ''dog'':8 ''elf'':2 ''epistl'':5 ''feminist'':11 ''ghostbust'':1 ''must'':13 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (356, 'GIANT TROOPERS', 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies', 2006, 1, NULL, true, 5, 2.99, 102, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''canadian'':19 ''display'':5 ''fate'':4 ''feminist'':8 ''giant'':1 ''monkey'':11,16 ''must'':13 ''rocki'':20 ''trooper'':2 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (357, 'GILBERT PELICAN', 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 0.99, 114, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''conquer'':14 ''crocodil'':16 ''fate'':4 ''feminist'':11 ''gilbert'':1 ''man'':8 ''manhattan'':19 ''must'':13 ''pelican'':2 ''penthous'':20 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (358, 'GILMORE BOILED', 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat', 2006, 1, NULL, true, 5, 0.99, 163, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boat'':8,21 ''boil'':2 ''documentari'':5 ''gilmor'':1 ''husband'':11 ''must'':13 ''student'':16 ''succumb'':14 ''u'':20 ''u-boat'':19 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (359, 'GLADIATOR WESTWARD', 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan', 2006, 1, NULL, true, 6, 4.99, 173, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':19 ''astound'':4 ''dentist'':17 ''gladiat'':1 ''japan'':20 ''must'':14 ''reflect'':5 ''sink'':15 ''squirrel'':8 ''sumo'':11 ''westward'':2 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (360, 'GLASS DYING', 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan', 2006, 1, NULL, true, 4, 0.99, 103, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':18 ''astound'':4 ''astronaut'':11 ''die'':2 ''dog'':16 ''drama'':5 ''fight'':14 ''frisbe'':8 ''glass'':1 ''japan'':19 ''must'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (361, 'GLEAMING JAWBREAKER', 'A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies', 2006, 1, NULL, true, 5, 2.99, 89, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''amaz'':4 ''canadian'':20 ''car'':17 ''compos'':8 ''discov'':15 ''display'':5 ''forens'':11 ''gleam'':1 ''jawbreak'':2 ''must'':14 ''psychologist'':12 ''rocki'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (362, 'GLORY TRACY', 'A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 115, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''amaz'':4 ''cat'':16 ''discov'':14 ''first'':19 ''glori'':1 ''man'':20 ''must'':13 ''saga'':5 ''space'':21 ''station'':22 ''traci'':2 ''woman'':8,11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (363, 'GO PURPLE', 'A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon', 2006, 1, NULL, true, 3, 0.99, 54, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''administr'':14 ''baloon'':22 ''battl'':17 ''car'':10 ''databas'':13 ''display'':7 ''fast'':5 ''fast-pac'':4 ''go'':1 ''must'':16 ''pace'':6 ''purpl'':2 ''woman'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (364, 'GODFATHER DIARY', 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback', 2006, 1, NULL, true, 3, 2.99, 73, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''car'':16 ''chase'':14 ''diari'':2 ''godfath'':1 ''lumberjack'':8 ''must'':13 ''outback'':19 ''saga'':5 ''squirrel'':11 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (365, 'GOLD RIVER', 'A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory', 2006, 1, NULL, true, 4, 4.99, 154, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''baloon'':21 ''databas'':8 ''documentari'':5 ''factori'':22 ''gold'':1 ''mad'':17 ''must'':14 ''reach'':15 ''river'':2 ''scientist'':18 ''taut'':4 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (366, 'GOLDFINGER SENSIBILITY', 'A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans', 2006, 1, NULL, true, 3, 0.99, 93, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''chef'':18 ''defeat'':15 ''drama'':5 ''goldfing'':1 ''hunter'':12 ''insight'':4 ''mad'':8 ''must'':14 ''new'':20 ''orlean'':21 ''pastri'':17 ''scientist'':9 ''sensibl'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (367, 'GOLDMINE TYCOON', 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback', 2006, 1, NULL, true, 6, 0.99, 153, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''brilliant'':4 ''compos'':8 ''conquer'':14 ''epistl'':5 ''frisbe'':11 ''goldmin'':1 ''husband'':16 ''must'':13 ''outback'':19 ''tycoon'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (368, 'GONE TROUBLE', 'A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 2.99, 84, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''charact'':5 ''conquer'':17 ''cow'':10 ''forens'':13 ''gone'':1 ''insight'':4 ''mad'':9 ''manhattan'':23 ''must'':16 ''penthous'':24 ''psychologist'':14 ''shark'':20 ''studi'':6 ''troubl'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (369, 'GOODFELLAS SALUTE', 'A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory', 2006, 1, NULL, true, 4, 4.99, 56, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''baloon'':20 ''cow'':17 ''dog'':8 ''explor'':11 ''factori'':21 ''goodfella'':1 ''mad'':16 ''must'':13 ''salut'':2 ''sink'':14 ''tale'':5 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (370, 'GORGEOUS BINGO', 'A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory', 2006, 1, NULL, true, 4, 2.99, 108, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''baloon'':22 ''bingo'':2 ''car'':14 ''display'':7 ''factori'':23 ''gorgeous'':1 ''must'':16 ''overcom'':17 ''pack'':6 ''sumo'':10 ''waitress'':19 ''wrestler'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (371, 'GOSFORD DONNIE', 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin', 2006, 1, NULL, true, 5, 4.99, 129, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':18 ''berlin'':20 ''donni'':2 ''epic'':4 ''gosford'':1 ''mad'':8 ''monkey'':12 ''must'':14 ''panorama'':5 ''redeem'':15 ''scientist'':9 ''secret'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (372, 'GRACELAND DYNAMITE', 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans', 2006, 1, NULL, true, 5, 4.99, 140, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':17 ''cat'':8 ''databas'':16 ''display'':5 ''dynamit'':2 ''girl'':11 ''graceland'':1 ''must'':13 ''new'':19 ''orlean'':20 ''overcom'':14 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (373, 'GRADUATE LORD', 'A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China', 2006, 1, NULL, true, 7, 2.99, 156, 14.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''ancient'':20 ''china'':21 ''epistl'':5 ''girl'':8 ''graduat'':1 ''lacklustur'':4 ''lord'':2 ''mad'':17 ''meet'':15 ''must'':14 ''scientist'':18 ''shark'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (374, 'GRAFFITI LOVE', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin', 2006, 1, NULL, true, 3, 0.99, 117, 29.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''berlin'':19 ''build'':15 ''compos'':17 ''epistl'':5 ''graffiti'':1 ''hunter'':12 ''love'':2 ''must'':14 ''sumo'':8 ''unbeliev'':4 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (375, 'GRAIL FRANKENSTEIN', 'A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 2.99, 85, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''fight'':14 ''frankenstein'':2 ''girl'':16 ''grail'':1 ''mine'':20 ''monkey'':11 ''must'':13 ''saga'':5 ''shaft'':21 ''teacher'':8 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (376, 'GRAPES FURY', 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia', 2006, 1, NULL, true, 4, 0.99, 155, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''australia'':20 ''bore'':4 ''cow'':9 ''furi'':2 ''grape'':1 ''mad'':8 ''meet'':16 ''must'':15 ''robot'':18 ''sumo'':12 ''wrestler'':13 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (377, 'GREASE YOUTH', 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia', 2006, 1, NULL, true, 7, 0.99, 135, 20.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''agent'':9 ''compos'':17 ''emot'':4 ''escap'':15 ''georgia'':20 ''greas'':1 ''must'':14 ''panorama'':5 ''secret'':8 ''soviet'':19 ''waitress'':12 ''youth'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (378, 'GREATEST NORTH', 'A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin', 2006, 1, NULL, true, 5, 2.99, 93, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''agent'':10 ''astound'':4 ''berlin'':21 ''build'':16 ''charact'':5 ''greatest'':1 ''must'':15 ''north'':2 ''robot'':13 ''secret'':9 ''shark'':19 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (379, 'GREEDY ROOTS', 'A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies', 2006, 1, NULL, true, 7, 0.99, 166, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''amaz'':4 ''butler'':12 ''canadian'':20 ''chase'':15 ''greedi'':1 ''hunter'':17 ''must'':14 ''reflect'':5 ''rocki'':21 ''root'':2 ''shark'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (380, 'GREEK EVERYONE', 'A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 176, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''butler'':8 ''confront'':14 ''display'':5 ''everyon'':2 ''first'':20 ''greek'':1 ''man'':21 ''must'':13 ''shark'':17 ''space'':22 ''station'':23 ''stun'':4 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (381, 'GRINCH MASSAGE', 'A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station', 2006, 1, NULL, true, 7, 4.99, 150, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''display'':5 ''feminist'':11 ''first'':19 ''grinch'':1 ''intrepid'':4 ''madman'':8 ''man'':20 ''massag'':2 ''must'':13 ''pioneer'':16 ''pursu'':14 ''space'':21 ''station'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (382, 'GRIT CLOCKWORK', 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 137, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''clockwork'':2 ''confront'':14 ''dentist'':8 ''display'':5 ''grit'':1 ''lumberjack'':16 ''must'':13 ''shark'':19 ''squirrel'':11 ''tank'':20 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (383, 'GROOVE FICTION', 'A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 0.99, 111, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':20 ''defeat'':15 ''fiction'':2 ''groov'':1 ''lumberjack'':17 ''mine'':21 ''moos'':8 ''must'':14 ''reflect'':5 ''shaft'':22 ''shark'':12 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (384, 'GROSSE WONDERFUL', 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia', 2006, 1, NULL, true, 5, 4.99, 49, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''australia'':18 ''cat'':8 ''drama'':5 ''epic'':4 ''explor'':11 ''gross'':1 ''moos'':16 ''must'':13 ''redeem'':14 ''wonder'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (385, 'GROUNDHOG UNCUT', 'A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 4.99, 139, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':8 ''brilliant'':4 ''butler'':17 ''discov'':15 ''groundhog'':1 ''manhattan'':20 ''must'':14 ''panorama'':5 ''penthous'':21 ''technic'':11 ''uncut'':2 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (386, 'GUMP DATE', 'A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft', 2006, 1, NULL, true, 3, 4.99, 53, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''abandon'':19 ''date'':2 ''explor'':8 ''gump'':1 ''husband'':16 ''intrepid'':4 ''kill'':14 ''mine'':20 ''must'':13 ''shaft'':21 ''student'':11 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (387, 'GUN BONNIE', 'A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico', 2006, 1, NULL, true, 7, 0.99, 100, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''bonni'':2 ''bore'':4 ''build'':15 ''display'':5 ''gulf'':20 ''gun'':1 ''husband'':12 ''mexico'':22 ''must'':14 ''sumo'':8 ''waitress'':17 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (388, 'GUNFIGHT MOON', 'A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert', 2006, 1, NULL, true, 5, 0.99, 70, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''chef'':9 ''dentist'':17 ''desert'':21 ''epic'':4 ''explor'':12 ''gunfight'':1 ''moon'':2 ''must'':14 ''pastri'':8 ''reach'':15 ''reflect'':5 ''sahara'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (389, 'GUNFIGHTER MUSSOLINI', 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan', 2006, 1, NULL, true, 3, 2.99, 127, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':18 ''boy'':11 ''gunfight'':1 ''japan'':19 ''kill'':14 ''man'':16 ''mussolini'':2 ''must'':13 ''robot'':8 ''saga'':5 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (390, 'GUYS FALCON', 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat', 2006, 1, NULL, true, 4, 4.99, 84, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boat'':21 ''bore'':4 ''falcon'':2 ''feminist'':11 ''guy'':1 ''must'':13 ''redeem'':14 ''squirrel'':16 ''stori'':5 ''u'':20 ''u-boat'':19 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (391, 'HALF OUTFIELD', 'A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat', 2006, 1, NULL, true, 6, 2.99, 146, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''boat'':21 ''crocodil'':12 ''databas'':8 ''epic'':4 ''epistl'':5 ''face'':15 ''half'':1 ''jet'':20 ''madman'':17 ''must'':14 ''outfield'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (392, 'HALL CASSIDY', 'A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia', 2006, 1, NULL, true, 5, 4.99, 51, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''battl'':16 ''beauti'':4 ''cassidi'':2 ''chef'':9 ''georgia'':21 ''hall'':1 ''must'':15 ''panorama'':5 ''pastri'':8 ''pioneer'':18 ''shark'':13 ''soviet'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (393, 'HALLOWEEN NUTS', 'A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat', 2006, 1, NULL, true, 6, 2.99, 47, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''amaz'':4 ''boat'':23 ''dentist'':18 ''fight'':16 ''forens'':8 ''halloween'':1 ''must'':15 ''nut'':2 ''panorama'':5 ''psychologist'':9 ''technic'':12 ''u'':22 ''u-boat'':21 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (394, 'HAMLET WISDOM', 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback', 2006, 1, NULL, true, 7, 2.99, 146, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''hamlet'':1 ''man'':8,11 ''must'':13 ''outback'':19 ''reflect'':5 ''robot'':16 ''sink'':14 ''touch'':4 ''wisdom'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (395, 'HANDICAP BOONDOCK', 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia', 2006, 1, NULL, true, 4, 0.99, 108, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''boondock'':2 ''display'':5 ''georgia'':20 ''handicap'':1 ''must'':13 ''pioneer'':8 ''soviet'':19 ''squirrel'':11 ''sumo'':16 ''vanquish'':14 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (396, 'HANGING DEEP', 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin', 2006, 1, NULL, true, 5, 4.99, 62, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''berlin'':20 ''boat'':10 ''build'':16 ''crocodil'':13 ''deep'':2 ''hang'':1 ''monkey'':18 ''must'':15 ''pack'':6 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (397, 'HANKY OCTOBER', 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia', 2006, 1, NULL, true, 5, 2.99, 107, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':9 ''bore'':4 ''databas'':8 ''epistl'':5 ''explor'':12 ''georgia'':20 ''hanki'':1 ''madman'':17 ''must'':14 ''octob'':2 ''pursu'':15 ''soviet'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (398, 'HANOVER GALAXY', 'A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention', 2006, 1, NULL, true, 5, 4.99, 47, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''agent'':12 ''boy'':17 ''convent'':21 ''galaxi'':2 ''girl'':8 ''hanov'':1 ''must'':14 ''mysql'':20 ''reflect'':5 ''secret'':11 ''stun'':4 ''succumb'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (399, 'HAPPINESS UNITED', 'A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 100, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''ancient'':21 ''feminist'':13 ''forens'':18 ''happi'':1 ''husband'':10 ''japan'':22 ''meet'':16 ''must'':15 ''pack'':6 ''panorama'':7 ''psychologist'':19 ''unit'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (400, 'HARDLY ROBBERS', 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin', 2006, 1, NULL, true, 7, 2.99, 72, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''berlin'':19 ''car'':12 ''charact'':5 ''emot'':4 ''hard'':1 ''hunter'':9 ''kill'':15 ''must'':14 ''robber'':2 ''studi'':6 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (401, 'HAROLD FRENCH', 'A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert', 2006, 1, NULL, true, 6, 0.99, 168, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''desert'':21 ''french'':2 ''harold'':1 ''moos'':17 ''must'':14 ''outrac'':15 ''saga'':5 ''sahara'':20 ''student'':12 ''stun'':4 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (402, 'HARPER DYING', 'A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert', 2006, 1, NULL, true, 3, 0.99, 52, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''awe'':5 ''awe-inspir'':4 ''cat'':13 ''confront'':16 ''desert'':22 ''die'':2 ''feminist'':18 ''harper'':1 ''inspir'':6 ''must'':15 ''reflect'':7 ''sahara'':21 ''woman'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (403, 'HARRY IDAHO', 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California', 2006, 1, NULL, true, 5, 4.99, 121, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''california'':19 ''dog'':17 ''feminist'':12 ''harri'':1 ''idaho'':2 ''must'':14 ''outrac'':15 ''taut'':4 ''technic'':8 ''writer'':9 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (404, 'HATE HANDICAP', 'A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station', 2006, 1, NULL, true, 4, 0.99, 107, 26.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''first'':20 ''handicap'':2 ''hate'':1 ''hunter'':17 ''intrepid'':4 ''mad'':8 ''man'':21 ''must'':14 ''overcom'':15 ''pioneer'':12 ''reflect'':5 ''scientist'':9 ''space'':22 ''station'':23'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (405, 'HAUNTED ANTITRUST', 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India', 2006, 1, NULL, true, 6, 4.99, 76, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''amaz'':4 ''ancient'':19 ''antitrust'':2 ''dentist'':11 ''haunt'':1 ''india'':20 ''man'':8 ''must'':13 ''reach'':14 ''saga'':5 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (406, 'HAUNTING PIANIST', 'A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 0.99, 181, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':22 ''administr'':11 ''amus'':23 ''compos'':14 ''databas'':10 ''defeat'':17 ''fast'':5 ''fast-pac'':4 ''haunt'':1 ''must'':16 ''pace'':6 ''park'':24 ''pianist'':2 ''squirrel'':19 ''stori'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (407, 'HAWK CHILL', 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia', 2006, 1, NULL, true, 5, 0.99, 47, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''australia'':21 ''car'':19 ''chill'':2 ''compos'':14 ''drama'':7 ''hawk'':1 ''mad'':10 ''must'':16 ''outgun'':17 ''pack'':6 ''scientist'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (408, 'HEAD STRANGER', 'A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico', 2006, 1, NULL, true, 4, 4.99, 69, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''confront'':14 ''crocodil'':11 ''dog'':16 ''gulf'':19 ''head'':1 ''hunter'':8 ''mexico'':21 ''must'':13 ''saga'':5 ''stranger'':2 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (409, 'HEARTBREAKERS BRIGHT', 'A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies', 2006, 1, NULL, true, 3, 4.99, 59, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''bright'':2 ''canadian'':23 ''chef'':20 ''dentist'':14 ''documentari'':7 ''heartbreak'':1 ''inspir'':6 ''must'':16 ''outrac'':17 ''pastri'':19 ''rocki'':24 ''shark'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (410, 'HEAVEN FREEDOM', 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans', 2006, 1, NULL, true, 7, 2.99, 48, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''butler'':8 ''car'':11 ''freedom'':2 ''heaven'':1 ''intrepid'':4 ''man'':16 ''must'':13 ''new'':18 ''orlean'':19 ''stori'':5 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (411, 'HEAVENLY GUN', 'A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat', 2006, 1, NULL, true, 5, 4.99, 49, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''battl'':15 ''beauti'':4 ''boat'':21 ''forens'':8 ''frisbe'':12 ''gun'':2 ''heaven'':1 ''jet'':20 ''moos'':17 ''must'':14 ''psychologist'':9 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (412, 'HEAVYWEIGHTS BEAST', 'A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 4.99, 102, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''abandon'':19 ''amus'':20 ''beast'':2 ''compos'':8 ''dog'':11 ''heavyweight'':1 ''must'':13 ''overcom'':14 ''park'':21 ''stori'':5 ''unbeliev'':4 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (413, 'HEDWIG ALTER', 'A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery', 2006, 1, NULL, true, 7, 2.99, 169, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''alter'':2 ''chase'':16 ''hedwig'':1 ''lumberjack'':13 ''monasteri'':22 ''must'':15 ''pack'':6 ''sumo'':18 ''woman'':10 ''wrestler'':19 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (414, 'HELLFIGHTERS SIERRA', 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia', 2006, 1, NULL, true, 3, 2.99, 75, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''battl'':15 ''boat'':17 ''dentist'':12 ''georgia'':20 ''hellfight'':1 ''must'':14 ''reflect'':5 ''shark'':9 ''sierra'':2 ''soviet'':19 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (415, 'HIGH ENCINO', 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia', 2006, 1, NULL, true, 3, 2.99, 84, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''australia'':19 ''encino'':2 ''fate'':4 ''high'':1 ''hunter'':11 ''must'':13 ''outrac'':14 ''saga'':5 ''sumo'':16 ''waitress'':8 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (416, 'HIGHBALL POTTER', 'A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert', 2006, 1, NULL, true, 6, 0.99, 110, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''administr'':19 ''databas'':18 ''desert'':23 ''dog'':13 ''highbal'':1 ''husband'':10 ''must'':15 ''pack'':6 ''potter'':2 ''redeem'':16 ''saga'':7 ''sahara'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (417, 'HILLS NEIGHBORS', 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat', 2006, 1, NULL, true, 5, 0.99, 93, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':21 ''car'':16 ''display'':5 ''epic'':4 ''feminist'':11 ''hill'':1 ''hunter'':8 ''must'':13 ''neighbor'':2 ''sink'':14 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (418, 'HOBBIT ALIEN', 'A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station', 2006, 1, NULL, true, 5, 0.99, 157, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''alien'':2 ''compos'':16 ''drama'':5 ''emot'':4 ''first'':19 ''girl'':11 ''hobbit'':1 ''husband'':8 ''man'':20 ''must'':13 ''outgun'':14 ''space'':21 ''station'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (419, 'HOCUS FRIDA', 'A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank', 2006, 1, NULL, true, 4, 2.99, 141, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''frida'':2 ''girl'':10 ''hocus'':1 ''inspir'':6 ''madman'':13 ''must'':15 ''outgun'':16 ''shark'':21 ''student'':18 ''tale'':7 ''tank'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (420, 'HOLES BRANNIGAN', 'A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies', 2006, 1, NULL, true, 7, 4.99, 128, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''boy'':19 ''brannigan'':2 ''canadian'':22 ''fast'':5 ''fast-pac'':4 ''fight'':17 ''hole'':1 ''must'':16 ''pace'':6 ''reflect'':7 ''rocki'':23 ''student'':14 ''technic'':10 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (421, 'HOLIDAY GAMES', 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan', 2006, 1, NULL, true, 7, 4.99, 78, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':18 ''boy'':16 ''game'':2 ''holiday'':1 ''insight'':4 ''japan'':19 ''madman'':11 ''must'':13 ''pursu'':14 ''reflect'':5 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (422, 'HOLLOW JEOPARDY', 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery', 2006, 1, NULL, true, 7, 4.99, 136, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astronaut'':12 ''beauti'':4 ''boat'':17 ''charact'':5 ''hollow'':1 ''jeopardi'':2 ''monasteri'':20 ''must'':14 ''overcom'':15 ''robot'':9 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (423, 'HOLLYWOOD ANONYMOUS', 'A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat', 2006, 1, NULL, true, 7, 0.99, 69, 29.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''anonym'':2 ''boat'':23 ''boy'':10 ''dog'':18 ''epistl'':7 ''escap'':16 ''explor'':13 ''fast'':5 ''fast-pac'':4 ''hollywood'':1 ''must'':15 ''pace'':6 ''u'':22 ''u-boat'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (424, 'HOLOCAUST HIGHBALL', 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia', 2006, 1, NULL, true, 6, 0.99, 149, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''compos'':10 ''find'':16 ''georgia'':21 ''highbal'':2 ''holocaust'':1 ''inspir'':6 ''man'':13 ''must'':15 ''robot'':18 ''soviet'':20 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (425, 'HOLY TADPOLE', 'A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory', 2006, 1, NULL, true, 6, 0.99, 88, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''baloon'':21 ''display'':7 ''dog'':18 ''factori'':22 ''feminist'':10 ''holi'':1 ''must'':15 ''pack'':6 ''pioneer'':13 ''pursu'':16 ''tadpol'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (426, 'HOME PITY', 'A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention', 2006, 1, NULL, true, 7, 4.99, 185, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''agent'':12 ''challeng'':15 ''convent'':21 ''home'':1 ''man'':8 ''must'':14 ''mysql'':20 ''panorama'':5 ''piti'':2 ''secret'':11 ''teacher'':17 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (427, 'HOMEWARD CIDER', 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 0.99, 103, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':8 ''cider'':2 ''fight'':14 ''homeward'':1 ''manhattan'':19 ''must'':13 ''penthous'':20 ''reflect'':5 ''squirrel'':11,16 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (428, 'HOMICIDE PEACH', 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 141, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''astound'':4 ''boy'':11,16 ''confront'':14 ''convent'':20 ''documentari'':5 ''homicid'':1 ''hunter'':8 ''must'':13 ''mysql'':19 ''peach'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (429, 'HONEY TIES', 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 84, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''crocodil'':11 ''honey'':1 ''lumberjack'':16 ''must'':13 ''outrac'':14 ''shark'':19 ''stori'':5 ''tank'':20 ''taut'':4 ''tie'':2 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (430, 'HOOK CHARIOTS', 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia', 2006, 1, NULL, true, 7, 0.99, 49, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''australia'':18 ''boy'':8,16 ''chariot'':2 ''dog'':11 ''hook'':1 ''insight'':4 ''must'':13 ''redeem'':14 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (431, 'HOOSIERS BIRDCAGE', 'A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station', 2006, 1, NULL, true, 3, 2.99, 176, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''astound'':4 ''birdcag'':2 ''boat'':11 ''car'':16 ''display'':5 ''explor'':8 ''first'':19 ''hoosier'':1 ''man'':20 ''must'':13 ''space'':21 ''station'':22 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (432, 'HOPE TOOTSIE', 'A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank', 2006, 1, NULL, true, 4, 2.99, 139, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''amaz'':4 ''documentari'':5 ''hope'':1 ''must'':14 ''outgun'':15 ''shark'':18,21 ''student'':8 ''sumo'':11 ''tank'':22 ''tootsi'':2 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (433, 'HORN WORKING', 'A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank', 2006, 1, NULL, true, 4, 2.99, 95, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''display'':5 ''horn'':1 ''mad'':8 ''monkey'':18 ''must'':15 ''scientist'':9 ''shark'':21 ''stun'':4 ''succumb'':16 ''tank'':22 ''technic'':12 ''work'':2 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (434, 'HORROR REIGN', 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria', 2006, 1, NULL, true, 3, 0.99, 139, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''build'':15 ''car'':12 ''documentari'':5 ''horror'':1 ''husband'':17 ''must'':14 ''nigeria'':19 ''reign'':2 ''shark'':9 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (435, 'HOTEL HAPPINESS', 'A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback', 2006, 1, NULL, true, 6, 4.99, 181, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''challeng'':16 ''chef'':9 ''happi'':2 ''hotel'':1 ''mad'':18 ''must'':15 ''outback'':22 ''pastri'':8 ''scientist'':19 ''shark'':13 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (436, 'HOURS RAGE', 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia', 2006, 1, NULL, true, 4, 0.99, 122, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''explor'':8 ''fate'':4 ''feminist'':11 ''georgia'':20 ''hour'':1 ''meet'':14 ''must'':13 ''rage'':2 ''soviet'':19 ''stori'':5 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (437, 'HOUSE DYNAMITE', 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia', 2006, 1, NULL, true, 7, 2.99, 109, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''battl'':14 ''dynamit'':2 ''georgia'':19 ''hous'':1 ''must'':13 ''pioneer'':8 ''soviet'':18 ''squirrel'':11 ''stori'':5 ''student'':16 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (438, 'HUMAN GRAFFITI', 'A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico', 2006, 1, NULL, true, 3, 2.99, 68, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''administr'':18 ''beauti'':4 ''chase'':15 ''databas'':17 ''graffiti'':2 ''gulf'':21 ''human'':1 ''mexico'':23 ''must'':14 ''reflect'':5 ''sumo'':11 ''woman'':8 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (439, 'HUNCHBACK IMPOSSIBLE', 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan', 2006, 1, NULL, true, 4, 4.99, 151, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':18 ''compos'':16 ''dentist'':11 ''fight'':14 ''frisbe'':8 ''hunchback'':1 ''imposs'':2 ''japan'':19 ''must'':13 ''touch'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (440, 'HUNGER ROOF', 'A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 0.99, 105, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''administr'':12 ''databas'':11 ''hunger'':1 ''husband'':17 ''mine'':21 ''must'':14 ''outgun'':15 ''roof'':2 ''shaft'':22 ''student'':8 ''unbeliev'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (441, 'HUNTER ALTER', 'A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank', 2006, 1, NULL, true, 5, 2.99, 125, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''agent'':18 ''alter'':2 ''boat'':12 ''cow'':9 ''drama'':5 ''emot'':4 ''hunter'':1 ''mad'':8 ''must'':14 ''redeem'':15 ''secret'':17 ''shark'':21 ''tank'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (442, 'HUNTING MUSKETEERS', 'A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 65, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''dentist'':11 ''hunt'':1 ''mine'':20 ''musket'':2 ''must'':13 ''outrac'':14 ''pioneer'':8 ''reflect'':5 ''shaft'':21 ''thrill'':4 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (443, 'HURRICANE AFFAIR', 'A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 49, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':20 ''administr'':9 ''affair'':2 ''databas'':8 ''epistl'':5 ''hunter'':17 ''hurrican'':1 ''lacklustur'':4 ''meet'':15 ''mine'':21 ''must'':14 ''shaft'':22 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (444, 'HUSTLER PARTY', 'A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert', 2006, 1, NULL, true, 3, 4.99, 83, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''conquer'':15 ''desert'':21 ''emot'':4 ''hustler'':1 ''monkey'':12 ''must'':14 ''parti'':2 ''reflect'':5 ''robot'':17 ''sahara'':20 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (445, 'HYDE DOCTOR', 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat', 2006, 1, NULL, true, 5, 2.99, 100, 11.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''boat'':20 ''boy'':8 ''doctor'':2 ''documentari'':5 ''fanci'':4 ''hyde'':1 ''jet'':19 ''must'':13 ''redeem'':14 ''woman'':11,16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (446, 'HYSTERICAL GRAIL', 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 4.99, 150, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''amaz'':4 ''build'':14 ''car'':16 ''dentist'':11 ''grail'':2 ''hyster'':1 ''madman'':8 ''manhattan'':19 ''must'':13 ''penthous'':20 ''saga'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (447, 'ICE CROSSING', 'A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 2.99, 131, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''butler'':10 ''cross'':2 ''fast'':5 ''fast-pac'':4 ''ice'':1 ''manhattan'':21 ''moos'':13 ''must'':15 ''overcom'':16 ''pace'':6 ''penthous'':22 ''pioneer'':18 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (448, 'IDAHO LOVE', 'A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback', 2006, 1, NULL, true, 3, 2.99, 172, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':19 ''crocodil'':13 ''databas'':18 ''drama'':7 ''fast'':5 ''fast-pac'':4 ''idaho'':1 ''love'':2 ''meet'':16 ''must'':15 ''outback'':22 ''pace'':6 ''student'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (449, 'IDENTITY LOVER', 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback', 2006, 1, NULL, true, 4, 2.99, 119, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''bore'':4 ''car'':17 ''compos'':8 ''cow'':12 ''defeat'':15 ''ident'':1 ''lover'':2 ''mad'':11 ''must'':14 ''outback'':20 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (450, 'IDOLS SNATCHERS', 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery', 2006, 1, NULL, true, 5, 2.99, 84, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''car'':8 ''compos'':11 ''drama'':5 ''fight'':14 ''idol'':1 ''insight'':4 ''man'':16 ''monasteri'':19 ''must'':13 ''snatcher'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (451, 'IGBY MAKER', 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory', 2006, 1, NULL, true, 7, 4.99, 160, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''baloon'':19 ''documentari'':5 ''dog'':11,16 ''epic'':4 ''factori'':20 ''hunter'':8 ''igbi'':1 ''maker'':2 ''must'':13 ''outgun'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (452, 'ILLUSION AMELIE', 'A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 0.99, 122, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':20 ''ameli'':2 ''boat'':8 ''emot'':4 ''epistl'':5 ''illus'':1 ''mad'':11 ''mine'':21 ''must'':14 ''outrac'':15 ''robot'':17 ''scientist'':12 ''shaft'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (453, 'IMAGE PRINCESS', 'A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies', 2006, 1, NULL, true, 3, 2.99, 178, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''agent'':9 ''canadian'':20 ''crocodil'':12 ''discov'':15 ''imag'':1 ''lacklustur'':4 ''madman'':17 ''must'':14 ''panorama'':5 ''princess'':2 ''rocki'':21 ''secret'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (454, 'IMPACT ALADDIN', 'A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank', 2006, 1, NULL, true, 6, 0.99, 180, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''aladdin'':2 ''charact'':5 ''epic'':4 ''frisbe'':9 ''impact'':1 ''moos'':12 ''must'':14 ''outgun'':15 ''shark'':21 ''studi'':6 ''tank'':22 ''technic'':17 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (455, 'IMPOSSIBLE PREJUDICE', 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China', 2006, 1, NULL, true, 7, 4.99, 103, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''chase'':16 ''china'':21 ''hunter'':13 ''imposs'':1 ''inspir'':6 ''monkey'':10 ''must'':15 ''prejudic'':2 ''teacher'':18 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (456, 'INCH JET', 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery', 2006, 1, NULL, true, 6, 4.99, 167, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''butler'':16 ''defeat'':14 ''fate'':4 ''inch'':1 ''jet'':2 ''monasteri'':19 ''must'':13 ''saga'':5 ''student'':11 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (457, 'INDEPENDENCE HOTEL', 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery', 2006, 1, NULL, true, 5, 0.99, 157, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boy'':12 ''face'':15 ''hotel'':2 ''independ'':1 ''monasteri'':20 ''must'':14 ''pioneer'':17 ''tale'':5 ''technic'':8 ''thrill'':4 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (458, 'INDIAN LOVE', 'A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House', 2006, 1, NULL, true, 4, 0.99, 135, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':21 ''astronaut'':18 ''fun'':22 ''hous'':23 ''indian'':1 ''insight'':4 ''kill'':16 ''love'':2 ''mad'':8,12 ''must'':15 ''saga'':5 ''scientist'':9,13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (459, 'INFORMER DOUBLE', 'A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies', 2006, 1, NULL, true, 4, 4.99, 74, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''action'':5 ''action-pack'':4 ''canadian'':22 ''dentist'':13 ''display'':7 ''doubl'':2 ''forens'':18 ''inform'':1 ''must'':15 ''pack'':6 ''psychologist'':19 ''redeem'':16 ''rocki'':23 ''woman'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (460, 'INNOCENT USUAL', 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback', 2006, 1, NULL, true, 3, 4.99, 178, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''challeng'':14 ''crocodil'':11 ''drama'':5 ''innoc'':1 ''must'':13 ''outback'':19 ''pioneer'':8 ''student'':16 ''usual'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (461, 'INSECTS STONE', 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 123, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''butler'':8 ''crocodil'':16 ''display'':5 ''dog'':11 ''epic'':4 ''insect'':1 ''manhattan'':19 ''must'':13 ''penthous'':20 ''stone'':2 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (462, 'INSIDER ARIZONA', 'A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory', 2006, 1, NULL, true, 5, 2.99, 78, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''arizona'':2 ''astound'':4 ''baloon'':20 ''factori'':21 ''hunter'':12 ''insid'':1 ''mad'':8 ''must'':14 ''pursu'':15 ''robot'':17 ''saga'':5 ''scientist'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (463, 'INSTINCT AIRPORT', 'A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 2.99, 116, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''airport'':2 ''butler'':17 ''confront'':15 ''cow'':9 ''documentari'':5 ''explor'':12 ''instinct'':1 ''mad'':8 ''manhattan'':20 ''must'':14 ''penthous'':21 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (464, 'INTENTIONS EMPIRE', 'A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat', 2006, 1, NULL, true, 3, 2.99, 107, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astound'':4 ''boat'':22 ''cat'':8,11 ''conquer'':14 ''cow'':17 ''empir'':2 ''epistl'':5 ''intent'':1 ''mad'':16 ''must'':13 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (465, 'INTERVIEW LIAISONS', 'A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 4.99, 59, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''administr'':19 ''butler'':13 ''databas'':18 ''discov'':16 ''interview'':1 ''liaison'':2 ''manhattan'':22 ''must'':15 ''pack'':6 ''penthous'':23 ''reflect'':7 ''student'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (466, 'INTOLERABLE INTENTIONS', 'A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention', 2006, 1, NULL, true, 6, 4.99, 63, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''chef'':14 ''convent'':23 ''inspir'':6 ''intent'':2 ''intoler'':1 ''monkey'':10 ''must'':16 ''mysql'':22 ''pastri'':13 ''stori'':7 ''succumb'':17 ''woman'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (467, 'INTRIGUE WORST', 'A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat', 2006, 1, NULL, true, 6, 0.99, 181, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':22 ''charact'':5 ''explor'':9 ''fanci'':4 ''intrigu'':1 ''jet'':21 ''mad'':12 ''must'':15 ''scientist'':13 ''squirrel'':18 ''studi'':6 ''vanquish'':16 ''worst'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (468, 'INVASION CYCLONE', 'A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery', 2006, 1, NULL, true, 5, 2.99, 97, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''charact'':5 ''cyclon'':2 ''explor'':18 ''invas'':1 ''lacklustur'':4 ''mad'':9 ''monasteri'':21 ''must'':15 ''outrac'':16 ''scientist'':10 ''studi'':6 ''woman'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (469, 'IRON MOON', 'A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon', 2006, 1, NULL, true, 7, 4.99, 46, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''baloon'':22 ''boy'':14 ''cow'':11 ''dentist'':19 ''documentari'':7 ''fast'':5 ''fast-pac'':4 ''iron'':1 ''mad'':10 ''moon'':2 ''must'':16 ''pace'':6 ''pursu'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (470, 'ISHTAR ROCKETEER', 'A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House', 2006, 1, NULL, true, 4, 4.99, 79, 24.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':19 ''astound'':4 ''conquer'':14 ''dog'':8,16 ''fun'':20 ''hous'':21 ''ishtar'':1 ''must'':13 ''rocket'':2 ''saga'':5 ''squirrel'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (471, 'ISLAND EXORCIST', 'A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House', 2006, 1, NULL, true, 7, 2.99, 84, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':20 ''boy'':12 ''dentist'':17 ''exorcist'':2 ''fanci'':4 ''find'':15 ''fun'':21 ''hous'':22 ''island'':1 ''must'':14 ''panorama'':5 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (472, 'ITALIAN AFRICAN', 'A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat', 2006, 1, NULL, true, 3, 4.99, 174, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''african'':2 ''astound'':4 ''boat'':22 ''cat'':17 ''charact'':5 ''italian'':1 ''monkey'':9 ''moos'':12 ''must'':14 ''outgun'':15 ''studi'':6 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (473, 'JACKET FRISCO', 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon', 2006, 1, NULL, true, 5, 2.99, 181, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''chef'':17 ''conquer'':14 ''frisco'':2 ''husband'':11 ''insight'':4 ''jacket'':1 ''must'':13 ''pastri'':16 ''reflect'':5 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (474, 'JADE BUNCH', 'A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station', 2006, 1, NULL, true, 6, 2.99, 174, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''bunch'':2 ''confront'':15 ''cow'':12 ''first'':20 ''insight'':4 ''jade'':1 ''mad'':11 ''man'':21 ''must'':14 ''panorama'':5 ''space'':22 ''squirrel'':8 ''station'':23 ''student'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (475, 'JAPANESE RUN', 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback', 2006, 1, NULL, true, 6, 0.99, 135, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''epistl'':7 ''feminist'':10 ''girl'':13,18 ''inspir'':6 ''japanes'':1 ''must'':15 ''outback'':21 ''run'':2 ''sink'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (476, 'JASON TRAP', 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery', 2006, 1, NULL, true, 5, 2.99, 130, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''conquer'':15 ''dog'':17 ''jason'':1 ''monasteri'':20 ''must'':14 ''shark'':12 ''tale'':5 ''thought'':4 ''trap'':2 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (477, 'JAWBREAKER BROOKLYN', 'A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat', 2006, 1, NULL, true, 5, 0.99, 118, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boat'':8,22 ''brooklyn'':2 ''chef'':12 ''jawbreak'':1 ''jet'':21 ''must'':14 ''pastri'':11 ''reflect'':5 ''shark'':18 ''stun'':4 ''succumb'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (478, 'JAWS HARRY', 'A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House', 2006, 1, NULL, true, 4, 2.99, 112, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''abandon'':20 ''administr'':9 ''databas'':8 ''display'':5 ''dog'':17 ''fun'':21 ''harri'':2 ''hous'':22 ''jaw'':1 ''monkey'':12 ''must'':14 ''overcom'':15 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (479, 'JEDI BENEATH', 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria', 2006, 1, NULL, true, 7, 0.99, 128, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''astound'':4 ''beneath'':2 ''dentist'':11 ''explor'':8 ''jedi'':1 ''must'':13 ''nigeria'':18 ''pursu'':14 ''reflect'':5 ''student'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (480, 'JEEPERS WEDDING', 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia', 2006, 1, NULL, true, 3, 2.99, 84, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''astound'':4 ''chef'':17 ''compos'':8 ''display'':5 ''dog'':11 ''georgia'':20 ''jeeper'':1 ''kill'':14 ''must'':13 ''pastri'':16 ''soviet'':19 ''wed'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (481, 'JEKYLL FROGMEN', 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank', 2006, 1, NULL, true, 4, 2.99, 58, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':11 ''epistl'':5 ''fanci'':4 ''frogmen'':2 ''jekyl'':1 ''kill'':14 ''must'':13 ''shark'':19 ''student'':8 ''tank'':20 ''waitress'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (482, 'JEOPARDY ENCINO', 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India', 2006, 1, NULL, true, 3, 0.99, 102, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':19 ''bore'':4 ''cow'':12 ''encino'':2 ''explor'':17 ''face'':15 ''india'':20 ''jeopardi'':1 ''mad'':11 ''man'':8 ''must'':14 ''panorama'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (483, 'JERICHO MULAN', 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat', 2006, 1, NULL, true, 3, 2.99, 171, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''amaz'':4 ''boat'':20 ''boy'':16 ''butler'':11 ''defeat'':14 ''hunter'':8 ''jericho'':1 ''jet'':19 ''mulan'':2 ''must'':13 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (484, 'JERK PAYCHECK', 'A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan', 2006, 1, NULL, true, 3, 2.99, 172, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':14 ''ancient'':22 ''charact'':5 ''chef'':10 ''databas'':13 ''japan'':23 ''jerk'':1 ''must'':16 ''pastri'':9 ''paycheck'':2 ''reach'':17 ''shark'':20 ''studi'':6 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (485, 'JERSEY SASSY', 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan', 2006, 1, NULL, true, 6, 4.99, 60, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''cow'':12 ''documentari'':5 ''feminist'':17 ''find'':15 ''japan'':20 ''jersey'':1 ''lacklustur'':4 ''mad'':11 ''madman'':8 ''must'':14 ''sassi'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (486, 'JET NEIGHBORS', 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat', 2006, 1, NULL, true, 7, 4.99, 59, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''amaz'':4 ''boat'':21 ''display'':5 ''jet'':1 ''lumberjack'':8 ''must'':13 ''neighbor'':2 ''outrac'':14 ''teacher'':11 ''u'':20 ''u-boat'':19 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (487, 'JINGLE SAGEBRUSH', 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon', 2006, 1, NULL, true, 6, 4.99, 124, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''baloon'':20 ''charact'':5 ''epic'':4 ''feminist'':9 ''jingl'':1 ''meet'':15 ''must'':14 ''sagebrush'':2 ''student'':12 ''studi'':6 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (488, 'JOON NORTHWEST', 'A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 105, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''car'':12 ''discov'':15 ''forens'':17 ''joon'':1 ''must'':14 ''northwest'':2 ''panorama'':5 ''psychologist'':18 ''shark'':21 ''tank'':22 ''technic'':8 ''thrill'':4 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (489, 'JUGGLER HARDLY', 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California', 2006, 1, NULL, true, 4, 0.99, 54, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''astronaut'':12 ''california'':19 ''car'':17 ''challeng'':15 ''cow'':9 ''epic'':4 ''hard'':2 ''juggler'':1 ''mad'':8 ''must'':14 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (490, 'JUMANJI BLADE', 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans', 2006, 1, NULL, true, 4, 2.99, 121, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''blade'':2 ''husband'':8 ''intrepid'':4 ''jumanji'':1 ''mad'':16 ''must'':13 ''new'':19 ''orlean'':20 ''pursu'':14 ''scientist'':17 ''woman'':11 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (491, 'JUMPING WRATH', 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin', 2006, 1, NULL, true, 4, 0.99, 74, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''berlin'':18 ''boat'':16 ''discov'':14 ''epistl'':5 ''feminist'':11 ''jump'':1 ''monkey'':8 ''must'':13 ''touch'':4 ''wrath'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (492, 'JUNGLE CLOSER', 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia', 2006, 1, NULL, true, 6, 0.99, 134, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''astronaut'':17 ''australia'':19 ''battl'':15 ''bore'':4 ''boy'':9 ''charact'':5 ''closer'':2 ''jungl'':1 ''must'':14 ''studi'':6 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (493, 'KANE EXORCIST', 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin', 2006, 1, NULL, true, 5, 0.99, 92, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''berlin'':18 ''car'':16 ''compos'':8 ''documentari'':5 ''epic'':4 ''exorcist'':2 ''kane'':1 ''must'':13 ''overcom'':14 ''robot'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (494, 'KARATE MOON', 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 120, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astound'':4 ''convent'':20 ''dog'':11 ''karat'':1 ''moon'':2 ''must'':13 ''mysql'':19 ''reach'':14 ''waitress'':16 ''woman'':8 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (495, 'KENTUCKIAN GIANT', 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat', 2006, 1, NULL, true, 5, 2.99, 169, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':21 ''escap'':14 ''frisbe'':11 ''giant'':2 ''kentuckian'':1 ''must'':13 ''stun'':4 ''u'':20 ''u-boat'':19 ''waitress'':16 ''woman'':8 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (496, 'KICK SAVANNAH', 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans', 2006, 1, NULL, true, 3, 0.99, 179, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''defeat'':14 ''drama'':5 ''emot'':4 ''kick'':1 ''monkey'':8,16 ''must'':13 ''new'':18 ''orlean'':19 ''robot'':11 ''savannah'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (497, 'KILL BROTHERHOOD', 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback', 2006, 1, NULL, true, 4, 0.99, 54, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''agent'':12 ''brotherhood'':2 ''display'':5 ''hunter'':8 ''husband'':17 ''kill'':1 ''must'':14 ''outback'':20 ''redeem'':15 ''secret'':11 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (498, 'KILLER INNOCENT', 'A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 2.99, 161, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':20 ''charact'':5 ''compos'':17 ''explor'':12 ''fanci'':4 ''innoc'':2 ''killer'':1 ''mine'':21 ''must'':14 ''shaft'':22 ''student'':9 ''studi'':6 ''succumb'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (499, 'KING EVOLUTION', 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon', 2006, 1, NULL, true, 3, 4.99, 184, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''baloon'':21 ''boy'':10 ''chase'':16 ''evolut'':2 ''king'':1 ''lumberjack'':13 ''madman'':18 ''must'':15 ''pack'':6 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (500, 'KISS GLORY', 'A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies', 2006, 1, NULL, true, 5, 4.99, 163, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''canadian'':19 ''find'':14 ''girl'':8 ''glori'':2 ''husband'':11 ''kiss'':1 ''lacklustur'':4 ''must'':13 ''reflect'':5 ''robot'':16 ''rocki'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (501, 'KISSING DOLLS', 'A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station', 2006, 1, NULL, true, 3, 4.99, 141, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''build'':14 ''compos'':16 ''doll'':2 ''first'':19 ''insight'':4 ''kiss'':1 ''man'':20 ''must'':13 ''pioneer'':8 ''reflect'':5 ''space'':21 ''station'':22 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (502, 'KNOCK WARLOCK', 'A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon', 2006, 1, NULL, true, 4, 2.99, 71, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''baloon'':19 ''boat'':11 ''confront'':14 ''knock'':1 ''moos'':16 ''must'':13 ''stori'':5 ''teacher'':8 ''unbeliev'':4 ''warlock'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (503, 'KRAMER CHOCOLATE', 'A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback', 2006, 1, NULL, true, 3, 2.99, 171, 24.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''amaz'':4 ''chef'':12 ''chocol'':2 ''kramer'':1 ''mad'':17 ''must'':14 ''outback'':21 ''pastri'':11 ''redeem'':15 ''robot'':8 ''scientist'':18 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (504, 'KWAI HOMEWARD', 'A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia', 2006, 1, NULL, true, 5, 0.99, 46, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''amaz'':4 ''car'':8,16 ''drama'':5 ''georgia'':19 ''homeward'':2 ''kwai'':1 ''must'':13 ''pursu'':14 ''soviet'':18 ''squirrel'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (505, 'LABYRINTH LEAGUE', 'A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert', 2006, 1, NULL, true, 6, 2.99, 46, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''compos'':10 ''desert'':22 ''frisbe'':13 ''inspir'':6 ''labyrinth'':1 ''leagu'':2 ''must'':15 ''pioneer'':18 ''saga'':7 ''sahara'':21 ''succumb'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (506, 'LADY STAGE', 'A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat', 2006, 1, NULL, true, 4, 4.99, 67, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''boat'':22 ''charact'':5 ''explor'':17 ''ladi'':1 ''man'':12 ''must'':14 ''pursu'':15 ''stage'':2 ''studi'':6 ''u'':21 ''u-boat'':20 ''woman'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (507, 'LADYBUGS ARMAGEDDON', 'A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans', 2006, 1, NULL, true, 4, 0.99, 113, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''armageddon'':2 ''dog'':8 ''fate'':4 ''ladybug'':1 ''mad'':11,17 ''meet'':15 ''must'':14 ''new'':20 ''orlean'':21 ''reflect'':5 ''scientist'':12,18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (508, 'LAMBS CINCINATTI', 'A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia', 2006, 1, NULL, true, 6, 4.99, 144, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''australia'':18 ''cincinatti'':2 ''compos'':16 ''feminist'':11 ''fight'':14 ''insight'':4 ''lamb'':1 ''man'':8 ''must'':13 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (509, 'LANGUAGE COWBOY', 'A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 0.99, 78, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''amus'':20 ''cat'':8 ''cowboy'':2 ''dentist'':16 ''epic'':4 ''languag'':1 ''madman'':11 ''must'':13 ''park'':21 ''vanquish'':14 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (510, 'LAWLESS VISION', 'A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback', 2006, 1, NULL, true, 6, 4.99, 181, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boy'':8 ''car'':17 ''insight'':4 ''lawless'':1 ''must'':14 ''outback'':20 ''outgun'':15 ''sumo'':11 ''vision'':2 ''wrestler'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (511, 'LAWRENCE LOVE', 'A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin', 2006, 1, NULL, true, 7, 0.99, 175, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''berlin'':20 ''cow'':13 ''databas'':8 ''fanci'':4 ''lawrenc'':1 ''love'':2 ''mad'':12 ''must'':15 ''pursu'':16 ''woman'':18 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (512, 'LEAGUE HELLFIGHTERS', 'A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China', 2006, 1, NULL, true, 5, 4.99, 110, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':19 ''china'':20 ''hellfight'':2 ''leagu'':1 ''monkey'':12 ''must'':14 ''outgun'':15 ''saga'':5 ''shark'':9 ''student'':17 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (513, 'LEATHERNECKS DWARFS', 'A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 153, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':20 ''cow'':12 ''dog'':8 ''dwarf'':2 ''fate'':4 ''leatherneck'':1 ''mad'':11 ''mine'':21 ''must'':14 ''outrac'':15 ''reflect'':5 ''shaft'':22 ''teacher'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (514, 'LEBOWSKI SOLDIERS', 'A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China', 2006, 1, NULL, true, 6, 2.99, 69, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''agent'':9 ''ancient'':19 ''astronaut'':17 ''beauti'':4 ''chase'':15 ''china'':20 ''epistl'':5 ''lebowski'':1 ''must'':14 ''pioneer'':12 ''secret'':8 ''soldier'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (515, 'LEGALLY SECRETARY', 'A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert', 2006, 1, NULL, true, 7, 4.99, 113, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astound'':4 ''desert'':21 ''legal'':1 ''meet'':15 ''moos'':12 ''must'':14 ''sahara'':20 ''secretari'':2 ''shark'':9 ''tale'':5 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (516, 'LEGEND JEDI', 'A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback', 2006, 1, NULL, true, 7, 0.99, 59, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''crocodil'':18 ''epistl'':7 ''inspir'':6 ''jedi'':2 ''legend'':1 ''must'':15 ''outback'':21 ''outgun'':16 ''pioneer'':10 ''student'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (517, 'LESSON CLEOPATRA', 'A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 167, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boy'':16 ''build'':14 ''cleopatra'':2 ''display'':5 ''emot'':4 ''explor'':11 ''lesson'':1 ''man'':8 ''manhattan'':19 ''must'':13 ''penthous'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (518, 'LIAISONS SWEET', 'A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies', 2006, 1, NULL, true, 5, 4.99, 140, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''bore'':4 ''canadian'':20 ''drama'':5 ''explor'':12 ''liaison'':1 ''must'':14 ''redeem'':15 ''rocki'':21 ''shark'':9 ''sweet'':2 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (519, 'LIBERTY MAGNIFICENT', 'A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon', 2006, 1, NULL, true, 3, 2.99, 138, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''bore'':4 ''cat'':11 ''drama'':5 ''liberti'':1 ''magnific'':2 ''must'':13 ''sink'':14 ''student'':8 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (520, 'LICENSE WEEKEND', 'A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery', 2006, 1, NULL, true, 7, 2.99, 91, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''husband'':11 ''insight'':4 ''licens'':1 ''madman'':16 ''man'':8 ''monasteri'':19 ''must'':13 ''overcom'':14 ''stori'':5 ''weekend'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (521, 'LIES TREATMENT', 'A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station', 2006, 1, NULL, true, 7, 4.99, 147, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''charact'':7 ''compos'':19 ''defeat'':17 ''dentist'':11 ''fast'':5 ''fast-pac'':4 ''first'':22 ''lie'':1 ''man'':23 ''moos'':14 ''must'':16 ''pace'':6 ''space'':24 ''station'':25 ''studi'':8 ''treatment'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (522, 'LIFE TWISTED', 'A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 137, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''compos'':11 ''find'':14 ''first'':19 ''life'':1 ''man'':16,20 ''must'':13 ''reflect'':5 ''space'':21 ''station'':22 ''teacher'':8 ''thrill'':4 ''twist'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (523, 'LIGHTS DEER', 'A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico', 2006, 1, NULL, true, 7, 0.99, 174, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''confront'':14 ''deer'':2 ''dog'':8 ''epistl'':5 ''gulf'':19 ''light'':1 ''mexico'':21 ''moos'':16 ''must'':13 ''unbeliev'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (524, 'LION UNCUT', 'A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China', 2006, 1, NULL, true, 6, 0.99, 50, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':20 ''cat'':12 ''chef'':9 ''china'':21 ''display'':5 ''intrepid'':4 ''kill'':15 ''lion'':1 ''must'':14 ''pastri'':8 ''shark'':18 ''uncut'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (525, 'LOATHING LEGALLY', 'A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 140, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''bore'':4 ''epistl'':5 ''escap'':15 ''frisbe'':17 ''gulf'':20 ''legal'':2 ''loath'':1 ''mad'':11 ''mexico'':22 ''must'':14 ''pioneer'':8 ''scientist'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (526, 'LOCK REAR', 'A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan', 2006, 1, NULL, true, 7, 2.99, 120, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':20 ''charact'':5 ''japan'':21 ''lock'':1 ''must'':15 ''outrac'':16 ''rear'':2 ''squirrel'':9 ''student'':18 ''studi'':6 ''technic'':12 ''thought'':4 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (527, 'LOLA AGENT', 'A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan', 2006, 1, NULL, true, 4, 4.99, 85, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':18 ''agent'':2 ''ancient'':20 ''astound'':4 ''databas'':17 ''husband'':12 ''japan'':21 ''lola'':1 ''mad'':8 ''must'':14 ''redeem'':15 ''scientist'':9 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (528, 'LOLITA WORLD', 'A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 2.99, 155, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''drama'':5 ''girl'':8 ''lolita'':1 ''mine'':20 ''must'':13 ''redeem'':14 ''robot'':11 ''shaft'':21 ''thrill'':4 ''waitress'':16 ''world'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (529, 'LONELY ELEPHANT', 'A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia', 2006, 1, NULL, true, 3, 2.99, 67, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''challeng'':14 ''dog'':11 ''eleph'':2 ''explor'':16 ''georgia'':19 ''intrepid'':4 ''lone'':1 ''must'':13 ''soviet'':18 ''stori'':5 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (530, 'LORD ARIZONA', 'A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat', 2006, 1, NULL, true, 5, 2.99, 108, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''action'':5 ''action-pack'':4 ''arizona'':2 ''boat'':23 ''chef'':14 ''crocodil'':19 ''display'':7 ''frisbe'':10 ''jet'':22 ''lord'':1 ''must'':16 ''pack'':6 ''pastri'':13 ''pursu'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (531, 'LOSE INCH', 'A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station', 2006, 1, NULL, true, 3, 0.99, 137, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''battl'':15 ''butler'':17 ''first'':20 ''inch'':2 ''lose'':1 ''man'':21 ''must'':14 ''reflect'':5 ''space'':22 ''station'':23 ''student'':8 ''stun'':4 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (532, 'LOSER HUSTLER', 'A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria', 2006, 1, NULL, true, 5, 4.99, 80, 28.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''butler'':16 ''drama'':5 ''feminist'':11 ''hustler'':2 ''loser'':1 ''must'':13 ''nigeria'':18 ''outgun'':14 ''robot'':8 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (533, 'LOST BIRD', 'A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 2.99, 98, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''bird'':2 ''charact'':5 ''defeat'':16 ''emot'':4 ''lost'':1 ''manhattan'':22 ''must'':15 ''penthous'':23 ''robot'':9 ''shark'':13 ''studi'':6 ''technic'':18 ''writer'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (534, 'LOUISIANA HARRY', 'A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank', 2006, 1, NULL, true, 5, 0.99, 70, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''drama'':5 ''girl'':8 ''harri'':2 ''lacklustur'':4 ''louisiana'':1 ''monkey'':17 ''must'':14 ''redeem'':15 ''shark'':20 ''tank'':21 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (535, 'LOVE SUICIDES', 'A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House', 2006, 1, NULL, true, 6, 0.99, 181, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':19 ''brilliant'':4 ''dentist'':16 ''explor'':11 ''fun'':20 ''hous'':21 ''hunter'':8 ''love'':1 ''must'':13 ''panorama'':5 ''pursu'':14 ''suicid'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (536, 'LOVELY JINGLE', 'A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback', 2006, 1, NULL, true, 3, 2.99, 65, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''crocodil'':8,17 ''discov'':15 ''fanci'':4 ''forens'':11 ''jingl'':2 ''love'':1 ''must'':14 ''outback'':20 ''psychologist'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (537, 'LOVER TRUMAN', 'A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat', 2006, 1, NULL, true, 3, 2.99, 75, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':22 ''boy'':11 ''emot'':4 ''lover'':1 ''must'':13 ''outgun'':14 ''robot'':8 ''technic'':16 ''truman'':2 ''u'':21 ''u-boat'':20 ''writer'':17 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (538, 'LOVERBOY ATTACKS', 'A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia', 2006, 1, NULL, true, 7, 0.99, 162, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''attack'':2 ''bore'':4 ''build'':14 ''butler'':11 ''car'':8 ''georgia'':19 ''girl'':16 ''loverboy'':1 ''must'':13 ''soviet'':18 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (539, 'LUCK OPUS', 'A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank', 2006, 1, NULL, true, 7, 2.99, 152, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''bore'':4 ''display'':5 ''luck'':1 ''moos'':8 ''must'':13 ''opus'':2 ''outrac'':14 ''shark'':19 ''squirrel'':11 ''tank'':20 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (540, 'LUCKY FLYING', 'A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat', 2006, 1, NULL, true, 7, 2.99, 97, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boat'':24 ''charact'':5 ''find'':16 ''fli'':2 ''forens'':18 ''lacklustur'':4 ''lucki'':1 ''man'':13 ''must'':15 ''psychologist'':19 ''shark'':10 ''studi'':6 ''u'':23 ''u-boat'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (541, 'LUKE MUMMY', 'A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India', 2006, 1, NULL, true, 5, 2.99, 74, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''ancient'':20 ''boy'':9 ''charact'':5 ''india'':21 ''luke'':1 ''mad'':17 ''mummi'':2 ''must'':14 ''redeem'':15 ''robot'':12 ''scientist'':18 ''studi'':6 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (542, 'LUST LOCK', 'A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert', 2006, 1, NULL, true, 3, 2.99, 52, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''agent'':17 ''dentist'':11 ''desert'':21 ''fanci'':4 ''hunter'':8 ''lock'':2 ''lust'':1 ''meet'':14 ''must'':13 ''panorama'':5 ''sahara'':20 ''secret'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (543, 'MADIGAN DORADO', 'A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback', 2006, 1, NULL, true, 5, 4.99, 116, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''astound'':4 ''charact'':5 ''crocodil'':19 ''discov'':17 ''dorado'':2 ''madigan'':1 ''must'':16 ''outback'':22 ''shark'':10,14 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (544, 'MADISON TRAP', 'A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat', 2006, 1, NULL, true, 4, 2.99, 147, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':23 ''dentist'':13 ''inspir'':6 ''madison'':1 ''monkey'':10 ''must'':15 ''overcom'':16 ''pioneer'':18 ''reflect'':7 ''trap'':2 ''u'':22 ''u-boat'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (545, 'MADNESS ATTACKS', 'A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 178, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''attack'':2 ''boat'':11 ''crocodil'':16 ''defeat'':14 ''fanci'':4 ''gulf'':19 ''mad'':1 ''mexico'':21 ''must'':13 ''squirrel'':8 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (546, 'MADRE GABLES', 'A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 98, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''discov'':16 ''first'':21 ''forens'':12 ''gabl'':2 ''intrepid'':4 ''madr'':1 ''man'':22 ''moos'':18 ''must'':15 ''panorama'':5 ''psychologist'':13 ''space'':23 ''station'':24 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (547, 'MAGIC MALLRATS', 'A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California', 2006, 1, NULL, true, 3, 0.99, 117, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''build'':16 ''california'':21 ''chef'':9,13 ''documentari'':5 ''mad'':18 ''magic'':1 ''mallrat'':2 ''must'':15 ''pastri'':8,12 ''scientist'':19 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (548, 'MAGNIFICENT CHITTY', 'A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California', 2006, 1, NULL, true, 3, 2.99, 53, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''california'':19 ''chitti'':2 ''cow'':17 ''face'':14 ''hunter'':11 ''insight'':4 ''mad'':16 ''magnific'':1 ''must'':13 ''stori'':5 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (549, 'MAGNOLIA FORRESTER', 'A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans', 2006, 1, NULL, true, 4, 0.99, 171, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''compos'':8 ''conquer'':14 ''dentist'':16 ''documentari'':5 ''explor'':11 ''forrest'':2 ''magnolia'':1 ''must'':13 ''new'':18 ''orlean'':19 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (788, 'SHIP WONDERLAND', 'A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback', 2006, 1, NULL, true, 5, 2.99, 104, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''escap'':14 ''explor'':16 ''frisbe'':11 ''monkey'':8 ''must'':13 ''outback'':19 ''saga'':5 ''ship'':1 ''thrill'':4 ''wonderland'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (550, 'MAGUIRE APACHE', 'A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon', 2006, 1, NULL, true, 6, 2.99, 74, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''apach'':2 ''baloon'':22 ''defeat'':16 ''fast'':5 ''fast-pac'':4 ''forens'':18 ''hunter'':13 ''maguir'':1 ''must'':15 ''pace'':6 ''psychologist'':19 ''reflect'':7 ''waitress'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (551, 'MAIDEN HOME', 'A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention', 2006, 1, NULL, true, 3, 4.99, 138, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''convent'':21 ''forens'':16 ''home'':2 ''kill'':14 ''lacklustur'':4 ''maiden'':1 ''moos'':8 ''must'':13 ''mysql'':20 ''psychologist'':17 ''saga'':5 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (552, 'MAJESTIC FLOATS', 'A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station', 2006, 1, NULL, true, 5, 0.99, 130, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''butler'':17 ''charact'':5 ''escap'':15 ''first'':20 ''float'':2 ''majest'':1 ''man'':21 ''moos'':9 ''must'':14 ''space'':22 ''station'':23 ''student'':12 ''studi'':6 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (553, 'MAKER GABLES', 'A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat', 2006, 1, NULL, true, 4, 0.99, 136, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':12 ''boat'':21 ''compos'':17 ''databas'':11 ''display'':5 ''gabl'':2 ''jet'':20 ''maker'':1 ''moos'':8 ''must'':14 ''pursu'':15 ''stun'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (554, 'MALKOVICH PET', 'A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback', 2006, 1, NULL, true, 6, 2.99, 159, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''intrepid'':4 ''kill'':15 ''malkovich'':1 ''must'':14 ''outback'':20 ''pet'':2 ''reflect'':5 ''shark'':12 ''squirrel'':17 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (555, 'MALLRATS UNITED', 'A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery', 2006, 1, NULL, true, 4, 0.99, 133, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''dentist'':11 ''find'':14 ''hunter'':16 ''mallrat'':1 ''monasteri'':19 ''must'':13 ''thrill'':4 ''unit'':2 ''waitress'':8 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (556, 'MALTESE HOPE', 'A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California', 2006, 1, NULL, true, 6, 4.99, 127, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''california'':21 ''conquer'':17 ''crocodil'':10 ''documentari'':7 ''explor'':19 ''fast'':5 ''fast-pac'':4 ''hope'':2 ''maltes'':1 ''must'':16 ''pace'':6 ''sumo'':13 ''wrestler'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (557, 'MANCHURIAN CURTAIN', 'A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin', 2006, 1, NULL, true, 5, 2.99, 177, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''battl'':15 ''berlin'':19 ''boy'':12,17 ''cow'':9 ''curtain'':2 ''mad'':8 ''manchurian'':1 ''must'':14 ''stun'':4 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (558, 'MANNEQUIN WORST', 'A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India', 2006, 1, NULL, true, 3, 2.99, 71, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''ancient'':20 ''astound'':4 ''chef'':13 ''cow'':9 ''discov'':16 ''husband'':18 ''india'':21 ''mad'':8 ''mannequin'':1 ''must'':15 ''pastri'':12 ''saga'':5 ''worst'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (559, 'MARRIED GO', 'A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert', 2006, 1, NULL, true, 7, 2.99, 114, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''desert'':21 ''dog'':11 ''face'':14 ''fanci'':4 ''forens'':16 ''go'':2 ''marri'':1 ''must'':13 ''psychologist'':17 ''sahara'':20 ''stori'':5 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (560, 'MARS ROMAN', 'A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia', 2006, 1, NULL, true, 6, 0.99, 62, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''bore'':4 ''car'':8 ''dog'':11 ''drama'':5 ''georgia'':19 ''madman'':16 ''mar'':1 ''must'':13 ''roman'':2 ''soviet'':18 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (561, 'MASK PEACH', 'A Boring Character Study of a Student And a Robot who must Meet a Woman in California', 2006, 1, NULL, true, 6, 2.99, 123, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''bore'':4 ''california'':19 ''charact'':5 ''mask'':1 ''meet'':15 ''must'':14 ''peach'':2 ''robot'':12 ''student'':9 ''studi'':6 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (562, 'MASKED BUBBLE', 'A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 0.99, 151, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':19 ''boat'':11 ''bubbl'':2 ''documentari'':5 ''fanci'':4 ''mask'':1 ''mine'':20 ''must'':13 ''pioneer'':8,16 ''pursu'':14 ''shaft'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (563, 'MASSACRE USUAL', 'A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California', 2006, 1, NULL, true, 6, 4.99, 165, 16.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''california'':19 ''challeng'':14 ''crocodil'':11 ''fate'':4 ''forens'':16 ''massacr'':1 ''must'':13 ''psychologist'':17 ''reflect'':5 ''usual'':2 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (564, 'MASSAGE IMAGE', 'A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station', 2006, 1, NULL, true, 4, 2.99, 161, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''crocodil'':11 ''dog'':16 ''drama'':5 ''fate'':4 ''first'':19 ''frisbe'':8 ''imag'':2 ''man'':20 ''massag'':1 ''must'':13 ''space'':21 ''station'':22 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (565, 'MATRIX SNOWMAN', 'A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California', 2006, 1, NULL, true, 6, 4.99, 56, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''california'':20 ''matrix'':1 ''must'':15 ''overcom'':16 ''pack'':6 ''saga'':7 ''snowman'':2 ''student'':18 ''woman'':10,13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (566, 'MAUDE MOD', 'A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria', 2006, 1, NULL, true, 6, 0.99, 72, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astronaut'':17 ''beauti'':4 ''cat'':12 ''documentari'':5 ''forens'':8 ''maud'':1 ''mod'':2 ''must'':14 ''nigeria'':19 ''psychologist'':9 ''reach'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (567, 'MEET CHOCOLATE', 'A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention', 2006, 1, NULL, true, 3, 2.99, 80, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''bore'':4 ''butler'':11 ''chocol'':2 ''confront'':14 ''convent'':20 ''dentist'':8 ''documentari'':5 ''meet'':1 ''monkey'':16 ''must'':13 ''mysql'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (568, 'MEMENTO ZOOLANDER', 'A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 77, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''chef'':17 ''desert'':21 ''epistl'':5 ''explor'':11 ''memento'':1 ''must'':13 ''pastri'':16 ''redeem'':14 ''sahara'':20 ''squirrel'':8 ''touch'':4 ''zooland'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (569, 'MENAGERIE RUSHMORE', 'A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 147, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':17 ''butler'':11 ''compos'':8 ''databas'':16 ''first'':20 ''man'':21 ''menageri'':1 ''must'':13 ''overcom'':14 ''panorama'':5 ''rushmor'':2 ''space'':22 ''station'':23 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (570, 'MERMAID INSECTS', 'A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California', 2006, 1, NULL, true, 5, 4.99, 104, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''california'':18 ''drama'':5 ''fight'':14 ''husband'':11,16 ''insect'':2 ''lacklustur'':4 ''mermaid'':1 ''must'':13 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (571, 'METAL ARMAGEDDON', 'A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory', 2006, 1, NULL, true, 6, 2.99, 161, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''armageddon'':2 ''baloon'':19 ''crocodil'':11 ''display'':5 ''factori'':20 ''lumberjack'':8 ''meet'':14 ''metal'':1 ''monkey'':16 ''must'':13 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (572, 'METROPOLIS COMA', 'A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory', 2006, 1, NULL, true, 4, 2.99, 64, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''administr'':9 ''baloon'':21 ''chef'':13 ''coma'':2 ''confront'':16 ''databas'':8 ''emot'':4 ''factori'':22 ''metropoli'':1 ''must'':15 ''pastri'':12 ''saga'':5 ''teacher'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (573, 'MICROCOSMOS PARADISE', 'A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria', 2006, 1, NULL, true, 6, 2.99, 105, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':9 ''charact'':5 ''microcosmo'':1 ''must'':14 ''nigeria'':20 ''paradis'':2 ''shark'':18 ''sink'':15 ''student'':12 ''studi'':6 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (574, 'MIDNIGHT WESTWARD', 'A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery', 2006, 1, NULL, true, 3, 0.99, 86, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''chef'':18 ''husband'':8 ''midnight'':1 ''monasteri'':21 ''must'':14 ''pastri'':17 ''redeem'':15 ''reflect'':5 ''shark'':12 ''taut'':4 ''westward'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (575, 'MIDSUMMER GROUNDHOG', 'A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan', 2006, 1, NULL, true, 3, 4.99, 48, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':18 ''chase'':14 ''crocodil'':16 ''dog'':11 ''fate'':4 ''groundhog'':2 ''japan'':19 ''midsumm'':1 ''moos'':8 ''must'':13 ''panorama'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (576, 'MIGHTY LUCK', 'A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention', 2006, 1, NULL, true, 7, 2.99, 122, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''administr'':18 ''astound'':4 ''convent'':22 ''databas'':17 ''epistl'':5 ''escap'':15 ''luck'':2 ''mad'':8 ''mighti'':1 ''must'':14 ''mysql'':21 ''pioneer'':12 ''scientist'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (577, 'MILE MULAN', 'A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 64, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boy'':16 ''cat'':8 ''confront'':14 ''convent'':20 ''epistl'':5 ''husband'':11 ''lacklustur'':4 ''mile'':1 ''mulan'':2 ''must'':13 ''mysql'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (578, 'MILLION ACE', 'A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 142, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ace'':2 ''brilliant'':4 ''desert'':21 ''documentari'':5 ''find'':14 ''million'':1 ''must'':13 ''sahara'':20 ''squirrel'':11 ''technic'':16 ''woman'':8 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (579, 'MINDS TRUMAN', 'A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery', 2006, 1, NULL, true, 3, 4.99, 149, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':18 ''crocodil'':12 ''databas'':17 ''mad'':8 ''mind'':1 ''monasteri'':21 ''must'':14 ''outgun'':15 ''scientist'':9 ''taut'':4 ''truman'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (580, 'MINE TITANS', 'A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin', 2006, 1, NULL, true, 3, 4.99, 166, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''amaz'':4 ''berlin'':19 ''discov'':14 ''forens'':16 ''mine'':1 ''must'':13 ''psychologist'':17 ''robot'':8 ''titan'':2 ''woman'':11 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (581, 'MINORITY KISS', 'A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback', 2006, 1, NULL, true, 4, 0.99, 59, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''display'':5 ''insight'':4 ''kiss'':2 ''lumberjack'':8 ''man'':17 ''meet'':15 ''minor'':1 ''must'':14 ''outback'':20 ''sumo'':11 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (582, 'MIRACLE VIRTUAL', 'A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert', 2006, 1, NULL, true, 3, 2.99, 162, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''boy'':11 ''butler'':8 ''desert'':21 ''epistl'':5 ''find'':14 ''mad'':16 ''miracl'':1 ''must'':13 ''sahara'':20 ''scientist'':17 ''touch'':4 ''virtual'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (583, 'MISSION ZOOLANDER', 'A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House', 2006, 1, NULL, true, 3, 4.99, 164, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':21 ''fun'':22 ''hous'':23 ''intrepid'':4 ''meet'':15 ''mission'':1 ''must'':14 ''shark'':18 ''stori'':5 ''sumo'':8 ''teacher'':12 ''wrestler'':9 ''zooland'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (584, 'MIXED DOORS', 'A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India', 2006, 1, NULL, true, 6, 2.99, 180, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':18 ''door'':2 ''drama'':5 ''india'':19 ''lumberjack'':11 ''mix'':1 ''must'':13 ''pioneer'':16 ''succumb'':14 ''taut'':4 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (585, 'MOB DUFFEL', 'A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies', 2006, 1, NULL, true, 4, 0.99, 105, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boat'':11 ''boy'':16 ''canadian'':19 ''documentari'':5 ''duffel'':2 ''frisbe'':8 ''meet'':14 ''mob'':1 ''must'':13 ''rocki'':20 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (586, 'MOCKINGBIRD HOLLYWOOD', 'A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin', 2006, 1, NULL, true, 4, 0.99, 60, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''berlin'':18 ''car'':11 ''compos'':16 ''hollywood'':2 ''man'':8 ''mockingbird'':1 ''must'':13 ''panorama'':5 ''sink'':14 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (587, 'MOD SECRETARY', 'A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans', 2006, 1, NULL, true, 6, 4.99, 77, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''bore'':4 ''build'':15 ''cat'':12 ''cow'':9 ''documentari'':5 ''lumberjack'':17 ''mad'':8 ''mod'':1 ''must'':14 ''new'':19 ''orlean'':20 ''secretari'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (588, 'MODEL FISH', 'A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia', 2006, 1, NULL, true, 4, 4.99, 175, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''australia'':18 ''beauti'':4 ''boat'':8 ''crocodil'':11 ''dog'':16 ''fish'':2 ''model'':1 ''must'':13 ''outrac'':14 ''panorama'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (589, 'MODERN DORADO', 'A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans', 2006, 1, NULL, true, 3, 0.99, 74, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boy'':19 ''butler'':10 ''dorado'':2 ''inspir'':6 ''modern'':1 ''must'':16 ''new'':21 ''orlean'':22 ''redeem'':17 ''stori'':7 ''sumo'':13 ''wrestler'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (590, 'MONEY HAROLD', 'A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia', 2006, 1, NULL, true, 3, 2.99, 135, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''australia'':18 ''boat'':11 ''defeat'':14 ''explor'':8 ''harold'':2 ''money'':1 ''must'':13 ''robot'':16 ''tale'':5 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (591, 'MONSOON CAUSE', 'A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat', 2006, 1, NULL, true, 6, 4.99, 182, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astound'':4 ''boat'':21 ''car'':11 ''caus'':2 ''crocodil'':8 ''monsoon'':1 ''must'':13 ''outrac'':14 ''squirrel'':16 ''tale'':5 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (592, 'MONSTER SPARTACUS', 'A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia', 2006, 1, NULL, true, 6, 2.99, 107, 28.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''australia'':20 ''cat'':13 ''fast'':5 ''fast-pac'':4 ''fight'':16 ''girl'':18 ''monster'':1 ''must'':15 ''pace'':6 ''spartacus'':2 ''stori'':7 ''waitress'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (593, 'MONTEREY LABYRINTH', 'A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat', 2006, 1, NULL, true, 6, 0.99, 158, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''awe'':5 ''awe-inspir'':4 ''boat'':23 ''compos'':13 ''drama'':7 ''escap'':16 ''feminist'':18 ''inspir'':6 ''labyrinth'':2 ''monkey'':10 ''monterey'':1 ''must'':15 ''u'':22 ''u-boat'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (594, 'MONTEZUMA COMMAND', 'A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat', 2006, 1, NULL, true, 6, 0.99, 126, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''battl'':14 ''boat'':20 ''butler'':11,16 ''command'':2 ''jet'':19 ''montezuma'':1 ''must'':13 ''reflect'':5 ''thrill'':4 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (595, 'MOON BUNCH', 'A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory', 2006, 1, NULL, true, 7, 0.99, 83, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''astronaut'':8 ''baloon'':20 ''beauti'':4 ''bunch'':2 ''cat'':17 ''challeng'':15 ''cow'':12 ''factori'':21 ''mad'':11 ''moon'':1 ''must'':14 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (596, 'MOONSHINE CABIN', 'A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat', 2006, 1, NULL, true, 4, 4.99, 171, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astronaut'':8 ''boat'':20 ''cabin'':2 ''chase'':14 ''display'':5 ''feminist'':11 ''frisbe'':16 ''jet'':19 ''moonshin'':1 ''must'':13 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (597, 'MOONWALKER FOOL', 'A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans', 2006, 1, NULL, true, 5, 4.99, 184, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''compos'':16 ''drama'':5 ''epic'':4 ''feminist'':8 ''fool'':2 ''moonwalk'':1 ''must'':13 ''new'':18 ''orlean'':19 ''pioneer'':11 ''sink'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (598, 'MOSQUITO ARMAGEDDON', 'A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan', 2006, 1, NULL, true, 6, 0.99, 57, 22.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':19 ''armageddon'':2 ''build'':15 ''charact'':5 ''feminist'':12 ''japan'':20 ''mosquito'':1 ''must'':14 ''studi'':6 ''teacher'':17 ''thought'':4 ''waitress'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (599, 'MOTHER OLEANDER', 'A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China', 2006, 1, NULL, true, 3, 0.99, 103, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':18 ''bore'':4 ''boy'':11 ''china'':19 ''fight'':14 ''husband'':8 ''mother'':1 ''must'':13 ''oleand'':2 ''squirrel'':16 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (600, 'MOTIONS DETAILS', 'A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House', 2006, 1, NULL, true, 5, 0.99, 166, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':21 ''awe'':5 ''awe-inspir'':4 ''car'':18 ''detail'':2 ''dog'':10 ''fun'':22 ''hous'':23 ''inspir'':6 ''kill'':16 ''motion'':1 ''must'':15 ''reflect'':7 ''student'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (601, 'MOULIN WAKE', 'A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft', 2006, 1, NULL, true, 4, 0.99, 79, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':20 ''astound'':4 ''battl'':15 ''cat'':12 ''forens'':8 ''mine'':21 ''moulin'':1 ''must'':14 ''psychologist'':9 ''shaft'':22 ''stori'':5 ''teacher'':17 ''wake'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (602, 'MOURNING PURPLE', 'A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans', 2006, 1, NULL, true, 5, 0.99, 146, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''chase'':14 ''display'':5 ''lacklustur'':4 ''lumberjack'':11 ''mourn'':1 ''must'':13 ''new'':18 ''orlean'':19 ''pioneer'':16 ''purpl'':2 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (603, 'MOVIE SHAKESPEARE', 'A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin', 2006, 1, NULL, true, 6, 4.99, 53, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''berlin'':19 ''build'':15 ''databas'':8 ''display'':5 ''hunter'':17 ''insight'':4 ''movi'':1 ''must'':14 ''shakespear'':2 ''student'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (604, 'MULAN MOON', 'A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon', 2006, 1, NULL, true, 4, 0.99, 160, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':19 ''dentist'':16 ''emot'':4 ''moon'':2 ''mulan'':1 ''must'':13 ''overcom'':14 ''pioneer'':11 ''saga'':5 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (605, 'MULHOLLAND BEAST', 'A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat', 2006, 1, NULL, true, 7, 2.99, 157, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''battl'':16 ''beast'':2 ''boat'':23 ''display'':7 ''husband'':10 ''inspir'':6 ''jet'':22 ''mulholland'':1 ''must'':15 ''squirrel'':13 ''sumo'':18 ''wrestler'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (606, 'MUMMY CREATURES', 'A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia', 2006, 1, NULL, true, 3, 0.99, 160, 15.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''australia'':19 ''charact'':5 ''creatur'':2 ''crocodil'':9 ''dentist'':17 ''fate'':4 ''meet'':15 ''monkey'':12 ''mummi'':1 ''must'':14 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (607, 'MUPPET MILE', 'A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 50, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''frisbe'':16 ''gulf'':19 ''kill'':14 ''lacklustur'':4 ''madman'':8 ''mexico'':21 ''mile'':2 ''muppet'':1 ''must'':13 ''stori'':5 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (608, 'MURDER ANTITRUST', 'A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 166, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''administr'':12 ''antitrust'':2 ''boy'':17 ''brilliant'':4 ''car'':8 ''convent'':21 ''databas'':11 ''escap'':15 ''murder'':1 ''must'':14 ''mysql'':20 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (609, 'MUSCLE BRIGHT', 'A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India', 2006, 1, NULL, true, 7, 2.99, 185, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':19 ''bright'':2 ''husband'':12 ''india'':20 ''madman'':17 ''muscl'':1 ''must'':14 ''panorama'':5 ''redeem'':15 ''stun'':4 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (610, 'MUSIC BOONDOCK', 'A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station', 2006, 1, NULL, true, 7, 0.99, 129, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astronaut'':11 ''battl'':14 ''boondock'':2 ''butler'':8 ''explor'':16 ''first'':19 ''man'':20 ''music'':1 ''must'':13 ''space'':21 ''station'':22 ''tale'':5 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (611, 'MUSKETEERS WAIT', 'A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia', 2006, 1, NULL, true, 7, 4.99, 73, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''australia'':19 ''cow'':17 ''fight'':14 ''mad'':16 ''moos'':11 ''musket'':1 ''must'':13 ''student'':8 ''touch'':4 ''wait'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (612, 'MUSSOLINI SPOILERS', 'A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China', 2006, 1, NULL, true, 6, 2.99, 180, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':18 ''boat'':8 ''china'':19 ''compos'':16 ''display'':5 ''meet'':14 ''monkey'':11 ''mussolini'':1 ''must'':13 ''spoiler'':2 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (613, 'MYSTIC TRUMAN', 'A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia', 2006, 1, NULL, true, 5, 0.99, 92, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''epic'':4 ''explor'':16 ''georgia'':19 ''hunter'':11 ''must'':13 ''mystic'':1 ''outgun'':14 ''soviet'':18 ''teacher'':8 ''truman'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (614, 'NAME DETECTIVE', 'A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria', 2006, 1, NULL, true, 5, 4.99, 178, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''cat'':12 ''detect'':2 ''mad'':17 ''must'':14 ''name'':1 ''nigeria'':20 ''pursu'':15 ''saga'':5 ''scientist'':18 ''sumo'':8 ''touch'':4 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (615, 'NASH CHOCOLAT', 'A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 180, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':21 ''chocolat'':2 ''cow'':12 ''epic'':4 ''forens'':17 ''kill'':15 ''mad'':11 ''mine'':22 ''monkey'':8 ''must'':14 ''nash'':1 ''psychologist'':18 ''reflect'':5 ''shaft'':23'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (616, 'NATIONAL STORY', 'A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California', 2006, 1, NULL, true, 4, 2.99, 92, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''california'':19 ''epistl'':5 ''escap'':15 ''girl'':12 ''mad'':8 ''monkey'':17 ''must'':14 ''nation'':1 ''scientist'':9 ''stori'':2 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (617, 'NATURAL STOCK', 'A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory', 2006, 1, NULL, true, 4, 0.99, 50, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''baloon'':22 ''car'':19 ''defeat'':17 ''factori'':23 ''fast'':5 ''fast-pac'':4 ''girl'':14 ''must'':16 ''natur'':1 ''pace'':6 ''stock'':2 ''stori'':7 ''sumo'':10 ''wrestler'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (618, 'NECKLACE OUTBREAK', 'A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California', 2006, 1, NULL, true, 3, 0.99, 132, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''administr'':9 ''astound'':4 ''california'':20 ''cat'':18 ''databas'':8 ''epistl'':5 ''mad'':12 ''must'':15 ''necklac'':1 ''outbreak'':2 ''pursu'':16 ''scientist'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (619, 'NEIGHBORS CHARADE', 'A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 161, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':19 ''amus'':20 ''astronaut'':11 ''charad'':2 ''crocodil'':8 ''fanci'':4 ''feminist'':16 ''must'':13 ''neighbor'':1 ''outrac'':14 ''park'':21 ''reflect'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (620, 'NEMO CAMPUS', 'A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 2.99, 131, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''campus'':2 ''lacklustur'':4 ''manhattan'':19 ''monkey'':8 ''must'':13 ''nemo'':1 ''outrac'':14 ''penthous'':20 ''reflect'':5 ''squirrel'':11 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (621, 'NETWORK PEAK', 'A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California', 2006, 1, NULL, true, 5, 2.99, 75, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':11 ''butler'':8 ''california'':19 ''mad'':16 ''must'':13 ''network'':1 ''outgun'':14 ''peak'':2 ''reflect'':5 ''scientist'':17 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (622, 'NEWSIES STORY', 'A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 159, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''charact'':7 ''dog'':11 ''gulf'':22 ''lumberjack'':14 ''mexico'':24 ''moos'':19 ''must'':16 ''newsi'':1 ''outrac'':17 ''pack'':6 ''stori'':2 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (623, 'NEWTON LABYRINTH', 'A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India', 2006, 1, NULL, true, 4, 0.99, 75, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':20 ''charact'':5 ''find'':15 ''india'':21 ''intrepid'':4 ''labyrinth'':2 ''moos'':9 ''must'':14 ''newton'':1 ''shark'':18 ''studi'':6 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (624, 'NIGHTMARE CHILL', 'A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft', 2006, 1, NULL, true, 3, 4.99, 149, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''brilliant'':4 ''butler'':11 ''chill'':2 ''display'':5 ''fight'':14 ''mine'':20 ''must'':13 ''nightmar'':1 ''robot'':8 ''shaft'':21 ''waitress'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (625, 'NONE SPIKING', 'A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 83, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''agent'':9 ''astronaut'':12 ''bore'':4 ''compos'':17 ''face'':15 ''manhattan'':20 ''must'':14 ''none'':1 ''penthous'':21 ''reflect'':5 ''secret'':8 ''spike'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (626, 'NOON PAPI', 'A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 2.99, 57, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astronaut'':13 ''charact'':5 ''find'':16 ''mad'':9 ''manhattan'':21 ''must'':15 ''noon'':1 ''papi'':2 ''penthous'':22 ''pioneer'':18 ''scientist'':10 ''studi'':6 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (627, 'NORTH TEQUILA', 'A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans', 2006, 1, NULL, true, 4, 4.99, 67, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''charact'':5 ''cow'':10 ''mad'':9 ''must'':15 ''new'':20 ''north'':1 ''orlean'':21 ''reach'':16 ''robot'':13 ''studi'':6 ''tequila'':2 ''woman'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (628, 'NORTHWEST POLISH', 'A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback', 2006, 1, NULL, true, 5, 2.99, 172, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''bore'':4 ''boy'':9 ''charact'':5 ''must'':15 ''northwest'':1 ''outback'':21 ''outrac'':16 ''polish'':2 ''shark'':13 ''studi'':6 ''woman'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (629, 'NOTORIOUS REUNION', 'A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon', 2006, 1, NULL, true, 7, 0.99, 128, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''amaz'':4 ''baloon'':19 ''epistl'':5 ''fight'':14 ''hunter'':16 ''must'':13 ''notori'':1 ''reunion'':2 ''squirrel'':11 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (630, 'NOTTING SPEAKEASY', 'A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies', 2006, 1, NULL, true, 7, 0.99, 48, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''butler'':8 ''canadian'':19 ''display'':5 ''find'':14 ''must'':13 ''not'':1 ''rocki'':20 ''speakeasi'':2 ''thought'':4 ''waitress'':16 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (631, 'NOVOCAINE FLIGHT', 'A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria', 2006, 1, NULL, true, 4, 0.99, 64, 11.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''crocodil'':16 ''display'':5 ''fanci'':4 ''flight'':2 ''must'':13 ''nigeria'':18 ''novocain'':1 ''outgun'':14 ''student'':8 ''teacher'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (632, 'NUTS TIES', 'A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California', 2006, 1, NULL, true, 5, 4.99, 145, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''california'':18 ''drama'':5 ''explor'':8 ''meet'':14 ''must'':13 ''nut'':1 ''teacher'':16 ''thought'':4 ''tie'':2 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (633, 'OCTOBER SUBMARINE', 'A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat', 2006, 1, NULL, true, 6, 4.99, 54, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boat'':20 ''boy'':11 ''confront'':14 ''epistl'':5 ''husband'':16 ''jet'':19 ''monkey'':8 ''must'':13 ''octob'':1 ''submarin'':2 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (634, 'ODDS BOOGIE', 'A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin', 2006, 1, NULL, true, 6, 0.99, 48, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''battl'':14 ''berlin'':18 ''boogi'':2 ''feminist'':8 ''hunter'':16 ''madman'':11 ''must'':13 ''odd'':1 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (635, 'OKLAHOMA JUMANJI', 'A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert', 2006, 1, NULL, true, 7, 0.99, 58, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''dentist'':8 ''desert'':20 ''drama'':5 ''husband'':16 ''jumanji'':2 ''meet'':14 ''must'':13 ''oklahoma'':1 ''sahara'':19 ''thought'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (636, 'OLEANDER CLUE', 'A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat', 2006, 1, NULL, true, 5, 0.99, 161, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''boat'':21 ''bore'':4 ''clue'':2 ''forens'':16 ''jet'':20 ''monkey'':11 ''must'':13 ''oleand'':1 ''psychologist'':17 ''stori'':5 ''succumb'':14 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (637, 'OPEN AFRICAN', 'A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat', 2006, 1, NULL, true, 7, 4.99, 131, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''african'':2 ''agent'':9 ''boat'':22 ''car'':17 ''discov'':15 ''drama'':5 ''explor'':12 ''lacklustur'':4 ''must'':14 ''open'':1 ''secret'':8 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (638, 'OPERATION OPERATION', 'A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China', 2006, 1, NULL, true, 7, 2.99, 156, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''charact'':5 ''china'':20 ''frisbe'':12 ''intrepid'':4 ''madman'':17 ''man'':9 ''must'':14 ''oper'':1,2 ''overcom'':15 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (639, 'OPPOSITE NECKLACE', 'A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria', 2006, 1, NULL, true, 7, 4.99, 92, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''crocodil'':8 ''epistl'':5 ''explor'':16 ''fate'':4 ''kill'':14 ''moos'':11 ''must'':13 ''necklac'':2 ''nigeria'':18 ''opposit'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (640, 'OPUS ICE', 'A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert', 2006, 1, NULL, true, 5, 4.99, 102, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''boy'':13 ''desert'':22 ''discov'':16 ''drama'':7 ''fast'':5 ''fast-pac'':4 ''feminist'':18 ''hunter'':10 ''ice'':2 ''must'':15 ''opus'':1 ''pace'':6 ''sahara'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (641, 'ORANGE GRAPES', 'A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat', 2006, 1, NULL, true, 4, 0.99, 76, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''astound'':4 ''boat'':21 ''butler'':8 ''documentari'':5 ''dog'':16 ''face'':14 ''grape'':2 ''must'':13 ''orang'':1 ''u'':20 ''u-boat'':19 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (642, 'ORDER BETRAYED', 'A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert', 2006, 1, NULL, true, 7, 2.99, 120, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''amaz'':4 ''betray'':2 ''cat'':17 ''challeng'':15 ''desert'':21 ''dog'':8 ''must'':14 ''order'':1 ''saga'':5 ''sahara'':20 ''shark'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (643, 'ORIENT CLOSER', 'A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert', 2006, 1, NULL, true, 3, 2.99, 118, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''astound'':4 ''closer'':2 ''desert'':21 ''epistl'':5 ''fight'':15 ''must'':14 ''orient'':1 ''sahara'':20 ''squirrel'':17 ''teacher'':12 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (644, 'OSCAR GOLD', 'A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia', 2006, 1, NULL, true, 7, 2.99, 115, 29.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''administr'':9 ''databas'':8 ''dog'':12 ''face'':15 ''georgia'':20 ''gold'':2 ''insight'':4 ''madman'':17 ''must'':14 ''oscar'':1 ''soviet'':19 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (645, 'OTHERS SOUP', 'A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico', 2006, 1, NULL, true, 7, 2.99, 118, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''cow'':9 ''documentari'':5 ''gulf'':20 ''lacklustur'':4 ''mad'':8 ''madman'':12 ''mexico'':22 ''moos'':17 ''must'':14 ''other'':1 ''sink'':15 ''soup'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (646, 'OUTBREAK DIVINE', 'A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat', 2006, 1, NULL, true, 6, 0.99, 169, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''administr'':9 ''boat'':23 ''databas'':8 ''divin'':2 ''must'':14 ''outbreak'':1 ''shark'':18 ''succumb'':15 ''u'':22 ''u-boat'':21 ''unbeliev'':4 ''woman'':12 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (647, 'OUTFIELD MASSACRE', 'A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India', 2006, 1, NULL, true, 4, 0.99, 129, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''administr'':18 ''agent'':12 ''ancient'':20 ''databas'':17 ''drama'':5 ''husband'':8 ''india'':21 ''massacr'':2 ''must'':14 ''outfield'':1 ''pursu'':15 ''secret'':11 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (648, 'OUTLAW HANKY', 'A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert', 2006, 1, NULL, true, 7, 4.99, 148, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''astronaut'':8 ''compos'':11 ''conquer'':14 ''desert'':20 ''dog'':16 ''hanki'':2 ''must'':13 ''outlaw'':1 ''sahara'':19 ''stori'':5 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (649, 'OZ LIAISONS', 'A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory', 2006, 1, NULL, true, 4, 2.99, 85, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''cat'':12 ''confront'':15 ''epic'':4 ''factori'':21 ''liaison'':2 ''mad'':8 ''must'':14 ''oz'':1 ''scientist'':9 ''woman'':17 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (650, 'PACIFIC AMISTAD', 'A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 144, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''amistad'':2 ''chef'':17 ''dog'':8 ''kill'':14 ''manhattan'':20 ''moos'':11 ''must'':13 ''pacif'':1 ''pastri'':16 ''penthous'':21 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (651, 'PACKER MADIGAN', 'A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 84, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':21 ''amus'':22 ''build'':16 ''display'':5 ''epic'':4 ''forens'':12 ''madigan'':2 ''must'':15 ''packer'':1 ''park'':23 ''psychologist'':13 ''sumo'':8 ''woman'':18 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (652, 'PAJAMA JAWBREAKER', 'A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California', 2006, 1, NULL, true, 3, 0.99, 126, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''boy'':8 ''california'':20 ''drama'':5 ''emot'':4 ''jawbreak'':2 ''must'':14 ''pajama'':1 ''redeem'':15 ''sumo'':17 ''technic'':11 ''wrestler'':18 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (653, 'PANIC CLUB', 'A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon', 2006, 1, NULL, true, 3, 4.99, 102, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''baloon'':19 ''club'':2 ''crocodil'':11 ''display'':5 ''fanci'':4 ''girl'':16 ''must'':13 ''panic'':1 ''succumb'':14 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (654, 'PANKY SUBMARINE', 'A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico', 2006, 1, NULL, true, 4, 4.99, 93, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boy'':17 ''dentist'':8 ''documentari'':5 ''gulf'':20 ''mexico'':22 ''must'':14 ''overcom'':15 ''panki'':1 ''submarin'':2 ''sumo'':11 ''touch'':4 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (655, 'PANTHER REDS', 'A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 109, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''brilliant'':4 ''gulf'':19 ''man'':11 ''mexico'':21 ''moos'':8 ''must'':13 ''panorama'':5 ''panther'':1 ''reach'':14 ''red'':2 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (656, 'PAPI NECKLACE', 'A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan', 2006, 1, NULL, true, 3, 0.99, 128, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''ancient'':18 ''car'':8 ''display'':5 ''escap'':14 ''fanci'':4 ''japan'':19 ''monkey'':11 ''must'':13 ''necklac'':2 ''papi'':1 ''squirrel'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (657, 'PARADISE SABRINA', 'A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 2.99, 48, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''car'':8 ''crocodil'':16 ''intrepid'':4 ''manhattan'':19 ''moos'':11 ''must'':13 ''outrac'':14 ''paradis'':1 ''penthous'':20 ''sabrina'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (658, 'PARIS WEEKEND', 'A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback', 2006, 1, NULL, true, 7, 2.99, 121, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''crocodil'':11 ''defeat'':14 ''intrepid'':4 ''monkey'':16 ''must'':13 ''outback'':19 ''pari'':1 ''squirrel'':8 ''stori'':5 ''weekend'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (659, 'PARK CITIZEN', 'A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan', 2006, 1, NULL, true, 3, 4.99, 109, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':19 ''citizen'':2 ''epistl'':5 ''face'':15 ''girl'':12 ''husband'':17 ''japan'':20 ''must'':14 ''park'':1 ''sumo'':8 ''taut'':4 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (660, 'PARTY KNOCK', 'A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 2.99, 107, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':21 ''battl'':15 ''butler'':12 ''display'':5 ''fate'':4 ''knock'':2 ''mine'':22 ''must'':14 ''parti'':1 ''shaft'':23 ''sumo'':17 ''technic'':8 ''wrestler'':18 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (661, 'PAST SUICIDES', 'A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery', 2006, 1, NULL, true, 5, 4.99, 157, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':11 ''challeng'':14 ''hunter'':16 ''intrepid'':4 ''madman'':8 ''monasteri'':19 ''must'':13 ''past'':1 ''suicid'':2 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (662, 'PATHS CONTROL', 'A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China', 2006, 1, NULL, true, 3, 4.99, 118, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''ancient'':18 ''astound'':4 ''butler'':8 ''cat'':11 ''china'':19 ''control'':2 ''documentari'':5 ''find'':14 ''frisbe'':16 ''must'':13 ''path'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (663, 'PATIENT SISTER', 'A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia', 2006, 1, NULL, true, 7, 0.99, 99, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''confront'':14 ''emot'':4 ''epistl'':5 ''georgia'':19 ''lumberjack'':16 ''must'':13 ''patient'':1 ''robot'':11 ''sister'':2 ''soviet'':18 ''squirrel'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (664, 'PATRIOT ROMAN', 'A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California', 2006, 1, NULL, true, 6, 2.99, 65, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''administr'':12 ''astronaut'':17 ''california'':19 ''challeng'':15 ''databas'':11 ''must'':14 ''patriot'':1 ''robot'':8 ''roman'':2 ''saga'':5 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (665, 'PATTON INTERVIEW', 'A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin', 2006, 1, NULL, true, 4, 2.99, 175, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':12 ''berlin'':19 ''cat'':17 ''compos'':8 ''documentari'':5 ''interview'':2 ''must'':14 ''patton'':1 ''secret'':11 ''succumb'':15 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (666, 'PAYCHECK WAIT', 'A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 145, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boy'':10 ''desert'':22 ''discov'':16 ''inspir'':6 ''man'':13 ''moos'':18 ''must'':15 ''paycheck'':1 ''reflect'':7 ''sahara'':21 ''wait'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (667, 'PEACH INNOCENT', 'A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin', 2006, 1, NULL, true, 3, 2.99, 160, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''berlin'':20 ''butler'':18 ''chase'':16 ''dentist'':13 ''drama'':7 ''innoc'':2 ''monkey'':10 ''must'':15 ''pack'':6 ''peach'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (668, 'PEAK FOREVER', 'A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 4.99, 80, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''agent'':12 ''astronaut'':17 ''boat'':8 ''forev'':2 ''insight'':4 ''mine'':21 ''must'':14 ''peak'':1 ''reflect'':5 ''secret'':11 ''shaft'':22 ''vanquish'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (669, 'PEARL DESTINY', 'A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat', 2006, 1, NULL, true, 3, 2.99, 74, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':8 ''boat'':22 ''chef'':12 ''destini'':2 ''dog'':17 ''lacklustur'':4 ''must'':14 ''pastri'':11 ''pearl'':1 ''sink'':15 ''u'':21 ''u-boat'':20 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (670, 'PELICAN COMFORTS', 'A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin', 2006, 1, NULL, true, 4, 4.99, 48, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''astronaut'':16 ''berlin'':18 ''boy'':8 ''comfort'':2 ''documentari'':5 ''epic'':4 ''monkey'':11 ''must'':13 ''pelican'':1 ''pursu'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (671, 'PERDITION FARGO', 'A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin', 2006, 1, NULL, true, 7, 4.99, 99, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''berlin'':20 ''car'':10 ''cat'':13 ''fargo'':2 ''fast'':5 ''fast-pac'':4 ''hunter'':18 ''must'':15 ''outgun'':16 ''pace'':6 ''perdit'':1 ''stori'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (672, 'PERFECT GROOVE', 'A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon', 2006, 1, NULL, true, 7, 2.99, 82, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':19 ''build'':14 ''dog'':8,11 ''groov'':2 ''husband'':16 ''must'':13 ''perfect'':1 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (673, 'PERSONAL LADYBUGS', 'A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan', 2006, 1, NULL, true, 3, 0.99, 118, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''cat'':17 ''conquer'':15 ''epic'':4 ''hunter'':8 ''japan'':20 ''ladybug'':2 ''must'':14 ''person'':1 ''saga'':5 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (674, 'PET HAUNTING', 'A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California', 2006, 1, NULL, true, 3, 0.99, 99, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''boat'':11 ''california'':18 ''conquer'':14 ''explor'':8 ''haunt'':2 ''must'':13 ''pet'':1 ''reflect'':5 ''unbeliev'':4 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (675, 'PHANTOM GLORY', 'A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery', 2006, 1, NULL, true, 6, 2.99, 60, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astronaut'':8 ''beauti'':4 ''crocodil'':11 ''discov'':14 ''documentari'':5 ''glori'':2 ''madman'':16 ''monasteri'':19 ''must'':13 ''phantom'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (676, 'PHILADELPHIA WIFE', 'A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert', 2006, 1, NULL, true, 7, 4.99, 137, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':17 ''astronaut'':11 ''conquer'':14 ''databas'':16 ''desert'':21 ''hunter'':8 ''must'':13 ''philadelphia'':1 ''sahara'':20 ''taut'':4 ''wife'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (677, 'PIANIST OUTFIELD', 'A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery', 2006, 1, NULL, true, 6, 0.99, 136, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''boy'':8 ''intrepid'':4 ''lumberjack'':17 ''monasteri'':20 ''must'':14 ''outfield'':2 ''pianist'':1 ''pursu'':15 ''stori'':5 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (715, 'RANGE MOONWALKER', 'A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon', 2006, 1, NULL, true, 3, 4.99, 147, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''baloon'':19 ''confront'':14 ''crocodil'':16 ''dentist'':11 ''documentari'':5 ''hunter'':8 ''insight'':4 ''moonwalk'':2 ''must'':13 ''rang'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (678, 'PICKUP DRIVING', 'A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory', 2006, 1, NULL, true, 3, 2.99, 77, 23.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':20 ''boat'':11 ''chef'':17 ''documentari'':5 ''drive'':2 ''factori'':21 ''husband'':8 ''meet'':14 ''must'':13 ''pastri'':16 ''pickup'':1 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (698, 'PRINCESS GIANT', 'A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank', 2006, 1, NULL, true, 3, 2.99, 71, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''battl'':15 ''chef'':9 ''giant'':2 ''monkey'':12,17 ''must'':14 ''pastri'':8 ''princess'':1 ''shark'':20 ''tank'':21 ''thrill'':4 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (679, 'PILOT HOOSIERS', 'A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 50, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':23 ''awe'':5 ''awe-inspir'':4 ''crocodil'':10 ''forens'':19 ''hoosier'':2 ''inspir'':6 ''meet'':17 ''mine'':24 ''must'':16 ''pilot'':1 ''psychologist'':20 ''reflect'':7 ''shaft'':25 ''sumo'':13 ''wrestler'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (680, 'PINOCCHIO SIMON', 'A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California', 2006, 1, NULL, true, 4, 4.99, 103, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''california'':22 ''feminist'':20 ''find'':18 ''mad'':10 ''must'':17 ''pack'':6 ''pinocchio'':1 ''reflect'':7 ''scientist'':11 ''shark'':15 ''simon'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (681, 'PIRATES ROXANNE', 'A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies', 2006, 1, NULL, true, 4, 0.99, 100, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''canadian'':20 ''drama'':5 ''lumberjack'':11 ''must'':13 ''overcom'':14 ''pirat'':1 ''rocki'':21 ''roxann'':2 ''shark'':17 ''stun'':4 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (682, 'PITTSBURGH HUNCHBACK', 'A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia', 2006, 1, NULL, true, 4, 4.99, 134, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''boat'':11 ''boy'':8 ''epistl'':5 ''find'':14 ''georgia'':19 ''hunchback'':2 ''must'':13 ''pittsburgh'':1 ''soviet'':18 ''student'':16 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (683, 'PITY BOUND', 'A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria', 2006, 1, NULL, true, 5, 4.99, 60, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''administr'':17 ''bore'':4 ''bound'':2 ''databas'':16 ''defeat'':14 ''feminist'':8 ''moos'':11 ''must'':13 ''nigeria'':19 ''panorama'':5 ''piti'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (684, 'PIZZA JUMANJI', 'A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat', 2006, 1, NULL, true, 4, 2.99, 173, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':21 ''cat'':8 ''epic'':4 ''jumanji'':2 ''must'':13 ''outgun'':14 ''pizza'':1 ''robot'':16 ''saga'':5 ''squirrel'':11 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (685, 'PLATOON INSTINCT', 'A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia', 2006, 1, NULL, true, 6, 4.99, 132, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''australia'':18 ''instinct'':2 ''man'':8 ''must'':13 ''panorama'':5 ''platoon'':1 ''reach'':14 ''thrill'':4 ''woman'':11,16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (686, 'PLUTO OLEANDER', 'A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank', 2006, 1, NULL, true, 5, 4.99, 84, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''car'':10,18 ''moos'':13 ''must'':15 ''oleand'':2 ''outgun'':16 ''pack'':6 ''pluto'':1 ''reflect'':7 ''shark'':21 ''tank'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (687, 'POCUS PULP', 'A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory', 2006, 1, NULL, true, 6, 0.99, 138, 15.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':16 ''baloon'':19 ''build'':14 ''dog'':11 ''factori'':20 ''frisbe'':8 ''intrepid'':4 ''must'':13 ''pocus'':1 ''pulp'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (688, 'POLISH BROOKLYN', 'A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback', 2006, 1, NULL, true, 6, 0.99, 61, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':10 ''bore'':4 ''brooklyn'':2 ''charact'':5 ''databas'':9 ''lumberjack'':13 ''madman'':18 ''must'':15 ''outback'':21 ''polish'':1 ''reach'':16 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (689, 'POLLOCK DELIVERANCE', 'A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert', 2006, 1, NULL, true, 5, 2.99, 137, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':16 ''deliver'':2 ''desert'':20 ''frisbe'':11 ''intrepid'':4 ''madman'':8 ''must'':13 ''outgun'':14 ''pollock'':1 ''sahara'':19 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (690, 'POND SEATTLE', 'A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China', 2006, 1, NULL, true, 7, 2.99, 185, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':18 ''battl'':14 ''boat'':11 ''china'':19 ''drama'':5 ''feminist'':16 ''must'':13 ''pond'':1 ''seattl'':2 ''stun'':4 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (691, 'POSEIDON FOREVER', 'A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery', 2006, 1, NULL, true, 6, 4.99, 159, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''dentist'':16 ''epistl'':5 ''forev'':2 ''monasteri'':19 ''monkey'':11 ''must'':13 ''poseidon'':1 ''thought'':4 ''vanquish'':14 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (692, 'POTLUCK MIXED', 'A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon', 2006, 1, NULL, true, 3, 2.99, 179, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':20 ''beauti'':4 ''dog'':8 ''mix'':2 ''must'':14 ''outgun'':15 ''potluck'':1 ''stori'':5 ''student'':17 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (693, 'POTTER CONNECTICUT', 'A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin', 2006, 1, NULL, true, 5, 2.99, 115, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''berlin'':19 ''cat'':11 ''connecticut'':2 ''epistl'':5 ''fight'':14 ''frisbe'':8 ''must'':13 ''potter'':1 ''technic'':16 ''thrill'':4 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (694, 'PREJUDICE OLEANDER', 'A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat', 2006, 1, NULL, true, 6, 4.99, 98, 15.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''boat'':21 ''boy'':8 ''dentist'':11 ''epic'':4 ''madman'':16 ''must'':13 ''oleand'':2 ''outrac'':14 ''prejudic'':1 ''saga'':5 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (695, 'PRESIDENT BANG', 'A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia', 2006, 1, NULL, true, 6, 4.99, 144, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''bang'':2 ''battl'':15 ''fate'':4 ''georgia'':20 ''moos'':12 ''must'':14 ''panorama'':5 ''presid'':1 ''robot'':17 ''soviet'':19 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (696, 'PRIDE ALAMO', 'A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India', 2006, 1, NULL, true, 6, 0.99, 114, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''alamo'':2 ''ancient'':20 ''drama'':5 ''forens'':12 ''india'':21 ''must'':15 ''pride'':1 ''psychologist'':13 ''shark'':9 ''student'':18 ''thought'':4 ''vanquish'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (697, 'PRIMARY GLASS', 'A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies', 2006, 1, NULL, true, 7, 0.99, 53, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''build'':15 ''butler'':12 ''canadian'':20 ''chef'':9 ''documentari'':5 ''dog'':17 ''fate'':4 ''glass'':2 ''must'':14 ''pastri'':8 ''primari'':1 ''rocki'':21'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (699, 'PRIVATE DROP', 'A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon', 2006, 1, NULL, true, 7, 4.99, 106, 26.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''agent'':18 ''baloon'':21 ''drop'':2 ''hunter'':12 ''must'':14 ''privat'':1 ''secret'':17 ''stori'':5 ''stun'':4 ''succumb'':15 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (700, 'PRIX UNDEFEATED', 'A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China', 2006, 1, NULL, true, 4, 2.99, 115, 13.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':19 ''boat'':12 ''china'':20 ''dentist'':17 ''mad'':8 ''must'':14 ''overcom'':15 ''prix'':1 ''saga'':5 ''scientist'':9 ''stun'':4 ''undef'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (701, 'PSYCHO SHRUNK', 'A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria', 2006, 1, NULL, true, 5, 2.99, 155, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''amaz'':4 ''crocodil'':8 ''explor'':11 ''fight'':14 ''husband'':16 ''must'':13 ''nigeria'':18 ''panorama'':5 ''psycho'':1 ''shrunk'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (702, 'PULP BEVERLY', 'A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria', 2006, 1, NULL, true, 4, 2.99, 89, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''bever'':2 ''crocodil'':11 ''display'':5 ''dog'':8 ''man'':16 ''must'':13 ''nigeria'':18 ''outrac'':14 ''pulp'':1 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (703, 'PUNK DIVORCE', 'A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies', 2006, 1, NULL, true, 6, 4.99, 100, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''boat'':14 ''canadian'':22 ''chef'':11 ''divorc'':2 ''face'':17 ''fast'':5 ''fast-pac'':4 ''frisbe'':19 ''must'':16 ''pace'':6 ''pastri'':10 ''punk'':1 ''rocki'':23 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (704, 'PURE RUNNER', 'A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 2.99, 121, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''challeng'':14 ''documentari'':5 ''madman'':11 ''manhattan'':19 ''must'':13 ''penthous'':20 ''pure'':1 ''runner'':2 ''squirrel'':16 ''student'':8 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (705, 'PURPLE MOVIE', 'A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 2.99, 88, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':21 ''amus'':22 ''bore'':4 ''chef'':9 ''discov'':16 ''display'':5 ''frisbe'':18 ''movi'':2 ''must'':15 ''park'':23 ''pastri'':8 ''purpl'':1 ''sumo'':12 ''wrestler'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (706, 'QUEEN LUKE', 'A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans', 2006, 1, NULL, true, 5, 4.99, 163, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astound'':4 ''boy'':11 ''challeng'':14 ''compos'':16 ''girl'':8 ''luke'':2 ''must'':13 ''new'':18 ''orlean'':19 ''queen'':1 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (707, 'QUEST MUSSOLINI', 'A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory', 2006, 1, NULL, true, 5, 2.99, 177, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':21 ''battl'':15 ''chef'':18 ''drama'':5 ''factori'':22 ''fate'':4 ''husband'':8 ''mussolini'':2 ''must'':14 ''pastri'':17 ''quest'':1 ''sumo'':11 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (708, 'QUILLS BULL', 'A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia', 2006, 1, NULL, true, 4, 4.99, 112, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''australia'':18 ''bull'':2 ''moos'':16 ''must'':13 ''pioneer'':8 ''quill'':1 ''reach'':14 ''stori'':5 ''thought'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (709, 'RACER EGG', 'A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California', 2006, 1, NULL, true, 7, 2.99, 147, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''agent'':17 ''california'':19 ''display'':5 ''egg'':2 ''emot'':4 ''monkey'':8 ''must'':13 ''racer'':1 ''reach'':14 ''secret'':16 ''waitress'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (710, 'RAGE GAMES', 'A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 4.99, 120, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':22 ''agent'':14 ''amus'':23 ''astronaut'':10 ''escap'':17 ''fast'':5 ''fast-pac'':4 ''game'':2 ''hunter'':19 ''must'':16 ''pace'':6 ''park'':24 ''rage'':1 ''saga'':7 ''secret'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (711, 'RAGING AIRPLANE', 'A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat', 2006, 1, NULL, true, 4, 4.99, 154, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''agent'':9 ''airplan'':2 ''astound'':4 ''boat'':23 ''display'':5 ''escap'':16 ''jet'':22 ''mad'':18 ''must'':15 ''rage'':1 ''scientist'':19 ''secret'':8 ''technic'':12 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (712, 'RAIDERS ANTITRUST', 'A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station', 2006, 1, NULL, true, 4, 0.99, 82, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''amaz'':4 ''antitrust'':2 ''drama'':5 ''feminist'':11 ''first'':19 ''man'':20 ''meet'':14 ''must'':13 ''raider'':1 ''space'':21 ''station'':22 ''teacher'':8 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (713, 'RAINBOW SHOCK', 'A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India', 2006, 1, NULL, true, 3, 4.99, 74, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''ancient'':20 ''boy'':13 ''discov'':16 ''hunter'':10 ''india'':21 ''lumberjack'':18 ''must'':15 ''pack'':6 ''rainbow'':1 ''shock'':2 ''stori'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (714, 'RANDOM GO', 'A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank', 2006, 1, NULL, true, 6, 2.99, 73, 29.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''cat'':16 ''confront'':14 ''drama'':5 ''fate'':4 ''frisbe'':8 ''go'':2 ''must'':13 ''random'':1 ''shark'':19 ''student'':11 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (786, 'SHEPHERD MIDSUMMER', 'A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon', 2006, 1, NULL, true, 7, 0.99, 113, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''baloon'':19 ''drama'':5 ''kill'':14 ''lumberjack'':16 ''midsumm'':2 ''must'':13 ''robot'':8 ''shepherd'':1 ''thought'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (716, 'REAP UNFAITHFUL', 'A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 136, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''challeng'':15 ''compos'':8 ''convent'':22 ''cow'':18 ''epistl'':5 ''mad'':17 ''must'':14 ''mysql'':21 ''reap'':1 ''sumo'':11 ''thrill'':4 ''unfaith'':2 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (753, 'RUSH GOODFELLAS', 'A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia', 2006, 1, NULL, true, 3, 0.99, 48, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''australia'':18 ''challeng'':14 ''dentist'':11 ''display'':5 ''emot'':4 ''goodfella'':2 ''man'':8 ''must'':13 ''rush'':1 ''squirrel'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (717, 'REAR TRADING', 'A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia', 2006, 1, NULL, true, 6, 0.99, 97, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''agent'':15 ''awe'':5 ''awe-inspir'':4 ''chef'':21 ''forens'':10 ''georgia'':24 ''inspir'':6 ''must'':17 ''pastri'':20 ''psychologist'':11 ''rear'':1 ''reflect'':7 ''secret'':14 ''soviet'':23 ''succumb'':18 ''trade'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (718, 'REBEL AIRPORT', 'A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India', 2006, 1, NULL, true, 7, 0.99, 73, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''administr'':9 ''airport'':2 ''ancient'':19 ''boat'':12 ''databas'':8 ''husband'':17 ''india'':20 ''intrepid'':4 ''must'':14 ''outrac'':15 ''rebel'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (719, 'RECORDS ZORRO', 'A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback', 2006, 1, NULL, true, 7, 4.99, 182, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''amaz'':4 ''build'':15 ''compos'':12 ''drama'':5 ''husband'':17 ''mad'':8 ''must'':14 ''outback'':20 ''record'':1 ''scientist'':9 ''zorro'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (720, 'REDEMPTION COMFORTS', 'A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China', 2006, 1, NULL, true, 3, 2.99, 179, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''battl'':14 ''china'':20 ''comfort'':2 ''dentist'':8 ''documentari'':5 ''emot'':4 ''mad'':16 ''must'':13 ''redempt'':1 ''scientist'':17 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (721, 'REDS POCUS', 'A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia', 2006, 1, NULL, true, 7, 4.99, 182, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''georgia'':20 ''lacklustur'':4 ''monkey'':17 ''must'':14 ''pocus'':2 ''red'':1 ''redeem'':15 ''soviet'':19 ''squirrel'':12 ''sumo'':8 ''wrestler'':9 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (722, 'REEF SALUTE', 'A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon', 2006, 1, NULL, true, 5, 0.99, 123, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''baloon'':21 ''battl'':16 ''dentist'':18 ''lumberjack'':13 ''must'':15 ''pack'':6 ''reef'':1 ''saga'':7 ''salut'':2 ''teacher'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (723, 'REIGN GENTLEMEN', 'A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico', 2006, 1, NULL, true, 3, 2.99, 82, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''butler'':16 ''compos'':8 ''emot'':4 ''escap'':14 ''gentlemen'':2 ''gulf'':19 ''man'':11 ''mexico'':21 ''must'':13 ''reign'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (724, 'REMEMBER DIARY', 'A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India', 2006, 1, NULL, true, 5, 2.99, 110, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':19 ''conquer'':15 ''diari'':2 ''india'':20 ''insight'':4 ''monkey'':17 ''must'':14 ''rememb'':1 ''tale'':5 ''technic'':8 ''waitress'':12 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (725, 'REQUIEM TYCOON', 'A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery', 2006, 1, NULL, true, 6, 4.99, 167, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''administr'':13 ''cat'':9 ''charact'':5 ''databas'':12 ''monasteri'':21 ''must'':15 ''pursu'':16 ''requiem'':1 ''studi'':6 ''teacher'':18 ''tycoon'':2 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (726, 'RESERVOIR ADAPTATION', 'A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California', 2006, 1, NULL, true, 7, 2.99, 61, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''adapt'':2 ''california'':18 ''car'':16 ''drama'':5 ''intrepid'':4 ''kill'':14 ''moos'':11 ''must'':13 ''reservoir'':1 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (727, 'RESURRECTION SILVERADO', 'A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention', 2006, 1, NULL, true, 6, 0.99, 117, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''challeng'':14 ''convent'':20 ''epic'':4 ''explor'':11 ''girl'':16 ''must'':13 ''mysql'':19 ''resurrect'':1 ''robot'':8 ''silverado'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (728, 'REUNION WITCHES', 'A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory', 2006, 1, NULL, true, 3, 0.99, 63, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''administr'':9 ''baloon'':21 ''databas'':8 ''documentari'':5 ''factori'':22 ''frisbe'':12 ''mad'':17 ''must'':14 ''redeem'':15 ''reunion'':1 ''scientist'':18 ''unbeliev'':4 ''witch'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (729, 'RIDER CADDYSHACK', 'A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria', 2006, 1, NULL, true, 5, 2.99, 177, 28.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''caddyshack'':2 ''chase'':14 ''monkey'':8 ''moos'':16 ''must'':13 ''nigeria'':18 ''reflect'':5 ''rider'':1 ''taut'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (730, 'RIDGEMONT SUBMARINE', 'A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan', 2006, 1, NULL, true, 3, 0.99, 46, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''compos'':11 ''cow'':17 ''drama'':5 ''japan'':20 ''mad'':16 ''must'':13 ''ridgemont'':1 ''sink'':14 ''submarin'':2 ''unbeliev'':4 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (731, 'RIGHT CRANES', 'A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat', 2006, 1, NULL, true, 7, 4.99, 153, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''administr'':18 ''boat'':9,22 ''cat'':12 ''charact'':5 ''crane'':2 ''databas'':17 ''fate'':4 ''find'':15 ''jet'':21 ''must'':14 ''right'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (732, 'RINGS HEARTBREAKERS', 'A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans', 2006, 1, NULL, true, 5, 0.99, 58, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''amaz'':4 ''boat'':12 ''conquer'':15 ''heartbreak'':2 ''must'':14 ''new'':19 ''orlean'':20 ''ring'':1 ''sumo'':8 ''waitress'':17 ''wrestler'':9 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (733, 'RIVER OUTLAW', 'A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 149, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''charact'':5 ''convent'':21 ''face'':15 ''hunter'':17 ''lumberjack'':12 ''must'':14 ''mysql'':20 ''outlaw'':2 ''river'':1 ''squirrel'':9 ''studi'':6 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (734, 'ROAD ROXANNE', 'A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan', 2006, 1, NULL, true, 4, 4.99, 158, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':19 ''astronaut'':12 ''bore'':4 ''charact'':5 ''crocodil'':17 ''fight'':15 ''japan'':20 ''must'':14 ''road'':1 ''roxann'':2 ''studi'':6 ''waitress'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (735, 'ROBBERS JOON', 'A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia', 2006, 1, NULL, true, 7, 2.99, 102, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''confront'':15 ''forens'':17 ''georgia'':21 ''joon'':2 ''mad'':8 ''must'':14 ''psychologist'':18 ''robber'':1 ''scientist'':9 ''soviet'':20 ''stori'':5 ''thought'':4 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (736, 'ROBBERY BRIGHT', 'A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan', 2006, 1, NULL, true, 4, 0.99, 134, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':18 ''boat'':16 ''bright'':2 ''fight'':14 ''japan'':19 ''must'':13 ''reflect'':5 ''robberi'':1 ''robot'':8 ''squirrel'':11 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (737, 'ROCK INSTINCT', 'A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India', 2006, 1, NULL, true, 4, 0.99, 102, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''astound'':4 ''astronaut'':17 ''charact'':5 ''india'':20 ''instinct'':2 ''moos'':12 ''must'':14 ''overcom'':15 ''robot'':9 ''rock'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (738, 'ROCKETEER MOTHER', 'A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 178, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''charact'':7 ''discov'':18 ''inspir'':6 ''mother'':2 ''must'':17 ''robot'':11 ''rocket'':1 ''shark'':23 ''studi'':8 ''sumo'':14 ''tank'':24 ''woman'':20 ''wrestler'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (739, 'ROCKY WAR', 'A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria', 2006, 1, NULL, true, 4, 4.99, 145, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''display'':7 ''explor'':13 ''fast'':5 ''fast-pac'':4 ''mad'':18 ''must'':15 ''nigeria'':21 ''outgun'':16 ''pace'':6 ''rocki'':1 ''scientist'':19 ''squirrel'':10 ''war'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (740, 'ROLLERCOASTER BRINGING', 'A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank', 2006, 1, NULL, true, 5, 2.99, 153, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''beauti'':4 ''bring'':2 ''discov'':14 ''drama'':5 ''lumberjack'':11 ''must'':13 ''robot'':8 ''rollercoast'':1 ''shark'':20 ''tank'':21 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (741, 'ROMAN PUNK', 'A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin', 2006, 1, NULL, true, 7, 0.99, 81, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''battl'':15 ''berlin'':20 ''cow'':9 ''forens'':17 ''mad'':8 ''must'':14 ''panorama'':5 ''psychologist'':18 ''punk'':2 ''roman'':1 ''student'':12 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (742, 'ROOF CHAMPION', 'A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon', 2006, 1, NULL, true, 7, 0.99, 101, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''baloon'':19 ''car'':8 ''champion'':2 ''explor'':11 ''find'':14 ''lacklustur'':4 ''monkey'':16 ''must'':13 ''reflect'':5 ''roof'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (743, 'ROOM ROMAN', 'A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank', 2006, 1, NULL, true, 7, 0.99, 60, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''agent'':14 ''awe'':5 ''awe-inspir'':4 ''compos'':10,19 ''inspir'':6 ''must'':16 ''panorama'':7 ''roman'':2 ''room'':1 ''secret'':13 ''shark'':22 ''sink'':17 ''tank'':23'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (744, 'ROOTS REMEMBER', 'A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin', 2006, 1, NULL, true, 4, 0.99, 89, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''berlin'':19 ''brilliant'':4 ''cow'':9 ''drama'':5 ''escap'':15 ''hunter'':12,17 ''mad'':8 ''must'':14 ''rememb'':2 ''root'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (745, 'ROSES TREASURE', 'A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station', 2006, 1, NULL, true, 5, 4.99, 162, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''agent'':12 ''astound'':4 ''defeat'':15 ''first'':20 ''man'':21 ''monkey'':8 ''must'':14 ''panorama'':5 ''rose'':1 ''secret'':11 ''space'':22 ''station'':23 ''treasur'':2 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (746, 'ROUGE SQUAD', 'A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia', 2006, 1, NULL, true, 3, 0.99, 118, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':10 ''australia'':21 ''awe'':5 ''awe-inspir'':4 ''conquer'':16 ''drama'':7 ''frisbe'':13 ''inspir'':6 ''mad'':18 ''must'':15 ''roug'':1 ''scientist'':19 ''squad'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (747, 'ROXANNE REBEL', 'A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback', 2006, 1, NULL, true, 5, 0.99, 171, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''administr'':13 ''astound'':4 ''chef'':9 ''databas'':12 ''fight'':16 ''man'':18 ''must'':15 ''outback'':21 ''pastri'':8 ''rebel'':2 ''roxann'':1 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (748, 'RUGRATS SHAKESPEARE', 'A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria', 2006, 1, NULL, true, 4, 0.99, 109, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''crocodil'':8,11 ''discov'':14 ''must'':13 ''nigeria'':19 ''rugrat'':1 ''saga'':5 ''shakespear'':2 ''technic'':16 ''touch'':4 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (749, 'RULES HUMAN', 'A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House', 2006, 1, NULL, true, 6, 4.99, 153, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''astronaut'':8 ''beauti'':4 ''confront'':14 ''epistl'':5 ''fun'':20 ''hous'':21 ''human'':2 ''monkey'':16 ''must'':13 ''rule'':1 ''student'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (750, 'RUN PACIFIC', 'A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention', 2006, 1, NULL, true, 3, 0.99, 145, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''cat'':8 ''chef'':12,18 ''conquer'':15 ''convent'':22 ''must'':14 ''mysql'':21 ''pacif'':2 ''pastri'':11,17 ''run'':1 ''tale'':5 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (751, 'RUNAWAY TENENBAUMS', 'A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House', 2006, 1, NULL, true, 6, 0.99, 181, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':19 ''boat'':8,16 ''documentari'':5 ''fun'':20 ''hous'':21 ''man'':11 ''meet'':14 ''must'':13 ''runaway'':1 ''tenenbaum'':2 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (752, 'RUNNER MADIGAN', 'A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback', 2006, 1, NULL, true, 6, 0.99, 101, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''crocodil'':8 ''documentari'':5 ''madigan'':2 ''must'':13 ''outback'':19 ''outrac'':14 ''robot'':11 ''runner'':1 ''thought'':4 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (754, 'RUSHMORE MERMAID', 'A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank', 2006, 1, NULL, true, 6, 2.99, 150, 17.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''bore'':4 ''husband'':16 ''mermaid'':2 ''moos'':11 ''must'':13 ''reach'':14 ''rushmor'':1 ''shark'':19 ''stori'':5 ''tank'':20 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (755, 'SABRINA MIDNIGHT', 'A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert', 2006, 1, NULL, true, 5, 4.99, 99, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''crocodil'':11 ''desert'':20 ''emot'':4 ''husband'':16 ''midnight'':2 ''must'':13 ''sabrina'':1 ''sahara'':19 ''squirrel'':8 ''stori'':5 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (756, 'SADDLE ANTITRUST', 'A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House', 2006, 1, NULL, true, 7, 2.99, 80, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':20 ''antitrust'':2 ''battl'':15 ''epistl'':5 ''feminist'':8 ''fun'':21 ''hous'':22 ''must'':14 ''saddl'':1 ''shark'':12 ''stun'':4 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (757, 'SAGEBRUSH CLUELESS', 'A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan', 2006, 1, NULL, true, 4, 2.99, 106, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':18 ''boy'':16 ''clueless'':2 ''hunter'':11 ''insight'':4 ''japan'':19 ''kill'':14 ''lumberjack'':8 ''must'':13 ''sagebrush'':1 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (758, 'SAINTS BRIDE', 'A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico', 2006, 1, NULL, true, 5, 2.99, 125, 11.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''bride'':2 ''compos'':12 ''explor'':17 ''fate'':4 ''gulf'':20 ''mexico'':22 ''must'':14 ''pursu'':15 ''saint'':1 ''tale'':5 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (759, 'SALUTE APOLLO', 'A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China', 2006, 1, NULL, true, 4, 2.99, 73, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':21 ''apollo'':2 ''awe'':5 ''awe-inspir'':4 ''boy'':11 ''charact'':7 ''china'':22 ''crocodil'':19 ''feminist'':14 ''inspir'':6 ''must'':16 ''salut'':1 ''sink'':17 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (760, 'SAMURAI LION', 'A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon', 2006, 1, NULL, true, 5, 2.99, 110, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''astronaut'':13 ''baloon'':21 ''boat'':18 ''fast'':5 ''fast-pac'':4 ''lion'':2 ''must'':15 ''pace'':6 ''pioneer'':10 ''reach'':16 ''samurai'':1 ''stori'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (761, 'SANTA PARIS', 'A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory', 2006, 1, NULL, true, 7, 2.99, 154, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''baloon'':20 ''car'':11 ''cow'':17 ''documentari'':5 ''emot'':4 ''factori'':21 ''mad'':16 ''moos'':8 ''must'':13 ''pari'':2 ''redeem'':14 ''santa'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (762, 'SASSY PACKER', 'A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 0.99, 154, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''documentari'':7 ''dog'':10 ''fast'':5 ''fast-pac'':4 ''find'':16 ''manhattan'':21 ''moos'':18 ''must'':15 ''pace'':6 ''packer'':2 ''penthous'':22 ''sassi'':1 ''teacher'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (763, 'SATISFACTION CONFIDENTIAL', 'A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China', 2006, 1, NULL, true, 3, 4.99, 75, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''agent'':17 ''ancient'':19 ''butler'':11 ''china'':20 ''confidenti'':2 ''dentist'':8 ''lacklustur'':4 ''meet'':14 ''must'':13 ''satisfact'':1 ''secret'':16 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (764, 'SATURDAY LAMBS', 'A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon', 2006, 1, NULL, true, 3, 4.99, 150, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''baloon'':20 ''husband'':17 ''kill'':15 ''lamb'':2 ''mad'':8 ''moos'':12 ''must'':14 ''reflect'':5 ''saturday'':1 ''scientist'':9 ''thought'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (765, 'SATURN NAME', 'A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin', 2006, 1, NULL, true, 7, 4.99, 182, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''berlin'':18 ''boy'':11 ''butler'':8 ''epistl'':5 ''fate'':4 ''must'':13 ''name'':2 ''redeem'':14 ''saturn'':1 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (766, 'SAVANNAH TOWN', 'A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico', 2006, 1, NULL, true, 5, 0.99, 84, 25.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':14 ''agent'':20 ''astronaut'':10 ''awe'':5 ''awe-inspir'':4 ''chase'':17 ''databas'':13 ''gulf'':23 ''inspir'':6 ''mexico'':25 ''must'':16 ''savannah'':1 ''secret'':19 ''tale'':7 ''town'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (767, 'SCALAWAG DUCK', 'A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery', 2006, 1, NULL, true, 6, 4.99, 183, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''car'':8 ''confront'':14 ''duck'':2 ''fate'':4 ''monasteri'':19 ''must'':13 ''reflect'':5 ''scalawag'':1 ''teacher'':11 ''waitress'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (768, 'SCARFACE BANG', 'A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory', 2006, 1, NULL, true, 3, 4.99, 102, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''baloon'':19 ''bang'':2 ''emot'':4 ''factori'':20 ''find'':14 ''girl'':11 ''must'':13 ''scarfac'':1 ''teacher'':8,16 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (769, 'SCHOOL JACKET', 'A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse', 2006, 1, NULL, true, 5, 4.99, 151, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''boy'':11 ''compos'':16 ''fight'':14 ''intrepid'':4 ''jacket'':2 ''manhattan'':19 ''monkey'':8 ''must'':13 ''penthous'':20 ''school'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (806, 'SLEEPY JAPANESE', 'A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback', 2006, 1, NULL, true, 4, 2.99, 137, 25.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''compos'':11 ''emot'':4 ''epistl'':5 ''fight'':14 ''japanes'':2 ''moos'':8 ''must'':13 ''outback'':20 ''sleepi'':1 ''technic'':16 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (770, 'SCISSORHANDS SLUMS', 'A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies', 2006, 1, NULL, true, 5, 2.99, 147, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''canadian'':22 ''drama'':7 ''feminist'':19 ''girl'':10 ''inspir'':6 ''meet'':17 ''must'':16 ''rocki'':23 ''scissorhand'':1 ''slum'':2 ''technic'':13 ''writer'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (771, 'SCORPION APOLLO', 'A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House', 2006, 1, NULL, true, 3, 4.99, 137, 23.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':22 ''apollo'':2 ''awe'':5 ''awe-inspir'':4 ''documentari'':7 ''fun'':23 ''hous'':24 ''husband'':14 ''inspir'':6 ''meet'':17 ''monkey'':19 ''must'':16 ''scorpion'':1 ''technic'':10 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (772, 'SEA VIRGIN', 'A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat', 2006, 1, NULL, true, 4, 2.99, 80, 24.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':25 ''chef'':15 ''documentari'':7 ''escap'':18 ''fast'':5 ''fast-pac'':4 ''moos'':20 ''must'':17 ''pace'':6 ''pastri'':14 ''sea'':1 ''technic'':10 ''u'':24 ''u-boat'':23 ''virgin'':2 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (773, 'SEABISCUIT PUNK', 'A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 112, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''convent'':22 ''cow'':18 ''discov'':15 ''forens'':11 ''insight'':4 ''mad'':17 ''man'':8 ''must'':14 ''mysql'':21 ''psychologist'':12 ''punk'':2 ''saga'':5 ''seabiscuit'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (774, 'SEARCHERS WAIT', 'A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan', 2006, 1, NULL, true, 3, 2.99, 182, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':21 ''car'':10 ''fast'':5 ''fast-pac'':4 ''japan'':22 ''kill'':17 ''mad'':13 ''must'':16 ''pace'':6 ''scientist'':14 ''searcher'':1 ''tale'':7 ''wait'':2 ''woman'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (775, 'SEATTLE EXPECATIONS', 'A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert', 2006, 1, NULL, true, 4, 4.99, 110, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''crocodil'':8 ''desert'':22 ''expec'':2 ''insight'':4 ''meet'':15 ''must'':14 ''reflect'':5 ''sahara'':21 ''seattl'':1 ''sumo'':11 ''technic'':17 ''wrestler'':12 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (776, 'SECRET GROUNDHOG', 'A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans', 2006, 1, NULL, true, 6, 4.99, 90, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''administr'':12 ''astound'':4 ''build'':15 ''cat'':8 ''databas'':11 ''groundhog'':2 ''must'':14 ''new'':20 ''orlean'':21 ''secret'':1 ''stori'':5 ''technic'':17 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (777, 'SECRETARY ROUGE', 'A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory', 2006, 1, NULL, true, 5, 4.99, 158, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''baloon'':22 ''compos'':14 ''cow'':11 ''discov'':17 ''factori'':23 ''mad'':10 ''must'':16 ''pack'':6 ''panorama'':7 ''robot'':19 ''roug'':2 ''secretari'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (778, 'SECRETS PARADISE', 'A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 4.99, 109, 24.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''cat'':8 ''fate'':4 ''frisbe'':11 ''girl'':16 ''kill'':14 ''manhattan'':19 ''must'':13 ''paradis'':2 ''penthous'':20 ''saga'':5 ''secret'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (779, 'SENSE GREEK', 'A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House', 2006, 1, NULL, true, 4, 4.99, 54, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''abandon'':21 ''chef'':12 ''escap'':15 ''fun'':22 ''greek'':2 ''hous'':23 ''lumberjack'':8 ''must'':14 ''pastri'':11 ''saga'':5 ''sens'':1 ''sumo'':17 ''taut'':4 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (780, 'SENSIBILITY REAR', 'A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory', 2006, 1, NULL, true, 7, 4.99, 98, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''baloon'':21 ''chef'':18 ''emot'':4 ''factori'':22 ''must'':14 ''pastri'':17 ''rear'':2 ''redeem'':15 ''robot'':8 ''sensibl'':1 ''sumo'':11 ''tale'':5 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (781, 'SEVEN SWARM', 'A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin', 2006, 1, NULL, true, 4, 4.99, 127, 15.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''berlin'':20 ''charact'':5 ''cow'':13 ''dog'':9 ''kill'':16 ''mad'':12 ''monkey'':18 ''must'':15 ''seven'':1 ''studi'':6 ''swarm'':2 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (782, 'SHAKESPEARE SADDLE', 'A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention', 2006, 1, NULL, true, 6, 2.99, 60, 26.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''administr'':14 ''convent'':23 ''databas'':13 ''defeat'':17 ''fast'':5 ''fast-pac'':4 ''lumberjack'':10 ''madman'':19 ''must'':16 ''mysql'':22 ''pace'':6 ''panorama'':7 ''saddl'':2 ''shakespear'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (783, 'SHANE DARKNESS', 'A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin', 2006, 1, NULL, true, 5, 2.99, 93, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''berlin'':20 ''dark'':2 ''find'':16 ''lumberjack'':13 ''moos'':10 ''must'':15 ''pack'':6 ''saga'':7 ''shane'':1 ''woman'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (784, 'SHANGHAI TYCOON', 'A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House', 2006, 1, NULL, true, 7, 2.99, 47, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':22 ''build'':17 ''charact'':7 ''crocodil'':11 ''fast'':5 ''fast-pac'':4 ''fun'':23 ''hous'':24 ''husband'':19 ''lumberjack'':14 ''must'':16 ''pace'':6 ''shanghai'':1 ''studi'':8 ''tycoon'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (785, 'SHAWSHANK BUBBLE', 'A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 4.99, 80, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':19 ''amus'':20 ''bubbl'':2 ''butler'':16 ''confront'':14 ''lacklustur'':4 ''monkey'':11 ''moos'':8 ''must'':13 ''park'':21 ''shawshank'':1 ''stori'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (787, 'SHINING ROSES', 'A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India', 2006, 1, NULL, true, 4, 0.99, 125, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':22 ''astronaut'':11 ''awe'':5 ''awe-inspir'':4 ''challeng'':18 ''charact'':7 ''forens'':14 ''india'':23 ''inspir'':6 ''madman'':20 ''must'':17 ''psychologist'':15 ''rose'':2 ''shine'':1 ''studi'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (789, 'SHOCK CABIN', 'A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans', 2006, 1, NULL, true, 7, 2.99, 79, 15.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''cabin'':2 ''cow'':9 ''crocodil'':12 ''fate'':4 ''husband'':17 ''mad'':8 ''meet'':15 ''must'':14 ''new'':19 ''orlean'':20 ''shock'':1 ''tale'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (790, 'SHOOTIST SUPERFLY', 'A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin', 2006, 1, NULL, true, 6, 0.99, 67, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''berlin'':21 ''crocodil'':10 ''fast'':5 ''fast-pac'':4 ''must'':16 ''pace'':6 ''pioneer'':19 ''shark'':14 ''shootist'':1 ''sink'':17 ''stori'':7 ''superfli'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (791, 'SHOW LORD', 'A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan', 2006, 1, NULL, true, 3, 4.99, 167, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':18 ''butler'':16 ''fanci'':4 ''find'':14 ''girl'':11 ''japan'':19 ''lord'':2 ''must'':13 ''saga'':5 ''show'':1 ''student'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (792, 'SHREK LICENSE', 'A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat', 2006, 1, NULL, true, 7, 2.99, 154, 15.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':9 ''boat'':21 ''fate'':4 ''feminist'':12,17 ''find'':15 ''jet'':20 ''licens'':2 ''must'':14 ''secret'':8 ''shrek'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (793, 'SHRUNK DIVINE', 'A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon', 2006, 1, NULL, true, 6, 2.99, 139, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''baloon'':21 ''battl'':16 ''charact'':5 ''divin'':2 ''fate'':4 ''hunter'':18 ''must'':15 ''shrunk'':1 ''studi'':6 ''technic'':12 ''waitress'':9 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (794, 'SIDE ARK', 'A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies', 2006, 1, NULL, true, 5, 0.99, 52, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ark'':2 ''canadian'':19 ''crocodil'':8 ''feminist'':16 ''meet'':14 ''must'':13 ''panorama'':5 ''rocki'':20 ''side'':1 ''stun'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (795, 'SIEGE MADRE', 'A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 0.99, 111, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''bore'':4 ''crocodil'':11 ''frisbe'':8 ''madr'':2 ''mine'':20 ''moos'':16 ''must'':13 ''shaft'':21 ''sieg'':1 ''tale'':5 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (796, 'SIERRA DIVIDE', 'A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California', 2006, 1, NULL, true, 3, 0.99, 135, 12.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''build'':16 ''california'':20 ''charact'':5 ''divid'':2 ''emot'':4 ''frisbe'':9 ''mad'':12 ''madman'':18 ''must'':15 ''scientist'':13 ''sierra'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (797, 'SILENCE KANE', 'A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon', 2006, 1, NULL, true, 7, 0.99, 67, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''baloon'':21 ''confront'':15 ''dentist'':12 ''drama'':5 ''emot'':4 ''kane'':2 ''must'':14 ''silenc'':1 ''sumo'':8,17 ''wrestler'':9,18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (798, 'SILVERADO GOLDFINGER', 'A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India', 2006, 1, NULL, true, 4, 4.99, 74, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':19 ''challeng'':15 ''epistl'':5 ''goldfing'':2 ''india'':20 ''man'':12 ''must'':14 ''silverado'':1 ''stun'':4 ''sumo'':8 ''waitress'':17 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (799, 'SIMON NORTH', 'A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank', 2006, 1, NULL, true, 3, 0.99, 51, 26.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''documentari'':5 ''face'':16 ''must'':15 ''north'':2 ''pioneer'':18 ''shark'':13,21 ''simon'':1 ''tank'':22 ''technic'':8 ''thrill'':4 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (800, 'SINNERS ATLANTIS', 'A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 2.99, 126, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':20 ''atlanti'':2 ''boat'':11 ''display'':5 ''dog'':8 ''epic'':4 ''mad'':16 ''mine'':21 ''must'':13 ''scientist'':17 ''shaft'':22 ''sinner'':1 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (801, 'SISTER FREDDY', 'A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia', 2006, 1, NULL, true, 5, 4.99, 152, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''australia'':18 ''butler'':8 ''explor'':16 ''freddi'':2 ''must'':13 ''pursu'':14 ''saga'':5 ''sister'':1 ''stun'':4 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (802, 'SKY MIRACLE', 'A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House', 2006, 1, NULL, true, 7, 2.99, 132, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':20 ''drama'':5 ''epic'':4 ''explor'':12 ''fun'':21 ''hous'':22 ''mad'':8 ''miracl'':2 ''must'':14 ''scientist'':9 ''sky'':1 ''succumb'':15 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (803, 'SLACKER LIAISONS', 'A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China', 2006, 1, NULL, true, 7, 4.99, 179, 29.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':21 ''china'':22 ''crocodil'':19 ''fast'':5 ''fast-pac'':4 ''liaison'':2 ''meet'':17 ''must'':16 ''pace'':6 ''shark'':11 ''slacker'':1 ''student'':14 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (804, 'SLEEPING SUSPECTS', 'A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention', 2006, 1, NULL, true, 7, 4.99, 129, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''convent'':21 ''explor'':12 ''frisbe'':17 ''must'':14 ''mysql'':20 ''reflect'':5 ''sink'':15 ''sleep'':1 ''stun'':4 ''sumo'':8 ''suspect'':2 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (805, 'SLEEPLESS MONSOON', 'A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia', 2006, 1, NULL, true, 5, 4.99, 64, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''amaz'':4 ''australia'':19 ''butler'':17 ''chef'':12 ''escap'':15 ''monsoon'':2 ''moos'':8 ''must'':14 ''pastri'':11 ''saga'':5 ''sleepless'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (807, 'SLEUTH ORIENT', 'A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India', 2006, 1, NULL, true, 4, 0.99, 87, 25.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''charact'':5 ''dog'':12 ''fate'':4 ''feminist'':17 ''find'':15 ''husband'':9 ''india'':20 ''must'':14 ''orient'':2 ''sleuth'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (808, 'SLING LUKE', 'A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 0.99, 84, 10.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':21 ''agent'':18 ''amus'':22 ''charact'':5 ''intrepid'':4 ''luke'':2 ''monkey'':12 ''must'':14 ''park'':23 ''reach'':15 ''robot'':9 ''secret'':17 ''sling'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (809, 'SLIPPER FIDELITY', 'A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention', 2006, 1, NULL, true, 5, 0.99, 156, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''agent'':9 ''convent'':21 ''explor'':17 ''fidel'':2 ''man'':12 ''must'':14 ''mysql'':20 ''redeem'':15 ''reflect'':5 ''secret'':8 ''slipper'':1 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (810, 'SLUMS DUCK', 'A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat', 2006, 1, NULL, true, 5, 0.99, 147, 21.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':13 ''amaz'':4 ''boat'':22 ''charact'':5 ''databas'':12 ''defeat'':16 ''duck'':2 ''jet'':21 ''must'':15 ''slum'':1 ''studi'':6 ''teacher'':9 ''waitress'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (811, 'SMILE EARRING', 'A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin', 2006, 1, NULL, true, 4, 2.99, 60, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''berlin'':19 ''build'':14 ''butler'':11 ''chef'':17 ''drama'':5 ''earring'':2 ''intrepid'':4 ''must'':13 ''pastri'':16 ''smile'':1 ''teacher'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (812, 'SMOKING BARBARELLA', 'A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention', 2006, 1, NULL, true, 7, 0.99, 50, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''barbarella'':2 ''cat'':18 ''convent'':22 ''cow'':9 ''lacklustur'':4 ''mad'':8,12 ''must'':15 ''mysql'':21 ''saga'':5 ''scientist'':13 ''sink'':16 ''smoke'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (813, 'SMOOCHY CONTROL', 'A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China', 2006, 1, NULL, true, 7, 0.99, 184, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':19 ''china'':20 ''control'':2 ''documentari'':5 ''face'':14 ''feminist'':11 ''husband'':8 ''mad'':16 ''must'':13 ''scientist'':17 ''smoochi'':1 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (814, 'SNATCH SLIPPER', 'A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin', 2006, 1, NULL, true, 6, 4.99, 110, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''berlin'':19 ''defeat'':14 ''feminist'':11 ''forens'':16 ''insight'':4 ''must'':13 ''panorama'':5 ''psychologist'':17 ''slipper'':2 ''snatch'':1 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (815, 'SNATCHERS MONTEZUMA', 'A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies', 2006, 1, NULL, true, 4, 2.99, 74, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''bore'':4 ''canadian'':20 ''epistl'':5 ''escap'':15 ''man'':17 ''montezuma'':2 ''must'':14 ''rocki'':21 ''snatcher'':1 ''sumo'':8 ''woman'':12 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (816, 'SNOWMAN ROLLERCOASTER', 'A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 62, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''cow'':17 ''display'':5 ''fate'':4 ''girl'':11 ''lumberjack'':8 ''mad'':16 ''manhattan'':20 ''must'':13 ''penthous'':21 ''rollercoast'':2 ''snowman'':1 ''succumb'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (817, 'SOLDIERS EVOLUTION', 'A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station', 2006, 1, NULL, true, 7, 4.99, 185, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''confront'':15 ''evolut'':2 ''first'':20 ''lacklustur'':4 ''man'':21 ''must'':14 ''panorama'':5 ''pioneer'':12 ''shark'':9 ''soldier'':1 ''space'':22 ''station'':23 ''student'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (818, 'SOMETHING DUCK', 'A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station', 2006, 1, NULL, true, 4, 4.99, 180, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''bore'':4 ''car'':9 ''charact'':5 ''duck'':2 ''first'':20 ''frisbe'':17 ''husband'':12 ''man'':21 ''must'':14 ''outgun'':15 ''someth'':1 ''space'':22 ''station'':23 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (819, 'SONG HEDWIG', 'A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention', 2006, 1, NULL, true, 3, 0.99, 165, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''amaz'':4 ''confront'':14 ''convent'':20 ''documentari'':5 ''hedwig'':2 ''husband'':11 ''man'':8 ''must'':13 ''mysql'':19 ''song'':1 ''squirrel'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (820, 'SONS INTERVIEW', 'A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China', 2006, 1, NULL, true, 3, 2.99, 184, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''ancient'':20 ''battl'':16 ''charact'':5 ''china'':21 ''cow'':13 ''explor'':9 ''hunter'':18 ''interview'':2 ''mad'':12 ''must'':15 ''son'':1 ''studi'':6 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (821, 'SORORITY QUEEN', 'A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat', 2006, 1, NULL, true, 6, 0.99, 184, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''boat'':23 ''compos'':13 ''display'':7 ''fast'':5 ''fast-pac'':4 ''fight'':16 ''forens'':18 ''jet'':22 ''must'':15 ''pace'':6 ''psychologist'':19 ''queen'':2 ''soror'':1 ''squirrel'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (822, 'SOUP WISDOM', 'A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention', 2006, 1, NULL, true, 6, 0.99, 169, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''butler'':13,18 ''convent'':22 ''defeat'':16 ''display'':7 ''fast'':5 ''fast-pac'':4 ''must'':15 ''mysql'':21 ''pace'':6 ''robot'':10 ''soup'':1 ''wisdom'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (823, 'SOUTH WAIT', 'A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 2.99, 143, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':19 ''amaz'':4 ''amus'':20 ''car'':8 ''documentari'':5 ''escap'':14 ''lumberjack'':16 ''must'':13 ''park'':21 ''robot'':11 ''south'':1 ''wait'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (824, 'SPARTACUS CHEAPER', 'A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 4.99, 52, 19.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''agent'':13 ''cheaper'':2 ''chef'':9 ''manhattan'':21 ''must'':15 ''overcom'':16 ''panorama'':5 ''pastri'':8 ''penthous'':22 ''secret'':12 ''spartacus'':1 ''student'':18 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (825, 'SPEAKEASY DATE', 'A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 2.99, 165, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''car'':12 ''date'':2 ''drama'':5 ''forens'':8 ''lacklustur'':4 ''man'':17 ''manhattan'':20 ''must'':14 ''penthous'':21 ''psychologist'':9 ''redeem'':15 ''speakeasi'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (826, 'SPEED SUIT', 'A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China', 2006, 1, NULL, true, 7, 4.99, 124, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''ancient'':19 ''brilliant'':4 ''china'':20 ''display'':5 ''frisbe'':8 ''mad'':11 ''must'':14 ''robot'':17 ''scientist'':12 ''speed'':1 ''succumb'':15 ''suit'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (827, 'SPICE SORORITY', 'A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 4.99, 141, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''defeat'':14 ''display'':5 ''fate'':4 ''hunter'':11 ''husband'':16 ''mine'':20 ''must'':13 ''pioneer'':8 ''shaft'':21 ''soror'':2 ''spice'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (828, 'SPIKING ELEMENT', 'A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery', 2006, 1, NULL, true, 7, 2.99, 79, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''dentist'':8 ''dog'':17 ''element'':2 ''epistl'':5 ''find'':15 ''lacklustur'':4 ''monasteri'':20 ''must'':14 ''spike'':1 ''technic'':11 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (829, 'SPINAL ROCKY', 'A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California', 2006, 1, NULL, true, 7, 2.99, 138, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''california'':19 ''defeat'':15 ''epistl'':5 ''explor'':17 ''lacklustur'':4 ''must'':14 ''rocki'':2 ''spinal'':1 ''squirrel'':12 ''sumo'':8 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (830, 'SPIRIT FLINTSTONES', 'A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan', 2006, 1, NULL, true, 7, 0.99, 149, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':18 ''brilliant'':4 ''car'':11 ''cat'':8 ''confront'':14 ''explor'':16 ''flintston'':2 ''japan'':19 ''must'':13 ''spirit'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (831, 'SPIRITED CASUALTIES', 'A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory', 2006, 1, NULL, true, 5, 0.99, 138, 20.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''baloon'':19 ''car'':16 ''casualti'':2 ''face'':14 ''factori'':20 ''man'':11 ''must'':13 ''spirit'':1 ''stori'':5 ''taut'':4 ''waitress'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (832, 'SPLASH GUMP', 'A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank', 2006, 1, NULL, true, 5, 0.99, 175, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':11 ''conquer'':14 ''crocodil'':8 ''gump'':2 ''hunter'':16 ''must'':13 ''saga'':5 ''shark'':19 ''splash'':1 ''tank'':20 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (833, 'SPLENDOR PATTON', 'A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin', 2006, 1, NULL, true, 5, 0.99, 134, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''astronaut'':16 ''berlin'':18 ''dog'':8 ''explor'':11 ''find'':14 ''must'':13 ''patton'':2 ''splendor'':1 ''stori'':5 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (834, 'SPOILERS HELLFIGHTERS', 'A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 151, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''defeat'':15 ''dog'':17 ''fanci'':4 ''gulf'':20 ''hellfight'':2 ''mexico'':22 ''must'':14 ''spoiler'':1 ''squirrel'':12 ''stori'':5 ''technic'':8 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (835, 'SPY MILE', 'A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon', 2006, 1, NULL, true, 6, 2.99, 112, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':19 ''confront'':14 ''documentari'':5 ''feminist'':8,11,16 ''mile'':2 ''must'':13 ''spi'':1 ''thrill'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (836, 'SQUAD FISH', 'A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin', 2006, 1, NULL, true, 3, 2.99, 136, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''berlin'':21 ''chef'':11 ''display'':7 ''dog'':14 ''fast'':5 ''fast-pac'':4 ''fish'':2 ''kill'':17 ''must'':16 ''pace'':6 ''pastri'':10 ''squad'':1 ''teacher'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (837, 'STAGE WORLD', 'A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat', 2006, 1, NULL, true, 4, 2.99, 85, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''boat'':20 ''chase'':14 ''crocodil'':16 ''frisbe'':11 ''jet'':19 ''lacklustur'':4 ''must'':13 ''panorama'':5 ''stage'':1 ''woman'':8 ''world'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (838, 'STAGECOACH ARMAGEDDON', 'A Touching Display of a Pioneer And a Butler who must Chase a Car in California', 2006, 1, NULL, true, 5, 4.99, 112, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''armageddon'':2 ''butler'':11 ''california'':18 ''car'':16 ''chase'':14 ''display'':5 ''must'':13 ''pioneer'':8 ''stagecoach'':1 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (839, 'STALLION SUNDANCE', 'A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia', 2006, 1, NULL, true, 5, 0.99, 130, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''australia'':21 ''car'':10 ''dog'':13 ''fast'':5 ''fast-pac'':4 ''must'':15 ''outgun'':16 ''pace'':6 ''shark'':19 ''stallion'':1 ''sundanc'':2 ''tale'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (840, 'STAMPEDE DISTURBING', 'A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat', 2006, 1, NULL, true, 5, 0.99, 75, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':21 ''disturb'':2 ''fight'':14 ''frisbe'':16 ''lumberjack'':11 ''must'':13 ''stamped'':1 ''tale'':5 ''u'':20 ''u-boat'':19 ''unbeliev'':4 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (841, 'STAR OPERATION', 'A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank', 2006, 1, NULL, true, 5, 2.99, 181, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''car'':12 ''charact'':5 ''cow'':18 ''girl'':9 ''insight'':4 ''mad'':17 ''must'':14 ''oper'':2 ''pursu'':15 ''shark'':21 ''star'':1 ''studi'':6 ''tank'':22'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (842, 'STATE WASTELAND', 'A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat', 2006, 1, NULL, true, 4, 2.99, 113, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''boat'':22 ''cat'':8 ''chef'':12 ''cow'':18 ''display'':5 ''jet'':21 ''mad'':17 ''must'':14 ''outrac'':15 ''pastri'':11 ''state'':1 ''wasteland'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (843, 'STEEL SANTA', 'A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria', 2006, 1, NULL, true, 4, 4.99, 143, 15.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''compos'':10 ''face'':16 ''fast'':5 ''fast-pac'':4 ''frisbe'':13 ''moos'':18 ''must'':15 ''nigeria'':20 ''pace'':6 ''santa'':2 ''steel'':1 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (844, 'STEERS ARMAGEDDON', 'A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention', 2006, 1, NULL, true, 6, 4.99, 140, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''armageddon'':2 ''car'':9,17 ''charact'':5 ''convent'':21 ''girl'':12 ''must'':14 ''mysql'':20 ''steer'':1 ''studi'':6 ''stun'':4 ''succumb'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (845, 'STEPMOM DREAM', 'A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention', 2006, 1, NULL, true, 7, 4.99, 48, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''build'':14 ''convent'':21 ''crocodil'':8 ''dream'':2 ''epistl'':5 ''forens'':16 ''must'':13 ''mysql'':20 ''psychologist'':17 ''stepmom'':1 ''teacher'':11 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (846, 'STING PERSONAL', 'A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat', 2006, 1, NULL, true, 3, 4.99, 93, 9.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':20 ''dog'':11 ''drama'':5 ''fanci'':4 ''fight'':14 ''frisbe'':8 ''jet'':19 ''madman'':16 ''must'':13 ''person'':2 ''sting'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (847, 'STOCK GLASS', 'A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China', 2006, 1, NULL, true, 7, 2.99, 160, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''ancient'':18 ''bore'':4 ''china'':19 ''crocodil'':8 ''epistl'':5 ''glass'':2 ''lumberjack'':11 ''moos'':16 ''must'':13 ''outgun'':14 ''stock'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (848, 'STONE FIRE', 'A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia', 2006, 1, NULL, true, 3, 0.99, 94, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':8 ''boat'':16 ''crocodil'':11 ''drama'':5 ''find'':14 ''fire'':2 ''georgia'':19 ''intrepid'':4 ''must'':13 ''soviet'':18 ''stone'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (849, 'STORM HAPPINESS', 'A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank', 2006, 1, NULL, true, 6, 0.99, 57, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boat'':17 ''drama'':5 ''feminist'':8 ''happi'':2 ''insight'':4 ''must'':14 ''shark'':12,20 ''storm'':1 ''tank'':21 ''vanquish'':15'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (850, 'STORY SIDE', 'A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 7, 0.99, 163, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':19 ''boy'':8 ''cat'':11 ''dentist'':16 ''lacklustur'':4 ''mine'':20 ''must'':13 ''saga'':5 ''shaft'':21 ''side'':2 ''sink'':14 ''stori'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (851, 'STRAIGHT HOURS', 'A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback', 2006, 1, NULL, true, 3, 0.99, 151, 19.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''agent'':9 ''bore'':4 ''girl'':12 ''hour'':2 ''must'':14 ''outback'':20 ''panorama'':5 ''secret'':8 ''sink'':15 ''straight'':1 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (852, 'STRANGELOVE DESIRE', 'A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 0.99, 103, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''abandon'':21 ''amus'':22 ''awe'':5 ''awe-inspir'':4 ''crocodil'':18 ''defeat'':16 ''desir'':2 ''inspir'':6 ''lumberjack'':10 ''must'':15 ''panorama'':7 ''park'':23 ''strangelov'':1 ''waitress'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (853, 'STRANGER STRANGERS', 'A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station', 2006, 1, NULL, true, 3, 4.99, 139, 12.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''explor'':13 ''fight'':16 ''first'':21 ''inspir'':6 ''man'':22 ''must'':15 ''space'':23 ''station'':24 ''stranger'':1,2 ''woman'':10,18 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (854, 'STRANGERS GRAFFITI', 'A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico', 2006, 1, NULL, true, 4, 4.99, 119, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''agent'':10 ''brilliant'':4 ''cat'':18 ''charact'':5 ''find'':16 ''graffiti'':2 ''gulf'':21 ''man'':13 ''mexico'':23 ''must'':15 ''secret'':9 ''stranger'':1 ''studi'':6'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (855, 'STREAK RIDGEMONT', 'A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans', 2006, 1, NULL, true, 7, 0.99, 132, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''astound'':4 ''charact'':5 ''hunter'':9 ''man'':17 ''must'':14 ''new'':19 ''orlean'':20 ''ridgemont'':2 ''sink'':15 ''streak'':1 ''studi'':6 ''waitress'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (856, 'STREETCAR INTENTIONS', 'A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 73, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''charact'':5 ''crocodil'':12 ''gulf'':20 ''insight'':4 ''intent'':2 ''mexico'':22 ''must'':14 ''sink'':15 ''streetcar'':1 ''studi'':6 ''waitress'':9,17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (857, 'STRICTLY SCARFACE', 'A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House', 2006, 1, NULL, true, 3, 2.99, 144, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''chase'':14 ''crocodil'':8 ''dog'':11 ''fun'':20 ''hous'':21 ''hunter'':16 ''must'':13 ''reflect'':5 ''scarfac'':2 ''strict'':1 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (858, 'SUBMARINE BED', 'A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia', 2006, 1, NULL, true, 5, 4.99, 127, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''amaz'':4 ''bed'':2 ''car'':8 ''display'':5 ''fight'':14 ''georgia'':19 ''monkey'':11 ''must'':13 ''soviet'':18 ''submarin'':1 ''teacher'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (859, 'SUGAR WONKA', 'A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 4.99, 114, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''abandon'':20 ''administr'':12 ''amus'':21 ''astronaut'':17 ''conquer'':15 ''databas'':11 ''dentist'':8 ''must'':14 ''park'':22 ''stori'':5 ''sugar'':1 ''touch'':4 ''wonka'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (860, 'SUICIDES SILENCE', 'A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat', 2006, 1, NULL, true, 4, 4.99, 93, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boat'':22 ''car'':9 ''charact'':5 ''compos'':17 ''emot'':4 ''face'':15 ''girl'':12 ''must'':14 ''silenc'':2 ''studi'':6 ''suicid'':1 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (861, 'SUIT WALLS', 'A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia', 2006, 1, NULL, true, 3, 4.99, 111, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''australia'':18 ''build'':14 ''dog'':16 ''frisbe'':11 ''lumberjack'':8 ''must'':13 ''panorama'':5 ''suit'':1 ''touch'':4 ''wall'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (862, 'SUMMER SCARFACE', 'A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank', 2006, 1, NULL, true, 5, 0.99, 53, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''emot'':4 ''girl'':16 ''hunter'':11 ''lumberjack'':8 ''meet'':14 ''must'':13 ''panorama'':5 ''scarfac'':2 ''shark'':19 ''summer'':1 ''tank'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (863, 'SUN CONFESSIONS', 'A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 0.99, 141, 9.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':20 ''amus'':21 ''beauti'':4 ''confess'':2 ''cow'':9 ''display'':5 ''dog'':12 ''mad'':8 ''must'':14 ''park'':22 ''redeem'':15 ''sun'':1 ''waitress'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (864, 'SUNDANCE INVASION', 'A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory', 2006, 1, NULL, true, 5, 0.99, 92, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''baloon'':19 ''confront'':14 ''drama'':5 ''epic'':4 ''explor'':11 ''factori'':20 ''hunter'':16 ''invas'':2 ''lumberjack'':8 ''must'':13 ''sundanc'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (865, 'SUNRISE LEAGUE', 'A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 4.99, 135, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''beauti'':4 ''butler'':11 ''crocodil'':16 ''epistl'':5 ''face'':14 ''leagu'':2 ''madman'':8 ''manhattan'':19 ''must'':13 ''penthous'':20 ''sunris'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (866, 'SUNSET RACER', 'A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California', 2006, 1, NULL, true, 6, 0.99, 48, 28.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astronaut'':10 ''awe'':5 ''awe-inspir'':4 ''california'':22 ''defeat'':17 ''forens'':19 ''inspir'':6 ''must'':16 ''psychologist'':20 ''racer'':2 ''reflect'':7 ''shark'':14 ''sunset'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (867, 'SUPER WYOMING', 'A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback', 2006, 1, NULL, true, 5, 4.99, 58, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''chef'':11 ''discov'':17 ''explor'':14 ''must'':16 ''outback'':23 ''pack'':6 ''pastri'':10 ''saga'':7 ''shark'':20 ''super'':1 ''wyom'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (868, 'SUPERFLY TRIP', 'A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House', 2006, 1, NULL, true, 5, 0.99, 114, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':20 ''beauti'':4 ''build'':14 ''fun'':21 ''hous'':22 ''lumberjack'':8 ''must'':13 ''saga'':5 ''superfli'':1 ''teacher'':11 ''technic'':16 ''trip'':2 ''writer'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (869, 'SUSPECTS QUILLS', 'A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 2.99, 47, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''battl'':14 ''crocodil'':11 ''emot'':4 ''epistl'':5 ''man'':16 ''manhattan'':19 ''must'':13 ''penthous'':20 ''pioneer'':8 ''quill'':2 ''suspect'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (870, 'SWARM GOLD', 'A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 123, 12.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''boat'':11 ''conquer'':14 ''convent'':21 ''crocodil'':8 ''gold'':2 ''insight'':4 ''must'':13 ''mysql'':20 ''panorama'':5 ''sumo'':16 ''swarm'':1 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (871, 'SWEDEN SHINING', 'A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies', 2006, 1, NULL, true, 6, 4.99, 176, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boy'':16 ''canadian'':19 ''car'':8 ''conquer'':14 ''documentari'':5 ''must'':13 ''robot'':11 ''rocki'':20 ''shine'':2 ''sweden'':1 ''taut'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (872, 'SWEET BROTHERHOOD', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon', 2006, 1, NULL, true, 3, 2.99, 185, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''baloon'':21 ''brotherhood'':2 ''chase'':15 ''epistl'':5 ''forens'':17 ''hunter'':12 ''must'':14 ''psychologist'':18 ''sumo'':8 ''sweet'':1 ''unbeliev'':4 ''wrestler'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (873, 'SWEETHEARTS SUSPECTS', 'A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico', 2006, 1, NULL, true, 3, 0.99, 108, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''brilliant'':4 ''charact'':5 ''confront'':16 ''frisbe'':9 ''gulf'':21 ''mexico'':23 ''must'':15 ''studi'':6 ''sumo'':12 ''suspect'':2 ''sweetheart'':1 ''woman'':18 ''wrestler'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (874, 'TADPOLE PARK', 'A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park', 2006, 1, NULL, true, 6, 2.99, 155, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':19 ''amus'':20 ''beauti'':4 ''dog'':16 ''frisbe'':8 ''moos'':11 ''must'':13 ''park'':2,21 ''tadpol'':1 ''tale'':5 ''vanquish'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (875, 'TALENTED HOMICIDE', 'A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat', 2006, 1, NULL, true, 6, 0.99, 173, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':22 ''dentist'':8 ''forens'':11 ''homicid'':2 ''lacklustur'':4 ''must'':14 ''outrac'':15 ''panorama'':5 ''pioneer'':17 ''psychologist'':12 ''talent'':1 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (876, 'TARZAN VIDEOTAPE', 'A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert', 2006, 1, NULL, true, 3, 2.99, 91, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''desert'':24 ''display'':7 ''fast'':5 ''fast-pac'':4 ''lumberjack'':10 ''mad'':13 ''must'':16 ''pace'':6 ''sahara'':23 ''scientist'':14 ''succumb'':17 ''sumo'':19 ''tarzan'':1 ''videotap'':2 ''wrestler'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (877, 'TAXI KICK', 'A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia', 2006, 1, NULL, true, 4, 0.99, 64, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''amaz'':4 ''epistl'':5 ''georgia'':19 ''girl'':8 ''kick'':2 ''must'':13 ''outrac'':14 ''soviet'':18 ''taxi'':1 ''waitress'':16 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (878, 'TEEN APOLLO', 'A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank', 2006, 1, NULL, true, 3, 4.99, 74, 25.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''apollo'':2 ''awe'':5 ''awe-inspir'':4 ''dog'':10 ''drama'':7 ''escap'':16 ''inspir'':6 ''man'':13 ''must'':15 ''robot'':18 ''shark'':21 ''tank'':22 ''teen'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (879, 'TELEGRAPH VOYAGE', 'A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat', 2006, 1, NULL, true, 3, 4.99, 148, 20.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''battl'':14 ''boat'':20 ''dog'':11 ''fate'':4 ''husband'':8 ''jet'':19 ''must'':13 ''telegraph'':1 ''voyag'':2 ''waitress'':16 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (880, 'TELEMARK HEARTBREAKERS', 'A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 2.99, 152, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''build'':17 ''forens'':19 ''heartbreak'':2 ''man'':14 ''manhattan'':23 ''must'':16 ''pack'':6 ''panorama'':7 ''penthous'':24 ''psychologist'':20 ''technic'':10 ''telemark'':1 ''writer'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (881, 'TEMPLE ATTRACTION', 'A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia', 2006, 1, NULL, true, 5, 4.99, 71, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''attract'':2 ''battl'':17 ''forens'':10 ''georgia'':22 ''must'':16 ''pack'':6 ''psychologist'':11 ''saga'':7 ''soviet'':21 ''templ'':1 ''woman'':14,19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (882, 'TENENBAUMS COMMAND', 'A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico', 2006, 1, NULL, true, 4, 0.99, 99, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''command'':2 ''display'':5 ''girl'':16 ''gulf'':19 ''man'':11 ''mexico'':21 ''must'':13 ''pioneer'':8 ''reach'':14 ''taut'':4 ''tenenbaum'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (883, 'TEQUILA PAST', 'A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria', 2006, 1, NULL, true, 6, 4.99, 53, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''challeng'':17 ''mad'':10 ''must'':16 ''nigeria'':21 ''pack'':6 ''panorama'':7 ''past'':2 ''robot'':14 ''scientist'':11 ''student'':19 ''tequila'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (884, 'TERMINATOR CLUB', 'A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico', 2006, 1, NULL, true, 5, 4.99, 88, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''club'':2 ''crocodil'':8 ''girl'':11 ''gulf'':19 ''man'':16 ''mexico'':21 ''must'':13 ''sink'':14 ''stori'':5 ''termin'':1 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (885, 'TEXAS WATCH', 'A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park', 2006, 1, NULL, true, 7, 0.99, 179, 22.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':21 ''amus'':22 ''awe'':5 ''awe-inspir'':4 ''fight'':16 ''inspir'':6 ''must'':15 ''park'':23 ''student'':10 ''teacher'':13,18 ''texa'':1 ''watch'':2 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (886, 'THEORY MERMAID', 'A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station', 2006, 1, NULL, true, 5, 0.99, 184, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''compos'':8 ''fate'':4 ''first'':19 ''man'':20 ''mermaid'':2 ''monkey'':11 ''must'':13 ''space'':21 ''station'':22 ''theori'':1 ''vanquish'':14 ''woman'':16 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (887, 'THIEF PELICAN', 'A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft', 2006, 1, NULL, true, 5, 4.99, 135, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''abandon'':20 ''documentari'':5 ''feminist'':17 ''mad'':11 ''madman'':8 ''mine'':21 ''must'':14 ''outrac'':15 ''pelican'':2 ''scientist'':12 ''shaft'':22 ''thief'':1 ''touch'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (888, 'THIN SAGEBRUSH', 'A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India', 2006, 1, NULL, true, 5, 4.99, 53, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':18 ''build'':14 ''cat'':16 ''drama'':5 ''emot'':4 ''husband'':8 ''india'':19 ''lumberjack'':11 ''must'':13 ''sagebrush'':2 ''thin'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (889, 'TIES HUNGER', 'A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat', 2006, 1, NULL, true, 3, 4.99, 111, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''astronaut'':8 ''boat'':22 ''explor'':11 ''hunger'':2 ''insight'':4 ''mad'':16 ''must'':13 ''pursu'':14 ''saga'':5 ''scientist'':17 ''tie'':1 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (890, 'TIGHTS DAWN', 'A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon', 2006, 1, NULL, true, 5, 0.99, 172, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''agent'':12 ''baloon'':20 ''boat'':8 ''boy'':17 ''dawn'':2 ''epistl'':5 ''face'':15 ''must'':14 ''secret'':11 ''thrill'':4 ''tight'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (891, 'TIMBERLAND SKY', 'A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat', 2006, 1, NULL, true, 3, 0.99, 69, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':21 ''bore'':4 ''display'':5 ''dog'':11 ''girl'':16 ''man'':8 ''must'':13 ''redeem'':14 ''sky'':2 ''timberland'':1 ''u'':20 ''u-boat'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (892, 'TITANIC BOONDOCK', 'A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory', 2006, 1, NULL, true, 3, 4.99, 104, 18.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''baloon'':19 ''boondock'':2 ''boy'':16 ''brilliant'':4 ''dog'':11 ''factori'':20 ''feminist'':8 ''fight'':14 ''must'':13 ''reflect'':5 ''titan'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (893, 'TITANS JERK', 'A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China', 2006, 1, NULL, true, 4, 4.99, 91, 11.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''ancient'':20 ''challeng'':15 ''china'':21 ''feminist'':8 ''jerk'':2 ''must'':14 ''panorama'':5 ''sumo'':11 ''technic'':17 ''titan'':1 ''unbeliev'':4 ''wrestler'':12 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (894, 'TOMATOES HELLFIGHTERS', 'A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank', 2006, 1, NULL, true, 6, 0.99, 68, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''astronaut'':11 ''epistl'':5 ''hellfight'':2 ''madman'':8 ''monkey'':16 ''must'':13 ''overcom'':14 ''shark'':19 ''tank'':20 ''thought'':4 ''tomato'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (895, 'TOMORROW HUSTLER', 'A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert', 2006, 1, NULL, true, 3, 2.99, 142, 21.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':17 ''desert'':21 ''face'':14 ''husband'':11 ''hustler'':2 ''moos'':8 ''must'':13 ''sahara'':20 ''secret'':16 ''stori'':5 ''thought'':4 ''tomorrow'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (896, 'TOOTSIE PILOT', 'A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin', 2006, 1, NULL, true, 3, 0.99, 157, 10.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''berlin'':21 ''chef'':14 ''documentari'':7 ''inspir'':6 ''kill'':17 ''lumberjack'':19 ''must'':16 ''pastri'':13 ''pilot'':2 ''tootsi'':1 ''woman'':10'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (897, 'TORQUE BOUND', 'A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan', 2006, 1, NULL, true, 3, 4.99, 179, 27.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':18 ''bound'':2 ''crocodil'':8 ''display'':5 ''emot'':4 ''husband'':11 ''japan'':19 ''man'':16 ''must'':13 ''reach'':14 ''torqu'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (898, 'TOURIST PELICAN', 'A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia', 2006, 1, NULL, true, 4, 4.99, 152, 18.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''astronaut'':11 ''australia'':18 ''bore'':4 ''butler'':8 ''must'':13 ''outrac'':14 ''pelican'':2 ''pioneer'':16 ''stori'':5 ''tourist'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (899, 'TOWERS HURRICANE', 'A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention', 2006, 1, NULL, true, 7, 0.99, 144, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''car'':11 ''convent'':20 ''display'':5 ''fate'':4 ''hurrican'':2 ''husband'':16 ''monkey'':8 ''must'':13 ''mysql'':19 ''sink'':14 ''tower'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (900, 'TOWN ARK', 'A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 2.99, 136, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':21 ''ark'':2 ''awe'':5 ''awe-inspir'':4 ''documentari'':7 ''dog'':18 ''inspir'':6 ''madman'':13 ''meet'':16 ''mine'':22 ''moos'':10 ''must'':15 ''shaft'':23 ''town'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (901, 'TRACY CIDER', 'A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria', 2006, 1, NULL, true, 3, 0.99, 142, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''administr'':9 ''build'':15 ''cider'':2 ''databas'':8 ''lumberjack'':17 ''madman'':12 ''must'':14 ''nigeria'':19 ''reflect'':5 ''touch'':4 ''traci'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (902, 'TRADING PINOCCHIO', 'A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station', 2006, 1, NULL, true, 6, 4.99, 170, 22.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''charact'':5 ''discov'':15 ''emot'':4 ''explor'':12 ''first'':20 ''frisbe'':17 ''man'':21 ''must'':14 ''pinocchio'':2 ''space'':22 ''station'':23 ''student'':9 ''studi'':6 ''trade'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (903, 'TRAFFIC HOBBIT', 'A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat', 2006, 1, NULL, true, 5, 4.99, 139, 13.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':17 ''amaz'':4 ''boat'':22 ''databas'':16 ''epistl'':5 ''hobbit'':2 ''lumberjack'':11 ''must'':13 ''squirrel'':8 ''succumb'':14 ''traffic'':1 ''u'':21 ''u-boat'':20'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (904, 'TRAIN BUNCH', 'A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India', 2006, 1, NULL, true, 3, 4.99, 71, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':19 ''bunch'':2 ''charact'':5 ''dog'':17 ''face'':15 ''india'':20 ''must'':14 ''robot'':9 ''squirrel'':12 ''studi'':6 ''thrill'':4 ''train'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (905, 'TRAINSPOTTING STRANGERS', 'A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan', 2006, 1, NULL, true, 7, 4.99, 132, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''ancient'':21 ''challeng'':17 ''cow'':14 ''drama'':7 ''fast'':5 ''fast-pac'':4 ''japan'':22 ''mad'':13 ''madman'':19 ''must'':16 ''pace'':6 ''pioneer'':10 ''stranger'':2 ''trainspot'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (906, 'TRAMP OTHERS', 'A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India', 2006, 1, NULL, true, 4, 0.99, 171, 27.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''ancient'':19 ''brilliant'':4 ''cat'':11 ''compos'':8 ''display'':5 ''india'':20 ''must'':13 ''other'':2 ''shark'':17 ''succumb'':14 ''tramp'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (907, 'TRANSLATION SUMMER', 'A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 168, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''convent'':20 ''man'':8 ''monkey'':11 ''must'':13 ''mysql'':19 ''pursu'':14 ''reflect'':5 ''summer'':2 ''touch'':4 ''translat'':1 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (908, 'TRAP GUYS', 'A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert', 2006, 1, NULL, true, 3, 4.99, 110, 11.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''administr'':18 ''boy'':8 ''challeng'':15 ''cow'':12 ''databas'':17 ''desert'':22 ''guy'':2 ''mad'':11 ''must'':14 ''sahara'':21 ''stori'':5 ''trap'':1 ''unbeliev'':4'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (909, 'TREASURE COMMAND', 'A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California', 2006, 1, NULL, true, 3, 0.99, 102, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''california'':18 ''car'':8 ''command'':2 ''discov'':14 ''emot'':4 ''madman'':11 ''must'':13 ''pioneer'':16 ''saga'':5 ''treasur'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (910, 'TREATMENT JEKYLL', 'A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft', 2006, 1, NULL, true, 3, 0.99, 87, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''abandon'':19 ''bore'':4 ''cat'':16 ''jekyl'':2 ''mine'':20 ''must'':13 ''outgun'':14 ''shaft'':21 ''stori'':5 ''student'':11 ''teacher'':8 ''treatment'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (911, 'TRIP NEWTON', 'A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park', 2006, 1, NULL, true, 7, 4.99, 64, 14.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':20 ''amus'':21 ''car'':12 ''cat'':17 ''charact'':5 ''discov'':15 ''fanci'':4 ''lumberjack'':9 ''must'':14 ''newton'':2 ''park'':22 ''studi'':6 ''trip'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (912, 'TROJAN TOMORROW', 'A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India', 2006, 1, NULL, true, 3, 2.99, 52, 9.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':19 ''astound'':4 ''boat'':17 ''husband'':8 ''india'':20 ''must'':14 ''panorama'':5 ''pursu'':15 ''sumo'':11 ''tomorrow'':2 ''trojan'':1 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (913, 'TROOPERS METAL', 'A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin', 2006, 1, NULL, true, 3, 0.99, 115, 20.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''berlin'':18 ''drama'':5 ''fanci'':4 ''feminist'':11 ''man'':16 ''metal'':2 ''monkey'':8 ''must'':13 ''sink'':14 ''trooper'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (914, 'TROUBLE DATE', 'A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan', 2006, 1, NULL, true, 6, 2.99, 61, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ancient'':19 ''date'':2 ''explor'':17 ''forens'':8 ''japan'':20 ''kill'':15 ''lacklustur'':4 ''must'':14 ''panorama'':5 ''psychologist'':9 ''troubl'':1 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (915, 'TRUMAN CRAZY', 'A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery', 2006, 1, NULL, true, 7, 4.99, 92, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''administr'':17 ''boy'':11 ''crazi'':2 ''databas'':16 ''epistl'':5 ''meet'':14 ''monasteri'':20 ''moos'':8 ''must'':13 ''thrill'':4 ''truman'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (916, 'TURN STAR', 'A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans', 2006, 1, NULL, true, 3, 2.99, 80, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''chase'':14 ''man'':8 ''monkey'':11 ''must'':13 ''new'':18 ''orlean'':19 ''star'':2 ''student'':16 ''stun'':4 ''tale'':5 ''turn'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (917, 'TUXEDO MILE', 'A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India', 2006, 1, NULL, true, 3, 2.99, 152, 24.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''ancient'':19 ''bore'':4 ''drama'':5 ''face'':15 ''forens'':11 ''frisbe'':17 ''india'':20 ''man'':8 ''mile'':2 ''must'':14 ''psychologist'':12 ''tuxedo'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (918, 'TWISTED PIRATES', 'A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention', 2006, 1, NULL, true, 4, 4.99, 152, 23.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''boat'':11 ''convent'':20 ''display'':5 ''frisbe'':8 ''girl'':16 ''kill'':14 ''must'':13 ''mysql'':19 ''pirat'':2 ''touch'':4 ''twist'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (919, 'TYCOON GATHERING', 'A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 4.99, 82, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''display'':5 ''emot'':4 ''gather'':2 ''husband'':8 ''madman'':17 ''manhattan'':20 ''must'':14 ''penthous'':21 ''shark'':12 ''succumb'':15 ''tycoon'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (920, 'UNBREAKABLE KARATE', 'A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia', 2006, 1, NULL, true, 3, 0.99, 62, 16.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''amaz'':4 ''australia'':19 ''charact'':5 ''chase'':15 ''karat'':2 ''must'':14 ''robot'':9,17 ''student'':12 ''studi'':6 ''unbreak'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (921, 'UNCUT SUICIDES', 'A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat', 2006, 1, NULL, true, 7, 2.99, 172, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''boat'':23 ''chef'':12 ''cow'':18 ''explor'':8 ''intrepid'':4 ''mad'':17 ''must'':14 ''pastri'':11 ''pursu'':15 ''suicid'':2 ''u'':22 ''u-boat'':21 ''uncut'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (922, 'UNDEFEATED DALMATIONS', 'A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park', 2006, 1, NULL, true, 7, 4.99, 107, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':19 ''amus'':20 ''crocodil'':8 ''dalmat'':2 ''display'':5 ''feminist'':11 ''moos'':16 ''must'':13 ''overcom'':14 ''park'':21 ''unbeliev'':4 ''undef'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (923, 'UNFAITHFUL KILL', 'A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans', 2006, 1, NULL, true, 7, 2.99, 78, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''battl'':15 ''documentari'':5 ''kill'':2 ''mad'':11 ''must'':14 ''new'':20 ''orlean'':21 ''scientist'':12 ''taut'':4 ''technic'':17 ''unfaith'':1 ''waitress'':8 ''writer'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (924, 'UNFORGIVEN ZOOLANDER', 'A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory', 2006, 1, NULL, true, 7, 0.99, 129, 15.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''baloon'':21 ''epistl'':5 ''factori'':22 ''monkey'':8 ''must'':14 ''shark'':18 ''sumo'':11 ''taut'':4 ''unforgiven'':1 ''vanquish'':15 ''wrestler'':12 ''zooland'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (925, 'UNITED PILOT', 'A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert', 2006, 1, NULL, true, 3, 0.99, 164, 27.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''car'':19 ''cat'':10 ''cow'':14 ''desert'':23 ''fast'':5 ''fast-pac'':4 ''fight'':17 ''mad'':13 ''must'':16 ''pace'':6 ''pilot'':2 ''reflect'':7 ''sahara'':22 ''unit'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (926, 'UNTOUCHABLES SUNRISE', 'A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House', 2006, 1, NULL, true, 5, 2.99, 120, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''abandon'':19 ''amaz'':4 ''astronaut'':11 ''documentari'':5 ''fun'':20 ''hous'':21 ''must'':13 ''outrac'':14 ''sunris'':2 ''teacher'':16 ''untouch'':1 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (927, 'UPRISING UPTOWN', 'A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin', 2006, 1, NULL, true, 6, 2.99, 174, 16.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''berlin'':18 ''boy'':8 ''butler'':11 ''fanci'':4 ''must'':13 ''pursu'':14 ''reflect'':5 ''upris'':1 ''uptown'':2 ''woman'':16'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (928, 'UPTOWN YOUNG', 'A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park', 2006, 1, NULL, true, 5, 2.99, 84, 16.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''abandon'':19 ''amus'':20 ''documentari'':5 ''dog'':8 ''fate'':4 ''hunter'':11 ''must'':13 ''park'':21 ''pursu'':14 ''teacher'':16 ''uptown'':1 ''young'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (929, 'USUAL UNTOUCHABLES', 'A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank', 2006, 1, NULL, true, 5, 4.99, 128, 21.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''display'':5 ''explor'':8 ''fight'':14 ''forens'':16 ''lumberjack'':11 ''must'':13 ''psychologist'':17 ''shark'':20 ''tank'':21 ''touch'':4 ''untouch'':2 ''usual'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (930, 'VACATION BOONDOCK', 'A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia', 2006, 1, NULL, true, 4, 2.99, 145, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''agent'':10 ''australia'':21 ''boondock'':2 ''charact'':5 ''fanci'':4 ''mad'':13 ''must'':16 ''reach'':17 ''scientist'':14 ''secret'':9 ''studi'':6 ''teacher'':19 ''vacat'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (931, 'VALENTINE VANISHING', 'A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California', 2006, 1, NULL, true, 7, 0.99, 48, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''butler'':11 ''california'':19 ''chef'':17 ''display'':5 ''husband'':8 ''must'':13 ''pastri'':16 ''reach'':14 ''thrill'':4 ''valentin'':1 ''vanish'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (932, 'VALLEY PACKER', 'A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin', 2006, 1, NULL, true, 3, 0.99, 73, 21.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''astound'':4 ''astronaut'':8 ''berlin'':19 ''boy'':11 ''documentari'':5 ''must'':13 ''outrac'':14 ''packer'':2 ''sumo'':16 ''valley'':1 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (933, 'VAMPIRE WHALE', 'A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention', 2006, 1, NULL, true, 4, 4.99, 126, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''confront'':14 ''convent'':20 ''epic'':4 ''lumberjack'':8 ''monkey'':11 ''must'':13 ''mysql'':19 ''pioneer'':16 ''stori'':5 ''vampir'':1 ''whale'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (934, 'VANILLA DAY', 'A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria', 2006, 1, NULL, true, 7, 4.99, 122, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''day'':2 ''fast'':5 ''fast-pac'':4 ''forens'':13 ''girl'':10,19 ''must'':16 ''nigeria'':21 ''pace'':6 ''psychologist'':14 ''redeem'':17 ''saga'':7 ''vanilla'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (935, 'VANISHED GARDEN', 'A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California', 2006, 1, NULL, true, 5, 0.99, 142, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''california'':20 ''charact'':5 ''garden'':2 ''intrepid'':4 ''kill'':16 ''lumberjack'':18 ''must'':15 ''shark'':13 ''squirrel'':9 ''studi'':6 ''vanish'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (936, 'VANISHING ROCKY', 'A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention', 2006, 1, NULL, true, 3, 2.99, 123, 21.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''brilliant'':4 ''conquer'':14 ''convent'':20 ''man'':8 ''must'':13 ''mysql'':19 ''pioneer'':16 ''reflect'':5 ''rocki'':2 ''vanish'':1 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (937, 'VARSITY TRIP', 'A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention', 2006, 1, NULL, true, 7, 2.99, 85, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''astronaut'':11 ''charact'':7 ''convent'':23 ''explor'':14 ''monkey'':19 ''must'':16 ''mysql'':22 ''pack'':6 ''reach'':17 ''studi'':8 ''trip'':2 ''varsiti'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (938, 'VELVET TERMINATOR', 'A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 4.99, 173, 14.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''abandon'':21 ''amus'':22 ''chef'':9 ''confront'':16 ''crocodil'':18 ''lacklustur'':4 ''must'':15 ''park'':23 ''pastri'':8 ''tale'':5 ''technic'':12 ''termin'':2 ''velvet'':1 ''writer'':13'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (939, 'VERTIGO NORTHWEST', 'A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan', 2006, 1, NULL, true, 4, 2.99, 90, 17.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''ancient'':21 ''cow'':19 ''display'':5 ''japan'':22 ''mad'':8,12,18 ''must'':15 ''northwest'':2 ''outgun'':16 ''scientist'':9,13 ''unbeliev'':4 ''vertigo'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (940, 'VICTORY ACADEMY', 'A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert', 2006, 1, NULL, true, 6, 0.99, 64, 19.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''academi'':2 ''cat'':17 ''challeng'':15 ''desert'':21 ''epistl'':5 ''explor'':12 ''insight'':4 ''mad'':8 ''must'':14 ''sahara'':20 ''scientist'':9 ''victori'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (941, 'VIDEOTAPE ARSENIC', 'A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia', 2006, 1, NULL, true, 4, 4.99, 145, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''arsenic'':2 ''astronaut'':11 ''australia'':18 ''display'':5 ''girl'':8 ''lacklustur'':4 ''must'':13 ''student'':16 ''succumb'':14 ''videotap'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (942, 'VIETNAM SMOOCHY', 'A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia', 2006, 1, NULL, true, 7, 0.99, 174, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''butler'':8 ''display'':5 ''explor'':16 ''georgia'':19 ''lacklustur'':4 ''man'':11 ''must'':13 ''sink'':14 ''smoochi'':2 ''soviet'':18 ''vietnam'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (943, 'VILLAIN DESPERATE', 'A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park', 2006, 1, NULL, true, 4, 4.99, 76, 27.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''abandon'':19 ''amus'':20 ''bore'':4 ''cat'':16 ''desper'':2 ''feminist'':11 ''must'':13 ''park'':21 ''pioneer'':8 ''redeem'':14 ''villain'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (944, 'VIRGIN DAISY', 'A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank', 2006, 1, NULL, true, 6, 4.99, 179, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''administr'':20 ''awe'':5 ''awe-inspir'':4 ''daisi'':2 ''databas'':19 ''documentari'':7 ''inspir'':6 ''mad'':13 ''must'':16 ''reach'':17 ''robot'':10 ''scientist'':14 ''shark'':23 ''tank'':24 ''virgin'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (945, 'VIRGINIAN PLUTO', 'A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin', 2006, 1, NULL, true, 5, 0.99, 164, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''berlin'':18 ''boy'':16 ''crocodil'':11 ''dentist'':8 ''emot'':4 ''meet'':14 ''must'':13 ''panorama'':5 ''pluto'':2 ''virginian'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (946, 'VIRTUAL SPOILERS', 'A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia', 2006, 1, NULL, true, 3, 4.99, 144, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''administr'':9 ''databas'':8 ''discov'':15 ''fate'':4 ''georgia'':20 ''must'':14 ''soviet'':19 ''spoiler'':2 ''squirrel'':12 ''student'':17 ''tale'':5 ''virtual'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (947, 'VISION TORQUE', 'A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank', 2006, 1, NULL, true, 5, 0.99, 59, 16.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''documentari'':5 ''dog'':8 ''man'':11,16 ''must'':13 ''shark'':19 ''sink'':14 ''tank'':20 ''thought'':4 ''torqu'':2 ''vision'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (948, 'VOICE PEACH', 'A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 0.99, 139, 22.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''amaz'':4 ''mad'':16 ''manhattan'':20 ''must'':13 ''overcom'':14 ''panorama'':5 ''peach'':2 ''penthous'':21 ''pioneer'':8 ''scientist'':17 ''student'':11 ''voic'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (949, 'VOLCANO TEXAS', 'A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback', 2006, 1, NULL, true, 6, 0.99, 157, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''awe'':5 ''awe-inspir'':4 ''challeng'':16 ''dentist'':18 ''feminist'':13 ''hunter'':10 ''inspir'':6 ''must'':15 ''outback'':21 ''texa'':2 ''volcano'':1 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (950, 'VOLUME HOUSE', 'A Boring Tale of a Dog And a Woman who must Meet a Dentist in California', 2006, 1, NULL, true, 7, 4.99, 132, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''bore'':4 ''california'':18 ''dentist'':16 ''dog'':8 ''hous'':2 ''meet'':14 ''must'':13 ''tale'':5 ''volum'':1 ''woman'':11'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (951, 'VOYAGE LEGALLY', 'A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 0.99, 78, 28.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''abandon'':19 ''boy'':16 ''conquer'':14 ''epic'':4 ''hunter'':11 ''legal'':2 ''mine'':20 ''must'':13 ''shaft'':21 ''squirrel'':8 ''tale'':5 ''voyag'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (952, 'WAGON JAWS', 'A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 2.99, 152, 17.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''boat'':11 ''drama'':5 ''explor'':16 ''intrepid'':4 ''jaw'':2 ''kill'':14 ''manhattan'':19 ''moos'':8 ''must'':13 ''penthous'':20 ''wagon'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (953, 'WAIT CIDER', 'A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse', 2006, 1, NULL, true, 3, 0.99, 112, 9.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''astronaut'':17 ''cider'':2 ''epistl'':5 ''forens'':11 ''intrepid'':4 ''manhattan'':20 ''must'':14 ''penthous'':21 ''psychologist'':12 ''succumb'':15 ''wait'':1 ''woman'':8'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (954, 'WAKE JAWS', 'A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin', 2006, 1, NULL, true, 7, 4.99, 73, 18.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''beauti'':4 ''berlin'':18 ''challeng'':14 ''compos'':11 ''feminist'':8 ''jaw'':2 ''moos'':16 ''must'':13 ''saga'':5 ''wake'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (955, 'WALLS ARTIST', 'A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House', 2006, 1, NULL, true, 7, 4.99, 135, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':20 ''artist'':2 ''cow'':17 ''fun'':21 ''hous'':22 ''insight'':4 ''mad'':16 ''must'':13 ''overcom'':14 ''panorama'':5 ''teacher'':8,11 ''wall'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (956, 'WANDA CHAMBER', 'A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback', 2006, 1, NULL, true, 7, 4.99, 107, 23.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''chamber'':2 ''drama'':5 ''find'':15 ''insight'':4 ''must'':14 ''outback'':20 ''pioneer'':12 ''shark'':9 ''wanda'':1 ''woman'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (957, 'WAR NOTTING', 'A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies', 2006, 1, NULL, true, 7, 4.99, 80, 26.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''agent'':18 ''bore'':4 ''canadian'':21 ''challeng'':15 ''drama'':5 ''must'':14 ''not'':2 ''rocki'':22 ''secret'':17 ''sumo'':11 ''teacher'':8 ''war'':1 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (958, 'WARDROBE PHANTOM', 'A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India', 2006, 1, NULL, true, 6, 2.99, 178, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''action'':5 ''action-pack'':4 ''ancient'':21 ''astronaut'':14 ''car'':19 ''cow'':11 ''display'':7 ''india'':22 ''kill'':17 ''mad'':10 ''must'':16 ''pack'':6 ''phantom'':2 ''wardrob'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (959, 'WARLOCK WEREWOLF', 'A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback', 2006, 1, NULL, true, 6, 2.99, 83, 10.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''astound'':4 ''crocodil'':11 ''defeat'':14 ''must'':13 ''outback'':20 ''pioneer'':8 ''shark'':17 ''warlock'':1 ''werewolf'':2 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (960, 'WARS PLUTO', 'A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert', 2006, 1, NULL, true, 5, 2.99, 128, 15.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''administr'':12 ''chase'':15 ''databas'':11 ''desert'':21 ''madman'':17 ''must'':14 ''pluto'':2 ''reflect'':5 ''sahara'':20 ''taut'':4 ''teacher'':8 ''war'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (961, 'WASH HEAVENLY', 'A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China', 2006, 1, NULL, true, 7, 4.99, 161, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''cat'':10 ''china'':21 ''escap'':16 ''heaven'':2 ''hunter'':18 ''inspir'':6 ''must'':15 ''pioneer'':13 ''reflect'':7 ''wash'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (962, 'WASTELAND DIVINE', 'A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China', 2006, 1, NULL, true, 7, 2.99, 85, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''administr'':9,18 ''ancient'':20 ''china'':21 ''databas'':8,17 ''divin'':2 ''fanci'':4 ''fight'':15 ''must'':14 ''stori'':5 ''wasteland'':1 ''woman'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (963, 'WATCH TRACY', 'A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria', 2006, 1, NULL, true, 5, 0.99, 78, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes","Behind the Scenes"}', '''conquer'':16 ''dog'':10 ''fast'':5 ''fast-pac'':4 ''frisbe'':13 ''hunter'':18 ''must'':15 ''nigeria'':20 ''pace'':6 ''traci'':2 ''watch'':1 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (964, 'WATERFRONT DELIVERANCE', 'A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria', 2006, 1, NULL, true, 4, 4.99, 61, 17.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''build'':15 ''deliver'':2 ''dentist'':8 ''documentari'':5 ''must'':14 ''nigeria'':19 ''technic'':11 ''unbeliev'':4 ''waterfront'':1 ''woman'':17 ''writer'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (965, 'WATERSHIP FRONTIER', 'A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia', 2006, 1, NULL, true, 6, 0.99, 112, 28.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':8 ''crocodil'':11 ''emot'':4 ''frontier'':2 ''georgia'':19 ''meet'':14 ''moos'':16 ''must'':13 ''soviet'':18 ''watership'':1 ''yarn'':5'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (966, 'WEDDING APOLLO', 'A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft', 2006, 1, NULL, true, 3, 0.99, 70, 14.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''abandon'':21 ''action'':5 ''action-pack'':4 ''apollo'':2 ''conquer'':16 ''lumberjack'':18 ''mine'':22 ''must'':15 ''pack'':6 ''shaft'':23 ''student'':10 ''tale'':7 ''waitress'':13 ''wed'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (967, 'WEEKEND PERSONAL', 'A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat', 2006, 1, NULL, true, 5, 2.99, 134, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''boat'':22 ''butler'':13 ''car'':10 ''documentari'':7 ''fast'':5 ''fast-pac'':4 ''find'':16 ''frisbe'':18 ''jet'':21 ''must'':15 ''pace'':6 ''person'':2 ''weekend'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (968, 'WEREWOLF LOLA', 'A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery', 2006, 1, NULL, true, 6, 4.99, 79, 19.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''fanci'':4 ''lola'':2 ''man'':8 ''monasteri'':20 ''must'':14 ''outrac'':15 ''stori'':5 ''student'':17 ''sumo'':11 ''werewolf'':1 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (969, 'WEST LION', 'A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse', 2006, 1, NULL, true, 4, 4.99, 159, 29.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers}', '''administr'':17 ''butler'':8 ''challeng'':14 ''databas'':16 ''drama'':5 ''intrepid'':4 ''lion'':2 ''lumberjack'':11 ''manhattan'':20 ''must'':13 ''penthous'':21 ''west'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (970, 'WESTWARD SEABISCUIT', 'A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China', 2006, 1, NULL, true, 7, 0.99, 52, 11.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':18 ''boy'':16 ''butler'':8 ''china'':19 ''face'':14 ''husband'':11 ''lacklustur'':4 ''must'':13 ''seabiscuit'':2 ''tale'':5 ''westward'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (971, 'WHALE BIKINI', 'A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention', 2006, 1, NULL, true, 4, 4.99, 109, 11.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''administr'':13 ''bikini'':2 ''chef'':9 ''convent'':22 ''databas'':12 ''feminist'':18 ''intrepid'':4 ''kill'':16 ''must'':15 ''mysql'':21 ''pastri'':8 ''stori'':5 ''whale'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (972, 'WHISPERER GIANT', 'A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan', 2006, 1, NULL, true, 4, 4.99, 59, 24.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':18 ''confront'':14 ''dentist'':8 ''giant'':2 ''hunter'':11 ''intrepid'':4 ''japan'':19 ''monkey'':16 ''must'':13 ''stori'':5 ''whisper'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (973, 'WIFE TURN', 'A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan', 2006, 1, NULL, true, 3, 4.99, 183, 27.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''ancient'':20 ''awe'':5 ''awe-inspir'':4 ''confront'':16 ''epistl'':7 ''feminist'':13 ''inspir'':6 ''japan'':21 ''must'':15 ''pioneer'':18 ''teacher'':10 ''turn'':2 ''wife'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (974, 'WILD APOLLO', 'A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention', 2006, 1, NULL, true, 4, 0.99, 181, 24.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes","Behind the Scenes"}', '''apollo'':2 ''beauti'':4 ''conquer'':15 ''convent'':22 ''monkey'':8 ''must'':14 ''mysql'':21 ''shark'':18 ''stori'':5 ''sumo'':11 ''wild'':1 ''wrestler'':12'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (975, 'WILLOW TRACY', 'A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse', 2006, 1, NULL, true, 6, 2.99, 137, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''astronaut'':11 ''boat'':8 ''brilliant'':4 ''challeng'':14 ''manhattan'':19 ''must'':13 ''panorama'':5 ''penthous'':20 ''teacher'':16 ''traci'':2 ''willow'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (976, 'WIND PHANTOM', 'A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft', 2006, 1, NULL, true, 6, 0.99, 111, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''abandon'':21 ''build'':15 ''forens'':11 ''madman'':8 ''mine'':22 ''must'':14 ''phantom'':2 ''psychologist'':12 ''saga'':5 ''shaft'':23 ''sumo'':17 ''touch'':4 ''wind'':1 ''wrestler'':18'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (977, 'WINDOW SIDE', 'A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery', 2006, 1, NULL, true, 3, 2.99, 85, 25.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''astound'':4 ''charact'':5 ''escap'':15 ''hunter'':12 ''monasteri'':20 ''must'':14 ''robot'':17 ''side'':2 ''studi'':6 ''window'':1 ''woman'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (978, 'WISDOM WORKER', 'A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station', 2006, 1, NULL, true, 3, 0.99, 98, 12.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''face'':15 ''first'':20 ''forens'':8 ''man'':21 ''must'':14 ''psychologist'':9 ''saga'':5 ''space'':22 ''squirrel'':17 ''station'':23 ''student'':12 ''unbeliev'':4 ''wisdom'':1 ''worker'':2'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (979, 'WITCHES PANIC', 'A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria', 2006, 1, NULL, true, 6, 4.99, 100, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Behind the Scenes"}', '''agent'':11 ''awe'':5 ''awe-inspir'':4 ''drama'':7 ''fight'':17 ''hunter'':14 ''inspir'':6 ''moos'':19 ''must'':16 ''nigeria'':21 ''panic'':2 ''secret'':10 ''witch'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (980, 'WIZARD COLDBLOODED', 'A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention', 2006, 1, NULL, true, 4, 4.99, 75, 12.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''coldblood'':2 ''convent'':21 ''defeat'':14 ''display'':5 ''girl'':11 ''lacklustur'':4 ''must'':13 ''mysql'':20 ''robot'':8 ''sumo'':16 ''wizard'':1 ''wrestler'':17'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (981, 'WOLVES DESIRE', 'A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse', 2006, 1, NULL, true, 7, 0.99, 55, 13.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''desir'':2 ''drama'':7 ''fast'':5 ''fast-pac'':4 ''manhattan'':22 ''must'':15 ''pace'':6 ''penthous'':23 ''robot'':13 ''squirrel'':10 ''succumb'':16 ''technic'':18 ''wolv'':1 ''writer'':19'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (982, 'WOMEN DORADO', 'A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia', 2006, 1, NULL, true, 4, 0.99, 126, 23.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''australia'':18 ''butler'':11 ''compos'':16 ''documentari'':5 ''dorado'':2 ''insight'':4 ''must'':13 ''vanquish'':14 ''waitress'':8 ''women'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (983, 'WON DARES', 'A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat', 2006, 1, NULL, true, 7, 2.99, 105, 18.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Behind the Scenes"}', '''boat'':21 ''dare'':2 ''defeat'':14 ''documentari'':5 ''explor'':16 ''monkey'':11 ''must'':13 ''teacher'':8 ''u'':20 ''u-boat'':19 ''unbeliev'':4 ''won'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (984, 'WONDERFUL DROP', 'A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat', 2006, 1, NULL, true, 3, 2.99, 126, 20.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''boat'':21 ''bore'':4 ''butler'':16 ''drop'':2 ''madman'':11 ''must'':13 ''overcom'':14 ''panorama'':5 ''u'':20 ''u-boat'':19 ''woman'':8 ''wonder'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (985, 'WONDERLAND CHRISTMAS', 'A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station', 2006, 1, NULL, true, 4, 4.99, 111, 19.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Commentaries}', '''awe'':5 ''awe-inspir'':4 ''car'':14 ''charact'':7 ''christma'':2 ''first'':23 ''inspir'':6 ''mad'':19 ''man'':24 ''must'':16 ''pursu'':17 ''scientist'':20 ''space'':25 ''station'':26 ''studi'':8 ''waitress'':11 ''wonderland'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (986, 'WONKA SEA', 'A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India', 2006, 1, NULL, true, 6, 2.99, 85, 24.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''ancient'':19 ''boat'':8 ''brilliant'':4 ''india'':20 ''mad'':11 ''meet'':15 ''moos'':17 ''must'':14 ''saga'':5 ''scientist'':12 ''sea'':2 ''wonka'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (987, 'WORDS HUNTER', 'A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention', 2006, 1, NULL, true, 3, 2.99, 116, 13.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''action'':5 ''action-pack'':4 ''compos'':10 ''convent'':23 ''face'':17 ''hunter'':2 ''mad'':13 ''must'':16 ''mysql'':22 ''pack'':6 ''pioneer'':19 ''reflect'':7 ''scientist'':14 ''word'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (988, 'WORKER TARZAN', 'A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station', 2006, 1, NULL, true, 7, 2.99, 139, 26.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''action'':5 ''action-pack'':4 ''agent'':11 ''battl'':18 ''first'':24 ''man'':25 ''must'':17 ''pack'':6 ''secret'':10 ''space'':26 ''station'':27 ''sumo'':20 ''tarzan'':2 ''technic'':14 ''worker'':1 ''wrestler'':21 ''writer'':15 ''yarn'':7'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (989, 'WORKING MICROCOSMOS', 'A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China', 2006, 1, NULL, true, 4, 4.99, 74, 22.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Commentaries,"Deleted Scenes"}', '''ancient'':18 ''china'':19 ''dentist'':8 ''dog'':11 ''epistl'':5 ''kill'':14 ''madman'':16 ''microcosmo'':2 ''must'':13 ''stun'':4 ''work'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (990, 'WORLD LEATHERNECKS', 'A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park', 2006, 1, NULL, true, 3, 0.99, 171, 13.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''abandon'':19 ''amus'':20 ''astronaut'':11 ''leatherneck'':2 ''must'':13 ''overcom'':14 ''park'':21 ''pioneer'':8 ''robot'':16 ''tale'':5 ''unbeliev'':4 ''world'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (991, 'WORST BANGER', 'A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback', 2006, 1, NULL, true, 4, 2.99, 185, 26.99, 'PG', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes","Behind the Scenes"}', '''banger'':2 ''boy'':16 ''conquer'':14 ''dentist'':11 ''drama'':5 ''madman'':8 ''must'':13 ''outback'':19 ''thrill'':4 ''worst'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (992, 'WRATH MILE', 'A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery', 2006, 1, NULL, true, 5, 0.99, 176, 17.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries}', '''defeat'':15 ''hunter'':12 ''intrepid'':4 ''mile'':2 ''monasteri'':21 ''must'':14 ''reflect'':5 ''sumo'':17 ''technic'':8 ''wrath'':1 ''wrestler'':18 ''writer'':9'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (993, 'WRONG BEHAVIOR', 'A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans', 2006, 1, NULL, true, 6, 2.99, 178, 10.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''behavior'':2 ''cow'':18 ''crocodil'':8 ''discov'':15 ''emot'':4 ''mad'':17 ''must'':14 ''new'':20 ''orlean'':21 ''saga'':5 ''sumo'':11 ''wrestler'':12 ''wrong'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (994, 'WYOMING STORM', 'A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat', 2006, 1, NULL, true, 6, 4.99, 100, 29.99, 'PG-13', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''awe'':5 ''awe-inspir'':4 ''boat'':13,23 ''feminist'':18 ''inspir'':6 ''must'':15 ''overcom'':16 ''panorama'':7 ''robot'':10 ''storm'':2 ''u'':22 ''u-boat'':21 ''wyom'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (995, 'YENTL IDAHO', 'A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin', 2006, 1, NULL, true, 5, 4.99, 86, 11.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Deleted Scenes"}', '''amaz'':4 ''astronaut'':11 ''berlin'':18 ''display'':5 ''fight'':14 ''idaho'':2 ''must'':13 ''robot'':8 ''woman'':16 ''yentl'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (996, 'YOUNG LANGUAGE', 'A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station', 2006, 1, NULL, true, 6, 0.99, 183, 9.99, 'G', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''administr'':12 ''boat'':8 ''boy'':17 ''databas'':11 ''first'':20 ''languag'':2 ''man'':21 ''meet'':15 ''must'':14 ''space'':22 ''station'':23 ''unbeliev'':4 ''yarn'':5 ''young'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (997, 'YOUTH KICK', 'A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat', 2006, 1, NULL, true, 4, 0.99, 179, 14.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Behind the Scenes"}', '''boat'':22 ''cat'':11 ''challeng'':14 ''drama'':5 ''kick'':2 ''must'':13 ''teacher'':8 ''technic'':16 ''touch'':4 ''u'':21 ''u-boat'':20 ''writer'':17 ''youth'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (998, 'ZHIVAGO CORE', 'A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 105, 10.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{"Deleted Scenes"}', '''boy'':16 ''canadian'':19 ''compos'':8 ''core'':2 ''face'':14 ''fate'':4 ''man'':11 ''must'':13 ''rocki'':20 ''yarn'':5 ''zhivago'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (999, 'ZOOLANDER FICTION', 'A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China', 2006, 1, NULL, true, 5, 2.99, 101, 28.99, 'R', NULL, '2007-09-10 17:46:03.905795', '{Trailers,"Deleted Scenes"}', '''ancient'':19 ''boat'':11 ''china'':20 ''discov'':14 ''fate'':4 ''fiction'':2 ''must'':13 ''reflect'':5 ''sumo'':16 ''waitress'':8 ''wrestler'':17 ''zooland'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (1000, 'ZORRO ARK', 'A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery', 2006, 1, NULL, true, 3, 4.99, 50, 18.99, 'NC-17', NULL, '2007-09-10 17:46:03.905795', '{Trailers,Commentaries,"Behind the Scenes"}', '''ark'':2 ''boy'':12,17 ''intrepid'':4 ''mad'':8 ''monasteri'':20 ''must'':14 ''panorama'':5 ''redeem'':15 ''scientist'':9 ''zorro'':1'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (2, 'ACE GOLDFINGER', 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China', 2006, 1, NULL, true, 3, 4.99, 48, 12.99, 'G', 'file:///#PARAM(runtime.resources.dir)/icons/AncientChineseCar.png', '2018-11-26 17:10:45.384329', '{Trailers,"Deleted Scenes"}', '''ace'':1 ''administr'':9 ''ancient'':19 ''astound'':4 ''car'':17 ''china'':20 ''databas'':8 ''epistl'':5 ''explor'':12 ''find'':15 ''goldfing'':2 ''must'':14'); INSERT INTO film (film_id, title, description, release_year, language_id, original_language_id, active, rental_duration, rental_rate, length, replacement_cost, rating, image_url, last_update, special_features, fulltext) VALUES (1, 'ACADEMY DINOSAUR', 'A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies', 2006, 1, NULL, true, 6, 0.99, 86, 20.99, 'PG', 'file:///#PARAM(runtime.resources.dir)/icons/t_rex_closeup.jpg', '2018-12-03 15:02:57.517558', '{Commentaries,"Deleted Scenes","Behind the Scenes"}', '''academi'':1 ''battl'':15 ''canadian'':20 ''dinosaur'':2 ''drama'':5 ''epic'':4 ''feminist'':8 ''mad'':11 ''must'':14 ''rocki'':21 ''scientist'':12 ''teacher'':17'); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 23); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 106); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 140); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 277); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 438); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 749); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 939); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (1, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 3); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 31); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 132); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 145); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 314); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 357); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 399); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 481); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 550); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 555); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 742); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (2, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 185); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 329); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 441); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 685); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 971); INSERT INTO film_actor (actor_id, film_id) VALUES (3, 996); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 23); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 62); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 79); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 355); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 721); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 798); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (4, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 171); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 202); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 288); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 316); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 375); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 392); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 535); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 687); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 730); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 841); INSERT INTO film_actor (actor_id, film_id) VALUES (5, 865); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 60); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 70); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 165); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 451); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 902); INSERT INTO film_actor (actor_id, film_id) VALUES (6, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 173); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 218); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 225); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 351); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 633); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 770); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 805); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 900); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 901); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 910); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (7, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 115); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 158); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 195); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 205); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 523); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 532); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 859); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (8, 936); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 30); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 147); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 200); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 434); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 510); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 514); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 552); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 671); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 722); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 865); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 873); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 903); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 926); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (9, 974); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 236); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 251); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 366); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 477); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 716); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 929); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (10, 983); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 205); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 283); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 429); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 532); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 850); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 854); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 888); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 896); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (11, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 16); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 37); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 91); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 92); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 213); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 216); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 344); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 400); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 416); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 716); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 871); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (12, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 45); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 110); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 337); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 346); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 456); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 524); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 528); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 816); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 843); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 897); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (13, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 232); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 284); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 454); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 472); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 495); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 759); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 890); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 948); INSERT INTO film_actor (actor_id, film_id) VALUES (14, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 31); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 91); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 108); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 236); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 275); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 594); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 745); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 783); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 949); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (15, 985); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 80); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 101); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 218); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 221); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 269); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 271); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 287); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 438); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 455); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 456); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 582); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 583); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (16, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 124); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 127); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 201); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 236); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 310); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 313); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 478); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 770); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 800); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 873); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 948); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (17, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 44); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 279); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 460); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 808); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 863); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 883); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 917); INSERT INTO film_actor (actor_id, film_id) VALUES (18, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 2); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 3); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 152); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 182); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 266); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 404); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 510); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 670); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 711); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 756); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (19, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 140); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 165); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 269); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 274); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 366); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 478); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 531); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 589); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 643); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 652); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 663); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 863); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (20, 977); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 142); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 429); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 497); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 507); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 733); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 798); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 804); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (21, 983); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 23); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 294); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 349); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 430); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 483); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 495); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 634); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 742); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (22, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 78); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 116); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 419); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 435); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 449); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 804); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 855); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 935); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (23, 997); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 3); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 83); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 126); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 277); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 335); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 405); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 653); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 704); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (24, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 21); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 213); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 404); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 583); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 755); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 871); INSERT INTO film_actor (actor_id, film_id) VALUES (25, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 21); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 93); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 147); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 201); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 225); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 327); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 329); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 390); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 392); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 544); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 682); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 715); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 821); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 904); INSERT INTO film_actor (actor_id, film_id) VALUES (26, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 150); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 334); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 477); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 586); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 682); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 695); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 805); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 854); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 873); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 904); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 986); INSERT INTO film_actor (actor_id, film_id) VALUES (27, 996); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 14); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 259); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 287); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 532); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 652); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 743); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 790); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 793); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 816); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (28, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 79); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 110); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 131); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 282); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 335); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 444); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 449); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 482); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 488); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 547); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 646); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 723); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (29, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 69); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 77); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 318); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 357); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 565); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 797); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (30, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 163); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 308); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 368); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 380); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 739); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 793); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (31, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 65); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 309); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 523); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 651); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 667); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 669); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (32, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 214); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 252); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 667); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 735); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 878); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 881); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 972); INSERT INTO film_actor (actor_id, film_id) VALUES (33, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 182); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 244); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 389); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 438); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 493); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 525); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 668); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 720); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 836); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 929); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 950); INSERT INTO film_actor (actor_id, film_id) VALUES (34, 971); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 201); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 389); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 589); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 707); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (35, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 81); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 171); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 283); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 380); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 387); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 390); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 493); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 569); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 715); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 716); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 875); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 931); INSERT INTO film_actor (actor_id, film_id) VALUES (36, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 277); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 317); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 477); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 555); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 662); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 663); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 900); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 963); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 989); INSERT INTO film_actor (actor_id, film_id) VALUES (37, 997); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 24); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 160); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 176); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 274); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 335); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 501); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 516); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 547); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 583); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 793); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (38, 876); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 71); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 73); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 168); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 222); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 290); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 293); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 425); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 456); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 476); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 559); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 598); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 683); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 696); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 736); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 831); INSERT INTO film_actor (actor_id, film_id) VALUES (39, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 11); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 128); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 163); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 394); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 723); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 747); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 799); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 933); INSERT INTO film_actor (actor_id, film_id) VALUES (40, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 4); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 60); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 69); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 100); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 150); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 230); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 252); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 544); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 596); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 657); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 678); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 721); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 724); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 799); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (41, 942); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 24); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 139); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 309); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 333); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 535); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 546); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 687); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 798); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 861); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 865); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 867); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 876); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 890); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 907); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 922); INSERT INTO film_actor (actor_id, film_id) VALUES (42, 932); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 147); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 180); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 276); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 330); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 344); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 377); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 533); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 598); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 621); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 753); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 917); INSERT INTO film_actor (actor_id, film_id) VALUES (43, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 94); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 176); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 434); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 591); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 598); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 604); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 699); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 751); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 825); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 854); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 875); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 878); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 883); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 896); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 902); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 937); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 982); INSERT INTO film_actor (actor_id, film_id) VALUES (44, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 18); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 65); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 115); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 198); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 330); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 416); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 767); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 797); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 810); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 900); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 901); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 975); INSERT INTO film_actor (actor_id, film_id) VALUES (45, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 38); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 174); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 319); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 456); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 478); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 836); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (46, 991); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 36); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 351); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 670); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 770); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 787); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 790); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 913); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (47, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 99); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 101); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 134); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 150); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 211); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 287); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 295); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 315); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 349); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 559); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 599); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 645); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 792); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 922); INSERT INTO film_actor (actor_id, film_id) VALUES (48, 926); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 31); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 151); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 195); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 282); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 400); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 558); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 595); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 662); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 716); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 927); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 977); INSERT INTO film_actor (actor_id, film_id) VALUES (49, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 274); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 288); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 327); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 476); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 504); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 552); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 591); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 621); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 632); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 645); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 897); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 918); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (50, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 5); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 408); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 461); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 525); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 627); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 678); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 733); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 891); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 940); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 974); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (51, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 92); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 108); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 376); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 388); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 424); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 596); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 664); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 675); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 878); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 951); INSERT INTO film_actor (actor_id, film_id) VALUES (52, 999); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 126); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 181); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 285); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 465); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 577); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 727); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 937); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 947); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 961); INSERT INTO film_actor (actor_id, film_id) VALUES (53, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 150); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 184); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 285); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 510); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 524); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 546); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 861); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 913); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (54, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 8); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 75); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 620); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 776); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 790); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (55, 963); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 236); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 298); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 354); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 844); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 851); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 936); INSERT INTO film_actor (actor_id, film_id) VALUES (56, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 16); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 101); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 114); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 134); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 192); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 213); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 317); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 502); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 685); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 707); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 767); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 891); INSERT INTO film_actor (actor_id, film_id) VALUES (57, 918); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 68); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 128); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 316); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 460); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 477); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 578); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 632); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 638); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 698); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 755); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 800); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (58, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 5); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 46); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 130); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 183); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 210); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 295); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 749); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 943); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 946); INSERT INTO film_actor (actor_id, film_id) VALUES (59, 984); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 31); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 142); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 222); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 334); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 376); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 493); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 534); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 783); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 805); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 971); INSERT INTO film_actor (actor_id, film_id) VALUES (60, 986); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 535); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 767); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 831); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (61, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 100); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 101); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 198); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 211); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 272); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 295); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 337); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 375); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 406); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 413); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 465); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 707); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 951); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (62, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 73); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 134); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 167); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 225); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 278); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 392); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 633); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 763); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 932); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (63, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 3); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 37); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 124); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 335); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 471); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 557); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 569); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 646); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 860); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (64, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 46); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 97); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 106); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 158); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 276); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 371); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 471); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 476); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 516); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 556); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 577); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 683); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 735); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 951); INSERT INTO film_actor (actor_id, film_id) VALUES (65, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 55); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 143); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 229); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 230); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 283); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 300); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 350); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 376); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 424); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 434); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 676); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 793); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 871); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 951); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 960); INSERT INTO film_actor (actor_id, film_id) VALUES (66, 999); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 24); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 244); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 408); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 477); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 601); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 861); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 972); INSERT INTO film_actor (actor_id, film_id) VALUES (67, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 45); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 205); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 213); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 315); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 325); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 331); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 357); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 380); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 435); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 497); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 671); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 747); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (68, 971); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 202); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 236); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 300); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 720); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 722); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 791); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (69, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 50); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 92); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 202); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 227); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 290); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 304); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 504); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 823); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (70, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 26); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 317); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 399); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 532); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 638); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 773); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 918); INSERT INTO film_actor (actor_id, film_id) VALUES (71, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 325); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 331); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 405); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 550); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 609); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 623); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 640); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 743); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 773); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 854); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 865); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (72, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 36); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 45); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 77); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 275); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 562); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 565); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 627); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 666); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 667); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 707); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 823); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 936); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 946); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 950); INSERT INTO film_actor (actor_id, film_id) VALUES (73, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 28); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 44); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 185); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 192); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 617); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 663); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 704); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 720); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 747); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 804); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 836); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 848); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 902); INSERT INTO film_actor (actor_id, film_id) VALUES (74, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 143); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 222); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 498); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 547); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 645); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 667); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (75, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 60); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 68); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 95); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 234); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 251); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 444); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 464); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 498); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 604); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 760); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 765); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 850); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 866); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 935); INSERT INTO film_actor (actor_id, film_id) VALUES (76, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 13); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 22); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 73); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 78); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 224); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 240); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 261); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 442); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 749); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 943); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 963); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (77, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 261); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 265); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 387); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 552); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 599); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 670); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 762); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 767); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 963); INSERT INTO film_actor (actor_id, film_id) VALUES (78, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 32); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 205); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 230); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 269); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 430); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 634); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 646); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 727); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 753); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 776); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (79, 916); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 69); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 124); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 687); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 888); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 941); INSERT INTO film_actor (actor_id, film_id) VALUES (80, 979); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 4); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 11); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 59); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 232); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 304); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 332); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 389); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 465); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 578); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 613); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 643); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (81, 910); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 104); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 143); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 247); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 290); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 316); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 344); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 497); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 787); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 911); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 954); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (82, 985); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 110); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 165); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 247); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 279); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 412); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 655); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 873); INSERT INTO film_actor (actor_id, film_id) VALUES (83, 932); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 46); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 290); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 317); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 413); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 460); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 479); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 589); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 646); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 843); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 975); INSERT INTO film_actor (actor_id, film_id) VALUES (84, 996); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 2); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 14); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 92); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 216); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 290); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 337); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 461); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 478); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 558); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 591); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 630); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 678); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 711); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 875); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (85, 960); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 137); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 163); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 196); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 216); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 331); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 432); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 482); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 623); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 760); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 808); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 857); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 878); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 905); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (86, 929); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 157); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 599); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 721); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (87, 961); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 4); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 76); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 128); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 234); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 304); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 620); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 668); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 819); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 881); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 929); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 940); INSERT INTO film_actor (actor_id, film_id) VALUES (88, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 182); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 266); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 406); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 488); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (89, 976); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 2); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 11); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 100); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 330); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 363); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 384); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 406); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 442); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 451); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 586); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 633); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 663); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 676); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 855); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 901); INSERT INTO film_actor (actor_id, film_id) VALUES (90, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 13); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 176); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 181); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 335); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 416); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 493); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 511); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 859); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 941); INSERT INTO film_actor (actor_id, film_id) VALUES (91, 982); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 94); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 104); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 123); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 137); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 229); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 443); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 470); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 547); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 662); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 699); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 825); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 929); INSERT INTO film_actor (actor_id, film_id) VALUES (92, 991); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 71); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 124); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 325); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 621); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 678); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 699); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 916); INSERT INTO film_actor (actor_id, film_id) VALUES (93, 982); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 13); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 60); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 76); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 228); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 270); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 275); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 337); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 354); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 402); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 533); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 724); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 950); INSERT INTO film_actor (actor_id, film_id) VALUES (94, 989); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 22); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 65); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 126); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 294); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 329); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 375); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 424); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 498); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 546); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 627); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 690); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 813); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 855); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 903); INSERT INTO film_actor (actor_id, film_id) VALUES (95, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 8); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 36); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 134); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 209); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 244); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 430); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (96, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 143); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 641); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 656); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 755); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 933); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 947); INSERT INTO film_actor (actor_id, film_id) VALUES (97, 951); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 81); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 183); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 634); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 721); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 765); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 824); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 955); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 985); INSERT INTO film_actor (actor_id, film_id) VALUES (98, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 7); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 325); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 490); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 620); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 741); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 796); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (99, 982); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 563); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 759); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 850); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 979); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 991); INSERT INTO film_actor (actor_id, film_id) VALUES (100, 992); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 60); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 189); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 275); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 511); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 617); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 655); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 662); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 774); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 787); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 841); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 932); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 936); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 941); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 984); INSERT INTO film_actor (actor_id, film_id) VALUES (101, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 123); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 124); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 200); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 205); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 329); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 334); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 351); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 526); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 544); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 624); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 796); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 810); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 837); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 845); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 979); INSERT INTO film_actor (actor_id, film_id) VALUES (102, 980); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 5); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 130); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 221); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 271); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 285); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 315); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 318); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 333); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 356); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 360); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 609); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 643); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 735); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 822); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 903); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 942); INSERT INTO film_actor (actor_id, film_id) VALUES (103, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 19); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 59); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 70); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 156); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 184); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 198); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 259); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 287); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 309); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 313); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 394); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 516); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 583); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 657); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 677); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 739); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 904); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 926); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 984); INSERT INTO film_actor (actor_id, film_id) VALUES (104, 999); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 21); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 116); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 158); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 283); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 315); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 333); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 377); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 558); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 750); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 831); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 910); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 954); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (105, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 44); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 83); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 108); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 126); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 189); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 229); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 365); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 399); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 439); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 559); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 585); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 675); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 687); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 763); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 866); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 881); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (106, 934); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 62); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 138); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 165); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 209); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 220); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 277); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 388); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 392); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 409); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 430); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 445); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 454); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 534); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 774); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 796); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 831); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 859); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 905); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (107, 977); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 137); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 278); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 302); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 350); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 495); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 507); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 652); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 655); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 696); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 721); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 733); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 741); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (108, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 77); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 157); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 174); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 657); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 753); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 786); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 863); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 955); INSERT INTO film_actor (actor_id, film_id) VALUES (109, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 8); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 62); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 126); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 156); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 360); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 435); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 525); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 801); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 961); INSERT INTO film_actor (actor_id, film_id) VALUES (110, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 61); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 78); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 98); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 325); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 382); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 555); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 643); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 669); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 699); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (111, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 37); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 151); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 173); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 443); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 565); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 666); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 796); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 865); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (112, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 116); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 181); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 218); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 292); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 525); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 656); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 700); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 723); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 838); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 890); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (113, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 13); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 68); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 210); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 425); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 841); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 861); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 866); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 913); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 961); INSERT INTO film_actor (actor_id, film_id) VALUES (114, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 246); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 277); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 302); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 531); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 671); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 740); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 955); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 985); INSERT INTO film_actor (actor_id, film_id) VALUES (115, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 36); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 128); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 384); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 412); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 451); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 481); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 647); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 653); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 742); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 844); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 939); INSERT INTO film_actor (actor_id, film_id) VALUES (116, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 167); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 224); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 246); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 298); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 316); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 337); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 432); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 459); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 550); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 578); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 707); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 739); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 783); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 797); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 831); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (117, 926); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 41); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 55); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 151); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 384); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 399); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 558); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 572); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 641); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 656); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 695); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 735); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (118, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 21); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 143); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 171); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 173); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 394); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 412); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 454); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 614); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 751); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 786); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 900); INSERT INTO film_actor (actor_id, film_id) VALUES (119, 939); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 149); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 424); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 641); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 682); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 715); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 722); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 746); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 898); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 911); INSERT INTO film_actor (actor_id, film_id) VALUES (120, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 198); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 220); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 222); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 284); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 449); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 479); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 633); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 666); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 884); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (121, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 22); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 76); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 83); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 157); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 158); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 227); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 300); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 363); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 470); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 620); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 961); INSERT INTO film_actor (actor_id, film_id) VALUES (122, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 3); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 151); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 185); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 234); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 245); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 246); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 266); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 429); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 442); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 479); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 503); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 577); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 589); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 730); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 786); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 860); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 926); INSERT INTO film_actor (actor_id, film_id) VALUES (123, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 22); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 106); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 113); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 246); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 449); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 601); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 742); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 814); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 882); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (124, 997); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 62); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 98); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 100); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 114); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 324); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 428); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 429); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 497); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 557); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 623); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 664); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 683); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 949); INSERT INTO film_actor (actor_id, film_id) VALUES (125, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 21); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 288); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 317); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 419); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 685); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 836); INSERT INTO film_actor (actor_id, film_id) VALUES (126, 860); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 36); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 79); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 157); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 202); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 333); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 354); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 366); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 382); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 388); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 459); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 613); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 617); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 641); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 727); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 749); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 763); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 791); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 819); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 911); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (127, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 26); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 82); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 168); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 516); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 614); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 671); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 696); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 759); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 774); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 814); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 899); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 949); INSERT INTO film_actor (actor_id, film_id) VALUES (128, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 101); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 202); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 230); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 247); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 348); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 471); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 640); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 669); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 684); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 805); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 857); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 910); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (129, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 26); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 37); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 375); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 416); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 478); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 507); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 525); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 725); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (130, 981); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 48); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 94); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 147); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 432); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 436); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 479); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 647); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 770); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 798); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 875); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 881); INSERT INTO film_actor (actor_id, film_id) VALUES (131, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 81); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 82); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 156); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 377); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 562); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 586); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 698); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 756); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 897); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 899); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 904); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (132, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 7); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 172); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 210); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 270); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 280); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 351); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 368); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 390); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 397); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 514); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 594); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 652); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 727); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 882); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 933); INSERT INTO film_actor (actor_id, film_id) VALUES (133, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 132); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 145); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 278); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 413); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 558); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 624); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 655); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 683); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 690); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 861); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 896); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 897); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 915); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 927); INSERT INTO film_actor (actor_id, film_id) VALUES (134, 936); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 41); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 65); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 269); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 357); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 455); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 814); INSERT INTO film_actor (actor_id, film_id) VALUES (135, 905); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 61); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 214); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 229); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 256); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 271); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 288); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 300); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 552); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 620); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 686); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 808); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 818); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 933); INSERT INTO film_actor (actor_id, film_id) VALUES (136, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 14); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 96); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 160); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 224); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 268); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 304); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 390); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 530); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 610); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 745); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 841); INSERT INTO film_actor (actor_id, film_id) VALUES (137, 917); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 8); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 61); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 157); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 214); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 376); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 453); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 553); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 583); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 627); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 695); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 747); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 970); INSERT INTO film_actor (actor_id, film_id) VALUES (138, 989); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 181); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 200); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 229); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 261); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 266); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 282); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 284); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 373); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 605); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 746); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (139, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 77); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 112); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 185); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 373); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 498); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 599); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 647); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 670); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 730); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 736); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 742); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 857); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 934); INSERT INTO film_actor (actor_id, film_id) VALUES (140, 999); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 380); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 589); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 740); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 787); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 821); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 829); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 863); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (141, 992); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 18); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 139); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 199); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 328); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 350); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 371); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 470); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 481); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 501); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 504); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 575); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 712); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 735); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 759); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 859); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 863); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 875); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (142, 999); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 79); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 232); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 316); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 404); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 497); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 603); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 613); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 660); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 687); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 690); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 792); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 821); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 878); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (143, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 18); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 79); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 99); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 123); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 127); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 130); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 184); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 216); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 228); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 260); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 272); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 293); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 393); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 504); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 540); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 599); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 668); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 702); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 753); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 762); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 776); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 845); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (144, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 293); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 402); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 409); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 457); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 487); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 629); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 641); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 664); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 822); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 893); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (145, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 16); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 207); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 218); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 278); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 314); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 384); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 402); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 429); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 514); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 591); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 720); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 731); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 871); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 922); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 955); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (146, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 4); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 131); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 139); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 145); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 251); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 254); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 295); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 298); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 310); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 318); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 333); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 351); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 394); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 402); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 405); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 443); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 563); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 708); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (147, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 133); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 149); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 226); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 368); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 422); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 633); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 718); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (148, 792); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 95); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 118); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 139); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 169); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 354); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 365); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 670); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 685); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 782); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 810); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 899); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 905); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 913); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 947); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 949); INSERT INTO film_actor (actor_id, film_id) VALUES (149, 992); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 23); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 75); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 94); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 105); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 168); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 270); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 285); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 386); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 446); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 629); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 647); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 697); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 728); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 854); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 873); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 887); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (150, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 131); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 167); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 232); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 382); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 451); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 482); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 501); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 527); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 634); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 703); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 895); INSERT INTO film_actor (actor_id, film_id) VALUES (151, 989); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 59); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 318); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 332); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 476); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 578); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 611); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 821); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 846); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 891); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 898); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 927); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 964); INSERT INTO film_actor (actor_id, film_id) VALUES (152, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 136); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 180); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 203); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 231); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 444); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 476); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 480); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 627); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 756); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 766); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (153, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 158); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 169); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 170); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 274); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 276); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 282); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 314); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 399); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 440); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 698); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 954); INSERT INTO film_actor (actor_id, film_id) VALUES (154, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 128); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 153); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 220); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 312); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 383); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 387); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 407); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 459); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 513); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 630); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 890); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 941); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 987); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 997); INSERT INTO film_actor (actor_id, film_id) VALUES (155, 1000); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 53); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 198); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 244); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 263); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 285); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 349); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 467); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 504); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 646); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 754); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (156, 844); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 24); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 183); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 210); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 217); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 321); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 400); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 406); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 535); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 604); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 696); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 713); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 835); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 913); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (157, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 32); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 47); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 66); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 102); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 177); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 178); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 293); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 483); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 532); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 555); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 581); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 601); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 799); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 812); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 824); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 840); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 896); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (158, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 20); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 82); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 127); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 343); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 344); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 600); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 789); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 800); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 818); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 876); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 907); INSERT INTO film_actor (actor_id, film_id) VALUES (159, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 2); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 242); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 267); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 275); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 368); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 455); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 660); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 755); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 767); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 883); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 950); INSERT INTO film_actor (actor_id, film_id) VALUES (160, 954); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 58); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 90); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 247); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 269); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 281); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 340); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 414); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 425); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 526); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 653); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 655); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 669); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 684); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 749); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 825); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 850); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (161, 927); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 4); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 7); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 18); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 28); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 32); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 41); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 274); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 279); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 409); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 612); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 786); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 844); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 909); INSERT INTO film_actor (actor_id, film_id) VALUES (162, 968); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 30); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 45); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 180); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 239); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 283); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 304); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 307); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 394); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 409); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 434); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 444); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 881); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 891); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 947); INSERT INTO film_actor (actor_id, film_id) VALUES (163, 996); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 23); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 169); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 252); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 324); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 431); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 469); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 610); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 613); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 681); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 698); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 801); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 851); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 884); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 957); INSERT INTO film_actor (actor_id, film_id) VALUES (164, 984); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 95); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 204); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 360); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 375); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 607); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 644); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 798); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 832); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 947); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 948); INSERT INTO film_actor (actor_id, film_id) VALUES (165, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 38); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 55); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 61); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 68); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 306); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 366); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 580); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 867); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 944); INSERT INTO film_actor (actor_id, film_id) VALUES (166, 1000); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 72); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 107); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 120); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 294); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 319); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 339); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 341); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 672); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 717); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 800); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 856); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 882); INSERT INTO film_actor (actor_id, film_id) VALUES (167, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 32); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 56); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 92); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 115); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 196); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 241); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 255); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 305); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 387); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 438); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 602); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 619); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 626); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 652); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 678); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 685); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 804); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 826); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 841); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 889); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 927); INSERT INTO film_actor (actor_id, film_id) VALUES (168, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 78); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 93); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 246); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 248); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 326); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 349); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 372); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 398); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 434); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 505); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 634); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 727); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 894); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 897); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 954); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 992); INSERT INTO film_actor (actor_id, film_id) VALUES (169, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 7); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 15); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 102); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 139); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 180); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 184); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 212); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 299); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 416); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 877); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (170, 996); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 181); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 318); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 342); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 397); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 447); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 466); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 608); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 645); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 701); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 898); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 903); INSERT INTO film_actor (actor_id, film_id) VALUES (171, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 57); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 100); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 148); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 302); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 345); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 368); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 385); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 487); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 493); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 567); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 609); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 667); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 710); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 771); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (172, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 55); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 80); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 106); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 154); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 313); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 405); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 491); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 550); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 564); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 688); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 753); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 757); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 857); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 928); INSERT INTO film_actor (actor_id, film_id) VALUES (173, 933); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 11); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 61); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 168); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 298); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 352); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 442); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 451); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 496); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 610); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 659); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 677); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 722); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 780); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 797); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (174, 982); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 190); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 191); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 405); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 424); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 439); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 442); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 483); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 591); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 596); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 616); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 778); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 842); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 890); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 977); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 978); INSERT INTO film_actor (actor_id, film_id) VALUES (175, 998); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 13); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 73); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 89); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 150); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 162); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 238); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 252); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 320); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 441); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 461); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 521); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 573); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 699); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 740); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 746); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 839); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 859); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (176, 946); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 52); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 55); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 175); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 188); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 235); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 363); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 401); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 433); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 458); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 543); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 563); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 683); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 684); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 726); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 751); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 763); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 764); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 910); INSERT INTO film_actor (actor_id, film_id) VALUES (177, 956); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 30); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 34); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 160); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 194); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 197); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 273); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 397); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 483); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 708); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 733); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 762); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 930); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 974); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 983); INSERT INTO film_actor (actor_id, film_id) VALUES (178, 1000); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 24); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 27); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 65); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 85); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 131); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 193); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 250); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 353); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 463); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 468); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 489); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 698); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 737); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 852); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 931); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 960); INSERT INTO film_actor (actor_id, film_id) VALUES (179, 976); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 12); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 195); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 441); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 609); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 657); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 724); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 732); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 777); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 809); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 811); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 824); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 847); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 955); INSERT INTO film_actor (actor_id, film_id) VALUES (180, 963); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 5); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 74); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 78); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 83); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 152); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 195); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 233); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 381); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 387); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 409); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 456); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 507); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 539); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 542); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 546); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 596); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 604); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 609); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 744); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 816); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 836); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 868); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 870); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 907); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 911); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 921); INSERT INTO film_actor (actor_id, film_id) VALUES (181, 991); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 33); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 160); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 301); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 324); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 346); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 362); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 391); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 413); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 421); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 590); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 639); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 668); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 677); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 695); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 720); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 819); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 845); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 864); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 940); INSERT INTO film_actor (actor_id, film_id) VALUES (182, 990); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 32); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 40); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 71); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 113); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 313); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 388); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 389); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 390); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 495); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 636); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 715); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 850); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 862); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 941); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 949); INSERT INTO film_actor (actor_id, film_id) VALUES (183, 983); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 35); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 169); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 221); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 336); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 371); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 452); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 500); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 574); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 580); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 640); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 642); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 650); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 661); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 684); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 745); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 772); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 787); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 867); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 966); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (184, 985); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 7); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 95); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 138); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 265); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 286); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 360); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 427); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 437); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 448); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 510); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 518); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 571); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 584); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 631); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 665); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 694); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 730); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 761); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 818); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 845); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 880); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 882); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 920); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 965); INSERT INTO film_actor (actor_id, film_id) VALUES (185, 973); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 95); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 187); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 208); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 228); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 237); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 422); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 482); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 508); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 552); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 579); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 637); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 648); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 654); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 729); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 983); INSERT INTO film_actor (actor_id, film_id) VALUES (186, 994); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 17); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 25); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 73); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 76); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 98); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 110); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 127); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 168); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 222); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 224); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 297); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 354); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 417); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 435); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 441); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 561); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 617); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 625); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 664); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 671); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 768); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 779); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 923); INSERT INTO film_actor (actor_id, film_id) VALUES (187, 976); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 10); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 14); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 51); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 102); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 111); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 146); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 206); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 223); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 289); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 322); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 338); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 396); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 412); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 506); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 517); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 529); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 566); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 593); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 662); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 770); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 773); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 774); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 925); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 988); INSERT INTO film_actor (actor_id, film_id) VALUES (188, 989); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 43); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 82); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 171); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 266); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 272); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 315); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 492); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 509); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 512); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 519); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 533); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 548); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 734); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 748); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 788); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 820); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 853); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 882); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 896); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 899); INSERT INTO film_actor (actor_id, film_id) VALUES (189, 940); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 38); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 54); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 62); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 87); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 173); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 234); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 253); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 278); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 310); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 374); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 411); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 472); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 549); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 562); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 606); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 623); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 679); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 682); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 693); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 695); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 705); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 708); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 802); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 874); INSERT INTO film_actor (actor_id, film_id) VALUES (190, 959); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 16); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 39); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 185); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 219); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 293); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 296); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 378); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 410); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 420); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 461); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 544); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 551); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 596); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 638); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 668); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 692); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 775); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 801); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 819); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 827); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 830); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 849); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 914); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 969); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 971); INSERT INTO film_actor (actor_id, film_id) VALUES (191, 993); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 16); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 69); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 117); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 155); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 166); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 179); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 214); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 367); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 426); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 465); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 470); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 475); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 485); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 578); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 614); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 618); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 622); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 674); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 677); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 680); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 682); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 708); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 711); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 747); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 763); INSERT INTO film_actor (actor_id, film_id) VALUES (192, 819); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 44); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 80); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 103); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 119); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 291); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 352); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 358); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 376); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 412); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 709); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 745); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 807); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 828); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 834); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 851); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 937); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (193, 960); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 9); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 42); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 86); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 88); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 98); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 135); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 161); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 163); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 215); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 232); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 352); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 415); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 486); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 498); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 531); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 719); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 786); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 872); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 938); INSERT INTO film_actor (actor_id, film_id) VALUES (194, 940); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 130); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 141); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 144); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 298); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 359); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 361); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 392); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 403); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 494); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 520); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 534); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 592); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 649); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 658); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 673); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 677); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 706); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 738); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 781); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 794); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 813); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 869); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 885); INSERT INTO film_actor (actor_id, film_id) VALUES (195, 962); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 64); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 122); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 156); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 169); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 276); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 284); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 324); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 423); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 473); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 484); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 515); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 524); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 560); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 575); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 576); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 587); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 615); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 635); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 684); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 795); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 833); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 837); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 906); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 908); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 919); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 939); INSERT INTO film_actor (actor_id, film_id) VALUES (196, 972); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 6); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 29); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 63); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 123); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 129); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 147); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 164); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 189); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 243); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 249); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 258); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 364); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 369); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 370); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 418); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 522); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 531); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 554); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 598); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 691); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 724); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 746); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 752); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 769); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 815); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 916); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 950); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 967); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 974); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 979); INSERT INTO film_actor (actor_id, film_id) VALUES (197, 995); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 1); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 109); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 125); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 186); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 262); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 264); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 303); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 309); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 311); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 329); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 347); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 379); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 395); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 406); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 450); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 464); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 482); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 499); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 536); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 545); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 555); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 568); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 570); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 588); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 597); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 628); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 745); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 758); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 796); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 806); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 817); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 843); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 858); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 871); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 892); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 924); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 952); INSERT INTO film_actor (actor_id, film_id) VALUES (198, 997); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 67); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 84); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 145); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 159); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 216); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 432); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 541); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 604); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 640); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 689); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 730); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 784); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 785); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 886); INSERT INTO film_actor (actor_id, film_id) VALUES (199, 953); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 5); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 49); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 80); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 116); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 121); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 149); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 346); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 419); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 462); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 465); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 474); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 537); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 538); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 544); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 714); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 879); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 912); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 945); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 958); INSERT INTO film_actor (actor_id, film_id) VALUES (200, 993); INSERT INTO film_category (film_id, category_id) VALUES (1, 6); INSERT INTO film_category (film_id, category_id) VALUES (2, 11); INSERT INTO film_category (film_id, category_id) VALUES (3, 6); INSERT INTO film_category (film_id, category_id) VALUES (4, 11); INSERT INTO film_category (film_id, category_id) VALUES (5, 8); INSERT INTO film_category (film_id, category_id) VALUES (6, 9); INSERT INTO film_category (film_id, category_id) VALUES (7, 5); INSERT INTO film_category (film_id, category_id) VALUES (8, 11); INSERT INTO film_category (film_id, category_id) VALUES (9, 11); INSERT INTO film_category (film_id, category_id) VALUES (10, 15); INSERT INTO film_category (film_id, category_id) VALUES (11, 9); INSERT INTO film_category (film_id, category_id) VALUES (12, 12); INSERT INTO film_category (film_id, category_id) VALUES (13, 11); INSERT INTO film_category (film_id, category_id) VALUES (14, 4); INSERT INTO film_category (film_id, category_id) VALUES (15, 9); INSERT INTO film_category (film_id, category_id) VALUES (16, 9); INSERT INTO film_category (film_id, category_id) VALUES (17, 12); INSERT INTO film_category (film_id, category_id) VALUES (18, 2); INSERT INTO film_category (film_id, category_id) VALUES (19, 1); INSERT INTO film_category (film_id, category_id) VALUES (20, 12); INSERT INTO film_category (film_id, category_id) VALUES (21, 1); INSERT INTO film_category (film_id, category_id) VALUES (22, 13); INSERT INTO film_category (film_id, category_id) VALUES (23, 2); INSERT INTO film_category (film_id, category_id) VALUES (24, 11); INSERT INTO film_category (film_id, category_id) VALUES (25, 13); INSERT INTO film_category (film_id, category_id) VALUES (26, 14); INSERT INTO film_category (film_id, category_id) VALUES (27, 15); INSERT INTO film_category (film_id, category_id) VALUES (28, 5); INSERT INTO film_category (film_id, category_id) VALUES (29, 1); INSERT INTO film_category (film_id, category_id) VALUES (30, 11); INSERT INTO film_category (film_id, category_id) VALUES (31, 8); INSERT INTO film_category (film_id, category_id) VALUES (32, 13); INSERT INTO film_category (film_id, category_id) VALUES (33, 7); INSERT INTO film_category (film_id, category_id) VALUES (34, 11); INSERT INTO film_category (film_id, category_id) VALUES (35, 11); INSERT INTO film_category (film_id, category_id) VALUES (36, 2); INSERT INTO film_category (film_id, category_id) VALUES (37, 4); INSERT INTO film_category (film_id, category_id) VALUES (38, 1); INSERT INTO film_category (film_id, category_id) VALUES (39, 14); INSERT INTO film_category (film_id, category_id) VALUES (40, 6); INSERT INTO film_category (film_id, category_id) VALUES (41, 16); INSERT INTO film_category (film_id, category_id) VALUES (42, 15); INSERT INTO film_category (film_id, category_id) VALUES (43, 8); INSERT INTO film_category (film_id, category_id) VALUES (44, 14); INSERT INTO film_category (film_id, category_id) VALUES (45, 13); INSERT INTO film_category (film_id, category_id) VALUES (46, 10); INSERT INTO film_category (film_id, category_id) VALUES (47, 9); INSERT INTO film_category (film_id, category_id) VALUES (48, 3); INSERT INTO film_category (film_id, category_id) VALUES (49, 14); INSERT INTO film_category (film_id, category_id) VALUES (50, 8); INSERT INTO film_category (film_id, category_id) VALUES (51, 12); INSERT INTO film_category (film_id, category_id) VALUES (52, 9); INSERT INTO film_category (film_id, category_id) VALUES (53, 8); INSERT INTO film_category (film_id, category_id) VALUES (54, 12); INSERT INTO film_category (film_id, category_id) VALUES (55, 14); INSERT INTO film_category (film_id, category_id) VALUES (56, 1); INSERT INTO film_category (film_id, category_id) VALUES (57, 16); INSERT INTO film_category (film_id, category_id) VALUES (58, 6); INSERT INTO film_category (film_id, category_id) VALUES (59, 3); INSERT INTO film_category (film_id, category_id) VALUES (60, 4); INSERT INTO film_category (film_id, category_id) VALUES (61, 7); INSERT INTO film_category (film_id, category_id) VALUES (62, 6); INSERT INTO film_category (film_id, category_id) VALUES (63, 8); INSERT INTO film_category (film_id, category_id) VALUES (64, 7); INSERT INTO film_category (film_id, category_id) VALUES (65, 11); INSERT INTO film_category (film_id, category_id) VALUES (66, 3); INSERT INTO film_category (film_id, category_id) VALUES (67, 1); INSERT INTO film_category (film_id, category_id) VALUES (68, 3); INSERT INTO film_category (film_id, category_id) VALUES (69, 14); INSERT INTO film_category (film_id, category_id) VALUES (70, 2); INSERT INTO film_category (film_id, category_id) VALUES (71, 8); INSERT INTO film_category (film_id, category_id) VALUES (72, 6); INSERT INTO film_category (film_id, category_id) VALUES (73, 14); INSERT INTO film_category (film_id, category_id) VALUES (74, 12); INSERT INTO film_category (film_id, category_id) VALUES (75, 16); INSERT INTO film_category (film_id, category_id) VALUES (76, 12); INSERT INTO film_category (film_id, category_id) VALUES (77, 13); INSERT INTO film_category (film_id, category_id) VALUES (78, 2); INSERT INTO film_category (film_id, category_id) VALUES (79, 7); INSERT INTO film_category (film_id, category_id) VALUES (80, 8); INSERT INTO film_category (film_id, category_id) VALUES (81, 14); INSERT INTO film_category (film_id, category_id) VALUES (82, 8); INSERT INTO film_category (film_id, category_id) VALUES (83, 8); INSERT INTO film_category (film_id, category_id) VALUES (84, 16); INSERT INTO film_category (film_id, category_id) VALUES (85, 6); INSERT INTO film_category (film_id, category_id) VALUES (86, 12); INSERT INTO film_category (film_id, category_id) VALUES (87, 16); INSERT INTO film_category (film_id, category_id) VALUES (88, 16); INSERT INTO film_category (film_id, category_id) VALUES (89, 2); INSERT INTO film_category (film_id, category_id) VALUES (90, 13); INSERT INTO film_category (film_id, category_id) VALUES (91, 4); INSERT INTO film_category (film_id, category_id) VALUES (92, 11); INSERT INTO film_category (film_id, category_id) VALUES (93, 13); INSERT INTO film_category (film_id, category_id) VALUES (94, 8); INSERT INTO film_category (film_id, category_id) VALUES (95, 13); INSERT INTO film_category (film_id, category_id) VALUES (96, 13); INSERT INTO film_category (film_id, category_id) VALUES (97, 1); INSERT INTO film_category (film_id, category_id) VALUES (98, 7); INSERT INTO film_category (film_id, category_id) VALUES (99, 5); INSERT INTO film_category (film_id, category_id) VALUES (100, 9); INSERT INTO film_category (film_id, category_id) VALUES (101, 6); INSERT INTO film_category (film_id, category_id) VALUES (102, 15); INSERT INTO film_category (film_id, category_id) VALUES (103, 16); INSERT INTO film_category (film_id, category_id) VALUES (104, 9); INSERT INTO film_category (film_id, category_id) VALUES (105, 1); INSERT INTO film_category (film_id, category_id) VALUES (106, 10); INSERT INTO film_category (film_id, category_id) VALUES (107, 7); INSERT INTO film_category (film_id, category_id) VALUES (108, 13); INSERT INTO film_category (film_id, category_id) VALUES (109, 13); INSERT INTO film_category (film_id, category_id) VALUES (110, 3); INSERT INTO film_category (film_id, category_id) VALUES (111, 1); INSERT INTO film_category (film_id, category_id) VALUES (112, 9); INSERT INTO film_category (film_id, category_id) VALUES (113, 15); INSERT INTO film_category (film_id, category_id) VALUES (114, 14); INSERT INTO film_category (film_id, category_id) VALUES (115, 1); INSERT INTO film_category (film_id, category_id) VALUES (116, 4); INSERT INTO film_category (film_id, category_id) VALUES (117, 10); INSERT INTO film_category (film_id, category_id) VALUES (118, 2); INSERT INTO film_category (film_id, category_id) VALUES (119, 5); INSERT INTO film_category (film_id, category_id) VALUES (120, 15); INSERT INTO film_category (film_id, category_id) VALUES (121, 2); INSERT INTO film_category (film_id, category_id) VALUES (122, 11); INSERT INTO film_category (film_id, category_id) VALUES (123, 16); INSERT INTO film_category (film_id, category_id) VALUES (124, 3); INSERT INTO film_category (film_id, category_id) VALUES (125, 16); INSERT INTO film_category (film_id, category_id) VALUES (126, 1); INSERT INTO film_category (film_id, category_id) VALUES (127, 5); INSERT INTO film_category (film_id, category_id) VALUES (128, 9); INSERT INTO film_category (film_id, category_id) VALUES (129, 6); INSERT INTO film_category (film_id, category_id) VALUES (130, 1); INSERT INTO film_category (film_id, category_id) VALUES (131, 4); INSERT INTO film_category (film_id, category_id) VALUES (132, 14); INSERT INTO film_category (film_id, category_id) VALUES (133, 12); INSERT INTO film_category (film_id, category_id) VALUES (134, 2); INSERT INTO film_category (film_id, category_id) VALUES (135, 15); INSERT INTO film_category (film_id, category_id) VALUES (136, 13); INSERT INTO film_category (film_id, category_id) VALUES (137, 14); INSERT INTO film_category (film_id, category_id) VALUES (138, 14); INSERT INTO film_category (film_id, category_id) VALUES (139, 8); INSERT INTO film_category (film_id, category_id) VALUES (140, 14); INSERT INTO film_category (film_id, category_id) VALUES (141, 10); INSERT INTO film_category (film_id, category_id) VALUES (142, 6); INSERT INTO film_category (film_id, category_id) VALUES (143, 7); INSERT INTO film_category (film_id, category_id) VALUES (144, 13); INSERT INTO film_category (film_id, category_id) VALUES (145, 8); INSERT INTO film_category (film_id, category_id) VALUES (146, 7); INSERT INTO film_category (film_id, category_id) VALUES (147, 8); INSERT INTO film_category (film_id, category_id) VALUES (148, 9); INSERT INTO film_category (film_id, category_id) VALUES (149, 3); INSERT INTO film_category (film_id, category_id) VALUES (150, 6); INSERT INTO film_category (film_id, category_id) VALUES (151, 14); INSERT INTO film_category (film_id, category_id) VALUES (152, 3); INSERT INTO film_category (film_id, category_id) VALUES (153, 14); INSERT INTO film_category (film_id, category_id) VALUES (154, 2); INSERT INTO film_category (film_id, category_id) VALUES (155, 13); INSERT INTO film_category (film_id, category_id) VALUES (156, 6); INSERT INTO film_category (film_id, category_id) VALUES (157, 3); INSERT INTO film_category (film_id, category_id) VALUES (158, 12); INSERT INTO film_category (film_id, category_id) VALUES (159, 5); INSERT INTO film_category (film_id, category_id) VALUES (160, 2); INSERT INTO film_category (film_id, category_id) VALUES (161, 12); INSERT INTO film_category (film_id, category_id) VALUES (162, 1); INSERT INTO film_category (film_id, category_id) VALUES (163, 13); INSERT INTO film_category (film_id, category_id) VALUES (164, 6); INSERT INTO film_category (film_id, category_id) VALUES (165, 14); INSERT INTO film_category (film_id, category_id) VALUES (166, 4); INSERT INTO film_category (film_id, category_id) VALUES (167, 16); INSERT INTO film_category (film_id, category_id) VALUES (168, 3); INSERT INTO film_category (film_id, category_id) VALUES (169, 16); INSERT INTO film_category (film_id, category_id) VALUES (170, 9); INSERT INTO film_category (film_id, category_id) VALUES (171, 11); INSERT INTO film_category (film_id, category_id) VALUES (172, 7); INSERT INTO film_category (film_id, category_id) VALUES (173, 7); INSERT INTO film_category (film_id, category_id) VALUES (174, 12); INSERT INTO film_category (film_id, category_id) VALUES (175, 8); INSERT INTO film_category (film_id, category_id) VALUES (176, 15); INSERT INTO film_category (film_id, category_id) VALUES (177, 14); INSERT INTO film_category (film_id, category_id) VALUES (178, 5); INSERT INTO film_category (film_id, category_id) VALUES (179, 7); INSERT INTO film_category (film_id, category_id) VALUES (180, 4); INSERT INTO film_category (film_id, category_id) VALUES (181, 16); INSERT INTO film_category (film_id, category_id) VALUES (182, 5); INSERT INTO film_category (film_id, category_id) VALUES (183, 8); INSERT INTO film_category (film_id, category_id) VALUES (184, 4); INSERT INTO film_category (film_id, category_id) VALUES (185, 9); INSERT INTO film_category (film_id, category_id) VALUES (186, 7); INSERT INTO film_category (film_id, category_id) VALUES (187, 15); INSERT INTO film_category (film_id, category_id) VALUES (188, 5); INSERT INTO film_category (film_id, category_id) VALUES (189, 10); INSERT INTO film_category (film_id, category_id) VALUES (190, 4); INSERT INTO film_category (film_id, category_id) VALUES (191, 3); INSERT INTO film_category (film_id, category_id) VALUES (192, 9); INSERT INTO film_category (film_id, category_id) VALUES (193, 2); INSERT INTO film_category (film_id, category_id) VALUES (194, 1); INSERT INTO film_category (film_id, category_id) VALUES (195, 14); INSERT INTO film_category (film_id, category_id) VALUES (196, 4); INSERT INTO film_category (film_id, category_id) VALUES (197, 15); INSERT INTO film_category (film_id, category_id) VALUES (198, 9); INSERT INTO film_category (film_id, category_id) VALUES (199, 6); INSERT INTO film_category (film_id, category_id) VALUES (200, 10); INSERT INTO film_category (film_id, category_id) VALUES (201, 9); INSERT INTO film_category (film_id, category_id) VALUES (202, 5); INSERT INTO film_category (film_id, category_id) VALUES (203, 14); INSERT INTO film_category (film_id, category_id) VALUES (204, 7); INSERT INTO film_category (film_id, category_id) VALUES (205, 1); INSERT INTO film_category (film_id, category_id) VALUES (206, 6); INSERT INTO film_category (film_id, category_id) VALUES (207, 9); INSERT INTO film_category (film_id, category_id) VALUES (208, 2); INSERT INTO film_category (film_id, category_id) VALUES (209, 7); INSERT INTO film_category (film_id, category_id) VALUES (210, 1); INSERT INTO film_category (film_id, category_id) VALUES (211, 10); INSERT INTO film_category (film_id, category_id) VALUES (212, 1); INSERT INTO film_category (film_id, category_id) VALUES (213, 8); INSERT INTO film_category (film_id, category_id) VALUES (214, 3); INSERT INTO film_category (film_id, category_id) VALUES (215, 10); INSERT INTO film_category (film_id, category_id) VALUES (216, 13); INSERT INTO film_category (film_id, category_id) VALUES (217, 10); INSERT INTO film_category (film_id, category_id) VALUES (218, 7); INSERT INTO film_category (film_id, category_id) VALUES (219, 6); INSERT INTO film_category (film_id, category_id) VALUES (220, 12); INSERT INTO film_category (film_id, category_id) VALUES (221, 6); INSERT INTO film_category (film_id, category_id) VALUES (222, 11); INSERT INTO film_category (film_id, category_id) VALUES (223, 2); INSERT INTO film_category (film_id, category_id) VALUES (224, 16); INSERT INTO film_category (film_id, category_id) VALUES (225, 7); INSERT INTO film_category (film_id, category_id) VALUES (226, 13); INSERT INTO film_category (film_id, category_id) VALUES (227, 10); INSERT INTO film_category (film_id, category_id) VALUES (228, 4); INSERT INTO film_category (film_id, category_id) VALUES (229, 1); INSERT INTO film_category (film_id, category_id) VALUES (230, 7); INSERT INTO film_category (film_id, category_id) VALUES (231, 8); INSERT INTO film_category (film_id, category_id) VALUES (232, 10); INSERT INTO film_category (film_id, category_id) VALUES (233, 16); INSERT INTO film_category (film_id, category_id) VALUES (234, 14); INSERT INTO film_category (film_id, category_id) VALUES (235, 14); INSERT INTO film_category (film_id, category_id) VALUES (236, 10); INSERT INTO film_category (film_id, category_id) VALUES (237, 15); INSERT INTO film_category (film_id, category_id) VALUES (238, 3); INSERT INTO film_category (film_id, category_id) VALUES (239, 2); INSERT INTO film_category (film_id, category_id) VALUES (240, 14); INSERT INTO film_category (film_id, category_id) VALUES (241, 2); INSERT INTO film_category (film_id, category_id) VALUES (242, 5); INSERT INTO film_category (film_id, category_id) VALUES (243, 2); INSERT INTO film_category (film_id, category_id) VALUES (244, 12); INSERT INTO film_category (film_id, category_id) VALUES (245, 2); INSERT INTO film_category (film_id, category_id) VALUES (246, 9); INSERT INTO film_category (film_id, category_id) VALUES (247, 5); INSERT INTO film_category (film_id, category_id) VALUES (248, 6); INSERT INTO film_category (film_id, category_id) VALUES (249, 4); INSERT INTO film_category (film_id, category_id) VALUES (250, 1); INSERT INTO film_category (film_id, category_id) VALUES (251, 13); INSERT INTO film_category (film_id, category_id) VALUES (252, 1); INSERT INTO film_category (film_id, category_id) VALUES (253, 1); INSERT INTO film_category (film_id, category_id) VALUES (254, 15); INSERT INTO film_category (film_id, category_id) VALUES (255, 12); INSERT INTO film_category (film_id, category_id) VALUES (256, 15); INSERT INTO film_category (film_id, category_id) VALUES (257, 16); INSERT INTO film_category (film_id, category_id) VALUES (258, 11); INSERT INTO film_category (film_id, category_id) VALUES (259, 2); INSERT INTO film_category (film_id, category_id) VALUES (260, 15); INSERT INTO film_category (film_id, category_id) VALUES (261, 6); INSERT INTO film_category (film_id, category_id) VALUES (262, 8); INSERT INTO film_category (film_id, category_id) VALUES (263, 15); INSERT INTO film_category (film_id, category_id) VALUES (264, 10); INSERT INTO film_category (film_id, category_id) VALUES (265, 5); INSERT INTO film_category (film_id, category_id) VALUES (266, 4); INSERT INTO film_category (film_id, category_id) VALUES (267, 13); INSERT INTO film_category (film_id, category_id) VALUES (268, 2); INSERT INTO film_category (film_id, category_id) VALUES (269, 8); INSERT INTO film_category (film_id, category_id) VALUES (270, 13); INSERT INTO film_category (film_id, category_id) VALUES (271, 1); INSERT INTO film_category (film_id, category_id) VALUES (272, 7); INSERT INTO film_category (film_id, category_id) VALUES (273, 8); INSERT INTO film_category (film_id, category_id) VALUES (274, 6); INSERT INTO film_category (film_id, category_id) VALUES (275, 11); INSERT INTO film_category (film_id, category_id) VALUES (276, 5); INSERT INTO film_category (film_id, category_id) VALUES (277, 11); INSERT INTO film_category (film_id, category_id) VALUES (278, 12); INSERT INTO film_category (film_id, category_id) VALUES (279, 15); INSERT INTO film_category (film_id, category_id) VALUES (280, 3); INSERT INTO film_category (film_id, category_id) VALUES (281, 10); INSERT INTO film_category (film_id, category_id) VALUES (282, 7); INSERT INTO film_category (film_id, category_id) VALUES (283, 13); INSERT INTO film_category (film_id, category_id) VALUES (284, 12); INSERT INTO film_category (film_id, category_id) VALUES (285, 14); INSERT INTO film_category (film_id, category_id) VALUES (286, 16); INSERT INTO film_category (film_id, category_id) VALUES (287, 1); INSERT INTO film_category (film_id, category_id) VALUES (288, 16); INSERT INTO film_category (film_id, category_id) VALUES (289, 13); INSERT INTO film_category (film_id, category_id) VALUES (290, 9); INSERT INTO film_category (film_id, category_id) VALUES (291, 15); INSERT INTO film_category (film_id, category_id) VALUES (292, 1); INSERT INTO film_category (film_id, category_id) VALUES (293, 15); INSERT INTO film_category (film_id, category_id) VALUES (294, 16); INSERT INTO film_category (film_id, category_id) VALUES (295, 6); INSERT INTO film_category (film_id, category_id) VALUES (296, 14); INSERT INTO film_category (film_id, category_id) VALUES (297, 4); INSERT INTO film_category (film_id, category_id) VALUES (298, 14); INSERT INTO film_category (film_id, category_id) VALUES (299, 16); INSERT INTO film_category (film_id, category_id) VALUES (300, 2); INSERT INTO film_category (film_id, category_id) VALUES (301, 11); INSERT INTO film_category (film_id, category_id) VALUES (302, 10); INSERT INTO film_category (film_id, category_id) VALUES (303, 1); INSERT INTO film_category (film_id, category_id) VALUES (304, 3); INSERT INTO film_category (film_id, category_id) VALUES (305, 13); INSERT INTO film_category (film_id, category_id) VALUES (306, 10); INSERT INTO film_category (film_id, category_id) VALUES (307, 16); INSERT INTO film_category (film_id, category_id) VALUES (308, 5); INSERT INTO film_category (film_id, category_id) VALUES (309, 8); INSERT INTO film_category (film_id, category_id) VALUES (310, 10); INSERT INTO film_category (film_id, category_id) VALUES (311, 9); INSERT INTO film_category (film_id, category_id) VALUES (312, 14); INSERT INTO film_category (film_id, category_id) VALUES (313, 11); INSERT INTO film_category (film_id, category_id) VALUES (314, 2); INSERT INTO film_category (film_id, category_id) VALUES (315, 8); INSERT INTO film_category (film_id, category_id) VALUES (316, 10); INSERT INTO film_category (film_id, category_id) VALUES (317, 5); INSERT INTO film_category (film_id, category_id) VALUES (318, 1); INSERT INTO film_category (film_id, category_id) VALUES (319, 14); INSERT INTO film_category (film_id, category_id) VALUES (320, 13); INSERT INTO film_category (film_id, category_id) VALUES (321, 13); INSERT INTO film_category (film_id, category_id) VALUES (322, 15); INSERT INTO film_category (film_id, category_id) VALUES (323, 15); INSERT INTO film_category (film_id, category_id) VALUES (324, 5); INSERT INTO film_category (film_id, category_id) VALUES (325, 2); INSERT INTO film_category (film_id, category_id) VALUES (326, 2); INSERT INTO film_category (film_id, category_id) VALUES (327, 1); INSERT INTO film_category (film_id, category_id) VALUES (328, 3); INSERT INTO film_category (film_id, category_id) VALUES (329, 1); INSERT INTO film_category (film_id, category_id) VALUES (330, 2); INSERT INTO film_category (film_id, category_id) VALUES (331, 10); INSERT INTO film_category (film_id, category_id) VALUES (332, 5); INSERT INTO film_category (film_id, category_id) VALUES (333, 12); INSERT INTO film_category (film_id, category_id) VALUES (334, 11); INSERT INTO film_category (film_id, category_id) VALUES (335, 5); INSERT INTO film_category (film_id, category_id) VALUES (336, 6); INSERT INTO film_category (film_id, category_id) VALUES (337, 9); INSERT INTO film_category (film_id, category_id) VALUES (338, 14); INSERT INTO film_category (film_id, category_id) VALUES (339, 16); INSERT INTO film_category (film_id, category_id) VALUES (340, 13); INSERT INTO film_category (film_id, category_id) VALUES (341, 4); INSERT INTO film_category (film_id, category_id) VALUES (342, 16); INSERT INTO film_category (film_id, category_id) VALUES (343, 3); INSERT INTO film_category (film_id, category_id) VALUES (344, 3); INSERT INTO film_category (film_id, category_id) VALUES (345, 8); INSERT INTO film_category (film_id, category_id) VALUES (346, 4); INSERT INTO film_category (film_id, category_id) VALUES (347, 16); INSERT INTO film_category (film_id, category_id) VALUES (348, 8); INSERT INTO film_category (film_id, category_id) VALUES (349, 2); INSERT INTO film_category (film_id, category_id) VALUES (350, 14); INSERT INTO film_category (film_id, category_id) VALUES (351, 11); INSERT INTO film_category (film_id, category_id) VALUES (352, 10); INSERT INTO film_category (film_id, category_id) VALUES (353, 9); INSERT INTO film_category (film_id, category_id) VALUES (354, 3); INSERT INTO film_category (film_id, category_id) VALUES (355, 2); INSERT INTO film_category (film_id, category_id) VALUES (356, 3); INSERT INTO film_category (film_id, category_id) VALUES (357, 4); INSERT INTO film_category (film_id, category_id) VALUES (358, 4); INSERT INTO film_category (film_id, category_id) VALUES (359, 8); INSERT INTO film_category (film_id, category_id) VALUES (360, 1); INSERT INTO film_category (film_id, category_id) VALUES (361, 15); INSERT INTO film_category (film_id, category_id) VALUES (362, 10); INSERT INTO film_category (film_id, category_id) VALUES (363, 12); INSERT INTO film_category (film_id, category_id) VALUES (364, 13); INSERT INTO film_category (film_id, category_id) VALUES (365, 5); INSERT INTO film_category (film_id, category_id) VALUES (366, 7); INSERT INTO film_category (film_id, category_id) VALUES (367, 14); INSERT INTO film_category (film_id, category_id) VALUES (368, 7); INSERT INTO film_category (film_id, category_id) VALUES (369, 14); INSERT INTO film_category (film_id, category_id) VALUES (370, 3); INSERT INTO film_category (film_id, category_id) VALUES (371, 1); INSERT INTO film_category (film_id, category_id) VALUES (372, 15); INSERT INTO film_category (film_id, category_id) VALUES (373, 3); INSERT INTO film_category (film_id, category_id) VALUES (374, 14); INSERT INTO film_category (film_id, category_id) VALUES (375, 1); INSERT INTO film_category (film_id, category_id) VALUES (376, 9); INSERT INTO film_category (film_id, category_id) VALUES (377, 8); INSERT INTO film_category (film_id, category_id) VALUES (378, 12); INSERT INTO film_category (film_id, category_id) VALUES (379, 7); INSERT INTO film_category (film_id, category_id) VALUES (380, 9); INSERT INTO film_category (film_id, category_id) VALUES (381, 10); INSERT INTO film_category (film_id, category_id) VALUES (382, 10); INSERT INTO film_category (film_id, category_id) VALUES (383, 15); INSERT INTO film_category (film_id, category_id) VALUES (384, 12); INSERT INTO film_category (film_id, category_id) VALUES (385, 5); INSERT INTO film_category (film_id, category_id) VALUES (386, 16); INSERT INTO film_category (film_id, category_id) VALUES (387, 10); INSERT INTO film_category (film_id, category_id) VALUES (388, 5); INSERT INTO film_category (film_id, category_id) VALUES (389, 15); INSERT INTO film_category (film_id, category_id) VALUES (390, 14); INSERT INTO film_category (film_id, category_id) VALUES (391, 8); INSERT INTO film_category (film_id, category_id) VALUES (392, 3); INSERT INTO film_category (film_id, category_id) VALUES (393, 6); INSERT INTO film_category (film_id, category_id) VALUES (394, 14); INSERT INTO film_category (film_id, category_id) VALUES (395, 1); INSERT INTO film_category (film_id, category_id) VALUES (396, 7); INSERT INTO film_category (film_id, category_id) VALUES (397, 14); INSERT INTO film_category (film_id, category_id) VALUES (398, 12); INSERT INTO film_category (film_id, category_id) VALUES (399, 9); INSERT INTO film_category (film_id, category_id) VALUES (400, 6); INSERT INTO film_category (film_id, category_id) VALUES (401, 7); INSERT INTO film_category (film_id, category_id) VALUES (402, 2); INSERT INTO film_category (film_id, category_id) VALUES (403, 7); INSERT INTO film_category (film_id, category_id) VALUES (404, 5); INSERT INTO film_category (film_id, category_id) VALUES (405, 16); INSERT INTO film_category (film_id, category_id) VALUES (406, 10); INSERT INTO film_category (film_id, category_id) VALUES (407, 6); INSERT INTO film_category (film_id, category_id) VALUES (408, 10); INSERT INTO film_category (film_id, category_id) VALUES (409, 3); INSERT INTO film_category (film_id, category_id) VALUES (410, 5); INSERT INTO film_category (film_id, category_id) VALUES (411, 12); INSERT INTO film_category (film_id, category_id) VALUES (412, 6); INSERT INTO film_category (film_id, category_id) VALUES (413, 5); INSERT INTO film_category (film_id, category_id) VALUES (414, 9); INSERT INTO film_category (film_id, category_id) VALUES (415, 11); INSERT INTO film_category (film_id, category_id) VALUES (416, 9); INSERT INTO film_category (film_id, category_id) VALUES (417, 1); INSERT INTO film_category (film_id, category_id) VALUES (418, 7); INSERT INTO film_category (film_id, category_id) VALUES (419, 8); INSERT INTO film_category (film_id, category_id) VALUES (420, 15); INSERT INTO film_category (film_id, category_id) VALUES (421, 9); INSERT INTO film_category (film_id, category_id) VALUES (422, 14); INSERT INTO film_category (film_id, category_id) VALUES (423, 3); INSERT INTO film_category (film_id, category_id) VALUES (424, 3); INSERT INTO film_category (film_id, category_id) VALUES (425, 4); INSERT INTO film_category (film_id, category_id) VALUES (426, 12); INSERT INTO film_category (film_id, category_id) VALUES (427, 6); INSERT INTO film_category (film_id, category_id) VALUES (428, 8); INSERT INTO film_category (film_id, category_id) VALUES (429, 15); INSERT INTO film_category (film_id, category_id) VALUES (430, 2); INSERT INTO film_category (film_id, category_id) VALUES (431, 9); INSERT INTO film_category (film_id, category_id) VALUES (432, 4); INSERT INTO film_category (film_id, category_id) VALUES (433, 2); INSERT INTO film_category (film_id, category_id) VALUES (434, 16); INSERT INTO film_category (film_id, category_id) VALUES (435, 9); INSERT INTO film_category (film_id, category_id) VALUES (436, 13); INSERT INTO film_category (film_id, category_id) VALUES (437, 8); INSERT INTO film_category (film_id, category_id) VALUES (438, 10); INSERT INTO film_category (film_id, category_id) VALUES (439, 7); INSERT INTO film_category (film_id, category_id) VALUES (440, 9); INSERT INTO film_category (film_id, category_id) VALUES (441, 6); INSERT INTO film_category (film_id, category_id) VALUES (442, 8); INSERT INTO film_category (film_id, category_id) VALUES (443, 5); INSERT INTO film_category (film_id, category_id) VALUES (444, 5); INSERT INTO film_category (film_id, category_id) VALUES (445, 4); INSERT INTO film_category (film_id, category_id) VALUES (446, 15); INSERT INTO film_category (film_id, category_id) VALUES (447, 10); INSERT INTO film_category (film_id, category_id) VALUES (448, 13); INSERT INTO film_category (film_id, category_id) VALUES (449, 14); INSERT INTO film_category (film_id, category_id) VALUES (450, 3); INSERT INTO film_category (film_id, category_id) VALUES (451, 16); INSERT INTO film_category (film_id, category_id) VALUES (452, 9); INSERT INTO film_category (film_id, category_id) VALUES (453, 15); INSERT INTO film_category (film_id, category_id) VALUES (454, 12); INSERT INTO film_category (film_id, category_id) VALUES (455, 9); INSERT INTO film_category (film_id, category_id) VALUES (456, 2); INSERT INTO film_category (film_id, category_id) VALUES (457, 6); INSERT INTO film_category (film_id, category_id) VALUES (458, 8); INSERT INTO film_category (film_id, category_id) VALUES (459, 9); INSERT INTO film_category (film_id, category_id) VALUES (460, 9); INSERT INTO film_category (film_id, category_id) VALUES (461, 2); INSERT INTO film_category (film_id, category_id) VALUES (462, 12); INSERT INTO film_category (film_id, category_id) VALUES (463, 15); INSERT INTO film_category (film_id, category_id) VALUES (464, 2); INSERT INTO film_category (film_id, category_id) VALUES (465, 13); INSERT INTO film_category (film_id, category_id) VALUES (466, 6); INSERT INTO film_category (film_id, category_id) VALUES (467, 9); INSERT INTO film_category (film_id, category_id) VALUES (468, 3); INSERT INTO film_category (film_id, category_id) VALUES (469, 4); INSERT INTO film_category (film_id, category_id) VALUES (470, 2); INSERT INTO film_category (film_id, category_id) VALUES (471, 4); INSERT INTO film_category (film_id, category_id) VALUES (472, 16); INSERT INTO film_category (film_id, category_id) VALUES (473, 7); INSERT INTO film_category (film_id, category_id) VALUES (474, 15); INSERT INTO film_category (film_id, category_id) VALUES (475, 11); INSERT INTO film_category (film_id, category_id) VALUES (476, 8); INSERT INTO film_category (film_id, category_id) VALUES (477, 12); INSERT INTO film_category (film_id, category_id) VALUES (478, 5); INSERT INTO film_category (film_id, category_id) VALUES (479, 8); INSERT INTO film_category (film_id, category_id) VALUES (480, 4); INSERT INTO film_category (film_id, category_id) VALUES (481, 13); INSERT INTO film_category (film_id, category_id) VALUES (482, 4); INSERT INTO film_category (film_id, category_id) VALUES (483, 10); INSERT INTO film_category (film_id, category_id) VALUES (484, 4); INSERT INTO film_category (film_id, category_id) VALUES (485, 3); INSERT INTO film_category (film_id, category_id) VALUES (486, 9); INSERT INTO film_category (film_id, category_id) VALUES (487, 4); INSERT INTO film_category (film_id, category_id) VALUES (488, 15); INSERT INTO film_category (film_id, category_id) VALUES (489, 2); INSERT INTO film_category (film_id, category_id) VALUES (490, 13); INSERT INTO film_category (film_id, category_id) VALUES (491, 3); INSERT INTO film_category (film_id, category_id) VALUES (492, 13); INSERT INTO film_category (film_id, category_id) VALUES (493, 9); INSERT INTO film_category (film_id, category_id) VALUES (494, 11); INSERT INTO film_category (film_id, category_id) VALUES (495, 11); INSERT INTO film_category (film_id, category_id) VALUES (496, 16); INSERT INTO film_category (film_id, category_id) VALUES (497, 6); INSERT INTO film_category (film_id, category_id) VALUES (498, 8); INSERT INTO film_category (film_id, category_id) VALUES (499, 8); INSERT INTO film_category (film_id, category_id) VALUES (500, 9); INSERT INTO film_category (film_id, category_id) VALUES (501, 1); INSERT INTO film_category (film_id, category_id) VALUES (502, 5); INSERT INTO film_category (film_id, category_id) VALUES (503, 15); INSERT INTO film_category (film_id, category_id) VALUES (504, 7); INSERT INTO film_category (film_id, category_id) VALUES (505, 3); INSERT INTO film_category (film_id, category_id) VALUES (506, 11); INSERT INTO film_category (film_id, category_id) VALUES (507, 10); INSERT INTO film_category (film_id, category_id) VALUES (508, 10); INSERT INTO film_category (film_id, category_id) VALUES (509, 3); INSERT INTO film_category (film_id, category_id) VALUES (510, 2); INSERT INTO film_category (film_id, category_id) VALUES (511, 1); INSERT INTO film_category (film_id, category_id) VALUES (512, 4); INSERT INTO film_category (film_id, category_id) VALUES (513, 16); INSERT INTO film_category (film_id, category_id) VALUES (514, 7); INSERT INTO film_category (film_id, category_id) VALUES (515, 3); INSERT INTO film_category (film_id, category_id) VALUES (516, 12); INSERT INTO film_category (film_id, category_id) VALUES (517, 15); INSERT INTO film_category (film_id, category_id) VALUES (518, 16); INSERT INTO film_category (film_id, category_id) VALUES (519, 15); INSERT INTO film_category (film_id, category_id) VALUES (520, 14); INSERT INTO film_category (film_id, category_id) VALUES (521, 7); INSERT INTO film_category (film_id, category_id) VALUES (522, 5); INSERT INTO film_category (film_id, category_id) VALUES (523, 4); INSERT INTO film_category (film_id, category_id) VALUES (524, 5); INSERT INTO film_category (film_id, category_id) VALUES (525, 4); INSERT INTO film_category (film_id, category_id) VALUES (526, 16); INSERT INTO film_category (film_id, category_id) VALUES (527, 11); INSERT INTO film_category (film_id, category_id) VALUES (528, 8); INSERT INTO film_category (film_id, category_id) VALUES (529, 5); INSERT INTO film_category (film_id, category_id) VALUES (530, 1); INSERT INTO film_category (film_id, category_id) VALUES (531, 9); INSERT INTO film_category (film_id, category_id) VALUES (532, 15); INSERT INTO film_category (film_id, category_id) VALUES (533, 9); INSERT INTO film_category (film_id, category_id) VALUES (534, 8); INSERT INTO film_category (film_id, category_id) VALUES (535, 11); INSERT INTO film_category (film_id, category_id) VALUES (536, 4); INSERT INTO film_category (film_id, category_id) VALUES (537, 4); INSERT INTO film_category (film_id, category_id) VALUES (538, 13); INSERT INTO film_category (film_id, category_id) VALUES (539, 7); INSERT INTO film_category (film_id, category_id) VALUES (540, 12); INSERT INTO film_category (film_id, category_id) VALUES (541, 2); INSERT INTO film_category (film_id, category_id) VALUES (542, 1); INSERT INTO film_category (film_id, category_id) VALUES (543, 16); INSERT INTO film_category (film_id, category_id) VALUES (544, 6); INSERT INTO film_category (film_id, category_id) VALUES (545, 9); INSERT INTO film_category (film_id, category_id) VALUES (546, 10); INSERT INTO film_category (film_id, category_id) VALUES (547, 3); INSERT INTO film_category (film_id, category_id) VALUES (548, 4); INSERT INTO film_category (film_id, category_id) VALUES (549, 1); INSERT INTO film_category (film_id, category_id) VALUES (550, 8); INSERT INTO film_category (film_id, category_id) VALUES (551, 13); INSERT INTO film_category (film_id, category_id) VALUES (552, 6); INSERT INTO film_category (film_id, category_id) VALUES (553, 3); INSERT INTO film_category (film_id, category_id) VALUES (554, 4); INSERT INTO film_category (film_id, category_id) VALUES (555, 5); INSERT INTO film_category (film_id, category_id) VALUES (556, 10); INSERT INTO film_category (film_id, category_id) VALUES (557, 8); INSERT INTO film_category (film_id, category_id) VALUES (558, 13); INSERT INTO film_category (film_id, category_id) VALUES (559, 14); INSERT INTO film_category (film_id, category_id) VALUES (560, 10); INSERT INTO film_category (film_id, category_id) VALUES (561, 13); INSERT INTO film_category (film_id, category_id) VALUES (562, 12); INSERT INTO film_category (film_id, category_id) VALUES (563, 10); INSERT INTO film_category (film_id, category_id) VALUES (564, 2); INSERT INTO film_category (film_id, category_id) VALUES (565, 9); INSERT INTO film_category (film_id, category_id) VALUES (566, 9); INSERT INTO film_category (film_id, category_id) VALUES (567, 9); INSERT INTO film_category (film_id, category_id) VALUES (568, 5); INSERT INTO film_category (film_id, category_id) VALUES (569, 2); INSERT INTO film_category (film_id, category_id) VALUES (570, 15); INSERT INTO film_category (film_id, category_id) VALUES (571, 6); INSERT INTO film_category (film_id, category_id) VALUES (572, 14); INSERT INTO film_category (film_id, category_id) VALUES (573, 3); INSERT INTO film_category (film_id, category_id) VALUES (574, 1); INSERT INTO film_category (film_id, category_id) VALUES (575, 6); INSERT INTO film_category (film_id, category_id) VALUES (576, 6); INSERT INTO film_category (film_id, category_id) VALUES (577, 15); INSERT INTO film_category (film_id, category_id) VALUES (578, 4); INSERT INTO film_category (film_id, category_id) VALUES (579, 1); INSERT INTO film_category (film_id, category_id) VALUES (580, 13); INSERT INTO film_category (film_id, category_id) VALUES (581, 12); INSERT INTO film_category (film_id, category_id) VALUES (582, 2); INSERT INTO film_category (film_id, category_id) VALUES (583, 2); INSERT INTO film_category (film_id, category_id) VALUES (584, 9); INSERT INTO film_category (film_id, category_id) VALUES (585, 7); INSERT INTO film_category (film_id, category_id) VALUES (586, 1); INSERT INTO film_category (film_id, category_id) VALUES (587, 6); INSERT INTO film_category (film_id, category_id) VALUES (588, 3); INSERT INTO film_category (film_id, category_id) VALUES (589, 6); INSERT INTO film_category (film_id, category_id) VALUES (590, 13); INSERT INTO film_category (film_id, category_id) VALUES (591, 10); INSERT INTO film_category (film_id, category_id) VALUES (592, 12); INSERT INTO film_category (film_id, category_id) VALUES (593, 11); INSERT INTO film_category (film_id, category_id) VALUES (594, 1); INSERT INTO film_category (film_id, category_id) VALUES (595, 9); INSERT INTO film_category (film_id, category_id) VALUES (596, 10); INSERT INTO film_category (film_id, category_id) VALUES (597, 10); INSERT INTO film_category (film_id, category_id) VALUES (598, 15); INSERT INTO film_category (film_id, category_id) VALUES (599, 15); INSERT INTO film_category (film_id, category_id) VALUES (600, 11); INSERT INTO film_category (film_id, category_id) VALUES (601, 16); INSERT INTO film_category (film_id, category_id) VALUES (602, 14); INSERT INTO film_category (film_id, category_id) VALUES (603, 8); INSERT INTO film_category (film_id, category_id) VALUES (604, 5); INSERT INTO film_category (film_id, category_id) VALUES (605, 9); INSERT INTO film_category (film_id, category_id) VALUES (606, 15); INSERT INTO film_category (film_id, category_id) VALUES (607, 9); INSERT INTO film_category (film_id, category_id) VALUES (608, 3); INSERT INTO film_category (film_id, category_id) VALUES (609, 16); INSERT INTO film_category (film_id, category_id) VALUES (610, 8); INSERT INTO film_category (film_id, category_id) VALUES (611, 4); INSERT INTO film_category (film_id, category_id) VALUES (612, 15); INSERT INTO film_category (film_id, category_id) VALUES (613, 5); INSERT INTO film_category (film_id, category_id) VALUES (614, 10); INSERT INTO film_category (film_id, category_id) VALUES (615, 2); INSERT INTO film_category (film_id, category_id) VALUES (616, 6); INSERT INTO film_category (film_id, category_id) VALUES (617, 8); INSERT INTO film_category (film_id, category_id) VALUES (618, 7); INSERT INTO film_category (film_id, category_id) VALUES (619, 15); INSERT INTO film_category (film_id, category_id) VALUES (620, 14); INSERT INTO film_category (film_id, category_id) VALUES (621, 8); INSERT INTO film_category (film_id, category_id) VALUES (622, 6); INSERT INTO film_category (film_id, category_id) VALUES (623, 9); INSERT INTO film_category (film_id, category_id) VALUES (624, 10); INSERT INTO film_category (film_id, category_id) VALUES (625, 14); INSERT INTO film_category (film_id, category_id) VALUES (626, 3); INSERT INTO film_category (film_id, category_id) VALUES (627, 6); INSERT INTO film_category (film_id, category_id) VALUES (628, 15); INSERT INTO film_category (film_id, category_id) VALUES (629, 6); INSERT INTO film_category (film_id, category_id) VALUES (630, 7); INSERT INTO film_category (film_id, category_id) VALUES (631, 15); INSERT INTO film_category (film_id, category_id) VALUES (632, 13); INSERT INTO film_category (film_id, category_id) VALUES (633, 4); INSERT INTO film_category (film_id, category_id) VALUES (634, 8); INSERT INTO film_category (film_id, category_id) VALUES (635, 13); INSERT INTO film_category (film_id, category_id) VALUES (636, 12); INSERT INTO film_category (film_id, category_id) VALUES (637, 14); INSERT INTO film_category (film_id, category_id) VALUES (638, 5); INSERT INTO film_category (film_id, category_id) VALUES (639, 8); INSERT INTO film_category (film_id, category_id) VALUES (640, 9); INSERT INTO film_category (film_id, category_id) VALUES (641, 9); INSERT INTO film_category (film_id, category_id) VALUES (642, 16); INSERT INTO film_category (film_id, category_id) VALUES (643, 7); INSERT INTO film_category (film_id, category_id) VALUES (644, 2); INSERT INTO film_category (film_id, category_id) VALUES (645, 16); INSERT INTO film_category (film_id, category_id) VALUES (646, 10); INSERT INTO film_category (film_id, category_id) VALUES (647, 12); INSERT INTO film_category (film_id, category_id) VALUES (648, 16); INSERT INTO film_category (film_id, category_id) VALUES (649, 2); INSERT INTO film_category (film_id, category_id) VALUES (650, 6); INSERT INTO film_category (film_id, category_id) VALUES (651, 2); INSERT INTO film_category (film_id, category_id) VALUES (652, 4); INSERT INTO film_category (film_id, category_id) VALUES (653, 11); INSERT INTO film_category (film_id, category_id) VALUES (654, 10); INSERT INTO film_category (film_id, category_id) VALUES (655, 14); INSERT INTO film_category (film_id, category_id) VALUES (656, 16); INSERT INTO film_category (film_id, category_id) VALUES (657, 5); INSERT INTO film_category (film_id, category_id) VALUES (658, 11); INSERT INTO film_category (film_id, category_id) VALUES (659, 1); INSERT INTO film_category (film_id, category_id) VALUES (660, 5); INSERT INTO film_category (film_id, category_id) VALUES (661, 9); INSERT INTO film_category (film_id, category_id) VALUES (662, 7); INSERT INTO film_category (film_id, category_id) VALUES (663, 4); INSERT INTO film_category (film_id, category_id) VALUES (664, 1); INSERT INTO film_category (film_id, category_id) VALUES (665, 11); INSERT INTO film_category (film_id, category_id) VALUES (666, 7); INSERT INTO film_category (film_id, category_id) VALUES (667, 15); INSERT INTO film_category (film_id, category_id) VALUES (668, 15); INSERT INTO film_category (film_id, category_id) VALUES (669, 9); INSERT INTO film_category (film_id, category_id) VALUES (670, 6); INSERT INTO film_category (film_id, category_id) VALUES (671, 15); INSERT INTO film_category (film_id, category_id) VALUES (672, 5); INSERT INTO film_category (film_id, category_id) VALUES (673, 12); INSERT INTO film_category (film_id, category_id) VALUES (674, 9); INSERT INTO film_category (film_id, category_id) VALUES (675, 13); INSERT INTO film_category (film_id, category_id) VALUES (676, 15); INSERT INTO film_category (film_id, category_id) VALUES (677, 13); INSERT INTO film_category (film_id, category_id) VALUES (678, 15); INSERT INTO film_category (film_id, category_id) VALUES (679, 8); INSERT INTO film_category (film_id, category_id) VALUES (680, 5); INSERT INTO film_category (film_id, category_id) VALUES (681, 15); INSERT INTO film_category (film_id, category_id) VALUES (682, 8); INSERT INTO film_category (film_id, category_id) VALUES (683, 7); INSERT INTO film_category (film_id, category_id) VALUES (684, 10); INSERT INTO film_category (film_id, category_id) VALUES (685, 13); INSERT INTO film_category (film_id, category_id) VALUES (686, 13); INSERT INTO film_category (film_id, category_id) VALUES (687, 6); INSERT INTO film_category (film_id, category_id) VALUES (688, 3); INSERT INTO film_category (film_id, category_id) VALUES (689, 9); INSERT INTO film_category (film_id, category_id) VALUES (690, 2); INSERT INTO film_category (film_id, category_id) VALUES (691, 15); INSERT INTO film_category (film_id, category_id) VALUES (692, 2); INSERT INTO film_category (film_id, category_id) VALUES (693, 2); INSERT INTO film_category (film_id, category_id) VALUES (694, 4); INSERT INTO film_category (film_id, category_id) VALUES (695, 8); INSERT INTO film_category (film_id, category_id) VALUES (696, 2); INSERT INTO film_category (film_id, category_id) VALUES (697, 1); INSERT INTO film_category (film_id, category_id) VALUES (698, 6); INSERT INTO film_category (film_id, category_id) VALUES (699, 10); INSERT INTO film_category (film_id, category_id) VALUES (700, 8); INSERT INTO film_category (film_id, category_id) VALUES (701, 10); INSERT INTO film_category (film_id, category_id) VALUES (702, 11); INSERT INTO film_category (film_id, category_id) VALUES (703, 2); INSERT INTO film_category (film_id, category_id) VALUES (704, 5); INSERT INTO film_category (film_id, category_id) VALUES (705, 9); INSERT INTO film_category (film_id, category_id) VALUES (706, 7); INSERT INTO film_category (film_id, category_id) VALUES (707, 1); INSERT INTO film_category (film_id, category_id) VALUES (708, 6); INSERT INTO film_category (film_id, category_id) VALUES (709, 7); INSERT INTO film_category (film_id, category_id) VALUES (710, 8); INSERT INTO film_category (film_id, category_id) VALUES (711, 14); INSERT INTO film_category (film_id, category_id) VALUES (712, 6); INSERT INTO film_category (film_id, category_id) VALUES (713, 6); INSERT INTO film_category (film_id, category_id) VALUES (714, 14); INSERT INTO film_category (film_id, category_id) VALUES (715, 8); INSERT INTO film_category (film_id, category_id) VALUES (716, 11); INSERT INTO film_category (film_id, category_id) VALUES (717, 1); INSERT INTO film_category (film_id, category_id) VALUES (718, 12); INSERT INTO film_category (film_id, category_id) VALUES (719, 15); INSERT INTO film_category (film_id, category_id) VALUES (720, 13); INSERT INTO film_category (film_id, category_id) VALUES (721, 12); INSERT INTO film_category (film_id, category_id) VALUES (722, 11); INSERT INTO film_category (film_id, category_id) VALUES (723, 14); INSERT INTO film_category (film_id, category_id) VALUES (724, 8); INSERT INTO film_category (film_id, category_id) VALUES (725, 4); INSERT INTO film_category (film_id, category_id) VALUES (726, 9); INSERT INTO film_category (film_id, category_id) VALUES (727, 8); INSERT INTO film_category (film_id, category_id) VALUES (728, 7); INSERT INTO film_category (film_id, category_id) VALUES (729, 15); INSERT INTO film_category (film_id, category_id) VALUES (730, 13); INSERT INTO film_category (film_id, category_id) VALUES (731, 4); INSERT INTO film_category (film_id, category_id) VALUES (732, 1); INSERT INTO film_category (film_id, category_id) VALUES (733, 15); INSERT INTO film_category (film_id, category_id) VALUES (734, 6); INSERT INTO film_category (film_id, category_id) VALUES (735, 3); INSERT INTO film_category (film_id, category_id) VALUES (736, 8); INSERT INTO film_category (film_id, category_id) VALUES (737, 11); INSERT INTO film_category (film_id, category_id) VALUES (738, 9); INSERT INTO film_category (film_id, category_id) VALUES (739, 7); INSERT INTO film_category (film_id, category_id) VALUES (740, 11); INSERT INTO film_category (film_id, category_id) VALUES (741, 12); INSERT INTO film_category (film_id, category_id) VALUES (742, 10); INSERT INTO film_category (film_id, category_id) VALUES (743, 2); INSERT INTO film_category (film_id, category_id) VALUES (744, 4); INSERT INTO film_category (film_id, category_id) VALUES (745, 15); INSERT INTO film_category (film_id, category_id) VALUES (746, 10); INSERT INTO film_category (film_id, category_id) VALUES (747, 10); INSERT INTO film_category (film_id, category_id) VALUES (748, 1); INSERT INTO film_category (film_id, category_id) VALUES (749, 11); INSERT INTO film_category (film_id, category_id) VALUES (750, 13); INSERT INTO film_category (film_id, category_id) VALUES (751, 13); INSERT INTO film_category (film_id, category_id) VALUES (752, 12); INSERT INTO film_category (film_id, category_id) VALUES (753, 8); INSERT INTO film_category (film_id, category_id) VALUES (754, 5); INSERT INTO film_category (film_id, category_id) VALUES (755, 3); INSERT INTO film_category (film_id, category_id) VALUES (756, 5); INSERT INTO film_category (film_id, category_id) VALUES (757, 6); INSERT INTO film_category (film_id, category_id) VALUES (758, 7); INSERT INTO film_category (film_id, category_id) VALUES (759, 13); INSERT INTO film_category (film_id, category_id) VALUES (760, 13); INSERT INTO film_category (film_id, category_id) VALUES (761, 3); INSERT INTO film_category (film_id, category_id) VALUES (762, 10); INSERT INTO film_category (film_id, category_id) VALUES (763, 15); INSERT INTO film_category (film_id, category_id) VALUES (764, 15); INSERT INTO film_category (film_id, category_id) VALUES (765, 5); INSERT INTO film_category (film_id, category_id) VALUES (766, 7); INSERT INTO film_category (film_id, category_id) VALUES (767, 12); INSERT INTO film_category (film_id, category_id) VALUES (768, 3); INSERT INTO film_category (film_id, category_id) VALUES (769, 9); INSERT INTO film_category (film_id, category_id) VALUES (770, 9); INSERT INTO film_category (film_id, category_id) VALUES (771, 7); INSERT INTO film_category (film_id, category_id) VALUES (772, 7); INSERT INTO film_category (film_id, category_id) VALUES (773, 15); INSERT INTO film_category (film_id, category_id) VALUES (774, 5); INSERT INTO film_category (film_id, category_id) VALUES (775, 7); INSERT INTO film_category (film_id, category_id) VALUES (776, 6); INSERT INTO film_category (film_id, category_id) VALUES (777, 15); INSERT INTO film_category (film_id, category_id) VALUES (778, 8); INSERT INTO film_category (film_id, category_id) VALUES (779, 15); INSERT INTO film_category (film_id, category_id) VALUES (780, 8); INSERT INTO film_category (film_id, category_id) VALUES (781, 10); INSERT INTO film_category (film_id, category_id) VALUES (782, 15); INSERT INTO film_category (film_id, category_id) VALUES (783, 16); INSERT INTO film_category (film_id, category_id) VALUES (784, 16); INSERT INTO film_category (film_id, category_id) VALUES (785, 16); INSERT INTO film_category (film_id, category_id) VALUES (786, 3); INSERT INTO film_category (film_id, category_id) VALUES (787, 16); INSERT INTO film_category (film_id, category_id) VALUES (788, 6); INSERT INTO film_category (film_id, category_id) VALUES (789, 9); INSERT INTO film_category (film_id, category_id) VALUES (790, 7); INSERT INTO film_category (film_id, category_id) VALUES (791, 6); INSERT INTO film_category (film_id, category_id) VALUES (792, 9); INSERT INTO film_category (film_id, category_id) VALUES (793, 1); INSERT INTO film_category (film_id, category_id) VALUES (794, 1); INSERT INTO film_category (film_id, category_id) VALUES (795, 8); INSERT INTO film_category (film_id, category_id) VALUES (796, 15); INSERT INTO film_category (film_id, category_id) VALUES (797, 12); INSERT INTO film_category (film_id, category_id) VALUES (798, 14); INSERT INTO film_category (film_id, category_id) VALUES (799, 11); INSERT INTO film_category (film_id, category_id) VALUES (800, 11); INSERT INTO film_category (film_id, category_id) VALUES (801, 3); INSERT INTO film_category (film_id, category_id) VALUES (802, 1); INSERT INTO film_category (film_id, category_id) VALUES (803, 7); INSERT INTO film_category (film_id, category_id) VALUES (804, 11); INSERT INTO film_category (film_id, category_id) VALUES (805, 2); INSERT INTO film_category (film_id, category_id) VALUES (806, 13); INSERT INTO film_category (film_id, category_id) VALUES (807, 10); INSERT INTO film_category (film_id, category_id) VALUES (808, 4); INSERT INTO film_category (film_id, category_id) VALUES (809, 15); INSERT INTO film_category (film_id, category_id) VALUES (810, 8); INSERT INTO film_category (film_id, category_id) VALUES (811, 16); INSERT INTO film_category (film_id, category_id) VALUES (812, 6); INSERT INTO film_category (film_id, category_id) VALUES (813, 15); INSERT INTO film_category (film_id, category_id) VALUES (814, 5); INSERT INTO film_category (film_id, category_id) VALUES (815, 4); INSERT INTO film_category (film_id, category_id) VALUES (816, 2); INSERT INTO film_category (film_id, category_id) VALUES (817, 14); INSERT INTO film_category (film_id, category_id) VALUES (818, 7); INSERT INTO film_category (film_id, category_id) VALUES (819, 12); INSERT INTO film_category (film_id, category_id) VALUES (820, 2); INSERT INTO film_category (film_id, category_id) VALUES (821, 9); INSERT INTO film_category (film_id, category_id) VALUES (822, 8); INSERT INTO film_category (film_id, category_id) VALUES (823, 1); INSERT INTO film_category (film_id, category_id) VALUES (824, 8); INSERT INTO film_category (film_id, category_id) VALUES (825, 1); INSERT INTO film_category (film_id, category_id) VALUES (826, 16); INSERT INTO film_category (film_id, category_id) VALUES (827, 7); INSERT INTO film_category (film_id, category_id) VALUES (828, 4); INSERT INTO film_category (film_id, category_id) VALUES (829, 8); INSERT INTO film_category (film_id, category_id) VALUES (830, 11); INSERT INTO film_category (film_id, category_id) VALUES (831, 14); INSERT INTO film_category (film_id, category_id) VALUES (832, 8); INSERT INTO film_category (film_id, category_id) VALUES (833, 3); INSERT INTO film_category (film_id, category_id) VALUES (834, 6); INSERT INTO film_category (film_id, category_id) VALUES (835, 10); INSERT INTO film_category (film_id, category_id) VALUES (836, 15); INSERT INTO film_category (film_id, category_id) VALUES (837, 5); INSERT INTO film_category (film_id, category_id) VALUES (838, 1); INSERT INTO film_category (film_id, category_id) VALUES (839, 14); INSERT INTO film_category (film_id, category_id) VALUES (840, 10); INSERT INTO film_category (film_id, category_id) VALUES (841, 15); INSERT INTO film_category (film_id, category_id) VALUES (842, 10); INSERT INTO film_category (film_id, category_id) VALUES (843, 4); INSERT INTO film_category (film_id, category_id) VALUES (844, 15); INSERT INTO film_category (film_id, category_id) VALUES (845, 9); INSERT INTO film_category (film_id, category_id) VALUES (846, 13); INSERT INTO film_category (film_id, category_id) VALUES (847, 13); INSERT INTO film_category (film_id, category_id) VALUES (848, 16); INSERT INTO film_category (film_id, category_id) VALUES (849, 2); INSERT INTO film_category (film_id, category_id) VALUES (850, 1); INSERT INTO film_category (film_id, category_id) VALUES (851, 15); INSERT INTO film_category (film_id, category_id) VALUES (852, 3); INSERT INTO film_category (film_id, category_id) VALUES (853, 3); INSERT INTO film_category (film_id, category_id) VALUES (854, 11); INSERT INTO film_category (film_id, category_id) VALUES (855, 6); INSERT INTO film_category (film_id, category_id) VALUES (856, 11); INSERT INTO film_category (film_id, category_id) VALUES (857, 5); INSERT INTO film_category (film_id, category_id) VALUES (858, 5); INSERT INTO film_category (film_id, category_id) VALUES (859, 2); INSERT INTO film_category (film_id, category_id) VALUES (860, 14); INSERT INTO film_category (film_id, category_id) VALUES (861, 10); INSERT INTO film_category (film_id, category_id) VALUES (862, 4); INSERT INTO film_category (film_id, category_id) VALUES (863, 14); INSERT INTO film_category (film_id, category_id) VALUES (864, 3); INSERT INTO film_category (film_id, category_id) VALUES (865, 2); INSERT INTO film_category (film_id, category_id) VALUES (866, 8); INSERT INTO film_category (film_id, category_id) VALUES (867, 8); INSERT INTO film_category (film_id, category_id) VALUES (868, 16); INSERT INTO film_category (film_id, category_id) VALUES (869, 1); INSERT INTO film_category (film_id, category_id) VALUES (870, 11); INSERT INTO film_category (film_id, category_id) VALUES (871, 5); INSERT INTO film_category (film_id, category_id) VALUES (872, 16); INSERT INTO film_category (film_id, category_id) VALUES (873, 3); INSERT INTO film_category (film_id, category_id) VALUES (874, 4); INSERT INTO film_category (film_id, category_id) VALUES (875, 15); INSERT INTO film_category (film_id, category_id) VALUES (876, 11); INSERT INTO film_category (film_id, category_id) VALUES (877, 12); INSERT INTO film_category (film_id, category_id) VALUES (878, 16); INSERT INTO film_category (film_id, category_id) VALUES (879, 12); INSERT INTO film_category (film_id, category_id) VALUES (880, 2); INSERT INTO film_category (film_id, category_id) VALUES (881, 11); INSERT INTO film_category (film_id, category_id) VALUES (882, 7); INSERT INTO film_category (film_id, category_id) VALUES (883, 3); INSERT INTO film_category (film_id, category_id) VALUES (884, 12); INSERT INTO film_category (film_id, category_id) VALUES (885, 11); INSERT INTO film_category (film_id, category_id) VALUES (886, 2); INSERT INTO film_category (film_id, category_id) VALUES (887, 2); INSERT INTO film_category (film_id, category_id) VALUES (888, 6); INSERT INTO film_category (film_id, category_id) VALUES (889, 3); INSERT INTO film_category (film_id, category_id) VALUES (890, 15); INSERT INTO film_category (film_id, category_id) VALUES (891, 4); INSERT INTO film_category (film_id, category_id) VALUES (892, 2); INSERT INTO film_category (film_id, category_id) VALUES (893, 14); INSERT INTO film_category (film_id, category_id) VALUES (894, 16); INSERT INTO film_category (film_id, category_id) VALUES (895, 4); INSERT INTO film_category (film_id, category_id) VALUES (896, 3); INSERT INTO film_category (film_id, category_id) VALUES (897, 7); INSERT INTO film_category (film_id, category_id) VALUES (898, 15); INSERT INTO film_category (film_id, category_id) VALUES (899, 4); INSERT INTO film_category (film_id, category_id) VALUES (900, 9); INSERT INTO film_category (film_id, category_id) VALUES (901, 2); INSERT INTO film_category (film_id, category_id) VALUES (902, 15); INSERT INTO film_category (film_id, category_id) VALUES (903, 16); INSERT INTO film_category (film_id, category_id) VALUES (904, 11); INSERT INTO film_category (film_id, category_id) VALUES (905, 5); INSERT INTO film_category (film_id, category_id) VALUES (906, 5); INSERT INTO film_category (film_id, category_id) VALUES (907, 7); INSERT INTO film_category (film_id, category_id) VALUES (908, 9); INSERT INTO film_category (film_id, category_id) VALUES (909, 11); INSERT INTO film_category (film_id, category_id) VALUES (910, 7); INSERT INTO film_category (film_id, category_id) VALUES (911, 1); INSERT INTO film_category (film_id, category_id) VALUES (912, 14); INSERT INTO film_category (film_id, category_id) VALUES (913, 13); INSERT INTO film_category (film_id, category_id) VALUES (914, 16); INSERT INTO film_category (film_id, category_id) VALUES (915, 1); INSERT INTO film_category (film_id, category_id) VALUES (916, 2); INSERT INTO film_category (film_id, category_id) VALUES (917, 15); INSERT INTO film_category (film_id, category_id) VALUES (918, 3); INSERT INTO film_category (film_id, category_id) VALUES (919, 10); INSERT INTO film_category (film_id, category_id) VALUES (920, 13); INSERT INTO film_category (film_id, category_id) VALUES (921, 12); INSERT INTO film_category (film_id, category_id) VALUES (922, 11); INSERT INTO film_category (film_id, category_id) VALUES (923, 7); INSERT INTO film_category (film_id, category_id) VALUES (924, 14); INSERT INTO film_category (film_id, category_id) VALUES (925, 6); INSERT INTO film_category (film_id, category_id) VALUES (926, 6); INSERT INTO film_category (film_id, category_id) VALUES (927, 1); INSERT INTO film_category (film_id, category_id) VALUES (928, 3); INSERT INTO film_category (film_id, category_id) VALUES (929, 9); INSERT INTO film_category (film_id, category_id) VALUES (930, 14); INSERT INTO film_category (film_id, category_id) VALUES (931, 16); INSERT INTO film_category (film_id, category_id) VALUES (932, 5); INSERT INTO film_category (film_id, category_id) VALUES (933, 13); INSERT INTO film_category (film_id, category_id) VALUES (934, 10); INSERT INTO film_category (film_id, category_id) VALUES (935, 13); INSERT INTO film_category (film_id, category_id) VALUES (936, 12); INSERT INTO film_category (film_id, category_id) VALUES (937, 13); INSERT INTO film_category (film_id, category_id) VALUES (938, 5); INSERT INTO film_category (film_id, category_id) VALUES (939, 5); INSERT INTO film_category (film_id, category_id) VALUES (940, 15); INSERT INTO film_category (film_id, category_id) VALUES (941, 10); INSERT INTO film_category (film_id, category_id) VALUES (942, 7); INSERT INTO film_category (film_id, category_id) VALUES (943, 6); INSERT INTO film_category (film_id, category_id) VALUES (944, 7); INSERT INTO film_category (film_id, category_id) VALUES (945, 6); INSERT INTO film_category (film_id, category_id) VALUES (946, 8); INSERT INTO film_category (film_id, category_id) VALUES (947, 9); INSERT INTO film_category (film_id, category_id) VALUES (948, 13); INSERT INTO film_category (film_id, category_id) VALUES (949, 10); INSERT INTO film_category (film_id, category_id) VALUES (950, 4); INSERT INTO film_category (film_id, category_id) VALUES (951, 4); INSERT INTO film_category (film_id, category_id) VALUES (952, 6); INSERT INTO film_category (film_id, category_id) VALUES (953, 2); INSERT INTO film_category (film_id, category_id) VALUES (954, 13); INSERT INTO film_category (film_id, category_id) VALUES (955, 3); INSERT INTO film_category (film_id, category_id) VALUES (956, 10); INSERT INTO film_category (film_id, category_id) VALUES (957, 9); INSERT INTO film_category (film_id, category_id) VALUES (958, 7); INSERT INTO film_category (film_id, category_id) VALUES (959, 3); INSERT INTO film_category (film_id, category_id) VALUES (960, 6); INSERT INTO film_category (film_id, category_id) VALUES (961, 9); INSERT INTO film_category (film_id, category_id) VALUES (962, 4); INSERT INTO film_category (film_id, category_id) VALUES (963, 2); INSERT INTO film_category (film_id, category_id) VALUES (964, 1); INSERT INTO film_category (film_id, category_id) VALUES (965, 11); INSERT INTO film_category (film_id, category_id) VALUES (966, 6); INSERT INTO film_category (film_id, category_id) VALUES (967, 14); INSERT INTO film_category (film_id, category_id) VALUES (968, 1); INSERT INTO film_category (film_id, category_id) VALUES (969, 7); INSERT INTO film_category (film_id, category_id) VALUES (970, 4); INSERT INTO film_category (film_id, category_id) VALUES (971, 9); INSERT INTO film_category (film_id, category_id) VALUES (972, 14); INSERT INTO film_category (film_id, category_id) VALUES (973, 6); INSERT INTO film_category (film_id, category_id) VALUES (974, 13); INSERT INTO film_category (film_id, category_id) VALUES (975, 8); INSERT INTO film_category (film_id, category_id) VALUES (976, 10); INSERT INTO film_category (film_id, category_id) VALUES (977, 16); INSERT INTO film_category (film_id, category_id) VALUES (978, 5); INSERT INTO film_category (film_id, category_id) VALUES (979, 7); INSERT INTO film_category (film_id, category_id) VALUES (980, 12); INSERT INTO film_category (film_id, category_id) VALUES (981, 16); INSERT INTO film_category (film_id, category_id) VALUES (982, 1); INSERT INTO film_category (film_id, category_id) VALUES (983, 12); INSERT INTO film_category (film_id, category_id) VALUES (984, 9); INSERT INTO film_category (film_id, category_id) VALUES (985, 14); INSERT INTO film_category (film_id, category_id) VALUES (986, 2); INSERT INTO film_category (film_id, category_id) VALUES (987, 12); INSERT INTO film_category (film_id, category_id) VALUES (988, 16); INSERT INTO film_category (film_id, category_id) VALUES (989, 16); INSERT INTO film_category (film_id, category_id) VALUES (990, 11); INSERT INTO film_category (film_id, category_id) VALUES (991, 1); INSERT INTO film_category (film_id, category_id) VALUES (992, 6); INSERT INTO film_category (film_id, category_id) VALUES (993, 3); INSERT INTO film_category (film_id, category_id) VALUES (994, 13); INSERT INTO film_category (film_id, category_id) VALUES (995, 11); INSERT INTO film_category (film_id, category_id) VALUES (996, 6); INSERT INTO film_category (film_id, category_id) VALUES (997, 12); INSERT INTO film_category (film_id, category_id) VALUES (998, 11); INSERT INTO film_category (film_id, category_id) VALUES (999, 3); INSERT INTO film_category (film_id, category_id) VALUES (1000, 5); INSERT INTO film_desc (film_id, description, last_update, image) VALUES (2, 'wwwwwwwwwwww', '2016-08-30 10:08:26.939', '\x89504e470d0a1a0a0000000d4948445200000320000002580802000000151415270002c98849444154789cecdd575453e9f7f0f15cfe67e637559db1a1d23ba1f75ea58320bd17117bef052b0a56ecbdf782a28022bdf70e21f4de41a9cec87bf106199908c9c973127272923c6b7d979772fb594ff6d99b60793a931d5931d71926b3665759cc6583d059b6648b711148d9b1a56c84ec99eedcccb70cf31c103acfa672e8e5c8a62e30d972cc7342e822d6395fccc538974b38ca95e92e33991b527918e77e05eb3cb0ef2add3c992f9fb9bcbe8fc07633e18e4dd04cccb0099a09476662179ba099a099a099d09a096b36f1b999b0679317d35dcb274033413361c6266826fc98895d6c826682668266c23d9bf8dc4c2cb2093c021f99893d6c8266c28f99b0671334133413341334131eccc40136f1a59900f3fe1a019a099a099a09059ba099f06326ccd9c4e766c29e4dd04cb87a6a8266421b019a097b33613fd204cdc4fb63e0d04c5cc2268e2309df4f4dd04cd04cb83613ebc0e28e91263e3713ded804cd841f364133f1f95313341334133413765da71b015766e2009ba099a099b8c14cd8b3099a89e34e826682668266e20c9be89b89920f70041e3413229ba099706426b86e00576c8266826682668266e2553321b209dc4cd32a408800cd04cd04cd04cd04cdc48b66822b9a30351377ad68826662ce4c08f94e8bc04f6642621334137ecc04c7c0a199f0139f9b097b36f1b999f0c626682626bb311e019a89573f9d8366826682668266c2839938c02668266826f698095500c08266c28d9918b0099a093f66822b9a789d4dd04cb87a6a8266c28f9958601317980924bf6f11383ed204cdc4fb9fce413371099b388e247c3f35413341334133e19e4d6c3613aa08ec3013ded804cd841f364133f1f9531334133413341334131ed8c49c995801163413341317b0099a89e34e826682668266e20c9ba099386aa629f92374b38000cd849391263e3713033641334133413361652616d804cd34f36c8266c29199beb2093c023413fbcc04479aa099f013cecc045734718b99986413341334134f9a09b8424a0468266826682668266e3413f66ce27333e18d4dd04cd04cd89b895e01b42270844dd04cd04cd04cd04c78301307d804cd04cdc40d66c29e4d5c6126541130621334137ecc045734f13a9ba09970f5d404cd841f33c1154df87a6ae24233d1e816dd18008bf73f9d8366e21236711c49f87e6a826682668266c23d9ba099d8c0268ccd44291038020f9a8959364133f1f9531334133413341334131ed804cd84319bc0cd842a026f9b097b36413371dc49d04cd04cd04c9c611334133413af9b896960413331c526682668266826accc045734e1eaa9099a094766c27ca4893fcd44dd0a846e8f478066e25b33b95f4b5ef1f4de86d8b0ad0921bb52b78764af3f94bb6ecbbb53c62bf3b59d4b751ccb8dfcca2c3694d8ee2d723c5ec04f66822b9ab8c54c98b3099a099a89a7cd84fd4813c79184d64ca80200163413f79809a4e56713bd6f9f5a1bb36e4f9efbbe3ccf907caf03053e870afc8e1406841605065f0b9394a9945120c9ab54296990d574ab350dab75cd6a2cfd2abdcf53e49103cd844f364133e1eaa9099a093f66c29e4d7c6e26bcb16966cd0452d0eda28908d04c3c60267a399dcb5dba2b5b2b2093689b21a49126a4f9ca2e64cfd634e79d39cebb725da7036be3937d1232a534816560596be144de7939ed5c66fc89b4a44389a9dbdf66043dc8a6d8059a8977d804cd04cd04cd04cd04cd44df4ca822e0cb4c704513cb2d3f9b6bbc295bc12e534036eda79f53feefff92897fbddaa47326f48adf96cc655bb31db7672fa7072c63af4831890a7ac032b1ad5bea507ff5fec99a8fae851f77270d3e4efcf23e7634f65663dc81d4a4150f32a199f0682644364133e1c74c704513be7e9e8366c28f99d8c326e6ccc40160e1ca4cd8b389dd660279a932da90a36093b54826e3975fd3fef7bfb459bf245a09dd3fa51d5ae4bc26eda0c79e04bb4d99769bb39080b53779ad8844e977c0d2a4012c4b9786c4b480b1b1256363c2bd6366e55ff6c4fff32cfaefa8a8cf91f73a5f87e6bf5bf72ac5fd4a0e341334133413373d354133b1814dd04cbc6726f056dea10f2c3e37131ed8441dcd9fde5c2ee49a6ec99135ce9e3337e3d75f29a5fff24bbaf192c7b7f5f734b9fa74797a36aff0ba7cc7615d86f5864c1b86c072da774948a48221b0ac5c1a1c7d6a2aaaacc6c68428c6faf245e4ef2f92adff38e4fc7d28eaf393e7a34f9f8e3cbefbe97158f9eb35af92a199a099a09978eca9099a09633671dc49d04c53d8041e019a095766021c03b7d893ab6495b55020fd8f3f327fff3df3b7df32e6fe911c247d31cd22b8d3c5a5d3cdadcbc3a36a95dbbe68ab35e99680c05231f900082c5b8f46df75c5ed9d9a13c0faf245eccb17f12fff480cfca396f779fbf391878f461ede1fbe7767e8cef9d607db12633d6f644333413371984dd04cd04cd04c4cb0099a898508d04c38311348cbcfe41ada7d105b9c30674ef6ecd959b366655180253b2fe698f2a16a1bd70e47c74e27a70960156c72de1267be3add1c1058fb338204854a1903cbf15f602df36ddcb43f796858961a58fffc23f9cf3fd2fd7feb648cee7c307c9702ac5b4337af0d5ebfd8777d5fc1f3c0c7a9bc6d26b8a209574f4dd04c3832135cd1c4eb66c21b9bd867a61906163413e7d70d5cca09def4c84ee9d69279297ffd95f3e79fd913c05afc67f251c5434dd6f6ed76761dcb964d022b6997c39a44b3e03433706005dd38b07871f924b0640180e514d81471e3d67460fdf3b7ccdf7fcbf67cd64f1cde3d01ac2b03572f7eba74eed38543d5b7835e26f08799306713341334134f9b09ae688266c24fc16011a09970bba2c9e342d6ae4d17430d37b8089c58382f73debcdcb97373268035f7cfccd5521115a68e6d5656ed3636d4c04ada691f946c1c946a8a0a58d61baf33012cd7e0e6fc120f9ac0fafb6fb9bf3f139b46ad1f0d9d9e04d6998f1127fbcf1caabae9ff30059a098e34413361cf263e3713ded804cd849f00cd44a3bb74631e581c77d2ccb009972b9a8243df5c74587573c9d265f3cf2d5c903b7f7e1e455793c0b217be9baae7d1b674699b85c5146065afb75f99681498821a584a26effe03962c0a60addf573038244f0f587f7f56181a554b1ada400dacb0fe93c7fbc2cfd45c5ff1200d9a099a099a89bd6c8266c28f99f860a489e34e9a1936d1371372abee165347e04133b18b4d6cdf2fe071317bdffab3cf35977e9827e1b320749140dec285f90b16e44d024b7441f20de58dad2626ad6666d381551464b7eabd41408a215a60edcd0a10585ccc0cb056357bae6bb9fdec021d60c95380f57954f1f3a852ddb0ddcd81b049601deb0b3fd27bfc586fe8e59a6b6b1ea64333e1dc4cd8b3099a89f7c7c0a199a09970f3d4848a4de011a099b08cdee0d1cab0980bce1b5244a5b2e72edcbf60a5e4e2d4458b0a0404f2a9816525fc285fdbaec5c88826b048de76ebdeeafb25eb3301ac550f772e5850c634b07c37b7906a1c9181f579546570442b66600335b00ef61cdddf7338bcf7f0b39a5bdb9ea64233f1b69998671334133413341334133ecc8435b0a0995869c3c1a74f0c97510c953f6fdecd0516da4ba2962c295cbcb8801a588b17641f91d9d7a4a7df62604013586d767621f70d7d9274990396cbd113ac00cb6753ebeef0ecd1515964607d1e511d1d51cb1af409ef3f410dac3ddd077676ed8f1c08cd6ab87b282a019a892fccc40f63e0bc6126443671dc49d04cb86513af9a09b0d5f7c6a30d2c68260c5a77f8c56393e505f31714cc9f1f375fd665c92521a12241c1a229c0d25cf2365ec5b95947a7454f6f2ab02c2d2780f534c4cc2b498769609906dd4604560d4360056c6f7bf92e0c0458a323ea15838e27fb8e4d01d6b6aebdc77af6d5fd1d5ed67663efcb24fefa740e9a099a099a89093641334133616e265411a099d814c2bcf6ba23af1e99b9142c5c58b8605c5797051ce585d384858ba703cb4ef841a59a41b396160d60999b4f00abc4dbd22f4e9b1560299bbd450b2c8769c00adedbdcd0620902acd161cda6218bb37d07a6006b73e7aecd1d3bde0e1c1cfe7f271348f7d7dccfe4623321b2099a094766822b9a78dd4c786313c79d04cdc48a9950020b379fce71b599005b1b1af5d0c2a35040a0e8abaeb21708060b868a8a968888144f075680d8853a55cd260d0d0460b55a5bedbaafeb99a8c50ab004c5b3c781b50418589e348015b4bbedecedb780c01a1dd6ea1e32bed2b7630ab03676ec58d7bef578cfcef67f8e7dfc7ce241f673bf9bb9d04cd04c3837135cd104cd849ff8dc4c18b0694a6be847c09599b0671366db2cfd22526f2d0b2a5ab4b8f8abae28bd12d03614794bd1154d60ed963cdca8aadaa4a6860cacfb2186ee091aac006b4742d0dcbf4a670258edabf7b757d6b803026b6458fbd390fe95beadd381b5ba7df3d68e4d559f0f7dfe7fa1cd1f4f9f7a1f0dcdc40f63e07c6e26bcb1099a093f4133616c2664368147e03d3361c926c0154d8737466448cb972c5a44d1d504b0420557cb88178889954e0796d092fcb3521b1b95951902abc0cbcc334e9d456005ded84d0f58cae88175f2662238b0468674fa078dcef76e990eac956d1b56b5adcf18def7f9ff1d191d3b5cd87471e3a3346826ae331303364133e1c74c7c30d2c4712771964d1c47126f98090b60f1be9910d904be936975784ca4f1b2d2c58b29ba9a00569e80b08fe82509893271f1d2e9c01211ccbf2bedd7a8a8c810582d96e69b1f68ba26a8b108ac657b4ecf20b0d61dee28ae0c0407d6c8905ecfa0c9a99e2dd38115d8bacebf75f5f34fdb29c01a1d3bd83f7af842e22b3cb0099a89f7c7c0a199a099b8c14c7863133f9869cd7dbaad9d16019a894d6b2dbd2fe744f8ef2b1415a7e86a1258e98ba4edc49f4a4a96d10496b050e155c9950df2f220c0ba7940cf395e957560e97bdd9d5960855dcffc4cd11530b08687f4bb06cc8e776f990e2cbfd6d5de2dc1e77b360e7e39303a16323ab62fade6d2aabb593cffd404cdc4cf234d7c6e26bcb1099a099a897e25c811a099d8b1d672dbc1a789ea06654b96509a04d68725aac692efa5a4cae901eb8cc4860639391060e5781ab9be579e11602999bd661158bedf036bd3b1cedcd2f5a880353c68d03eb0f470d7669ac0f26c0edad7b1baefcb3e0ab046c7f6b40f1c0e8d8e856682668266826682668266c2d84ca8620c2c6826b49d5d71a84444b45c50901a582f054d34a533a5a5cbe901eb88f8ce7a191940606dbea3e6f461668025ae90080a2c3b5060855e2b1c1d554005ace141c3c64f563b3bb7d204965b53c0ee8ee0fe2f7b28c01a1ddb3d32b633aaf866e0ad3c682668269cb2099a099a099a8917cd34d13ab0081c3713f66c62df2af0c0f3a991e6ae154242145d5103eb96888b924ca18c4c053d60ed143b542f25451b589a9a538095e4afef18a73853c09abf307fc681b5f5645766d10eb4c01a1e342ee8775c4f0758ce4d7ebbda833e7ed94d01d6e8d8ce91b1ede4aea31b1fa5f1b299e08a265e3713ded8c471274133413381b1896366a2d103bab1002c3c99897936cddc2acb6d879e662a6952743505589744fd887215b2b215f480152c1a512f21411b58eaead381b5ebaaea4c016b5b62e09c59254c03cb8d3eb042af570c0faba205d6d080c9db5e0f7ac0726cf4d9d51ef8f1cbae09608d8c6d6d1fdcb3ffd50768265c7d3ac7712441334133e1d34cd8b389cfcdc426368147e0413371e2eadcd9e0a365621295c2c25380754bd44d81582e2757490f584b455f93c464c08195e9a6b72c4e7ea68015fc68339b80b5f36c774afea16fc0520607d6d080e995ee007ac0b26ff0dcd5eeffe9cb8e09608d8c6dfef879dbd90f91d04c6c3513ded804cd849fa09978ffa9099a897eeb11234033b158e085f4482b0f92880845575380f550d44159be8c48aca4072c05b1ac74519d3a313170601d88509d4160799c39c03e601dbf451a1da7156a60f50f981fec08a6072c9b06f75dedbe9fbe6c9b00d6c8d8a6e1b10d0fb3ef70c3481334135366e28391268e3b89b36ce23892f8ce4c886c82669aa908d04cac147c363159db94a2aba9c012127a296aa54a2c969727d103968478c97d11d73a51517060152ed3b57f479c4160d9ee3ac510585a464c026bcf859ee2aa0d4c006b68c0acf9a3cddab635f4806559ef72b4d36f125823631b46c6d6c59322026fe5f1fe1838341334133798096f6c8266e28191263c9809b00d0fc7234033a15a054ebdd672c389e86c15ed2a51d1ef80f5d5586f454db5e40b28ba4200d65e917db5c2c2a88015765cc5eefd4c02cb28e0fa4c022b642ab0aebf4a660e58439fcce37b5c1080655ee774af2f901a5823636b0a5b0eafba9bcd7d66e29e91263e3713ded804cd04cd04cd84b1995045e0889938c026303381b7e3c8b30205158aaea603eb83a89e9e429e82421502b09cc4ee570b0aa30256b9a5ceb268d99905968af553b6022be46a4f539b1373c01afc6411dee187002cb33ac7a4c1606a600d8fad2a693b107c37079a099a099a099a099a89bbcc843d9b9830d3b74a412270b19910d9c4d6f329217bef94c910abc4c4a6032b4f44ce5c215951918c002c4589dcac254ab58282a88075f680b2edbb190696a45aec4c016b251d6045263d040396d1746035f7dbae6c0da2072cd33a47ab7a87cad135d4c01a1e0b2e690d597537879fcdc4804dd04cd04cd04c58998937d60d709199586013909950c50058fc6326f055e0e15bce574a499329ba9a06ac0a61117fe27d25253232b0ce0805d72c5e8c0a586413ede55132330eac8582e913c05ac82e60f586de69efff68c41cb0063f5ac6753b2300cba8d6dea5c1b1e39fb5d4c01a1e0b2a6edd0f6a2c68262e6113c79d04cd04cd04cdc46d66620b9b360247806642b50afccc8693d5e2126471719ac03a2ab34f59b91a1958cbc49f560b2c9a0a2c494964605dd9a164fd4e7ac68135eb8f427603ebd0cdde94c2934c036bf0a35568bb0f02b0f46b6c57372f1ffcb2961a58c36381c5adfb56ddcbc5399ba099f0139f9b097b36f1b999f0c626682676c42cb078c84ce01ddb71852c29554dd1152d603d967451552123038b285d9c28a0512320f01db0c4c5918155a7a7e9fc427ac681b52dd9eff75f8ae9024b9506b0cc9902d6b967e4911175a681d5d46fefd3ec8f002c9d6aab2b3d1e5380353ce65fdcba77f5bd5c6826682668269e651334133413b666daf8886e9ba645e07333815f5039b0ff5e95b46cb584044d60a58a6b1ba814a9a8542303eba0d0f69a050bd002ebc50a65cb58c91907d6dad7ab6706589b19002bf46e5f59ed665ac0d20501d6e0479b071d6ec8c0d2a9b12c1a0e9c02ace131dfbca6fd41b70bd868263e1869e2b89338cb268e2389efcc84c82668266826ce9a095504ccd884433381b7ebe88b72a2620d4557b48055222ae5a8f45e55b50619584b25632ae7093001acdda7e4d801acc0bb5b3003d6fdb8545680d5dd67b7a2d90701589ad5164e0dd6fd5fa6026b68cce76de919682668263cb3099a899f479af8dc4cec6213dbccc41cb078e1a9894d6752b69c882e5152ab91949c022cf23760ed2386a9a9d53004d61301ebea79f3d002ab464fc3f6b5043b80e5716e2f66c00a7bd4dfd2e13a09ac1194c01ae8b78de9724606961ad92cacd3693ab086c6bcaea7dee37933e18d4dd04cd04cd04cd04cd898096336316cf3b708fc6926f0f329ebcfc617a8ebd652744505ac6a2a60c54a5a6aaa57330496b3f8c3eabffe9a04562d30b022fd94cc63c4d9012c87c347c18165c832b062b21eb302ac4ffd769b5a3c9181a55a65923ee83d1d589ffef13e1afd169a099a099a099a895bd804cdc47127d134138d1ed38dc0876602bfa01274352b4b6f69ad94143d60558a4a38a9c4a9abd73204d6eb0506cc016b6f982c9b8065b9f5340d604956b20aace3b481752eb27d68487b7444032db006be026ba0df2ebbdb0919582a552616b566ddff044e01d6d09847fb50e0f6a7291c07133413c79d04cd04d70dc0a72668260666426413a3ca2623f09b9950f5d239b88ea22bfac03a45dca3a151cb10583e6237c873e63001ac3a2d35db48713601cb68c5659680b5021db04e3dfb486adc801e58d693c01ae85f16d2e2860c2c4592e1d10efb6fc0f29b04d6d0985b55d7fa35f773a199a099a09970c126682668262e3413aae8028b57cd04783e85d2d92d1175d2d208c04a93d4d7d3203104963cb1e2fd3c75e680f5c653d12c5a8c4dc0d274be330558c22c036b3d4d60ddfb1758d1392f59045661f77286c052aa32a81cf19e0eaca13197e4ea83d04c5c6726ecd904cd84aba72668268cd9c47127e1d94c5bd044e02b33811f45d911fe862caf800c2c7fd5979a9a750c81b54a34823c7bf638b0e6ce450bac90a3d2ec0396c2d2a72c00ab8909605d7adb3e34a4cb0ab03ef5396c6b7645061691a4bfb2c98226b086c69c2f263de438985862133413b7b0099a099a099a89e7cc04da93f1980116979a09bce0ab59b9baa6f5145dd107d64db9d55a5a750c81a5205f91fca7dc38b0fefc132db0ead555ed5e88b20f58921a6f3106d6d9579faa9a36b208acd42e2786c092a9d44d1c70a109acae61afad4fd2f0652666d9c47124f19d9910d904cd04cdc4b76662c0261e3213bdb6d28ac0213321b109e333bdd3cfa7bc710aa258872eb0242448e2d2361ad920c0f217bb46fee30fe68015e3aa601a2dc23e602d914a600e58763481b5070858b179918c81f5692902b03ef53906373933049675ade1e05460b952803534b63ca7693b6ecd8437364133f1f318389f9b09fb91268e23099a89a1995045e06233b1e752efb92d671b28baa2092c49c909605d95dfa4a5550f02ac67f34c9806d6a183526c05d65f0b32ff03d6428c8075e55dc730c555ac012ba6d38921b0242bb4eef4da0fd302d6e098c3adf49bd04cd04cd04cd04cec3613ded8c4fb66426413eb669a5960f18299c0db702199a4ac460358525293c0a200c45a3317045896d2b155bffdc61cb0ea5594ed9f8ab01558bffd52c80cb05c5902d6f9b703d5cd1b5904567fdf72ef06c6c052abd2eefac78b26b07a3f3bef7e9108cd04cdc40366c29e4dd04c1c77123413a7ccc4b06d541178de4ca87ae3bcb24156f65f60c9c8d47d35d614605d52d8a6ad5d0f02ac730b7d51038b489c00d63b47a2f15b21f6016b47a6fb2f3f1623004b8175605da401ac0b6f073e14bd6411589ffa963f6c630c2cb10a8d0b5dd634813538665fd2b66ed5dd4268267c9a09ae68e2f3a7266826fcb0099a691b424f9122f0bc99c04fce1d3af2b891a2abafd10356b9a49c95560108b0b488f925bffe850e58943ffd0d5847f64ab015589b137c3905ac9bf1ed43437a2c02abb9c7c91c00581a559afd5f3c69026b70ccee6aca5d68261e3613f36c82668266e26933613fd2c47124cd9499102b9f1201c44c7863133bcef4aebc99976768d12827870cac0b8a3b75741a4080b55b705fd52fbfa00096b43435b0dc6f09b31558ebdeaee014b02ebf1fa869ddc822b03ef53aef695ece1058c2e5aaf77a6de801abe993d7bafbf9dcc52668265c3d35413361cc268e3b099a09b76cc2c64cd46d671481e35a629f99505d9dbbb93694a22b646091a4e42cb58b008195f4bb14d3c022692818bd59c25660053f5f3d33c05a4f0358db18012ba1e425ebc08aef7006019621596b701c58eed381353866f324ef1cc7cdc4013641334133413331c1266826fc98897936b1642654b111584866620f9b983e75b2e57c628db21a32b06a2525ef2bacd2d56d00019683d42bd2fffec734b0621d640dd90cac80fb1bc681f52b0d6049d1049615cbc07afe1fb0ee24770c0de9b308acde5e1787fa650c81b5a44c39eaa32d3d60758f3a6e7d9ac90b664264139f8f81433341334133e124f69809894d336b2636028b8bcc84aa68e7954d44224360add07c0308ac3081d5ac00ebc27a497603cbfbda560e02eb5ac26043c76a1681f5b1d725a2653908b06c6ab5e9016b70ccea5dc56168266826ee3213f6234d1c4712341334131ecc34bd1dcfe846e0553381b7f3ecfb46790586c04a9735d1d36b040456caaf62ac006b4b9828bb81e516b19bb3c0caabb9c83ab0caba5c4080b5a84c317dd09e1eb03efe63bd3f32019a099a89dfcc843736f1be9910d9c47127413301b2093c024f9a09d57993288f75145d3104d651d59380c072948a24fdf8232bc05af64090ddc05a7e3c84456039b306acd8a214d681f5b1d7d5a7de1e04581b9b0dbe07d6b249600d8e59a4d76d8366628799b067133413c79d04cd844f3331601334131ba20b2c8e2389153381b7f5426283923243605549cb59e99602022b7c61302bc02ad4953378b398ddc0b23f70842560f9b10aac7be9ddc3437aac03eb7c8b2308b0242b14fbbeb8d003d6a72f167b5e26019a09ae68e2f3a7266826fcb0099a09879fcef1b69976a289c07b6642d573bf6dcdf2f20c81f54831585fbf111058a9bf883000d6a24508c07aee2a8501b0ac7686b101581d3480758b36b06ea50cb5f5f8b00eac9c0e1710602d28253eedb3a007acc1b1a531e587b9e3d339682668269e3613f6234d1c47123413179909b4e7e3cd30b0380e26ea189e96db7425ad4e450d0458c15a5180c05a2e1d49fae10724602d5c880cacb0ad621800cb6cc3691060a9ebb10558d7bf02abb4318c7560f5f7b859d5588300cbb55e130158dda3b65b1ee7f2d253133413c66ce2b893a09970cb2668269e3113fd2aa6c718581c77125a36819fe97db4721f45570c815524a36968d00808ac438bb720016bfe7c86c05a794608036019ae3ccf7160255546b30eac8f3d6e218dcb4080b5a054aef1b3031d60990f8c993dcc3d0fcd04cd845b3331601334137eccc40d2b9aa09900d844c34c13ed028bc07130316f26d62ef5aebb9957a3a10d02acbb4aeb0d0c9a0081f562b62e2bc0aa97272e7db6080360e9785de51cb0062780f52caf61468015d3ee0c02acb925b2119d4608c06afce4bcfe413134133413341334131f8e81f3b999c0d9041ebb80c51133a12a62eff516050510606dd17c00082c0de5f2d21f7f63055819c6327a510218004bdde9d624b0e6b107587b1901eb6ee6706fbf23ebc0eae876d70503961159e92bb01c69026b60cce472ca3d68269cb2099a093f66e29e91263e3713f66ce27933316c37552880857f33a12ac1d11f0458d5d2440b832a406079493d1cd7150bc0bae72d810db094acef3303ace5330c2c72db7ed681f5b1c723a0de0604587f164b35fd6d8f00ac8296553861139f9b096f6c8266c24fd04cd04c1c34d3d45e2045e0253381b7e95a66a3b20a08b0a215dc0d0d9b0081756cf17a168115b25b181b60114d9e20014b9165604500012babe6c93460993101ac134d0e20c09a532cf5a0d70401581fbf98ec7896853f3641334133f1b29918b0099a895bd8c4076642158167cc3411e0cd93abdbcf51740502ac50f5087060bd9ea5c922b0bc2e2ec60658b206cf6604585eac012bbab46c4680f5a6cd1910582b1b351080353066743be31af73e354133e1874dd04cf0d3395e37d30c8c81739d9900dbf33502cf98095519b6ee80c072d5cf020496b67259f98f3fb302ac6a0519fd970bb00196b4ee0b0ab0fef8b584b3c07a943bfc69c0e25f600d300facda4e7740604957c84e03962535b0f29a574333e1275c9909fb31708e23099a099a09a766c29c4d7bd047e02536019ee9dd7139a54549090458d9441323a3664060f948ddff575713c0faf967b4c0ca3094d2798d11b024b522f100ac87b9230d5d9b5907567fb7a7558d0508b0fe2896281cb6420056ff3fc6db9fe5709f9910d9c471274133e1964dd04cd04c7c6b26e6d8c41960616ca6d5cc5e8ebbb331bc55511104588f95d780036bbfd01e1681f5c65e02336089abbfe638b0ee7d055661d3f5e14143d681b5b5c1161058a73bf511803530667033fd2634d34cb2099a093f66822b9ab8c54ccc8e344133b1d54c34dbfb92760c80c52d664255b2a32f20b0c2344e8303ebea7c97ff80f5d34f4c00ebb68f2866c012538d020796ded25a50601d410dacb49a77e881e5341d58379a1d0181e550ab840cacecc675d04cd04c1c7712fbcdc43563e07c6e26ecd904cd44cf4c5fab048cc01b669a1ad299dea25a4d1d4060add179030eacd83f945804d6c9f5c298014b44e92d0d60896208acd47f81f59e543423c04a6e7701049678b91432b07a3e9b6d7a5402cdc49566e29e91263e3713f66ce2733331601334131b62125838331372df5d3e09897847d11520b06c0d2b0081a5ae462ef9e9371681b57b9f2066c012968fc109b05e95b6cd08b06a3a3d0081f56b9168f3dfb6f481653830a67f2ce61db7b0099a093f4133f1c8531334133413faf64d8bc0036642d5f51de7018155403430366e0104968d7cc27fba6216582b4f2ec20c588232efa6006b097b80759811b09e148d0c0e2c651d58fddd5eba64534060bdff648a0cacfbd997706a26e6d904cdc406364133f18299b867a4099a89d366022d723c02666662c426e6cd442f9ae7e462bd3600022b5239001c58ab242ea1069690d01460395d5b8819b0164bbdc70db046bbfa3c018065cf1058aeb51680c03adda9fb0d58d63481955cbd9d1bcc843336413371099ba099a099706326acd9c4a2995005002c3c99891e9b80fa7af0a4d4c40a105811eaa1e0c00a5db2091db0962c990e2ca3a7f33103d622f10f8c81a58511b09aba37cf08b0b6d6db00026b45830a32b06afa5ca099a099a099a09998311337ac68e2253361cc2686edff168107cc04def61b196d4aca80c0daa6f3041c5877e7dab208ac722529add7f33003d6429184ff803597556005ee60095855ed613302ac334dcb0081a543924506d6a72f7a3b9fe5f29b99f0c62668266826be3513f66c8266023113aa08dc6e269026af9a9c0a7dd4a6a404082c7ffd247060bd9da5ca22b0520d25b004d67cc124ce002b9a06b08a9a6fcf08b09eb73a01026b4eb1e80022b006c674cf273c8366c2d44c704513b79889019ba099f06226466c8266626f2880854f33a1eafacef3e0c072342a010756c62f822c022bd25e0c4b60cd5b9c8c1f6065d6c7d00196152a60a5b5bb0202ebe742e1a6bfad6801cb7812588ff3ce413371ce4c5c3306cee766822b9aa099f8ca4c530a79851481dbcd84aa276b0f0102ab4e46d6cca40910581aead5e53ffe8f4560ddf011c612587f2d4c450b2c53f600eb69d1686275fe8c00aba4c3031c5805c34b918115537e986f479af8dc4cd8b389cfcdc4804dd04cd04cb83153c82b127804b69a091b3651877c8b37d6771320b04ae4744c4c5a008165a69cfd9dae6801ab9a11b0c2d60b6209ac3973d3f103ace8ca9629c01a640a58f59d5ee0c07af7c97870cc16015869b55ba099a09970c726682668262e3713f66c9a4133a10416eecdc4904df49b7a302eddd19721b01abf022b55c1161c582ec428d681b563df622c81357b4e265d60c901036b35cbc0ca1b07d6cbb2518aab58075677b73738b0eef7ea2303abb82d00e76662c02668265e3013f78c34f1bb997879dd000ecdc4884dec3213bd0ed08ac06d66a2c126f08acd6c0181f546d9171c582ba5aeb30eacc093025802eb8f5959bffc440358e2ec0156f8632460bd28fbdcd3efce34b0fabf01abbfdb47bbca181058a73bb5918155d7efc80f66c21b9ba099a099f8d64cccb3099a092b33a18ac0ed66a217cd9b71755aba80c0baafba191c583b458fb20eac65d7176009acdf7fcbc115b05a7a36320b2c776a6099934d0181b5bb551d1958dda3c6d04cd04cbc6626b8a2895bccc417234ddc6726dabda61d0360e1df4ce06dbb9b4fd11520b02e681c010756d8920d7481f5fbef80c0d27f360f4b60fdfa731eae8055dd19ca0cb07aa602cba9662920b0821a95a701cb941a580363dabb5ee4433341334133719c4dd04cd04c383113a583c011b8da4c74a375a077e7ad2c706045681c0707d6e945c1b481f5ebaf80c02a5790d07c35979f8155d97e764680e55d6b3e83c0da1f990d573471999918b0099a092f6662c4266826fc98096b36e1d94ca822700d9b68996922c063705bef178203eb8a7ac80cbc6001038b44c41a58347e22146415586b6803ab8f06b012a7028b3443c072ab0105d68666558017ac42ae1e03e77333c1154dd04cd04c383113bbd884b999d8022c7c9a096d2d2aaa80c0baadb6031c588785b6b308ac7a49499d979802eb8f3fb2990796171b80d5717a4680b51cf827c21d2dd367b0be03d6a72f3a383413f66ce273333160133413341334135666c2099b263b8450d47804ccccc43e368157afa90308ac472aebc181b55f781febc0327b88e90cd6ac39995800eb1ad6c0b2ad36030456489b0632b07a3e1bf3aa99d8c526682668262e3713f66c8266e2b8935099897e55d3030016becd44ddd4d3bcd32ef592f58c018115a9bc02cd57844798079698d804b0ec6f62fa15e1f8a251a68065cd1e6055759c9a116059007f4578bc430b1958edc396d04c3c3206ceef66822b9a70c5266826dc9889019b689809a4c3df2270bb9950556e620908ac18254f70606d113bc124b044442681e57e612196c0fa737e1ace8075624680654c3601045644a7cef7c05a3a05584d03f6d04cd04cd04cacb2099a099a8987cc842a02b79b892ac647798b2c9601022b41d1111c58eb25ceb10e2c8c178dce1548c115b0c833042c5de045a357bbf5908155dbe70ccd84a999e08a266e31135f8c34f1849910d9c4712771a39938002c0e9a8966f4cec6e5daba01022b43de0a1c58ab24afb20eacf547166109ac798b93ff05d66c1ac092a3092c7b568115f11a0158e133022c8d2a234060ddeb35400616a9db139a89ebcc843d9ba099a099a099986113779a696a6f904202165798095519c0b7080b8906e0c0f297bec73ab076eec5f416e102a1443602eb1413c00a9b11602901df227cd667880cacb20e7f6cd984a331703e371323364133e1c74c704513b798894936e1cd4c47d044e076334d6dda755eea92dd56d20456f35760355101ab4e466ea9490320b01ce4dfb10eac435b976009ac85a2f1f48145c21e58d59dc7590716aa63cf719f4c1081a597dbb48e97ccc4804dd04cd04cfc6a2676b1099a093f6c9a3933a10416fecd84c8265427e1a256ee060456838c8cbb413620b00c558a5807d6c9b54258026b91f8875fd903accd4c02eb18ebc0aaedf4040756f9882532b0de571e8266826682668266023113ded8c4fb66426413fbcc44afa3b42270bb99507577670438b036e84602024b5dbdb6e4a7df5904d6a500612c81b558ea3dce8035fd16a1255a60e5b6bb0302ebd742e1be2f76c8c07a9c77059a099a093f66c29e4dd04c1c77123413decc842a02b79b095511614fc1817544eb2238b0927f13671158773d44b00496a0ec3b9681d50c0aacfb8c8155d379847560bd6b730104966899c4e0983d15b02ca603eb7272243413fbcd045734e18a4dd04cb831131f8c8173a39968f7964c3346c0c2bd9926db86d0b7137287aea78003ebaada5e7060bd9ca3c722b09e398a62092c21f918506019d3009623cbc0bafd3db0eabbf6b10eac872d4e80c0d2af926308acd0e8746826ae3013f36c826682668266826642632686855245c0339b40cc84b2d226350d4060452a078003ebc6fce548c09a338721b0a2adc4b004968852f4cc03eb00f3c06aeadece3ab02e34390002cbbd4e0919587d7f1bef7e5e0e5734719f99f862a48927cc84c8268e3b099a89836cc2b3995045e07e33954d5ce4a5d79465dca54b6d0181952e6f090eac138b56d305d6ac5920c04a3616c71258a22a6f7005acd6de755f8165ca0ab00e35da01026b7b8b0632b0eafa5d78804dd04cd04cd04cccb0099a895bd884b999b006169299d8c326562ec4a5baae0004165956d1c4b8191058bb450eb208ac1c6d492c8125aefe1a03601d00065647df0aa680e5460dac8df53680c08ae8d4430496417ecb5a7c9a89119ba099f06326b8a2895bccc43d6c8266e2b499a83b8650f478b481c55d664255d4aa7d80c0aa9791713428060456f09465eee88155ae248525b024345f3104960a7b80758516b0bafbbd58079677ad2520b05ef4994c01d6e0f7c08aaf3a04cd04cdc47133b18b4dd04cf83113229ba099f06626541178c04c804d5c35b9b7e70238b0b6683f0504968d7c028bc0aa9391d67e851db0247522d90eac4b2880d5f7d1897560d9549b03022b7bc8820a5856d381f52cff0a3413cf8c81f3b999f0c62668266826bc98892936a10116f79b0955e74e3e0707d645b50380c05257237fb70a0b2db0a4a4eaa5a58d9fcec70c58d2fa2f18004b0d18585b580656f9e74f9f6c5000ab9706b0fababdb4c9a620c0fabd48b4eb1f7b646045c4bf83668266826682668266826662d8713a11f0c62626cc84aabd0ff25b94940181f54ec10510586a6a35d1b35498049684c404b06cee2cc00c58b286cf2680f5277b80b50b25b086064d8181b59c26b0c89dee2a552620c052ae941d1c73400056efe7a5fb22cbe08a269cfd3c07cd841b33f1c118388f98897bd8c42d6642158107cc343de4e3714516cb008145925132316a0404d6e5f9ee2c02cbf58a0066c09233798a1f6045560c0e0f1ab108acf8361740607937a82203abb43d98f36c8266826682668266e26633316013779a696a31d50831092cbc990955d1413b2781d582082c0a7a7c75930081b55b38844560ad3bb6183360c99b3dc603b01e7d0556546537ebc0badde20808acf00e3d446019c5568473d153133413c66ce2b893a099e08a2668264e9909a1b0691178c34cff45e33aefd44bbdd78edc191fc30203d6418d4b80c0f2967e80165875df03ebe81621cc80a560f1887560b9d30456186a60455735b30eac438df680c08afdb814195837d25e42334133e1944dd04cdcc2266826fc988959364d3713aa085c6026066caa4088e691934377b2c081f540791d20b00c95f25804d62d5f51cc80a564fd8036b0a4300456d6bfc08a23931801cb8e21b056d4590302abf96f7b2a60d94c01d6a72f2687df14f2ba99e08a266e3113f7b0099a099a891bccc43a9b6612585c6126b4951b5b00022b4bce141058aaaa35993f2f62055831361298014bd9f63eabc00aa209ac4e268095529bce3ab0cc6bcc41802553213734b61c0158357dded04c9c641334137ecc84c82668261c99097336f1ad99260b4728f6df083c6326547df0dd0808ac3a69691bfd3240603d9d63c40ab00a35a5310396eab2bb80c0d2661958c718012ba7f1158bc06aedf250239b8100cba54e0d1958293507a099303313ded8c459331d7a5d75f8f5c4bfe4c3af28ff67e5c1a80acabf87de541e8e224133413371259b78cb4ca862042cee31d36e84a69d37b9b7ff3238b0b6683e0404d6b145eb590116e5ef1a3f5b880db0d41c6fe30758252dd759045676872b20b00eb5eb2303eb51ee3d36b3099a093766c2c148d3f81f7a5d79e00569d735f2d633355bc3ebb61c6dd8165ebfe36996dd87c366f11b1d3e1cf48dbdb6213a7a5f54fec1d7951481f1a399986513341334d3cc9a0925b080d9847333a1eaf8f5247060dd51da00082c5fc93b2c02cbfdca626c80a5ee7c8ba3c01aa2065655fb311681f5bcd50910582ffbcd118165121e9b09cd04cdc4a6dfe60e8d3f447ded75c5e137e587a38ab65f2c5eb3af2260754de0eadae075f56b36d4afdbd8b06e7bb5fafda0dfd2fffa236bf6bcec797f250908240b4bc42b5b5c3db1ee4a6ec8f3ca8391a443afaa0ebf1e7fd63a1245e22b3361cf26682668267a9d408c802333b1cc265455eb180002ab5056dbd0a01104583a4ac5153ffe441758f3e63104d6e6a342d8004bd3edc6cc022b782ff3c06aecdec222b04e35398000ebcf62a9c6cf0e08c0aae9f5856682669ad90ebd211d1eaf2234be202c2bf96471f4d9f2e711590f43cec4040616f8f99405785706f99256f957ad5d41de105cb3712d79e999b09f13e7ff98f2c7acb4df16a6ff2198fbab58ee2ce99cbf88194bf41f1a6ad95f216a25e9d967d9afcef73f58b2e30ec55be3bf2d1e8982669a21364133e1c74c98b309d94ca89a0160e1c74c13019e8a8bf3dfcc18583232755f8de5abfd0104582a2ad5317f28d306d65f7f81002b7cb32836c0d2f2b84e0d2c01016060b9b10cacb8a9c0eaecf3651158c1f5b620c0d2a9521c1a734600566cc569bc9b09914d1c77129f9889f16f736f49948e44571e4ecc399a1b77bce2e989e6eb675bce3fcc0c7b7fefd0adf557031cb3bc9617fbb894f9b995057a5604f954aef2277d0556f5faf5e58b5e69fd983cfb87943f7e4d99b5601c58bf48e4ff21973f5b397fae6e814070b9706e85da93676e2b571f93928b16104c56d0c9b2092a5a7bb6fce08baac3afc6a505cd04cd04cdc426368174f25d0d25dac0e25233a1eaf2892748c09295a506d669952380c03ab570052bc0baeb238e0db074bcafe207589f3e59b302acbe1e0f931a4b10606d6fd1fb1e58765380753e21019a897936f1b69940469a28a8a214537a302de160f9c3834d1147db4f9d6a3ef9347e7fc6858d559b5664addcbecb29cacd2edf755991c7f2126fe7d229c05abfaacaf9c0839f13e65374f543caac9f5366cf4d9bf31558bf5380a5923f57ab60a149d1928364b1e676d9f676624d8dfafd7bde9e5e67c5a5e20404d3c58999c6ce0501874a439e551e795d75949eb4a099f0632666d904cd84b19926d9041e8197cc84dc94ebbcfb9f97d668ea7c072c22b1f1abb1a6032b81680b08ac20f1cbac002bce5a0a1b60e9fa5ec609b05e94f40d0f1ab202acd24e57cd6a0b106045f55b2200ab79c00d9a8937d70db07d4513e9e8dbcaa331a507d2120e94df0b693d71a8e35868fbd10ba483b10f36566ef66d0cf26e08f28df3d9e7639de2645de06457480f58eb5657a85e5ff963d29f93c09a93fa9760eeafd4c0322c5c625d2c72b956aaad4bb6ab93d8d1a1d0d6aa5c5ea67770ff76a2f49bc58b531609664929e5d807176fbf5579e815f908a2a8a099f06326ecd904cd84d64c2881c54366fa3ec647e23ef86dfc1758f2f2c8c0aa9192b6d52d04019681426ee50f3f320dac524d596c80a51f70e91bb04a5904961f6bc08a29af9e00d6d0800973c07adee60402ac05a5729dff3823002b911c0acdc43566426413765fccbd258546938e26e41cabbc1dd27a787f57c881ee03473b0f5ecfda91121e501be8dae0e7d6e4efd110e013e3b1dfdd3cc5c122cf1111586bd7940bbe30f83169f63760cd999d3a7771d62c89bc3fa881b5b448c4a144e24583747b07b1ab53beab53b1b343a9ad55b5acd870ffcedd44d15742f33f2c59982c229a65689f1f7cbcecf04bd2d1371c32135cd1842b36413361180360719d99507525fcf1e4bd676460d54a49ed55bb02022c65e5eaf8dfa49906560391b8f4e9220c806510740127c04aacca641158a14d0e20c0b2a8511b1a734500d6b5d4683cb3099a09e310c69242df928ec7549c8e2bbe51f2e66cf3c95dedbb7676eedaddb1675fdbeeb3c5db93427d6abd1cea3d1c1bbd9c1b7d5ceb7d3ddfb8ef77364db635cb5d6691b71c1158c1eb0b7e8b13fc21f90f6a602dcc982b3e0d583645e25ec552052dc4ce8eafc0ea54eeea54e96c576d6bd1282932ddbd39447af15ba1bf3e08cf4b14134c55d7ca5e71a0749c5951246e3413bbd804cd04cd84be53c01178cc4c0ca3be2217f2bcac56431b1058cf14fc01817561be270558554c008bf2a789449fcb821800cb28f8fc38b07e6319581b408175fa056d6065d6463101ac8f54c0f2adb30501d6a176630460758e388eef75c48f99f860a409576602ecd85bd2a9f7a52f0ae3dfb65d8be8dcbfb57dcb96f66ddb3ab6ef6cdf7184b4f5cd45bf2a2ffb3a57bb06b7650d5f8155e7ed11e9bccfd128c9ca388721b0d604915cf7bcf85fc2bc29c05a90b6402c77f674602d2f96de4722365301abab43b5ab43ada35da3a549e7438c8b95e16db1f9712273e3c5e627482e4a34568bdd7420e3e88b8a635155d04cd04cd04c4c98696aef916212588866c29a4d28eef24e3bd39be0b31e105815d28a46ba3520c05a2b72861960c9c84c006bfb11110c8065bc260215b08cacebd804acc2c69bac00abbbc75dbfda0a045809037608c0caaa0f8166e24f33818c818746571d8f215d4fcb4ead7d95d51f11deb96b43db86f56d1b37b66fded2b67557f3d63b4f024a7d6dab9daceb9c6cea5dfe0556ada7db1387107bfd6473832c1060ad0eaa343d79fca7c4bfa6034b386b9e5cfe9c29c0722c96f62e213eaf5368ff1e589d1dea9ded9a1d6dda35552687f6ee93178d169b4f3156a2c4824419810f0e8af74342a2439f971e7f4b82668266e2553331cf26443321747a5a047c9a89453681772dec2120b0286d547f00022c03f9ecca9f7e661a58a7378963002cd375677102accad630568095d3e1a203002ce17285fe2f6edf036b1935b0ee653d8766c2099bf0b4a2a9ea5834e96c5c5954f187cace3be4c15357ba77ae6d5bbdba6deddad6f5ebda366e6ed91452ba2e6e9f23d96169ed32f35a47ab4960d5ba3b3db4db67a5936caa9b311d586e3481b5b25cf1baff8f4973a6006b7eda02c18c453481e556425c53a650dafa1fb03abf01abb35daba34da7a5c9203ed6c3c6f89ea440bcf88244898549520289f28bdeaf503e7736e4fef19725c7de30601634137ed804cdc4a6a7267033a18ac07b664275a9f7c0f3d25a354d40603d93f70301969212f9cd6c75a681f5c85b0a0360996d3c8d1360d5776e43032cc729c0badfea04022ca73aada131777ac0ea197538faa60c9a89fbd8c4c6750355c7a3abce2714a59023db06cfb78e9c7edabb7b5debaaa0969541adab56b58e036b63d386b36ffd0b7c2cc8b62635b666b5f6ff01abce7559d2f255569a71c65ae9d381e54c0758c1c1a58b5feafe90347b1ab0162e495f2c9bf7174d60f9972a8657a93477a8d00456479b6e7bab41659955a0e7059925f11460490a24492d4a262e493213bc7f5e35f0fa8e73279e1584bd254133f1c95313c791c45933b1ce26ec80854333a12dd17b2d20b0c892b216da2520c03ab0781bd3c04ab492c50058e65b4e4e07968818abc0da801e58edbd7ea0c0eaa301acbd4d0e20c0bad4658e00acd4da5068263e301360e3af56e7e38b92c8911d83a7bb474ea40f846c6d59e9df1ce0d7b222f02bb056b7acdd5cbde659b863a58d21d9caa8c67a2ab02a5d5c03f41f1b6aa4a002d68a3579bfc62d1ed7152d6049e72ca0092cdf12c55565aad10d2a1d1db481d5d1a6dfde66505f6b7e60e711a2f0870960c92c4991134c56118cdb26b4edb5fad21b2197c3234b8f8fb37206d804cdc4e74f4d3c6c2690cec4d54e4403583c6026545d8c780508ac5a49c9fd2ae740806527fd9669605568ca63002cab9d612c01cb7fc680d5ffd1861560d9d5d93104d6e232c5dacf2e08c0ba9894c431364133e16945535874d5f9f8c224d28bf68193bd23c7db478fddeadeecdfecebdde4e7f30d582b9b83b795ad8cdb6449b2d0ab36d7afb69c0aac6a67879366c70dd5920cd4539181e54305ace0808ae5bb9ffe3be14e0b5892598b94a980654b05ac9565aabb2a34aadb29b4a20bac8e36a3a67ab3eb17b7aa48c54e004b5630454e285551386999f0cdfba2a6afcc965f3c17191e5541cf55d04cd04cd04ca822f0a499d09ce91dbf3a57bcd4161058efe5ec4080a5a8484eff5d943960352a28583f59c26e60d91d3802042c7d9681751b09584ff33f0e0f1a300dac924e17fd1a5b86c0b2a9d51e1af3a4072c72cf6a2cd904cd847180eb068ec7549df95092407ad6f629ac6fe468cf7068e960c8eef6151e8d9eee4dde5edf80b5a22968578e6f6a8071e552dd2a33dde9c0aa596e1b6bb3ca44254e5735e51bb0326902cbf37b60ad0c28373c71e4df09775ac012cf1454ce9f47135841a5aaeb4b351ed569b62302aba3d5b8b9d1ecf5b3602d62cc24b088c269f222a9dac2316785dc13c4892f3d5647dc490e7f43e2009ba099a099706f2694c0e24e36313413aa1eeebb0808ac1a49c9e59ae920c03ab7d0976960adb820c26e602d3f1ec234b0ec670e5851253500c0b2a507acbbad4e20c0bad0658900ac9785f7a09978d24cc05585c7929ee47ea8ef39d53b72b07ff470d7c8e157bd5bfc9a3c9c1bdd5cc781e53301ac80c6c0031f3cb29d742b4db4aa4cb46902abd8c1c95dfdb18e72325a60050596cadff0f977c29d26b03284947217d203d6ba32cddde53a952d1ae3c06ad7a007acf656d3e646f3d7cf83b515de51012b4d41345d5d34719ff08624519924a2f2838d474fbe280e8b26433341334133217416312460e1eca969c64ef04eefd0b3921a754d40609d523c00022c5ff19b4c03ebf84e097603cbedec6e3c00eb4345362bc0dad2e8c810588265ca35a3aed380e53801acdecf4ec762ca78d64cccb289fbcd045a584cd5e5a4bcfcc66bddc3217da307fa460fb68d1c38d9b5d2b9d1d5a1c1d5a9d17d1258be8dfe87a29c0b2c354806ea24234d9ac02239d81dd40fd756f8a0a5c41058c55381b5a258e0a5d60fc9b31180a590b3040158dbca74eed5e8b43102567b8b597383e5ab676b28c6a20696a258869a58f22ad1b03821f95431a9e8a50e17ae7f38f18604cd04cdc4576c423613aa08bc6a26b4977aa357ed06045696b49e8e761d4360a9ca9796fc369706b004041802eba5bb2cbb81e57d751b1e8095467ecb34b0ba7b5d2ceaec1902cba6566768cc8b1eb032eb8ff28999b06713fe57819f7a5f1e5bf6acf5d3a1de91bd7da3fb7a47f7d70defdddde66bdfe0b4acde991a583e0dbefbdeb9e45baa57eaaa90f4d56802abdacee285f91a3df95875f9c47f81a5c11858fe6ee513c00a5c59f84bdca2ff9bd0151d6011b3841180b5a54c677fb97e698b66c7b8ae9080d5de62ded460f5eae93a6d85f7d4c05212cb5095487315bff14644235d4432595ef5eeeeb327a3cac363c8d04cb8601334130ed804d487f1980116b7980955a76ea534cacb8300ab4642c24f2d8a21b01414aaeecfb39e02ac9a050b408055aaabc06e60f9dfddf81fb0e66107ac8bdf032bbffe16d3c04aef7436aa650cacf35d564363def480753525019a69c6d884033301161e5375233593d479a2676477df28a53d3da37bcb0676ac6e76b3ab77b0ad5f4e0d2ccf06ef1d09ce39962a153a4a08c02ab076b0537ca22a174f0b58d90c80e55be1b53ef17ff1f39181259729aa55208000ac3d6506b7c9066d6d0c5eb028c06a6bb168aab779fe68a3866c2235b094c533d5a532ed249f468ae8a60b4ba449484739fa45dc4f3b31fe432a34137c6ae263337d6313cd226845e06133a1bdd49be1e40b08ac1bf2eb4180b551f83873c06a545272b923cc5660ad7cb686096059380103eb1c10b0aadbf6d101960543605d6c7502011679d48d1eb06afb56c391269e3113f88aa613ef4891456f5a3fedef1bddde37ba9302aceed13d19039bbd1b965bd5da5bd72d9b0096e35760b9d57b6c4c71ceb05129d752a8d4a60bac2a1bf3b37abbd465dea9c826a00096cbbfc05ae15bbe7cdbf8911c446009cb658a69e62f4600d6ae7283c315c6854d3a1ded5a0c81d5d66cd958677736fcb0aa543235b05424b334a43397493d7d2d3a6eac0c31c94435dd1b61f74fbea980668266e27333a18ac0db6642d5f5938fa703abfe2bb0eabe0756b924d154b38421b0b4e472cbfff8933960ed3d2cc15660ad7d1384042c258c80d5dde7c634b056362e67082c9b5abde1311f7ac08a2abe03cdc4ad6662724513f94c7c4946ddd5ae610aadb64d00ab7b78d787feb58eb576e6b53616b576d4c0726e705f95e3946caf5ca641acd0440256b195ad95dc6365e90f3480a5470dac7c9ac00af22db7da7ffda784b90c81a59e27683015584ad4c03a586172a7dab8b50d08586d2d5675350e5b565f56914ca10696aa549686ccb8b1a244753244243245c53364141e6c3f71ea7519b7b3099a099a09b3580216fecd84ae5795a5066620c0aa969038aa788c21b0e4e549f716d83207ac3b41b26c05d6a60f7eec03d67630603dceed1a1932600e582d3dce66758e0c8115d1654d0f58dd239ee131a5d04cdc6f26d0154d2762c9375233485d477b46b6f48e6e990056cfe8cee48febecebac4d6aac964e039667a5cbeb00f5520db9727539046091adcd2ee96e51958c51968aa7004b433ee93f60693306d60aaf8a15be65c6a1e13f2532025686985a8e0802b076971b84949b84559ae735e9757c072c437ac06a6db6a92c73f558f64459229d022c15897f81a5269dad299be528fdf48dd8b8b1b228c692928b0cd8723ab2383c86cc71274133413371c44c94ce01371558189b090b36a1e9d9ced380c0ca91d4d2d1aa6608ac20b18bcc012bd34291adc0da96e6490f58d25801eb7d59fac8903e73c08ae9703665042c890acdbacf9eb480e54401565ce5655c9b09733671a399c03bf1aef245c19bd64f3b7b4737f48e6e9a0056f7e8f6f44feb1ceaac8cab2da603cb85ec7c3544b74443a64c55061958a59616b6b2f71425e29807965fa9d6999d3f26fec51058aad9620c8175ac72e9c36ab3366060b536d965a7fb9bebc6288ba753034b5d26474b2ecb59f649b49856a6e8b8b1b2a564df2df33aff24e7542c7b8d05cdc4cf66c29e4de0669a5a7c1d42049e3713aa33bd475f96566aeb8300ab5a5c7c93f20d86c052219614cd59840e588a8a146035a8a8d83c17661fb076e5bafef673116781955b7b9369601d68766208ac8046d3e1313f9ac0eafdec71f25d09cf9b895d6cc28799c057349d7a57195bf6b87388e2aaf593c0ea1ed99afb69ad439da551cd52a36af329c072ac5e7ee0b669a1ba5499b21432b0aa2c4c6ee9ad51127bab203e0e2cd5ef8095c61858ee5f81e55fa27879c58f897318024b254b9221b0422bcccf545a55b6e8b50302abd9b6b9dee1d1dd9d9ab2295380a5219ba32d97ed2b7333514c711c586212d91232894656976ec5a335163413341377b009d14ca822f09a9958bed4fb64cf394060bd93b661082c4a971779a10096bcfc04b01a5554369d91602bb066cfc9050596395b8055ddb693396075f73ad9d5330656ec27677ac04a249f8766e26a3381afb53c1357914cbed135bcae7774ed24b0ba4736170dae75aab3d4279b1a549b7d0f2c07bb5ac735efadb2f4a44a15c41902abd4dccc51f686bc68ec1460e95103cb9001b002fd4b246f3bfe90389b21b094b324f50b841802eb74a55574edd2b6560ab0f44080d5d6645f57edb436e0969a54c6146069cae5ea1133b7ca84a68ac98c036bdc58d2299a0657aebf3f1543e6673361cf266826363d3531d779461138ae250ccc84ea52efd1c88a725d43106091c5c5bd54df320496bbc47de6807571b32c5b81354f20831560b9d004d6519ac0eaa709ac9e7e47e680f5a1c3d9bc8e01b00cc8fa8363015f81e53b0558fd7f7b9c892b8266e25e3301473efba134bbe16cd7308556ab2781d533baa97a78bd7b9da51ed958976c321d584e65cb621c88250a620c8155b5d4e0916ea082c85b3991f7e880e5f03db0028a973c31fa210908587af9a20c8175b2c2fa6aa54d7d0b8556a0c06a6974c84e5b61ac1e3f1d585ac45c03f98c30a90de95f8d95232e493156aab6d1951b54c68266e216364133b1602654b11158f83113da1e865c0604d67d597f86c092279667cd95640258714e8a6c05d622d1640e02eb5156ebc8902e73c03adcc21858673aed87e9002badf62c341327cd84d13670f2f9c482e2d6d0ae91e0ded1606a60b58e6cd8d26caf5d65a85d6534012cea192c7bf2b2d347b40a14444a89a2a58a1208c0229be9962f357697bd20271cfb15581f2681a58d1a5845735f2bfc90340b005852ba79e220c0ba48b24bad376b6fd3a70dace6a9c06a6d5ad650eb7c3efcb8a65cfa7460e928e419cba7dd9474cb1493a6006b3c4999145d93cb1463c59271ce26de3713229ba099b02ee1dfd0018b7bcd84ea4cef91d7952506a620c022894958a96521038b48ac0c5fb2960960d568ab9abf6123b084e43e701058ef4a929803564fdf72870617646011497a0d9ffd6802ebd33fee11f1f9d04cdc6926d0cd96145d5d48282aef08e91e09ea190da20656c7f0ba739d2e3a55861a5506d38165596dbb32c62c4755a444569821b048a67a91ba1e44c137d242efe4445902564060e1afef97507405022c9d5c4910609dafb47f48b66b460296d51460b536395657b8bbd945aac9644e07969e629e8d42dc2b09936c71290ab07225a472a464d3744daedc8c3b1d4b86668266e20733d1ec029d080cd884642626d9c41133a1bdd47bfff075106091c5c4ce10773204968d641413c06a52535b714d827dc012578d61082c0df600eb46e2506ecd550ab086d1032ba1cbd9b29e01b0d6345b0e8fada009acacfa936c3713f7b0898bcc84aaf3f125c5ad47bb47027b4603a981d535baee4d9fb71e594f8da4471358f6a5d6af1ca58b64854080556e6a10281b2e2d18cd2ab0bccbbd57a54dac71070196768e3418b0ec6e901c0a9bccda5a5100abb9c129366ab3ae52da7460e92ae6eb2be6facbdf4d95549c0056aea474ae946caa9ed995db09a7dfb16a2c68267e361307d8c494995045e0d6a726f466427711258a5464640102ac42710503b5526460c9c9557e58a0c104b0c2f6cbb20f5832baaf3908ac9ad6adcc01eb58ab2b4360c50f78d004d6c017f78b8939bc6d26066ce25a338117115f9ed718de35aeab006a60f58caecd1f083223eba992746802cb9264157a5c3d5f767189b4602900b0728d962a2f792eb124961eb00ca98165421758815e654e9b5fff143f0f1458d93280c0ba4a7288aab66f6b33f81e584b1180d5dab8bcbec66dffb6cb5ac48c496069cbe74d004b4f29df58393b546e67a6b8ec04b0f228c9c8259bda9e7f9a7dfa5d35341334136e9f9a66c44c6881851b3321b2897d1779e975f7d81d10605589891d231e6008ac2d22a14c00eba59f22fb80256ffa8201b0b48181b51335b07afbed9800566f9fa373a33b32b096d69a0c8eada409acdcc63068266e3413f82e8033719599f567bb8629b4f29f02ac9691553ef5a62a246d4ad381655a6de59e6696ae2a5824b908045815c6ba57d482a41645cd00b0bccbacf7dc9e58e3ce185899525ad9b26685a23660c0ba57e54c6e366d4303ace60697e23c7f5ba3380dd9ece9c0d2572e30574a7f226d9b2321f32fb0a464f26488ef9dfdcf4595f1bc99786645133413735d441381afcc84f69c5c81a90d08b08ac4e40d558b9081a522935f3c5f182db04a4dd4d8072c159bc708c052641958fb68022b661c580fd31b4786749800567297b34d0303605dea761afe0f58fe93c0eaffdbe77c42013413d799098dae48c9e42b5dc37e3da3be5380d539b2ea6287a34aa5a62249f33f6091ff039679a5e5c54df2055202c8c0227d035699b19e9f5498e4a2373301ac529343a77efaba65141858e236451220c0ba53e59c526fdf8a06582d8dce8d756ef76f1cd453cca0092c43950277c597c952ea93c0caa7184b4e316af5ee88181234131bd904cdc469337d5f3ddd12c7630a58dc6c265457e7ae9d8b04015695a868b8dc6e6460c9ca569c110cfe0f58828220c06ad2d0707b28c926606938dde314b0de157d4001acfeff8075acd50d1958da64e38e7f8268022ba1ea3a3413d79909bcd3efabde143fee18d795f71460f58c06e77df4d7256bca57aad3065695b9579c51a6bc4091f8c262491a3f11564c0356aea1a982c0133181e8ff8025411b58668c8015e053a27d72cf8f092880655a200108acbb55ce2fc8ce4dadc65f81650208ac9606973ab2e76adf275ac4ece9c03250293451cdddaf109a29499c0456beb46c9ebcd2d3900b11b155d04c1c671334d3cc9be91b9bc023f09b99d096e0b5060458456272462af9c8c032937cf72fb0162f0607d6bee3b26c0296aed74dfac0aa622bb072ab2f3201ac8e5e07a7064f646085772e1f1e5b351d581d436b4ebdab8466e22e334d8fdee2cad3efabef6524350face819f59c0eacd6e11581f526f2956af480655e617e3d503a5f620120b02a0cb5afa804882f78c5105826d4c05a4a0758bec54a1756fd98f82738b04cf2a528c05a0ef28245727e5ce556da64d98e1258cdf56e89b19bf594d36902cb50b5d05c25f3858c6daea4ec24b00aa465739535ee9c7f7136960ccd04cdc493669aec1240043e3413aaab73a79ee49154d418028b242a7a4a663b32b064642a5e2cb6420bacbb6b15d9042ca3a0cbac03cb9b2960d5b66d6002582f3b5cec1181a545366dfe7b254d60bd2c8c043213e66c82669a890b2ad597920ac93d9bba473da603ab6378c5ad2e4705929a6ca5ea7460e9914d0cab4c035ee9664b2f28149dff1db0e4c5a881554905ac52431d3ff163620ba2660458fe3ec552375c26eee40002cb385f1a05b0c8eec9750eed6dc6a880d5d2e05647f65ee1f94c8b98431358c6aa05ab556e67482a5203ab40869861607ef969f6d9f735206c8266c28f99b06713379a09552c018b4bcd84b627fb2e8000ab4454ca44291b1958fe6257d0022bc7569d4dc0325b7f6e164d6011d90eacfe4f964c006b63b32732b00eb73b0d8fad990eacdade5dbccd268e23890d6642d1d9f8ca9cc6a3dd23145db95380d53beadd3beadb3beadffb155815833eba2475e90a157ac0322937bde32e962f3aaf081858b9fa86f20b1e09cf7f0b0e2c6b0460f916093d349d58e30ef215e138b0f2645101eb558d5b73ab297d60d9d1045653ade7e33b87f495336902cb48adc85c3def16d137574a8e0a58720544c5589f7517622aa199f8d04cec62136eccc4b0cb544d05169f9809ddd5b93755b9e6cb18028b24221221bd111958b2d2a5598b145101ab594bcbe7be143b8065b5fd14abc05ad3c204b0eea7d48e0c6ba30556698fa363a30f02b034ab97d67d0ea609ac3b19c95c6726bcb109b7977acfc69162cbee740c5368e53a1d581d23fe212de6b2154ad215ca54c0d2f90f582463b777ba5992730b85e70202ab424ffdbab28fe8dc481ac092a60d2c0b06c02a9cf7521515b08c7289e0c07a54e5fe9cec59d668d58e12582d0dee5565fe0ee6713a0ab9348165aa51e4a9fa26555a8d1a58853272f98a2a4f426f9c7b57c51b66e2009ba099f06aa6a9252145e05333a13c3977e97a5c8d8c2c4360958a48982a6620004b5aba7cbfc81eb4c03abb57811dc0b2df7f1c1058faac03ebc97fc08a2b7ccd04b02eb4bb23036b4f9bd3c8d8baef811548015661f3496826ee32139ad594d57733935a07bd7b465da603ab6734a078d04385a42c59ae480f5886e546673748e789fc8500acf2ef8155aaa71520765878eeeb9902969f5fc1ef3122fff7f54e0e18b0e40c73e45101eb59b567729de3b8aea602cb1a19580d35de11e1117acad9347e22542f32d128b6d0cc3ba5b023478a480dac4259f96c1da36b0f5323e26aa09940d804cd84233331621378045e3313db2ef5c604ef6208ac4a11918b52ab9181a521994e5a2ccc1858aaaa93c04a75566707b096871ee108b02a1b77310296f91460f5f4d97b37fb22004babdaa27234783ab03efdbdf2526201341317990955e7e22bcadab7778f3ad10456c788dfce1653c972790ab0646802abcac83adb20497e5e81d09fe0c0cad3d5979f775ff0af28668065491358f93f7f5838a12b606029d8144aa20016d9eb558d7b738b195a6035d77b16e6ac32d749fb06ac8229c032d52c72544f4a96d1cea306960cb188a898e0e27fe16d39341334132f9909bc2be3c0e26333a1ba3a7732b2a454439721b0ca84c56ce5e310802525557e51389001b09495a981d5a4a3e3f1547ac681e5763a047b605d8eed1b1830450bacf75dcece4d7e08c0dad6e63c32b68102ac91ef819544be05cdc45d66a2f54c456797d207f2dbd2079d23145a4d00cb8d1a583da3fe799fdc142a14c5ca89d381a5fe15587a15867b4289b9c2730a05418155a1a37a43d153e4cf974bd003cb8e0eb07cfd7327efe48003cbba500a15b09e933d4b1baddbd002abc1b3beda77ef96bbfaca397480556ca155705a71478eb43cd50b16b1489658a0a4faecc8d5f37135d04cf83213b36c8266ba8232023f9b096df7c2ee320456a5b0f04b713b64601948c4550b0a8303ab5947e7c461c5190796f7a5ddd803eb5556f2e8b0165a60ed6bf5460656d170f07460357fdc79ea3d099a898bcc84a69a6ba9790d1ffdbb4797d30456dbb0efc646438972397ac0d2ac32302ad67fa3b7207fc9ecff802521400dacb269c02ad5515f2bb65b684e24dd172c39d4c0f20aca600a58d254c0529b04d6017ac0aaf64aae756a6b35fb062c4b406035d57925bedb61a49e490f58665ac5ae1a1f526534a600ab484e21d3d0fcf2ab426826dc9a097b3671bb99a86aa05bf2bfa106168f9909edc9b924b7150c8145698dcc650460494a965d15f14305ac782f8d190796ffed6dd4c01214620bb08e7c0fac02f231b4c0aaee75706b0a4000d6d6569791b18d538035f865e5dd8c341e6613c791c40633a128229e94d910da3542d195e37460f58cfae67e749529971729a30b2cad4afd807bca59c2b30a16cd02075689b686b940c4e2d9ac01cb9e0a581e651ec149b480358b01b00a640080e538092c4a91d5ee4dcde66881d5d2e0554bf20ff28ad453caa303ac124bad828b8a1bf2a4e5bf0396ac7ca18272d4d6d00befc9d04c3c6c26066ce22d33d1ec2a9d08d04ca84ece9d7a595caca5cf10581922ca1af24508c032167f5723240c0eac267d3dd748d99905d6cac71b9904963730b0ae4f055677af1d1d6019d303d6950e4f046019d5da558dae9d0eacd4ea5b5c6726bcb1096333a1b9a052f33837a66dc8a97b74194d60758cf81c6831112b934100966e995e449048eee23f50012b4f4b4772cea345b35f310d2c271b6a60955180e5ba3a6e2ab0521803cbaa40162db09e933d4b1a6dda9a5103aba9d6efe1ed5063f56c7ac032d72ef1d17c9b29a33a0558c5b2f2795afa371e679cff50cb8a99e08a2668269c980955046826b45dbbfcb64a5a1a1958154242e1925b10802521517653c41b1c582d7a7a47c3956616586b5fadc11858f7130b4787355101abbddfd6af790502b0c23bbd47c6364f0156f3c73da7e3aaa099b8ca4c28ba104f2aedd8d2356a4f0f580dc39eda2445a152246019e5e97c20cec917f81d08581a440ab0cab5959f2b2d139afd9c31b0945100cb795df44ff1f350032b1f35b09e913dd3ea1cdb18bc60394d07564bbd0fa92cc8d122415f79ea578413c05aaa5d6aad5d704b21284f46fe3b60c9c917cb2bbd0fda7af15d15c7cdc42e364133e1c74c886c9a113361012cb69889a36c4255e4d6630c81552a246a29f71e0158a6626f6b4544c1811513a039b3c0daf86ec504b0e6b30cac1560c04a2bbb8016588fbbdc3d9b83e801cbbadea1e3ef4d538035f865cddd8c0c6826ee3213f8059588f89a2779d1edc3cbbb47ed6802ab6bc4eb5ea79558998c207d606956e806dd50c816fcbd60210a609569a91c950a5a328b7960394c03969f7be9f20daf99009665bedcf26219942f585e3135aead4c01abbec63ffce03543b53c7ac0b2d02e5eaf7e2f5b46996a06eb2bb0e4140a5535efde8cbd185f03cd04cdc4ed6642e8dab408d04ccc5c9d8b21a7dbba5203abea2bb04854c0a2f454d4160158e2e2a577443d29c0aa07035683b1be7394dc0c026b5b8a2fc6c06aeef04405acbe8fd6ab5b83108075af2f70646ceb1460a556df8566e22e33a13a9f72218154dcb6bd6bc49e1eb05a873d5d6ad584caa42780254e6b4d8376a9ce051fc15c81df5001ab4453d5573064d1ac1713c012a1072c057ac0ca9b0496fb24b03c4a976d7aca14b088688145e945b56763b3451b7a6035d6fabd791e62ac9e4b0f58e63aa5f6bab9efe5cc0a64fe3f7bf719d554ba3f7c9fe7b9efe7beffa3d3c75e11a4f7167a07a95244aa820d51c4de7b2fa3a3632fd87bc7de40aaf4841092d00209a184de11129c9917cf0ec190b2f7cedea125b0d7faaef3629c59ebe89c75f8acebfaeddfa527022cb2bed1e788cd973e156366eaaf99869c4da3dc4ca06c425a0a53013393749d7b46a09898c1032b7fd6ac48ad2b30c072557d8d1c5855f6f607ce1a0f20b07666857281357e888075f53d9ddd65260c2c5b78607d6c085e54150905ac8515c16dff6cfd0eac8d3c6055b6ee3f1347c3cc246b661aa857e7ce7f2e7d848faded9cdfc0f60605567dd7c28c567f35aae64c8a260cb01cb32c13b5fec899fa0b175833117c45d8032c928599d5a42bd37f7fc905d6a43e6069f70f58de5b1f8e8d9f841a58047de980452df78100961f0cb02acb961492a3dc6dd3608035d78674da642f41db501458ba0644739b5b4f332ec5d331330dbb99fac126cc4ce852c0cc2475b7cf3ca5a9a9c1032b55d9d8549708052c5555ca03d510e4c07a1d653980c0da4d5830615c2e7260b9cceb17b06209f75001abbdcd636bcd0a1860c5b6afeefa779b20b0befeb3fe6e7ac60866d3883413aa2e2514e556edaaeff28602564dd7c2bd95f6b328ea50c0322ab2342db05a71552f73c62f84292880556061906a6aa7f4fbe3a9fd0656902f49105873b7dd1e9b0005ac71e352c181e54e30900258cf69a199dc312c6980c5288e581bfed2019703052c0f1bca32cbf759da26e2c0ca333479bff9c8e538da208d81636692d33170b93313bfeb0852c0ccd49fe753deafda090f2ca0536a6b6180e5a6f292a1ae811058a56e0ef33fe80f20b0a64ccb1e14609d060116ad220a15b0d29b0296b2a2a080b5b62aacebdf1d22c04aa13d943b330d039b64cc4cc89f4cb9f0b9e4416662cd57bf06f65c286055762e702c3698010b2c338ad589d5cad9d37e4605ac7c73c35bba81337f7bca05d6f83e60694001cbf40b4260b9efba2e0db0f08652000b288e3b86e58e06588b78c02aa3855f3c75c9d1140f00cbd194240e2c771baab74dee0b8300a2ae8110b0f4b8b78404bb39d7dfe4c9329b30330dbb9364df4ca8521806330d399b06f19994f7459973bc4080d563acfc1e6351662985683e8002968a0a395a6d05426055393aeebe6c3280c09aa9923634c03a1b53ddf9d51215b08ed446c0008bd4b9892d0caca2bad3a3d74cb06c926533a17a41e562022d8d71a2e7f8ca0b14580dec0599ad7eca14f5e964386059e4593eb79b889f820e581473e39d2a6ba6fffa5c18581ffa0bac508aeb9ecb63e227a207969174c07a59125a51290db0cae9cbe23fec72b6c88601d65c1bf221b353045de33e60e9f5004bcf906c847b79f84a743c5d86d884990933d3c057ce0f05b064ca4c83ca2654cfa75c788a27995ac2008b3a6b568a92b1a9361e0a58e62a49459a060881f56ca3f500024b5927490458ea0300ac7a7160bdfcf29add658a1c589466bfe5acb550c03a5ebf9cfdef2e4160d5761cb89458809949eecc84aa2b49f9e5ad613dc757e0c0aaed0a3953e3a4485183019671a1a54b8a599ad2af84493fa10216d9dc78feb423537f8d1928608505f04eb0c8cefbcf49012c37bcb174c08aa185155578b12a5003ab92b1b4a420729e4b8a038e08052c0f5bea12ebb86c1d1c08b00c8cd27d82a33f156166c2cc24bf6612e9c617b81446b39906ea0595e8db09545d7d1860511515afa82c820216d001b53d088155ece5383f76c080a5818b951e582b51002baf643b2a60fd55170105acd0cab0866f3b0581d5debded6e46366626793413f2e7532e26d05fe4beaceb045ce509052c56677000dd643a2cb04c0a2c565cd6e10e60210796a90e002ca2194eeff7eb937f79d107aca97dc0d25389931a588e074e8d499000ac59e2c0ca961258cf6961d9657e2cd013ac7221605532178a008b511cb16dcd1347531860e5cfb3237ed4f722eae88b008ba26748c259dcb99f783901e4106be49b497ec6c047b99924b209790a989906a4dbe7630ad5d461804551545cae7e190a585ab3b3f15ad64880c57276de76033750c032707e3504c03afeb0a9b5cd1139b0729afd5756af87025672c726f6bf7b0481f58efc1133930c9a69605f9dbb9c48c397efabeff28402564357487167800655632a59150658a6148bbf5629654dfb1915b0f2cdf5638d1c67fcfc6492646025f601cb0211b0ec8ffc2915b04c00602d400f2ca0047a505585a714c062962cbf79f98cb339010658deb6799770db72740cf3c4804536367db7eb64f4e752cc4c9899e4d44cc8bb291db0468999d03e9ff2e4c0157860652a6a59697e0105d6ecd97991aae741806561210eacc75b6d060a58167e8f2403cb1929b0d61c0407d693844f9c2e1c426075b4bb1cae8b8202d69f7591ec7ff70a022b9b791733939c9a09d5ab73d7bfe455b6fb37b0dda18055c70ebe5fef3a8ba2060f2cb33cf318db89f8293fa10216d54cff8a56d0d49f9e0e38b0962d24db1c3b281db0e693748480958ff404eb152db4b2521a609533c2d31277b85a66c300cbcb8ebcc5f24e8eaeb110b0f40d294086c6193ec157638b3033c9239b3033dd44990266261833a15d05fe66dd7e18605166cebca7e4aba5490505d66c6552acb69710b0cccc4081c5f09cb3f09dd18000cb61e9cd21005611731572607d690e8aaad9040aac2595cbeabe01b4dac70716a3f1f4f9cf25fd34d3d0b3093313da27e72e2796bea33caae51e5f4102aba62b787ba5f54c8a2a1f584a541060d9669a7ee10d60a10116d9cce0804ac4949f9e7d07d66b506099a004d69260ead2d03cabe37b8712583ddbb0c28acbbd5970c00a0605562563594941648877a29319c89a061eb0e6dae507d96666e95980004bdf280f6771f761d29544fa40b3093393bcb049becd84a8d4de1430330decf329f1212b6080459e397383ca315060292be7f9a83c46022c968bcb853fad060458ee1b2e0e36b02e3ccbe7b0710881d5daeeb2b7761d14b0123ab6b2ffddcf075653e7a1ab2954193193acb149f6cd84aacb49b4ecf203f55dee30c0627506f9951a4f8706966e21ce30df2cf0a97ec6cc5fd0022bcfcc708de2c6c97d2758df8135a30f5886d202cbfcafed6312871458dc579f9980a8a40116a33872ffb687732ce08035cf3e2fc6680149d7401c581463d3f7bb4e5e8d2fc5c6c0479099e0d834c2cc842a09c01a7627c98299d06d51fa5094e6ee07032cc28cd98e6a1f4181a5a444baabb50c09b028417302e30600587efb4e0e36b052497f72d826088115dbbc706dcd165060fd59bf86fdef413eb0be7edbfb383b033393fc9a095557928ae8cdcb1a3870c0aaec0ad4cfd79a4686039611d574fd098dcce93f4b01aca029fb278b9f600d04b04c4f6f1a93306168811586e7ceb94b03acb2921557cf9f77b1cc8101968f1df9126e0751d788acab4f160616d5c8243570c9b5381a6626cc4cf26826a05b8853186d6c1a82eddee75f91b2ad1ca080459e31e39da2b5811a1e145866caf1850616128155ede67630dab2ffc05af0f721b4c0f25a800258476ed5b4b6d9230456639bebaebacda0c00aaf8aa8e93ec00756d73f7bdf901230330dac99869e4d881f4ba1df4ec7d772bf1f74850256033b28bbcd57893b80a502032c63b2e95fab14b3a6220096ee6c4160914c8d9cc69f9af8e3737060290b01cb421058d61281453239bb565a60e94a07ac67c5a169f400a98015ce2c59f1ecfe09572b221cb0ec29fbcd2f11f58c4581656044353022d9385eff5488990933939cb26998812517474d83d79938faa5e7846c2b7b2860e5cd98715dd15f5d8d2c0eac59b3486bd54e230156f24ae7fe032bfcc6ce1e6051418065d66f605d697c91f880c3364608ac574d4b36d46e07055662c74ef6bf87f9c0fa44fd84994936cd84864d489f9cbb9cc8784b7e5ec71dc08204561d3bf0fb843b1cb04cf24cef794cc6a30716d1d458efd7ab131000cb142db016910c2f440e35b06861f1a541551573a500567969c4e777fb5dade14eb0bceca95136af09ba381eb0284002c0a2985a3cba1d7b2d898199093393dc99495215822105166626b45d7c41ccb471820256def4e97b94b682026b9622314677a14460557b78ac7f62d14f60ad7eb6610080b50512584c56104260b1da3db6d76d07055674d366ce7f47f9c04a2a7e8399494ecc34302ff55e492a49659caaebf28001564d67e0fe2adb9e09773860e188a69fb57ec34ffe092db0b271b8193f3e18ff63cc60004bff72f80f89e3871258cf69611f4a42aaa43ac12aa747e4646c76b3268002cbb3075873ed0b02ed08597a16e0c032317b7bf8d2b544698035cacd34f46cc2cc246226c16ea749480133d3e075f12529c36e0e14b048d367842a5f160796a2622e4e29aed0c44622b0627638f513589be35680024b0f1c5865a88075e5791a876d880c588ed18d6b36d5ed1407d69ebaf55fff3dc607560623465ed9849949da27e7ae26d30aead736b0dd608055dd1518cac04d27c3014baf003727ce305df1fb84fba49f7290018b6aaafbd1c061cad887e0c09ad52f602d0923e94487490b2c3d5060fd89e004eb55496855a534275815f4e5b4fc284fbb6c7860f939e47d309c97a767280e2caa112e71c596ebf125989946d451d3e83013aa1430330deaf329175f93d31ddd41810594356db693f22b7160cd9c495cad7e4622b02a7c3d97bd37ef0fb076672d1a3c6011f2b7220456566bf0d6fa3de2c05a53b386f5ed28e7bf3f016071fe3b4cac782c5b6682651366a681ea5a72318bbb01cb150658559d01ae348369b0c0d2cfc7053ed4cd98f9335a605170ba77b4bc278f7d841c58d682c0b293002cadebc1d201cb2f1709b08240811553125a56e1251db04a0b2317f824399be7c2006b9e03f91e6e1549b70f5854a01e60e51b99e03dfc6e7ca60d209b303361661a1a3321e9cef7143033a13513da2ebca1a43a7982028b346d5adc7423c3d9a9e2c09a3923e785c1227860d5cc9d7bedb8437f80b597103a4d918008585ee88075f85a6957270e09b01adbe71c6ad8290eac08d65a62d741ce7f2778c0caafb977319e8e9969649809cd93738c3b69a4ba4e2f1060717c1a38f31a39f31b3901955d01c685da7c60cd000516d524e28246e60cd4c022e3f44ea92d9c34e6b130b0de0e0cb01691d46fceff2171dc90032bacb8dc872515b0e845ab562d7e0f0f2c5f7bca65d31db9ba46e2c0a21a1ae759d8dc8c2b923d366166c2cc24c14ca852180d6c1af6e7532ebccbffe2e20d0a2ca07b33dcd466134580356306d14431aec8cc1e1e58850b3d433ff70b582aba5f0616589bffe202ebfd97f3dd1c0324c07adc1cb9a37e9f38b05eb4ede5fc779207ac92fa5b97124a31330d389b86c94c285e9d8b4ea23fc127d575ce6de0b8f6e4dec0f16ce0783570848055d6e5af4255efd11508b0340bb8c032a0986c3ea4dab7a3411c58aa5341819587d3df362b72e298278303ac5cd53bde3f240d35b09ed3c2c865f3a4045671e4ae8dcfe65810e180e54039657e3457cf580458f94086c65433cb7b2ff1d793cb86974d989964c74c43cf26e9cc343cc01a01474d83ba0afcc2878214b779a0c0ca9d3af5e8cc95e2c09a3e3d67b5fa597860d5787b1f8fb6ef0fb074ac628580a53500c0da7ea6aeaec14512b06c006015b4cfdbdd70401c58679b76b0ff3bc5035669c3edcb8925989964964d68cd84ee399464c69bbc57756c3860357002881dbeca928065483639b47e56ef2b84688045c2e92f9bba6d027a60390a026b0e24b094efb92306969a30b0f4fb032c42d97ce980c5a045fe75e8f61c4b7860510f5a9c870496a9c5933bb137921998993033c91d9b844a870b0e5823df4cb06c1af0ad95173e16c5052f070516d09699dbc581357d1ae181c10a786065447af40758261eaf061c58375ebce9e6e84b0456fb5787d34dbbc481b5a77e5bf33f80aeb8c0a2563fb9944897e1154d23d34c12d834946ff426d3e30a6f733f218406563dc73faed5f3fb122c38609d5d343d7b2a6a60e59ae8cf9d7078c298a78304ac598fe60c0bb0d2ca02a40316b364e5b50b175dad726080e5e340dd617d3b57cf041c5838f397179f0a036ba49b499ed834bacd04cba6bb6852c0cc34c4abc05f6c3b4e529c250e2ce29429eb66ec1101d6b46939aad353d3cce6c100abc6c767c7633ba981651dfc480a60f9c302ab98110603acaeefc0fad4ba7c5fe36111606dadddc6e8fe8bf3df69005878e66bd9601366a6419013b2ae2695a4d2cfd48300cb870fac3a8effa346fe122c486019e519dff19c9c3df527c9c0d256120416d1c4c0ecb7b3e37f78860a587682c0728406d6e2dc198fed7e48fc638881f5ac382ca134885505e8caab1a3db09e3df8cbcd1aee04cbdb217f9d4d0c110a582666ef8e45df4c2ec3cc240b6cc2cc344849032ccc4cfd5c6b79efc2738286b638b08022671c1401d6d4a9044bc577349b3930c07ab7d35d6a60b9acba3eb0c08a7efaae9ba3271158c5edbe871a8f88006b4bdd8e42cec9eeffce02c04aa6c50ddb511366a6c13413aa27e7ae259766571cae67bb8302ab91072c7640749dd32caa046019938c9fdb8ccf9e821a58392686b37fbc394e22b034c081e50a0fac45c4e9cfaca181351e165806d2038b16165b1a525539570a609597ae887b77d0cd06ee040b0056a4edfb1c5d1c14b03eedfdfb66120333136626f9321354f7c052c0cc34206642dbb5c7e9e91676e2c0224c9e123efda808b080bfbc50f53a0cb058febeabdedb4a07acf9fbff8603963d3a606d38565bcef2860696390f580d5f9d4e371f3cd8785410585bea7692d880aeceb3ff3df789fa0533d3483513fcab73228b25afa79466314f34b03d1a39ae3db937723c1b395e8d5c5df501eb5683b3e4132c92f153fb09d2016be6d8bb3c604d1e0c603db1911658fd38c1a2857d2a5d80f004ab5214582be3df1f9008acd536af6080f5f1c03950606166c2cc24cb6612a812b28cde1486c64c43cf26997a3e057445d3a50f059ffdc244809533793260acb069274480357932fea8de7e2860d5ce9bf7ec90bb74c05a72693f175833fa0dacbd5c60dd7d75afbb5b071e589d9d56f75ab71d693a2e08ac6df57bb2ba4e75ff77f1ebb74baf73b3469199869c4dc36e26749bbb534ad319dc2b42386071fc1f23ba223479e032491458d37f47022ccd9faf8dfbe1291cb054c181354710586e525c110e22b0e24a43aaa40456e4c7d787ddace167b0f237d83c83b9227c7f34fa56721966a6d16ca6a16753ffcd842a49c092253349cfa6a1329314bdda702877da74416001654f9a123cedb408b0a64ece7a611601052c56c0fc4dafeca500d6da988d50c0c2a104d6862395750d8e128195d01ef167f35f22c04aee3cd9fddfe536ceb5a7781266265961d3e0980955d753e8292597ead99eb02758fe6f9a3c94245d1102c00299c142002ca28981f16fe7c7fff06cc24fd2012b130e588b72151f390d0bb03e97064b072c6649e4db9863e2c0f2101e72df62fd10125838f337276fdf1401166626cc4c03cfa6013693c4ee0ba420af661a41afcedd3ffd305b5d4b1058844993b2264df59b7a5e105840ea53138976f34181553b7f7ec2362f2980b52b75d94001ebf9c7f3dfbab5e18155dce177a2e59408b03e7500ba8a2e6f7e7c27bd1033d370996928d984fcd539005889c5d7ebba2081d5c45dd3e0ffb9752ee857842a825f11e6995cf79d2205b0724d0cecfe38357eccd34102d6ac87305f11f6014b1d0458d2efc17a561c164f0faeaa9412582f1e1d171f72f740f315e1abf38f6e7d29930b338dc8154d23d34c83c3a6fbd2a680996930cc84764553f46b52ecfcc582c002ca9c38356cca3141604d9a946dabf892e6ec050aacba8080838fe6a005d6fe9c3025557cff81b5e148696bbb193cb01a3a1d2fb69c1001d6eb8e539c7faf6532e2af243130338d0633a1ea7a0ae373c17d98132c2eb0d8fee96d5eca60275842c022e3ae044e8504d6ecc9d0c0d2f79c7074c25804c0d20607968710b0724580a574df0529b0320612588974a45f118a02ab34f2e9bd53df8145060596af0375b7e535c83d5838f397575fde4a291b3d661a063661661a04330d0ab030330dc166cb07a7ee6768e9f181859f381168fba45553a7e0f9c09a3831db45e909c3c54b1458fefe00b0886bfc96a30796ae55bc28b08c5103eb7dd2c16fdfb46080f5b5cbe261dbde532d670481f5aee3744bd7fd17c4dc0163136626993713aa27e7ae7f617c2c780a7f82d508b66854110c581742c5f66021001609a71f3079dfc4b14f78c09a86085829e0c0f2140416a577d1e87d9845a38305ace7b44549a5c1d201abac64e5839b675cad2400eb80e52518603dbff5fef617298035bacd04cb26cc4c43dc834c0929606692a96de0d1ef281f16ac24f4188b07acec0913ce4ef4569c9cca07d684095973951f32ddbcfa80e5e7c703565d50d085eb1e688165e9f7427a606de0026beb31726797010cb0d85da66f3ab69f693dc707d6d1a6e3e95d174beadfdcfc42c3cc34ec4e1a4a33a17a72eec617c67bcaab7af65c3860b1038abffa2101d6dfe1335003cb448bbbc97ddaf65e60fd3af0c09a7dcf533a60cd27f5e3048bb628991e083783550e07acdb57ce7d5f340a09ac231667a0ae0829a6164f1fc40b000b33935c9869a8479a64d04ca852c0cc34d86692a27b1762d2f48cf9c0027a30c15c6bf2273eb0c68fcf9a37fb6ea5a7371758bebe82c02a89088c8a7746052cd7c8dbfd045672e6866fdf34618015d7b1e97cdb453eb04eb69ca4b0afa5d0d2e4db4cb231062e7766421500ac37a48f755d70c06ae204547505e81768f53cf6ac0a03acfd5b94459fca4106acb533d74f1afb582a60a5f381e50b012c953b5ed2024bb73f43ee295c6041efc1820616b324f2daf98b928025e12dc287aff0b753cb31338d36330d3d9b06d64c288125e36c1a296642bb6ee0caa7a237cb36664f9ecc031640aaf7e3d52d263ee4036bdcb8cc60d59b2c2f1f1160d58784bc3b3c0f39b07626aff0d9784b559da2a303fcff5e81994591a54db1951dcdca9e66ed5062e10007ac853dc0daf5573a87a30903ac94afeb2eb55de603eb7ceb696adbc327782a66a6e161d3709b09e59373ccc7f8ecda2e2f3060f9f28155cd0ef02c31980e0b2c032a6efd0935d1c79e11002b0fa7bf7d56e424e1132c252160c5f6014b0f1c585e73f010c022a9def6fd21110e5853070358c56169f4dea772509f60d1569d3e7ad305fe8ad09e7cdd743349d7081458645bc7bb892598993033c9239bc47b089182ac1d358d603349b16ee0f6add83837bf5e528d1f9f3c6e9ad784b37c60fdf147e622f56bd562c0aa5fb8f0e4c3b950c0da9c12bce8d22eaf4d579c17bcb072fa6261956b6397e7e8447171cdf7f02cf4f6299eef5f12144c5f185ab67809735978c592a5150b1657f82fa8709bcf1407d6e28d9585a57edfbea943012bab3332bafd2a1f58d75b2fc4962646273330338db0a3a6fe3fd30bf5eadcddf4a2eaaff3e18155c30e5c5166368302072cfd7cdce21bda9933058035f55724c022e3f40ecf5e2a08ac9990c04a9002586ab7fc861e58dcb70819c88055260a2c46f1aa03db1eb958e6c200cbcf21efb1f1d23c5d437160518d7078dfe03b49a5b26ca611bfa20933937466eaa90a610a9899647f15f89debefe3e678f35495316efc86715193c7a7f180f5fbef19cb35af54cf9b2f02acd2c8051be3dd0481b53e759effa9ed5681b7d5755234b53275f5b20d8df038b31c0058b602c0f2f1150456f9f2e51591abaad6acaddeb0b176d3e6ba15ab6b0297560802ebe1ab93fffca30605acbcaea5d73aaef38175abe9c6cd8cc2c11e691a76248d3e33c1b1a9ffafc8dd4a2b2d6d5edec0768701561d3bf000cb76a6046099fabcd2cf98f98b14c03aad163259e08ab05fc0f2160596c6cd801f12c70f3db032fa01ac8d2b5fcdb19000ac4f86de24706099a486afbb9b4c1ff16692c4266c0c5c76cc84824d4265c1050bac116f26f9d9067e25b1eceed5b79f1d3d327b60f5f00f63d371f779c0faedb70c2fe5fb25be0b0581551f16167f289007ac5589f35c77ec53d67b337d66ca2ce55455b5f45e6019134ccd88967c60b9e57bceed03566868d992a5e5cb232a2357b100606ddc58bb756bfdce5d8d7bf735efd8dd14b9a176c1aaca6d47beb0d95a7dc0ea1602564157d8adaf3779c0badc76f906e36d74321d1b03c7cc841e587472f50e7860d5b3836ed439f73c47c807969608b0f40a4cedd34cd21551038b82d3bdaae937e5c7efc0fae3151f586a2881355f1c586124cdeb41d2024b070a587f23005626c35f3a60d18ba2c243629dcd6181654fcad0b721ebea8300cbd83461eb91bb290ccc4c989964d14cb06c7a842605cc4c32bad91262f0e8de95579fed5c33fef823f5f7f16b7f8f9af0fb170058bffe9aae3fe55da6c70a4160352c5e7ce1be6fd0ed25d3d463c64f4c983c35090096120f58da99bafac2c072a6b80a002b180056581fb0d6aeade1026b1b1758fbf6351f3ad47aec58fb91636d84dcb5fffca32a0e2c0e479fd0b5f6ced73b3c60dd68ba7b8540c2cc849949ba27e76ea7d233997fd7f73e47080eac064ee0c716deae514860e9169a9a914c93347e430d2c53bd873a9e537e7c24022c95a9efc18165880e585ad743861e58cf8ac3b2cafc59308f3d4303abb4302ac0e30b0cb0bc1cf243ed52097aa6a0c0a2e0cc3ffc75fd6e2a1333136626b933133a6061661a763349d1bd8b31b10e1ee97f8c7bf09ba1f16ff70060fdf24bfab43f129f3a6e1304d629a783bf8efbf8db1f9f79c09ac103967a2fb08c7a8145b2b5273b0900cb1f0056481fb05601c05a57b37153ddd66d0dbb78c03adc7aeccff69327bf9e3bd74e241ee80196061f589ddd46c9ec83f73beff502abece3d52f74cc4c9899a4ee565a5942f15d7860357282281df37b363580034ba7c0040096699ee94bcb09f8296881a5fb5a6fced4410396f6b5d06139c1ca96165834ea1a0f3b829319491058ee36d43e60d95357dbbc22e8e2c081656af1fae65b005898993033c99d99061e589899647345d38d98ec980d0763f5cd57ff1af9c72f29bffc92f6eb2fa9874d4f00c0aa5cb02454e3e20f633ffdf44bdc6f7fc403c09ac203d66c2eb0b4b433f5be03cbca9a64c7051695072cdf79c5fe017dc08a5851b92aaa1758dbb8c06adab7bf0f5867ce745db8c0f9f8f14367a7310f586ddd969fd8e71e753d048075bbf9f1b55c226626cc4cfd7ca91700d65bca87ef9b1ac081d5c409aaea0a322ed49e060b2c138a5974c034fe2a2c84c0a29aeac61bda0c20b0820160cdef0396ced545c302ac1ca980554e8fc8c9d8e2660d072c6f7bca0ecb9bdc870841816566f9e475f6ddb4f2013513b6a249a6d83462cdc4ef314cd9bd298c8c31f0116326e93e9dbb7de7f379bffd0ee32ffdfc73da4f3fa52ed4b819a272fefffbbf1ff8c09a3031910b2c452eb0d4f8c03221989a0b00cbbd60ae57111f586161654b97f5016b130f58bb0160b51c3edcf6271f581739d1d1df12135f01c0aaef767dcbbef5b4eb3100acdb15b157534b31334934d3d0b34916cc84f2d539e65302beaecb1b1e5835ece0d032dc74b21a0cb08ca966bb77ab644d470c2c230d0058f9a63a5926a6530567b026f4014bb37fc05aba88a47779a9b4c0d2ee17b098f3597d6f11ce430aacd288848f7b5d6181e5634f39617e9ca8670c022c43e35c27b7fb89341934d3d0b369d89134bc66923536213113aa143033c9a699a4f9742ea9eccf9d2fe7a8dc193b26f9fff95feff8c0fa7d5cfc84498953a625cf50fca2cc03964ea69e011758667c60cda1baf5028be61f501a02006b511fb0d6f180b59d0bacfdbdc0ea3879aaf3ecd9ae8b3dc0ba71e35f22ebe81bce93e7eca70f58b137f0f9989946029b06d14ce8ba9b4eab680b6de4b8c100ab8e1dfc27cb419102072cc302b3b0db3afc0f0991038b686aacf4f3bd410296fee57034c0d2e203cb3f4f7a60c5d0c272a50256196dc5839b7fbb58126180e56b9f77c76475aeaea138b0a846b8b425abefa73046aa99648d4d9899069c4df03d1148415ecd34e46c92a3154dbecbb279c01a33f6d3cfbff6016b261758696a1a5c60e91b641bf381e540761601d602061f585100b0d6d76cdacc05d66e3eb08e8b02eb29b1e04975e24d7c813cb30933d3d09909d5ab7377d21994ea3d0d1c0f1860d5b383df35cf55a2c202abd0dc31cd344de9572980a5ffdbb589c881652219588b027b81657039624ce204d4c0c21bf7135879657eac8ab9a88055c10867d0561e3f78cbd9020e58f3ec499f0cbcc081656c1a77e0ecfd54266626cc4cf2682654298c66330d169b867bd7c0ca43e45e60fdd807aca93c60a900c0cad0d6c9ea03960dc95e0058f3fc6801813c6031972dab5801006b752fb0b6f38175840bac535c60b12f5eec8ebefaede6cd7f6f7fac974933c1b10933d3309a09d5ab7377d2cb524a6ed6b33d6180d5c409a17506aa513560806550646e9e67fed26a2261cacfa880453235729d7862f2cfcfa180a5df0f60195e8c940a5846fd01d6735a1899c90396373a601547ae0d7fe36c9e0b03ac20db4cbc9e591ea02b31605170e62fef7cbc9f5e8e9909b19946fe48931c9949522cc1060058a3dc4c32b86e60c7a5420058ffe77ffa80351100d6f4e499b3b8c052ef0516de184730b3205a0b00cbcbbb0f588b78c05ad90baccd3c60ed69da7fa0e5c891b6e3df8175e952f7d5abff00c0baf9ae11331366a6417aa9f74e1af32529b99efb600e1cb0585d21ae2586336081654ab138bf54317b1a3a60e599192d9bb16bcacfcf060a580b058065743e4a0a60b9f71b5814e6bc9e217774c02a295835dfed8b93190cb0286bac9ee7e81a83028b6c6dff28be10331366263935935078b89ee2a18185994976423bc974fc69c9fffbbfdff381f50700acc9bdc09acd07962100ac1c738b5c3eb0dc3d8481b598fb4ece8a955551ababd7f380b5830bac037c60fddd79f61c1f58ffddfad880996930d83452cd84f6d5b90799c5551d818ddc5b424860d5b2176c2ab79e090b2c5cbec596a31abc39777060692a8a038b6c66b05765d55441604dee03960e14b02c25036b5918c9f8dc1a69804530ece7156121d3a71a0e580bc48155ce08cf4edde26a8d7734254101cbdb8e7cd8ec6f2228b08c7099414b1ea6d03133c9a39924b069749809550a9899e4c24ca8e699a21399ffebff7cf83ffff31100d62f00b0c6f7024b910f2cdd2c0343bc492fb0f2ec1dc9735cfa80151854ba60611fb05603c0da50bb794b3d00ac3d7c609de002eb9c00b06ec6d66166926136c9a29950752f9d9e5fbbad817b4b0809ac7af6c21b75ae4a54354160a90b03cbb8c032f8b9116fce1d39b0a866fa97b542a6fdfc1405b0cc24036b690817582667d74b052c837e01ab24945ee18d1658ccd2889887c75c2c736080e56347ba66b23157c7501c5814635cc2f6a30fd3ca869d4a989986cb4c83c6a62132134a60c9b8996460a44916cc84769ee9b789b100b0c6fe18fbcb6f9f79c09ac603966a9aba66860e1f5896b9d6b6790e8e143eb0fce6f7012b3cbc622500ac35bdc0dab1a3b1175847db4e9ce8f85b0058b76efd7733ae163393ecb0492ecc84125865a9f4e806b6170cb01a390b895f0354a8ea33c81a90c02ab2b22358a4a8fd860e58e6fa6f0cdda6fff264108095873bb31121b0f40480e541d0ef0fb05ed0c22a2be7a201d65200588c928873c7a39d2d208065cb05d63cbbdcb786f349ba0620275838f3f7d1cf1fa6970f2b9b3033c9bf9960d934a8661a48606166921d33a14a4933e1fffef071ec4f3c60254c9a9c346d46b2a29230b04cb9c0b2e90556bebb47a1b78f18b0227b81b5a51758cd070eb61e1504d6e5ee6bd77a80155f8d990933d3e0bdd47b2fbdfc3de573cf362c486035711656752d742f319c090b2c4b8ad5e33993f1537e460eac02733dbc99c5ac5f1f89026b661fb08ca40596d9e9cd430eac456f4b16545640012b080a58f4e2155b573f753223c2002bc0363b4bcf224f474f1c587996b64f6329f7332a64df4cb2c626cc4cb2d333c4298c363349cfa6e13613aa792643db2f7c608d038035a517582aaa691a3c6019e171a6391602c0f2f0048055cc07d6e225ccf0e5bdc0dac003d6cec63d7b9b0ff28175baf3dc79f6e5efc0ba915835a46cc2cc24ff6642bbc8fb616611ab634123672e0cb06abb420fb21c942822c03212049639d5fa549472f63474c022999b9a8e8f9e2208ac69088065231958e6a7b68d499c881a58397afd39c18a2d0da9823cc182045669d1ca10ef0447d35c2860cdb5a56cb07cc89d70170316c5d0243d6ce5c32f74cc4c92cd244f234d23c14ca8d8241a013285516d26796213ba154d4ef33379c0fa1500d6041eb0526629a5f6024b2fcb5010584e1417573eb04a8282e80b437b81151959b50600d6c6da2d5bb9c0dadb0bacf6137f7d0580755e0058b7522a303361661ad4977aef653048ac233db78490c06ae084c6b5f8aa50b56080655660bdee8c76e68c5f50012bcf1ce73bf5f8b45f63061c5816277748052c5da981f59cb628891ec44209ac0afab23cc23a57ab6c079c28b0dcac7b81e56d9b7716b797a86344d6d1238b00cb18177be2da232e9431336166925733c1f75c3805cc4c2372455340540e00ac1f7f8efdf5f75e604de7014b2d5d434b005856b93676798e02c09aef5f12140c00abac0f586b7b81b5930fac63ed7ffdf5f5f4e9aef3e7395c605dffe7d6edff46b099869e4da3c74ca85e9dbb9fc18ccd7f5bcff61500969f08b09a3861acae50f342fd59d0c0322db499ff1e97315300584a1325028b6c6112a5b46dfa6f1280658616588bf22c4fee1e93801a589efd0256581a3d8055e929062c7f186095d3c3dfbfdaef62818701968f2de995412049d7401c586473ab676f080f332a25b269d89d3412cd04cba6e11b03973b33a14a013393bc980955fb6e14fdcf983e604d068035336596320f5899ba7ad95c60997181652b002c1f5f4160952f0780b5aa17585b79c0dad77cf050eb3141605df9761d00d6430e66269963933c9849f29373c22fa83cce2e6275843672bc618055db15b6aec27636151258b8621b3b927582f61f8469288045b5303ea2b162c66fcf071c585627f64a032ca28e7f9e96d4c02294f9a10516b3243cfafc396773386005d9a465ea98e701ba120196a17176e0a2c75f18c30ea69164a67779b569254df9ac767a7d675943677963574553575533bbba955ddbc6a96fef66b5b0815f02fe861c662bf077c6173400ffc8f39cea617792fc9a09ba6af1fa0b2ccc4c431cc2ebb61b29e513a67ee6016b3c00aca9bdc052554bd7e401cb98606a46b4140096e7dc3e608586962d595abe3ca23272150b00d6461eb0768901eb02e70a1758ffde7ad98e9969d8d924a76642f7464a66591eeb6803db0706580d9c458f1bbc54a9da30c0b2a1d8dcf59d8e9ff19b38b0c810c0cab730baa517a8f8fbd3010796cdf10352014bbb1fc00a25337d5915e88055468bd8bbe5be9319010a589e36795bcc6f117b06b078c0a200f180658c8b3f78ee717af9f0b0497ecc047fce047024a1b08154d156d6d8d5d2f9cf57cebffc3a05eb16ad4bb06fffb6b1ffa96be794377515d574649436bf27d7626642682624c5e4f406022ccc4cb26926b4d9fb6400c0fa0d00d6c45e6029f180a59da9ab2f0c2c678aab5b1fb082016085f5016bedda1a2eb0b67181b56f5ff3a1efc03a73a6ebc27760ddfed880990933d3103cd3fb20b33caee07d03db0f06584decc5f4ae857af97acad0c0b2a2da1ed9a2963d1305b00a2c8d62712e08816523082c7b38608587916dff3c2405b0e612b5a406560c2dac8809b80a39b09600c0a217452c0dfce080cb8102d65c1bd24593ed441d437160e5995abc88497d945921cb661a869126c477732f893584b296ba364e07e71fe1fe8549145ed0026be9fcc668e8cc61b6c4e5d7034418b96692924d7c33a14a61349869e8d9240beb06d61ca5fef44bdc6f7ff4026b060f58eabdc032ea0516c9d69eec24002c7f0058217dc05ac503d6a6baaddb1a76f181f567fbc99302c0baf9cfade44ae46cc2cc244b668265d39098096d4fb28b591d8b7a74050eac66cee25af6a2656556aa541d4160e90900cba2d076e97da34ca5df9103abd0d2906869ae3eeea1446059220216990f2cbb6347f8c0fa0139b0727b81b5540a6071b78c7aa10556117995bb6da6bd09110a583e36c477063eb93a06a2c03230c27b073cfe421f15661ae831f08f94ba82ea7600406d5dff88d4ce060f95c0c411d6c1fea7aa999d57d9f62eaf76049b496a36a1011666a6e165d3a08d815f8e2dfbe5f7cfbffd110f006b0a0f58b3b9c0d2d2ced4e303cb9a64c7051695072cdf79c5fe017dc08a5851b92a8ab5761d1758dbb8c06adab7bff9d0616160457fbbf9ac1d33d36836d310bfd4fb20b38c5c7dac813d0f06580d9c258f1b7dd4f375a180655e6ce7906b1b673c3167c61fc88145b234b39d7269c64003cbfed89f63a50196a6d4c07a410badacf0acae4202ac301eb0ca194b9362773a5b64db9be442008bb2d02a215b07c75dd0200c2cb2a171c2de534f32ca3133a10a1000a9a20da015af565e5d82fdc34f9c5f88050687304643675251036626985e40a78099498ecc843653c77400581326267281a5c805961a1f5826045373a2151f58ee0573bd8af8c00a0b2b5bbaac0f589b78c0da0d00abe5f0e1b63ff9c0bac8898efe763bbe06331366a6217ba9f76156795cc187fa2e7f186035739630bb1659141ba952f5a0806543b53f1da58a5744062c0b7d0058644bd310c5a333c6bd1005d66c70603959a6210016c5e1c8092980e595ab2135b0de942c440b2c66e9b29b974f3b99e1a180e5699db7dff4ccf70d5880aefa8095676ef5e26df6e3acca916da6b7a4da94e2468044004a988d5da5f55f8b6b3af259ed79956da9b4a6172847cb63a9f555cd5dcd9dddc27d13ac4f5d2281090c1461080556dfde9dc36c799d5b8399095503022ccc4c32fae9dcd10725e326244c989438655af20cc52fca3c60e964ea19708165c607d61caa5b2fb068fe01a52100b016f5016b1d0f58dbb9c0dadf0bac0e005867cf765dbcc8b91ed3222f661a7a3661661aa487501e6797305ba39a38f3608055c75ebaa3d249431458167c605915da2fbf6792357b1c0a6059996e52ddaa880c58f682c072ca860196f3c1b363e3d1038ba42e35b03e95065755a2031683b67cc3ca670eb81c28607959e73e3608e5dd0f0a028b6c6094b678d5b334863c9a49622f88d599f4e6c2eaf6aa96aeba760eaffadebaf935b477d7b571006c2514724f83248e3411ca5a1a3bba9b40fbcaadf96bb798bd4010d67f8109220cf807a9556d801b46b39984224a080658989964d14c68479a42d69078c09ac905569a9a462fb08cf9c072203b8b006b01830fac280058eb6b366de6026b371f58c73b4e9eea048075e56efbedd4d16526496c1afe3170393513ba5753b29869f4bbf5ecf930c06ae42c4d680dd0ce3780029665b18333c93ede64728ee27884c0a25ae14ee92e571a1733a0c0a2baed8d1e9b30091db0f0fafd015612238885125885dc01ac343b632204b0c8215649993aa6a49efb41216099987d8c7ef634b362b0c7c08738ded439ab995ddbcae9ab8d532752bb68f4faaf1fc8b530234db915ad0d1ddde2350a070a2f7e50026be1f64d24617efdc3ad0b3cc05bd52dec586afda83513542fc152c0cc247766425b701469da8c1e60a900c0cad0d6c9d2e703cb86642f00ac797eb480401eb09800b05600c05add0baced7c601de102ebef335fa39f376266c2cc34f07842f4824a654c4e417547581334b09a39cbaabb9678d0cc350b0ca180659fef783e4a1daf3c0121b0f2ad4ddee0bc94c743012b1e01b088e2c09abbeb0e5a6039e2f5a4061677cb28c39f55e9811c58e5f4a5318f0e399ae2a180e56145da8f3b9da3632400acde2558392e739f2597c88599c4033d5e7a935b93c36cad6ae1ae9baa114bc85b3de4120930566d1b3b8bd1fc1c6ca429afa2b5beef0c8cd3d073fa251a027e811f8021129828bf5a78e412a8e5eb370097a3d34ca85290753349cba6916d26b4234d279fd00357929cbc08560e78bb39394e1e24b779a4b9fee4790ba85ebec9fec199612b8b97ada145ac2f5db585b17647d9ca5569eb3793761ca9d873bc6aff49d6e13335c72ed41ebf5cf7f78dbaf30feaafbea9b9935a29cf234d989964d04ce87a9c559e5b75ba81ed0f03ac7af6b2bf6b3cb50b8ca080655be4b4f2be5996ea4484c02ab43626d958eb4fbaa7280e2c354160254b00d63c2160f96e7b34361e1db09c083afd0156cf965114c062d096eddf76c7de041c58ae56642f2be263fd85b9da7adf81c5d3957e9e8171c29ebf9e65560c3b95e0cd8470ddc0dbbc9adcf2d6aae62e560bb76a6e6ca15a45138017bf5e7b51abda6284a794f08ce65ab043af7ae8900bac415c5d5fa183bc7fec1318a3a1f30da97678cc34ac6c02ab063409c09229330d079b64d74c03d59ae5fed73e9144fee2d9471f76ecdc8a99093393b46c1af8977ac5362455bc2367d47785c000ab89134eea08352c308602960dcdd935cf29013795a80c062c03357160916d2cfd954ece9af06ac080154af5dff46a6cfc6434c0d27122688301cb0619b042c94c1f38603145815552b8c2cf35c1d6880001acbc10cb840c1d5392b6ae08b04866962fdf663fcdae925933210cf8c19cc36ca96ceaaa6ae1c64216a8c0048fbb2802c64a28acaf1139fd823d0643c22f7881891f7a49bc7914411860ac97a3cc4cbc5e214b61f499098e4d23c34ca8aee722829dc5cd743b9511b5c86bb8cd247f2b9a30330de54bbd4ff08ce2fa3d8d5c5d8103ab99135ed315bebccc41a7c0180a588e05ce17a334092a9310028b6a6bb1476be3ec892f5103cb051c58cbc3f283d67e420b2ce71c2d31605942036ba1f096d1d052ee33cfd03358c2c0aaa02ffafc7ea7a359a68d610e28b0dc2d730f989c24e81889002bcfc0287d71e4b334866c9a09f9ba81b8fcbad2baaf80ae44aa6a064b94596cf8f08c96e784ea57b935154d80c638d5ad9c1a88e0c925942475494618e29b475245eba8321348b990c1020b33937c9a09f939d395b7191b562f01fda5558bbd0166c9bb99869e4dc38e24b93613ba35dfd91589c56f1bd8c130c06a6047bc6d0e322cc44101cbbe784ed43d8b6c35a4c02ab0357b6012ac32e98500b03e490496272cb0164625fd183f0525b034a506d61bdac2ca4a8f6ac42758cc92c57f1fbd646f82b7350207d65c4bc213fd10a2b69e28b08c4d3f5c7bf134abb2bf6c1abeb596c04f6542594b4563675f4dfcba44925260cd5db1d4fa1c660b94c0aa5bd8357d71b8214198f8a197f0e87d7f0526700c96426b1c3d664295026626b933d3005ecf1d3d7be9d0df67417f69e7aeade71e7fc0cc24836c1ac16642fb7cca7302bda2754d1327100a58cd9c085657841fdd56b710c70796a900b0ec4a5cdc4973124da71355a08165a6cb0756919d6996ada3d6e4a720c0d2940a58a1058b5764a205d61ca2bad4c04aa0075655a10016bd68d99280b73686045060b958e4855a7ccad432c905742500ac3c3d83ecf90b9fa73164904d08573401eea1d576301b3b81ca21aa10a949486008c945afff2af44ba2b79020e412a9460461032130e408ab69657f20d78e123309f65a520a9899469899501d356d5a1771e9450aa8994e5e7fb4ffe831cc4c32602669d9249f6642f582ca137cc597d2e78dec0530c06a60afb85def6f546406052c9702d72babb573d4a6200416c5deda73d625e5c96f1002cb4d1058734180b52c9cf8d3e769e88095ab261db09ed3c2b2cafcaa5988815516864f5be7689a616d90030a2c370be229a33d042d031160918c4c3e453f7d9e5d29536642bea229a9a88151df59d6d01b935f63273cb92420ac090e615550875e128ec1240b4cf4180c945f6ddc20c905b681826f2c02b3456a36c9979950d57f60c9d018386626b4e74c2b835deea65580b2e96642e1ba1541989964cb4c68c6c0e5d44c687b96c3286bd9d8c4096ee684347316368b01ab99b3b29c1de15c6cad5f68060a2ce762d7b5772df11ac88165b9496b97ea94d7688135cf1d0a58b9bf7e52fe21f90f24c032e901964baeaab794c00aa596fbb0aadc1102ab9cbee8c6c5bfec4cb2a080e5659e19a7e348d4d215041649cf20db3728268d2e5366425e5a4913a3e1ab607c69c1242830e4fc42213084f602bb88042517ea3330688101bffd51622624bd21f5060a2c1932d330b049cecd84f0a8e9c667cab9c71f572c70bdf43205aa8820c72b6f33303361661a6233a17a3ee529be2299f6a6811d0a03ac4676e4df35be4610c0722c719b4b724d369b49529d46d29821115805f696d1c6cbd4a6bc020796be34c01af74eeb872414c07225a97893d4a400d68b92d0b20af76ac4c02a2b59b22efc898d211e145873cc72b7985cc9d636ccd5d211029691c9a78b0f63b22b65c74cc8cb6634d3ebbff262c0d4201ab8b7c44325b0266e62eaeaac6ce6d72512127eb19ac53f784425301084c551eb87cc4c43cf26be9950a5302acc04cba6116326e41ddd1a76679bf3ab3d76aff6d8bed9ef08d5abddd631bb1d4e6f9c7bf1c10bcc4c23d24c12d8344c6642db737c19a3697b13678100b0960a02ab99b3aaa063b94d912514b0dc0bdda357eb12351001abd0c122d9d64373ea0b54c0f2860656f832d2a45746c8816595a5ed4a9a2d1db0de952ea8ac70430eacfcbc15ae965facf409a0c07237c33fd05d98a3a527082c92ae7e9697ff8b54baec9809f98aa62fb4c6d2baaf7489c10b4ccc5e50c7603002438830717b71f92559606c9158a04952976039cc16f93293d46c42012ccc4c23c34cc8cf99ce5ebf1d7fc4b9e4aa17f24e6c5b28476692c426cc4cf2c126e4cfa73c25542614c735b217f180d5c259dcc259dac259d6c2096fe144b47056b67056d577adda5de56d5c68090a2c579afb867bd604ede9488055e4604e76b07550bcad32ed9d28b0741000cb070458d3622c7e481e871458d95a52032b911e505d851458e5f4d0670f0ed819678202cbd92c37ccf46d86a61111d09520b00c8de3cedd7f9e5529236642de474a1dadb6a3a4b7affc4a81ea84e2030b4930fc2a130ef2d00bcd3198d8dc3dc4478e62f0123b034327b07c563b80a4b779b549458de9a54dd98c96dcf2566a555b714d07f0875054d39e57d18667b4a4d21a130aeadfe7d5caa999060c58989964e7d3b9013c403a7e7477e1654f54c03abfdd7fb49949d6d834f2cdd4bf977a637298258dfb7b26dcc181d5c48eca6e0bb72ab6110096231f58734a3dbcc9ee89d64a7dc0d253810116d5d12652f398faf4b70303acf03cc5c70e3f24210596355e533a603da7856597cd430eacb29245bb37ddb631cc0205968b19e16f83ed784d3d4160e5e9ea677bce7b995a2a236642b5a289ca6a0380255e8970a540751d22e41a4881d5430a0c05c2f8026b120decd00b7ccd84248409090cf8af0d180bf8a7109e8101f0ca286d4222ad617792606f49b5c853c0cc347ad60df0a472fc98ac000b331366a681dbe55d155f98d2d0b5040a582d9cd575ecd53baabc4c8bac4181e556ec79e2302e477b26126015385a9f365aa331ed355a60f9839f60e5cd7ee8861c58367875e98015430b2d28f7aaae744508acd2c2a53e4ef156fad9a0c0f2324b8bd7b6cbd1d4110456aea171dc85fb31d995c3c3a67eacb5fc44a9037ee48b471349cc5ba2f64226302408135157996060f6422ab046a1a0ee19075c6020c7602dc05fec2aac6e4f2f697a2b2766122a4f4252014b96c6c047b999a4b89e3b7e7477c1254f5ab417f2ce21061666a61130d224236642dbf31c6651ddf126ce227160b57256b57256b770d6e6b62fb7a5d98102cbb5d42b24cb23cd4c1909b00a9d2c3f58fb694f7f050e2c23b4c022abddf5fd211131b0086a5202ab24b41ca05515226055962df8f4669b9d7186a51e5e1c58ce38e20ec333d95afa444ded3e60e9ea67042d7e955126236642552aadb1a8a69d5f715f20ea021558092f84028347583d37298ebe0644600827bdc40526f122526cd6be0f5bc0ef3aa1b05ef6cd842a0519349324366166ea57470eed7cbbc7fac33e1be41d5be78dad68927333a11869921d33819d54c154f59e4cacfd1a0905ac56cedafaae35fbabe69917db8a03cb85ee35b7d8fbe276935c5d2589c02a76b2cc737234537ca43ef3fd00006b2959fb66c898c4f1488085cbd4b425a88a006b2502603d2f097d4f0f6155b9d4200316b3346cd7a65bd60659a0c0f230cd78abedc13dbe120016d1d8f4c3e3cf2f0955326226549b2db9c0aa6e87aea33749de2afe7ed00573c958520759a96802275e6253f6701f39c21f80211498c4717bc83b47298fc172cb5bdf916b659c4dbcde214841d6cd24f3234db26026541d3cb0e35cb8ce85085de4ed8a701f4963e0a3dc4cb2c6a6017c752e26a7229bf9b0891d0e05ac16ce3af2d748a71280487656222758742f8f529fa5c9eed9b8d9488095ef6c1fa67946532a608508036bf932b2fed525288095a3220db06861c90c7f56952b126055324348f8152e965f2c74f13c60d918f601cb0997b3c9e062b666cff1151f58bafa296bb6bdcc62ca8e9950adb58ccfaf2f64b573ab864b32c290084cd298171a847d054798d40283869710c2c4ee196104068b30d1b78680ff2609050d326b2654f50b5898996427e4eb06f6eeddb6c163e6464f14ad0f739671334960136626b93513dae7535e11e9e52d7b9a2180d5ca59d7c05e77acc6df8a662f0e2c77ba8f4fb1ef9d35c624fdd912815530c7fe4f932dda33df6aa104562018b08c2e478e499c80ec8a50d38ea82c1db07298bed5c880554e5f70feafd3560619a0c072c565c6687ae568e8f4014b5b37c7dafecdc79c17392cd93113aab596af4935b9e5ad05ac76f10a45422fb0e2de3ab8c10c78090f7b4921309103307a6fe8374d487bffc83f0043b063a2abb7266e82d22a6be88ccbaf974d3349ec3db92f51606166929d066945d3ae5d5bfd4c7e435544803d6626cc4c72f1526f0ca12aa130b5a16b0514b05a381b0abeae762d750205d6dc52dfa80fae44631589c02a76b18d7798afa7f81a1c583834c05a4a363dbf0121b070999af64425298015430b2daaf0ac417645482b08f373fb68a19b250e2c0763c25ac3e84c0d3da28616a0ab5c202d1da29e61e2c1332fb32b64ca4c68037e2252abdaf259bcdaf3c1b00515bcc060cfbdc404c643582d37d0af1aa1427200267605092d30c4c760a2978ff5021bbf1afb427ae8d55349edd78f943a193413aa143033c9129b866245d3f0026be47f3a879969a89f9c13dd06fe22a782521dddc48e0005562b6743037bc3a9da605b9a13002c7b61607932e6cd2f9ef77c89519ea12a3cb0682e365417271f8deb3a4a1fa403d6e23e60512cffde312671225260e5ce920258af680b2ab9ba920cac0a46f0933bfb6c0cd3cc75b2c581e5629cf5446b1e4143bb0f583aba59ae5eafbfd0e0cd243d9b067f1538f0b33c95d69857d19a0f004b623d02436eaf3e81c160aba61d62c45ebcef0760fd1398b8b4204ebfc0048678cd04f4be894e418431c102feac3e90eb64cd4c2881859949deccd4cfebb90107d6c83793fc8c818f5433a1dc06ce7a47067e666d69e62c0705560b675349e73a6fba9b2d6d8e08b0e632e6f9d0fdb63d7525e2d42402abc8cdf1b0c94e3da5f700b00c50022bd45f0858b6270f8c490001d6cf22c0ca0480a5619fab881a582561c974ff6a16226031680b57843eb5d0cd140796bd1121d2e066a6867e8eba261f5839064671579ebc26540d3b9ba4d84b9958d84064b6502adba8fcaae042c82f1881895e38223cf1925660f00883fbc85112c2900b0c64e504dc0d23bf4ee037fe39bf5ea6cc843c408790c0c2cc2447661a02606166923f368d2833a15c4d49ac4aa7bf6f64478202ab95b3a989bdf941c312c71210607997cd0f2c9cff31d0806ca40e0fac6257bb8f0ec186ca6f7551032b4f1058114ba88e7f1e1f9b380909b04cb3d4a500d6735a28b9dcabba6a8e08b058955e22c0aa620626c5adb3314c33d3ce1207d61ce3cc075a8104752d3eb088bafa69cbd7bdc964ca8e991006fc08cc6634932b5b7b6aa340471569800486026108af1a075f60609b26100aac0395c0f808037e29b5a471d8b5c43713aa14460f9b46b09950ddcded96025881f6989964c24c32c726997ba997dfabdc8aa2ba73cd9c485060b572b6d4b2b74496fb3a82016b3e3df0d0cd39b9a61af0c02a71b3a3bab9786adcd157f9d44f60b91c398b1458d96a5200eb65c9c20a964b354b32b0cae9c17b365fb5d4cd1007969d213ed2e06686ba1ea02b1eb072b474f0b64eef62735f11ab65c14cc8578127153590ca5bc815ad20f592ab95221a6284a1145881782c7e02de821dae0711588d84c4ed45eb0b64d01e72dc1ebdc0e8f5a04190abe12bb1bce5034526cc84284a6fa88135ec4e426c266c451378bb774b0facc1319394234dc38e24cc4cb2f652af70acf7e4e2aab65d50c06ae16ccb6c5be35eea26062cff7965810b0a0212bcf4a9c69a42c0b231110156a1bbd33edc0103950f20c032970cac6521f95c602dcdf7d81f3d360111b0ccb2551102ebe277603da62d8ca70754b39c6b2401ab8a1940ce59ea6c9e68a695250e2c17c3d4180d4fbc9a161f58047da3d88b0f5e11aa64c14c08037e4e67339af32a5aa1025797b402133dfd124398e081165405a055f36ae785845f2067602805560c213089ea4235fe058a30e04ff873417d2aad9150d692c36c01fe1308cfad391b88c12d8bdefc85d6185fd030a86c12ef23440aa3c24c28c7c0e5ce4ca89202582b02ed87c64cb2c626cc4c326626b44bc0ab128bd2ebbbd6b776af6aed5edddabdb6b57b5d6bf786d6ee4daddd5bdabab73572b69daa099d53ea2e0eac007ad0a9f34e79a6128055eceef8d6619189ea7b0058c6688115f41d584bf2bdf7dc41082c73fc6cd4c02a5e40647ad7200056393df0c2c91396bae9e2c0b233ccdea1fb67a69a2e414d8307ac1c1dbd2f2b36bccd620ebb99909750589fcb6c219503b50a962718b4bdd00a4c0c616d942ad1e08fbba004064e2e7081b521b497b8c0b81f364ab86d143cf41249f40cac3f0243fb9123f0ab85acf61c666b7251e3c09a09550a989986994d433ecf74fefe8b40ab29a880b5367c3e6626cc4c32612694dbc05fe55612ca9f37b1d78202abb57b7b59d796a0326f97524f1160cd67062f2107a6b9e85171da30c02af170c8777773d37a68a81edb1f60f9ed7c3c361e21b094d102eb49714859954b2d026095142ef0737d67a69521022c6b7dbca741fc27756bbc9a662fb034b4f076ceef3f935f13ab879d4d487555509f5bde2218092e21819124a90b52609590891d80f59e814933e0259dc05812048668bb84248141234c74e317ecb5e357d16037ac0a06fce3b9e5ad09850d0362a6a100166626b9fe746edba6554bbd71612e9a612e5a1272d5890af3b8fa320933136626193113da6de06f48e5250d675a386bc581d5d6bdbd99b323a669a527dd4b1c58c1f4902bc71cc866128055e4e1b2dbf4a8b1fa277060d90a022b0714582b16e7076c7df563c26424c0b22028a105d6fb920016cbb196e5f41d586ea0c0aa64ce7f7a7f97955eaaa966a608b0ecf5338e6b6fce54d50274c5031641cf302efac99b9caa616713c2c752e20bb85f0bf2ca15af1c3c388155b48a24cd591798c0c0e0258430a40293eee6712004562c12d494bdc46dab7c81d571835deb054dae9e80bf0230eb7341fda08aea93700a88d9849949a6cd34c2c6c0478a99e4864df2652694b13e52809f057bb90358ddeb4580d5d6bdb39eb3737355b01b43145881cc052bb303f08efaf0c0a27938bf700a37d5f8c80396b97e521fb0ac24032b22ac60e59282051b6291022b47d101d91e2c1eb0ee16076630bd6baa9d2402abac346865d87d33ad0c116059e965fbebbd4c5137c2aba9f38045d0d6fd12b5e54d367378cd84fcf994f882fa9cb2163eb0240622303184c19e7ef526e56d232266b552aafaa20a85e60c0c91c050ec989078e8d52b30c9e75e706f3b2279de116cae8b7b9a95cd68ee8f9984a24a4861f48e816366c2cc8499495ecd247915b8f05a4b5672517a63d7165060b57076913b360794f989002ba07cc182d285d70f3b52adf4608055eae944f19cebaafbcc58ebb3d4c00a5b9bfc63fc1424c0b2cc99890a58f78b838a2a5d6aaa259c605531fdbe24acb2d44fc169648a00cb5e3f3d5a332c5b5db317581a5a19ae5e6f13a9af73ab87d14cc8fb5c504f286bce118c2914911b0a7e211458ae90b4a0822617f4dde260080cc15a2fd0503c2b84d05ec8364da0179800c2803fe7386abd74664295026626cc4cc3c026cc4c32c526b93413ba5e935839e5af9ad99bc581d5d6bdbbb97bf7f3e6281f86af08b04298a12b4821195e26f9160630c02af272df6efe174e2b0e2704ac54c9c05ad003acc5854ba3b290014bd58a380315b09ed2fcab58f6b59280c52cf5dfbbf582a9569a00b0b2016059e96685eb5c4f53d505740594a3ae99656af92126e90d91358c6642fe824a2cb58ec0680680055a0e544c440883ba584474be55d11734bf065060100b2690cfda436d9780bd610439f1927acb9718c2248d79893eec28882d808cf105f5fdc1532c8214861d4c12cc244fafce8d6e33c91c9b30338d7033a15d59f936af825a73af85b3591c586ddd7b1a397b0f542ff661f8f180e5df03ace0f2d050e6e2d3d7e7926d0c618045f3727deabcca5c3b960f2c5b416039480656c40ad24f9fa72100968a15713a72605d2bf24b627855574b0016abc2179fb1ccde24de583d430458ceda09afd59db254d579c0c2eb1a7cbe70ff5d8e98ae86d04ca84a2f69c2339a0583c2561fb9c474f51d58129238d1850e61152d30d35d88ae1d25098c2c2630b8751268825eeb2515c2246df9423a685f2b14f09b8acb476d2688ea411b2c608d1433c1b209331366a6d16b2638360dcb4bbd48d65abecbab2869b8dcc2d9220eacd6ee7df4ae9dcbca837d8481b5a06271386dd1e7455605d64650c02af576a17879cfd17b65aa1b2f1db056acc81bf75ee387a43fe081a59f351b15b06e14f9512a5c24028b499fbf63fd159c66aa8930b06c74d28e6baccb50d5ca5655e3ea4a5b3779fbe177848ae13513f23ee7d7f7b94a305863c19d6c0d94c0c011d62a92e8978c621f36c28fd8231ab44778db58d92a71a1172a84410aac1a24440b266a7a43f3a6503bf0c788d64c92cbef0b05b046b999648d4d989930338d5a33f5671bf8074a6979cbe916ce361160b575ef6be9de9fd8bed99f192802ac45e54b0ebef5273be1608055ece3b9d3f26f73ddcf00b0acd0026b49e1ca08f2d497a63f248f83079641b6121a60f93e28f6a962d9d7c002abaadc37292ed2522fc9482d5d1058163a998bb46e24abe802bae2024b533b3564e9bb4cc6f09a09f9ab731fc8b599f4263c4362cd20084327b016d198424939dd057eee25195e12777a21fab611b1c0a84249785608c95655891f3916568b876cd6be575d1d4502f35b59f4665466122f0e3a05cc4cb21366a691602669d9849969a8968057c7e517b3da8fb572b68b00abbdfb4013e7e0c5fa55fe654182c00aab5cba9cbef4e516a77c3b486095f8b8c57a2cb5d18f95165814e52773c624490096215e1139b02e15fa7c29730374050f2c66e9fcc8c5b78dd5d34480e5a09510a3e694a9a2d6032cf50c47b70f09e477a49a613413aa920a1bb2e94de031fa92a82e6881b5c027115e1205063e4a2f2030c9ebbba412980484f56bc45ed280176a7881bde488669f2af0f7c71734203713aa1464984d98993033c9b799867ea469b49a09dd5acbb779ac842252c3d7436ddd3b4480d5de7d88c539b8a172897fb910b09656846fcb08cd75370701d65c670058745fb7425fef95e6d7adf413a5021655e3eebc3189b0c0ca503622cc400eac6b85def42a80567630c0aa64fabc7ebec14c27d950355d1058565aa947d436a4ab6866a9a802c0ca32368b7d96f82e9735bc6642de470af7f82a4bb86c7a33d2184241798b5b995062a75c60cc020bed678c8804068e30306f0dc28017a26b47d1cf1b41042669ab6abb7890ef6743600bf8173750a212ec330cb086da4cf233d23452cc24376c1ae566923536c9a699506f5aca637d29c96c62ef1307565bf791bcaf7bc22b43032bfa80b5a4323c82b9fce619af7c2773286095fa793e75db6067f899072c074160394b02d672aac1f5256392c6c303cb38671a14b0d60903eb4ce1dcb7743716cb061e58749a5f88cf1343b53441609969a52fd4bc9d345b0fd015377da3f8e827ef89ace13513aa977a130a1ab24a9b440321173f485d21c11601e58c1701e67a515a84215c9d0a42ae0af1104d774938f40251579b48f0ef67c3af5485d9e925f1884b045ec07f261436203413aa14303361661a39474d989946b199a43056063dadb1f38008b0dabb8fb4741f8d6fdd115a11165c1ec607d6b2aa88a89288e470c742270b5060d1fd3c0ae6fb059b3db531460dacc808aad9c5f5631227c003cb84380529b00a3ca9950e35d570c0aa647addbdbe03a79964a022042c078dd867aa733267ab7175a5ab1f7ff6f6879cca613713aa528a1b334b9bfaa237891f6881267e872810e2632d8902834518e48017e2bbc5becafb42f86d231281a1faaa11cde917f453d9522d9240bcd3ab1df81f095a3cc155d01b28b0468299869e4d9899303361669291102e647a97579d5e9ad9d079a4ad7baf20b0dabb8fb574ff79bf6963a830b0222a571e485e4cf6b40207d67ccfd2009f68d77d76c609e881956f7b66efd8c48930c0d2c898851058c70b5cefd05c7b8eaf2081c5aaf2cccf0b72b77963a0f2451058569a29675597a4cfd6c89aad9aa9a59378fc52ff7535206642fe4c2f5046499310b044a20b85045e52080c29c2c4ee16518cd8f77ec3d88fb17a34f0121618ba4f1a51bd1704ff5210b8c010200cc65ec0ef08399b90a78099091b69c2cc849969c49809ed5acb77e4eab4524243e79f6d9c0382c06aef3edec0f9f3effab561154bf8c05ace8a8c2a5f75fb825f81ab3528b018015e64ff106fb3b776df81e5821058cb0be61c3f393671120cb03433672204d68942d774a64335cb1a0658e50cefdd5b4e1ba925ebcf4ee503cb5cfdcb36b57d5f94357b7575e0d47b42b98c9809d5f32619a58d22c1794b92c0c0c6b910042d30a4475fc2d35d129647c02d9590e67b461881217a2608c128fd10080cf931586251037239c5234b01331366a61167263836616692a964611b3860ac145a6efdd793ed9c4382c06aef3e51dd7d6c4f75e4620160ad6445ad2f5d9512e952ec6a0b0aac92c079279c4f3a982601c072ee0556161758ae70c05ab5bcd0ebe0b51f13408035fe3bb0b4b2a62301d6c17ce7f345732a6aac6aab2181c5aa74fff03a12a795a0a79cca07164e2d3554ed6ad26cdd4c65954c0dada4ad073fe0cb07954d83f7e06e4649235c62fcea119810c224ce6f4938e24210920f1841ee16a1ef1991610bb47e7dcc88d65e2008ebbfc02afa21b01e60a59734216493580d500d0ab0303361661ab5661a7a360d3b9264d04c685734bd27d7a41493eb3b4eb7738e0802abfddb5fb4aea31bab572e15005654d5eac3a9e1141f7b506031827c33e72f7535fb8c1658febb1fc1034b3b7baa0971b244601d2a707ecf70a881055671a1ef3cd7a7fab353f8c032524d73558d79ab6c9ea1ac9aa9ae95b26ee7474285ec98096da9b4c6747863c1310b3a692f1611c04be833463c2f64a75cd2dc2d224098f096d4fe7dcfd84f81211ff392f67b4620e0df111233c197201c526061661a096692964d989946f951933c9a09fd1ea69ae4626a5dfbb9f6eea37c60757cfbabb5fb24feeba128d60a3eb05655af595fb9f6de95a0222f0771609505f9d08202763a5d7532ffc207d65c89c00a2f5cb8edc38f0993a180a5943e53073f19870058c70a9d6855d675359650c0aa28f33c7ee0a8a16a92aed2173eb02c5562ef28cf4d53524d57d74a5eb7e323a15cd6cc24784005d9f7374f928b1a00604106462ba824904b38315735a34aeacf18c51746a09deb8241185124c855f5889747487a4d08faf346096f35a23ae5121118a1ac058999842a94900266a6d169a6a11f69c2cc34ec4e1a6d6642bba2e903b936b18856d972a39d739c0fac8e6fa75abbff4e693fb886b5920fac3535ebb694ad8bdfe2459beb280e2c46b05facdf3a178b241eb0dc11002b6a7951f8faf49fe2a7c0004b97305122b07653edef95dab36a2ca080c5aa704dfebcc45c374e67d6173eb0702a49479556a62aa967686a27eefdeb13a15c06cd84aaf8827a386095483adf8263169a592eb0a12e7181215cc725f5378ca0135da84fb6a09304af9eca9be1bf674475b2d57bbed59f2f19c5ca2d6f4562265429c8a499e4864da3dc4cb2c626cc4c9899fa5d4d2c9549ab8f69e59ce403abe3dbe9d6ee33c91d87d65647f181b5a17ac33eea1afc32f7122f51603143e6952c088e727cec6c958a1458e1c5aba2f27e899f010dac197a391324026b7fbe3db9d2b2b6c6120a5825855e21def7749552f8c0329e9db855797b8a9246ba8e7efca96b1f8995b2692689093e241747ad4ba335f24b174992bd2004d6d457a968a8bc857cae6b2077a2f66f7d17aae92e242f337e7f9ff17be5cdb0c75a081e6714df568f525d8903e4aac4ef2960661a22366166c2cc24e7661a7a360dd9ee25913e5258b915c9cd5d673abe9de401abe3dbd9d6ee7389ed87d757af89ea01d6fa9a0d9b589b4ea6aeca0f721507166361c063df3deed6c942c0f28005d62acaa477fa3f24ff0106aca9ca19d324026b6bbecdbd129bea5ab33a88132c26c37ddfb6e3fab313b4157b8165a89cb856797f92b2569aa1c9e7ebcf3fe6b264d64c28ab4f296e143496c444ed552a1a82fbc47ea90bb9c0e0e7b7065e60fd1df0125de225fd9e7a09178b289ec7069516f0bf19246c429e026626cc4c989930338d0636a15a37f0915293519ad7f0f54a7bf7df3c60757c3bdfda7d31a1ede8a69a753c606da8d9b48db5f9e6d365c5f35d4580c50cf52f5ab87099e34b37bb5e60f9480256d42aeaeca7ae6392c783026b76e61489c0da55605350655e0701acaa8a39f76fad37548dd79a99cc0396815262f8ace3094adaa9e6369f9f7cfe44aa1e0236f5c74ca8027ebcc189aa443484c75ae992c6e4e10586c855a8021598a4055d52df3322fc9e11f4adc6de7df4500dc83341280596275c5a4993148a12ada82f71606166921d33c9cd48d3283793f46cc2cc34846642db474a6d6251e9ffcfde7d874575b7fbc2e77adff39e7df63e7b9fbd9fe7898931266a2c31267663378989319668a2c6de0bd815b0771144baa0821550b120bd9719608619ca0c0c7d8636f436745b9acf3e7fbcbf356bcaeab3d630ccac81755ddf2b9722124098f970dff7effe35bf7cfafa2f3f18586fdef9bf7a1790f1fada0995230cace3aa13e79a4fc6f96eadfe7519065875db3644af3dbb72a1882eb0f6974d79b8eddf04ef13026b9cf4036a603994cd0bad99d7aa9a4508acb6964562e1c67953e2bf1821808135759460cbc8ebbcd19333172de525e6a496b4b1df4cfac849a3bbd5244dd1c1a88265b4c0981e54343444cf601d579fce2da26ebc366aa88bde2209cadea2b11bea19c2ab4817caa12ef03937682646b1e1ccc499893313fb4b4d9c99ccbcd952db1753f1e44d15aad4577ffac3c07af3eef6ab77b7f9afdd4eb61e8381754a75ea52ddc9ac33eb95eb50c06ad8b6be7adb9693cb9efdf45d2e0a58ab88817568bf627ec089ffad01d63f30c0fa2c6fc864d9101db096168dfdb968bc0e58fb4b679d53cca9699da522015685fca7553f864cf82463c2274200acc92305eb46dd4e19374368679f222a4fc1e98a55664a35f6b65d516597b88a20c6b40e09c3748a8b71c58b1061d8f179a60b23680acce8097ae317d39baebd68dcfa2ef08118349380496c38330d1e33999f4d1647126726ce4c7d5f379052d696ad2c6b7bfdf4f55f0100586fdfdd79f5d71dc99beb1754a74eaa4e01609d519d75539c9438acadd9800256ddf64d995b8fadfe5ea407d64a24b0ca50c0da57bec4cbebdf3386eaca577a60657d343effef14c03a543a2ba60ee86a663b11b0ea6b171f3be0fdc508fef8e10200ac4923d2578dbc17376511df3738b5a0d1baccc428e0194e5405c5685dd12974d1ef2d12d8cb98f5108c0f301abd0a95f25ea07e141893338cd88b1ae95fce883fcf08fed78cfc24a8e8a28e31c0ea173319cb26ce4c83bcd4c499893db122331911bebc45de2ae8fde3c1db7777dfbebbf7fadd03c56fb7dc3ace9f6e3f75a6fdec85b6731e8a53058eeb6b37add201ab61c7c6da5ddbdd563df8f9875c83c03abcafe257e7907fcff8100face1d9432980b5bb64fa39c5cc7ad5cc0e18586d7390c06aaaffdec7edec97a3789f7d940180356944da96913e09cbb6a426e4f0a023935666264ca82f8f4b5374882b3b8953850f7381193bc5854b379c1c7c7083f37487e8fbafb7488230838be9196da5375260c42719e996b86410b00c98892c42a2d8b0d04ce61f03e7cc647127716662a799fa8b4dec3013d37503a965aaaceaaa9697916ffe0a7cfbeec19b77412d7fdd0fe8763ed77eee7cfbf94baa0bde65a78b1c36d66d5ea30356c3eead453b0f6f5992be6a49de1a52605500601dd957b9fd14ff3fd287ff9bf0bd7f13beafce90ff147e3044f4e12739ef53006b6fe9f4a4fa192ad557786035372cbcedebf8e5a8d471c33200b0260ee71dfcf472d2b1ab3c496d6a69bb359a8969322b3a45959a3a163e44cc42250b15e6bd45a32b5b84eb218c3b99881be4228cc9a4856f35c22113581f36a3322a74d119a597d5f7d26193e1546a623350cdc436367166e2ccc49e98d94c6c63531fd70df0156da52d92dedf43defc15fce65d70d75fc1cf7b3d2e755cb8d871d1a9fdd28dd2b3a50e9beab6ad8381d5b87b4bfd9e1d619baefdba244707accd6b50c0dabba362ffae4abb1d95db76158eb8b969d48dad637df64df03e3aeef6ce4f9f2d1f153f7374d6c79f4b3e9892376ca66cf87cd92748606d299972b9625a936a7a473b16584d0ddf06dd3e3c7154e2d80fd301b0260f4f3e37f54252703cbfa8c5aacda409bd4b79d3cb3b2060a14352c13218239b8c7d99e2323c4a8f5b0fc1781f8449e6b748da8806430a2f6dc881853da548181979080f3302c866561a6013fdd87066e2cc3400cc647e36591c499c994c6826c6e7e6e42a61657da52ab3f78f676fff7af4eadda3d4377e2e9d972f775e765639f9179f2b73dc5abf63030cac26db6d75767b9c7f7dbe76b95407ac2dbf966c5f5fb6796de9f2c5850b1614cc9b2f5bf075e1c2ef8a17ac102d5c23fe617df6b2cdb93fefc85bbd277fe301d9d6a3795b2ff0367b87ac7a72f27bd1acef656397167e06036b77e9a4bc96e9aaf6191860b5347dfdf4e1de296312c70e4d1b372c7ddac7891e3b1f2567d7f2a0b17deb36133eba2be4d2151d19e51d02908a0e6145271c3cb010e9228c98643a9eb1b1fab00ca2cf752f4dfab87dde64b3f3b46865ec494654598b0a55d8e00e30c291d4f688abbb8d1015482622369c993833716662279b3833999b4dcc02a402334bf4f28f17affe7c22fffd4140b79b6b97b36b87cbedd28bc56777d6efd200ab69efce125bfbbdbfa4af5b295bff4bd1ba5f0a172fcc9f315d32e18b9c899372a64d97ce9a259bbfa0f0db85c5df2ecffd7e55ce8f6b737fda245db55db67677d1e6fdc53b0e97da1e2b3b705a71f47cb98373e9dec0871b795b57c9266f2c9af4b4764a5bfbb47634b05a9a164486ee9a3a366ef407699f0de3cfff22e5d69de2e4c2360b98c9146c220be094ce5299209504a1d41551654b9f2e544ce2ad7e1098810bad69de6f6d5403d114f632cd42d43c26b35cf4d525d5322bd3d8d80cf891a6416e26e3d9c4998933d3a033931147e7da79f276616543952abbf78ff0ce3f9fa5bc0ef0ea7173ef74f5af73c9f6d95fbf772b0056f3de1d8dfb7627ec74ddf853deec19d99f8e148c1a251a3b366bfce7d99326e54e9f96a703d6c265522db0f250c072941f3c5571f45cf5f1cbca33ae35173c6bcfdfcdbe2cdad3d0fa55071a584d0df31fdc3e3005d2157fc2888c9d5b7222054d29256d566126f260efdf15c0a8228b51c04285d6cc960178d1179849da88a40233c96dd67d269751f35b3d50fab0a60b2b30bae35c7a6f01666555759b04589c9906b499b891266b3113259b2ceea4816e26238eceb5f315ed99558dd5ed92eedfa2ab7f7f12f4d2d7abcbdd4fe5ce7b7ea2eee00e1858929d0e5f4f8819fa61fab0e18211234563c6658d9f903d6972eef4e95a607d57f2dd52191a588530b0ec1ce5874e55d89fab3e715979ee6aed65f7c6ab3e4dfeb7eb32327c5b9ae74113eeed5fb5b7cdaaaffdfad2a9f39f0d4f1e332c63f634b1c75d6552a18a57d6ce7e33d18fa0dcb0ab0cc67878a111666834de34652da6952d6665ad6a824b7e68ce7519dc29cfc05e468e70f56d0f2aedf38ce03d0450c6f849546520362c3193f9d96471247166e2ccc44e331960d36031931101cc526594b7c9eacb95dd1969af836ef4f8dce8f28e125caa76dc93b4d671ce88a71f0f89fb70286fd847190860492060cd96cd8766b04a7e5852bc6875ce927592159bf3566f97addb53b8e540f1ce23a576c7e4874e57ea81e5d1e8e5db7ceb56dbfdfbad7171a98d8d8bdb5a6795977db77383ef984f32c68ec9ddb2471e2668011fa95598299d22e8fbe004dac92aaaf215136919b417e9a2073ae9b3c0fa5ec1221118d14a08f2e456f7e3cc1683ba979153f34c0446d95e041fa0415411016b4098896d6ce2ccc49e7066e2cc64c6437350414b50d594d59a1dd5f3e84ef78d87328fefbe08fcf06f311fbd173fe2c3c48f87678c1c9939765cd6e713b227ab81357bb66cc1d74500588b7f2c5db43a971458e7ab4f380160d5397b36fafa35dff26fbb7bafe3e1a33651e6ed6cf12f4b163f1d3b2e67eeb7856e77eb928a61f0598199682603a12b3a417a4b848f892a5874763d18dafe6030a61118c3b296e12d5c064a5ca698e832dd4e54dce1445418184b42cb58dd706c38337166b25233f5179b3833b1874dac31937163e0698038e5aa944ab9734cd43f3e8e7deffdf88fde8f1f352c71ccc7a99f7e2a54032b0702d60c14b016afca5fb24e8a03960200cbe17cf52927e505d77a4faf463fbf667f7fd5bd7b1dc1c19df7efab167e9ff9ed6299f3cdda04593bbfcc3accc410581dc808b4119653d18a66fa0e2f4615ac7edffe60da651024175733da0d41f39a6a06f6ea8795103405965bd3a323141c31496c383371666255cc6c26b6b169e09b89924dec37931133e0e0dfeeac97fcbd0f53fff161f2079f248ff82465ec8894cf47f3c78f134df82267f21435b0e6142cf8a668e1f7258b97942efdb970e97ae9ca2d005805eb6d0bb71e2cde75a474ef31c56135b04e3bd55cbd56ef0501ab05002b20a0fbe6cdb7fe017ffadc6f4d2ae8e09799ce4c666113a64645963448abd0b1414c327421b297466098e256ffcf69614f20528435a711fb54f1229d9aefaf8d5c4614b14842ebe822065879eab177325489abf5b1e1cc34f08ece591c499c9938330d6c33319a67e295b67b0629870ce3bd3794f7e1c7691f7f9a3e6a6cdaf8716993c7a74ffa523c658a64c68cbc39730abefea6e8bbef4b962c295bbeb24403ac1d051becd4c03a5ab6f7b8e2f0994ac70bd5975c6aafb9d57b79375df76df3f2eabdeef7dbddfb7f3e0cf967525e4f9a9c7566a26613cdf0cbda79eaf0e1c8b551b4a7e9a3dfdda0493914e2ba17b4d90113832710893766190c036c91d88b62f29d69cc812d822d5cba7388d8987c608b9ec0faba12224f3d8c85841459a8806571277166622d9b38330de691a6016226731d9d03267810dbf8c170fe90a1bc619fa48f182d183d2e73fc17e28993c4d3a68a664ccb9e31237fce5c3db07e5a215fba3e6fe5967c3cb0ce5caab9e25ce7e2d27ced5aa797f7eb9bb77ebb73ef8fc0e0bf429efe9357dc6d456622480571c0d7704aa94a13a26f079e1c0a1f9d34380881a5434197be34ead2bc0302642a08e6bd50fd44a3d4457fad83310b20fad9587a6c512e7de8d326081cc24ce92a66852e030293d6f46455771b8c8d55b289331367a6fe3713f4d85d063d0dabd7436b1e73c1933d6726ce4c4c479aa2b2554301b03ed402ebb3ccf15f8a274ec99efa55eecc39d239f3f3e62f907df36dd1778b4a962c2d5bf19362c5dae2955b646b76166cb42bdc76b064f7d1b27dc7cb8f9da93e77bee5b253e7d56b3d1e5eafaefbbdb9e9af01d6e327ffe49775598b990c4650a1fb76030f236d20c9252a5474e4d226551304bc90c17dc9a5e982ae7b65600255bc50f612eaa28317456f91c98933517f2c32a5b10082aeba94508cd09511235c04035ba69adc62d246a498d0829663590458ac2a35716632339b2cee24a67526f0cc0abe0d0a1a5e96b7be69e8fabde3f55f6ffef8e76f7ffdf7ef20effe2f3e7fbcfbbf6ffefcef9eb7ef54affe6cecfe5dd9f156d1fabaa8f1a57ae76f177852618f99cccfa641652646234d4905eda33e4b7f7f181f01ac2c1858b3e6e6cdfb5af6edf7858b16172f5e52ba6cb97cc5caf255bf56acde5ab47657d1a6bdc53b0ec96ded2b0f9fa83d7db6fdfca54e27972e0858de3a60fd0955b09ebd4b936381c54e33d10fc04d42719bfea11513cd439c2624026b4fc58557860d1fbd270cf3c540dd73d40b0cf19e634b5f140b204c5ec74258cab49b1d6808ac3b9bf9262de32eabeeafb2167d81d518d6155d607166624f06b9990cb08966e948de9e53d35dd9f6a6e3f59f6ffefc2775defe05bc85c97f53e4d5efff6ce9f903bc7159fdcbccca2e6b37537fb1c9facdc4689e29b9a863fa3cd1d08fd23efa247de468c198cf449fab81350d01ac1f96142ffda974e52af9eab515eb37566dd9aedcb1bbd6765ffd81c38d471c9a8f9d6cd503cbad1700cbf7c69b5b01d00056d0c3bf9e87bf4b977799994d4698499b2e3a018f4bd0a48a2ed033119404648adbb0f02a5625c141f2ab541f4ce90b5f4b4697be74fd47d4972e69dd8b78d05e5bfaa238ed4832568f4198d90b57dd1461ba4cabeff0ea7b05cb5402037f8bea93a3d4c4863393c5c399898e99d2ca3bc4d55dd2da9ec2c6978ad6d7d5ed6fab546f8063ca5b5fcb5b5ecbea7b45555d404ed4b492d4f6d474bced7efbd7cbdfdf21f24f4c00925e63f20771dee842e2b3dedfde35036fa9de1434bcccaceae6cc3460ccc42829c59d8b56e60e1d9ef6d10835b0c68b3e9f9835716af6b4995a602d02c02ad1036b931e58070f371e75683e7eb20d00ebc2a5ce2b2e5dae6ebd9e1a60fd0e8015fce8ddf3c877198a2e4b959a18b109132149d2e49d3105ad88b4c5eaa2f516ae10801058312ac8a217b2ee851718bae1a80e5e5da8d2972e88ce23befa452e30dd94bd5e5dd48b4f09b66a99ac7bc8b06a85f616eda559a6a96cf583c0e897b52060290dc766809aa92d4074c725f5d0a9f8e5c7e2be718c9b79317575444191d5b3696099c960c033131015205473cfef9d6ffed4a50b9bbfe0803f52b6bf015fd6f81e5c5e5d2f7823dd6fdfe9d2830e9090e1a05846183dd15e11410dbc9196de3faa546f81b7c0333d6726eb3513a379265e49fbe6fd851f7e9c8e039664d6bcbc79dfc8162e2a5abca464d98ad29f57cbd7acabd8b0b96aeb0ee5ce3db576fbd5c0724402ab1b03aca087ef5ec4fe9151dec5123351b0c9402af589296c8b94b5444169d5a4000af26e37085e85c8204e681512c02b1e5bfa42465dfac2c30bd1734c269efa221018c1b8bd66e89ea0e788e93c0a10471de11008ac022f30d2697a23b0d5c73b10b1db4a292b58fd0dafbe0c7251602b971c5839ca1e5d6cd8cc26a371f344c2df19fa0f5df684bdbf376ad8d1f809c192302b3213dbd864b67373e04141def2aaa1ebb7f6577f68f32736aff5e9c0a5a1eb7759fd4b9ebae39659d9050f57754202fbab8b49badfbcc3e62d417a7e83428b6808a875bffd4bd9f15652d3c399c9aa5734d1495a5987eb1d25d0d5f011e9a3460bc78e174d989835696af6f49992d9f3f2e69302ab4e0bac96e3a7da4e9f6bbf70b9f3cad56e57f75e4f1f00acb7b76eff7ef7c19fc18fdfc50a7ecb2867a599d06ca219f0c51f9ed7129edf12814b2488065ebab446eb82b4174260b19a20f85548c02fa2fea32658759552b71d81ba34e14141f51cf964671ef102d3200cf515881ab7a758af6a085e62739d3d34bc2f9e21c2fa7b668b485a3d98e4221445111b6b3113a3b8a79d46020bc436fc837d511f1d8efb3448f22c2ebf9e339399cd44e7e81c78ec286c7859dff95b6bef1fc479f9479ba1a810a9e9780bde2078210a6aafa982b71a4827c019260ca14668355df1acede59fd9d5dd9c99d8506aeabf31f0e85cd598cf0510b0c608c77e0e032b8708580a2db06ac88075cdbdd74b0d2cffdbbfdf7bf0e7c3907729b2978272569bc9609077e882678a17d26690303879cd90b7d089c843ab0b19acc0100843082cb610953810929e633caee788b217c42f0302d30dddeb1e5df1535fd82d5f10b93a9049c7ad5ad5f61c355f78184c63d6ab0a893b8f24f032e3bc3ca31b7b4c53d9328caa1e8a0060d1d195c98065ced61b9d3ad3a5a46d1860ed7af19e6dc4d0fdd1c30fc78dbe9e7426beb82eaeb8f646ce6997ac1f6e494f2494d40f0a33b1724513f869157cc956b4bd69eafebda9e7f766745af0e945e60f644865860b05cb3479854d3b368671d6491062ab8157ceafebb5289b3833f5efd1395e49e792d5d24f460b34c09a9435695acef4596a607d5bb0f087a2c54b4b96ad2cfd798d62cd7a0db076d9d6eddddf70f07093bd63eb8953aa33e73a2e5eee72beda73cdfda597cf1bdf1bbff9dffe03002be4c59f198a6e969b895180999e4b9ae0844a9aa1483579818e4e603a84612b5e325470f06a892e80832b7d311018349d4cf0b4889cb82fc61d75d457bc10ab61e060ec2527def5c597b763be8bc9e7bd3a31471d190dda1b2d30facbdf4db5f181eeae0783a1e497be7c554395dc1a726059dc49183331ca95143b0cb04076bf186217f1e181988f0fc78f3c9e34f1146fdae9b42fcf09a75c12cff090ac892c9670663295996806d04a56df5bd7f9b6a1ebb7866e288dddbfd30ca01832cd3442df6aa42c230ca1cfc8ad86839ade6aa2ea2e2b28357166322afcb28e9357cb478d158e1a9339f673f184493993a6e54e9f259d3d2f7fc1b785dffd50bc7869e9f295652b7f295dfd6bd9fa8d8a2ddb2a77ee56ee3d507ff048b3fdb1d613a75567ce775e74ea7276edb9e6f1d2ebfa1bdf9b10b0ee07fe1995fa5650ce7633d10ff85c3dcd69d2e5592e2a0878a9236d7a8153d78b3c0db990092711180661a8a92f75a2f1835fc05e70900d47dc694774e7110d2fec131c7ae40b57f7c23fd252b41da9a6be4804865f3641dc7c24bd7e9178e33c01b98c59526ae24178c30233349595abc6139dd8588b9918b5e75ec872f7847d4460acb0f7f74642c63a9230ca2179ec09dee767d2279e174ebd2cfeca39778e6ffe96874537634b4b383399614593a8aabb52f5a6bef3379a81106630ddfa60414611da44a307b5dfe9d4d208fa9baffe286b7ec599c98accc4a81f9751def522a36dca57e24fc70ac77d2efe6252cee469b9336649e7cc93698105b5087ffaa9400dacf22d5b2bb76d535000cbefe66f0177fe7810fc47aaac57d0374e99814dc8502fdb048f398fb31b43b4799203474faea7b99a3c230a56601a84b5a092d7128608aaed48d0796c8d944141a90b3ff2851ab7279afac295bed03d477dd1cbc0b8bd3ae8a92fc302e3910b8c6cc9aa408199b837d076c4d6bdc82fb4c61c42347a109e41c7906830cbe8f12ccb00ab5fcdc4a837175b546d1f3d070f2c68e03dfcfd7d51c30ec67e7234e153c7e47127f913ce644cba9039ed72d64c97dcb9d7f2167817fe18519a667a360d0233d13ff256d8f0b2a6e32d3eb554f90da40e934e4de843cdb0d5209c6162886846410d6f3565fb5ba66602b0c8aa864ad6d2da5e595d2ff8c49634be2a6d7a955fdf2bae36dfdd29fd652663d9c4ce7373e9f24ecf07359f7f291e3721eb8bc93993a7e7ce982d9d335f0dacc5c58b97952e5d5eb4f297925f37546cdc52bd6d67cdf61d9576fbeb0e1d697238d67af2b4eaecf9ce4b4e5d2eae3d6e1eafbcd5c0ba7def8f48fe6b425d99d94c06d9443f401e0fb31a401e69d208bc854f4876131c602f5d7402d37aab19ce7364e09e2322eaba1704af30290a5e1a7be5eb4352fa42f30b57ee424edcc7e262a0f44522303cc250fc2ac12c9bd0771e913d4782b623f67221d41543444b56896fd446f41cd55f1b84f733929f73c4af8130e5143cb9b78cd615d9b4960160b1c74cbac41495279434825f44172a5c520f3ac4cc71e5d9c32f811321931d899e41a82bfdc07bf44787e246d8278e3e96f2d929fe176733265f144d77ca9e755532d72dffeb0745972c65a63eb0c96a5681832fbb6ad59b6ad55b28ed9a28c95343945a6428655607a71399df88d305a59e3c74aa68389ce9639068f296d7f4eb4c8011a5cdaf80fc609cb5f6120418ae46bd6bbea0e1658eb2c7aacdc49e154d7d9967e297751e3e57fee55468006bca8c9c19b3f3e62e907dfd5de1f73f162f595eba7459feaa5fe5eb36566ede56bd6357cdae3dd576fb94878f36391c6f39790600ab0300ebaa5bb7bbe74b1fdf37fe77de46a4beccace866bf9998a43ba1b83d48d4102406690c46e4219cacc647e83c86a351972e6a7bc1d1f18bb0f4256906798e0bc25ef0b0178a5fa8897bb2d38ea8717b62816111462eb0f842caa38e256d546d4792338fea1d13ba6005861c094da3b3e20bbbe58bf4c0235e601a84915d1944d173ec8f11780353f054f3ef506af5b1618399e8272c3ff740e404bbf0912ea9fb0f454ed299c93e7a7644413e7885c882c2fd11e32874050fbcdbc103eff123ed93c61c4f1d7f2aedcb738229174533aee4ccba2a9df7b0e8063bccd42f6cb2f85acb82fadecab63755c8a80ca4da4020ab51108d026a86ca6638abd1811ace6a8659a68ec15a1a782178872b556f142dd0aa55c34535745dadb613dabf05c03168cdc486317060ac3b618d47cf2996ad2af8eec782253f15af5855b266837cfd16f9aa5f843b6c2b6c0f2a0fd8d7da9fac733c5577f090f4fc954627b75617af760fbf8eebb7bb02827a9ec4f6c408bbd38a8da19545cc44163151c0cfae0f321b400275116912a40bc4af068dbdb2a03c44048257362a88ba576388b6e74859fad2361ca19e2301bc427102c3200c7bec914c60f986964d607b8e087815694234f24574e0117dd4515bf46ad7047f192b62e89e60c92a7ac17d1ad9f58ea4f70b75601b8e445bbe50976ae3ec855f554f2d30e3e7df31c6aaeda1194a60b1ece85c6249f3818809646c3a1c3d31aaa0c031663eb5aeb4c35843ece061acf8510e49d030d66968180b1a7877ce99fdb4289433132333310a783e56b4bcaa687d8d4d9b26805ff453858e218abd5152e5ad26d426a303b54e03a9c386a8d1695415ad111fb4d2c05b2e697a051eb03833596a0c1cfc4c9fa1e8844eddcb3be1a4957524e5293ddd5dd24a5ac11fc101bf76753a0bbf04dac2a09e64077f3753fbfe5b8b9968a55a13f04680a5ee09eb35c9acbf8fcb0351c303bcbad4091623a32d7d21ed05d7bd087a8e88e010f69404611881e9e1a50bf2c023c65e546d47fcc947ecb8bd5660faf5aad8897bf43947e8a8233244d73b92cc7ea10546f43c48b6e52b8de26e470581bd50570ce1a7bec80526263fea885f9a8a3ec648d03d34d028241795141d1b2b3a3a172249a066d3d198297bc287c2c3ec0ec9634ff2bf007e227b6578fbe8c1d84f8ea887b14ef0264003ef99532f677de59fef00be62220a24de82735e82137ea20bfed92e81d280d0c2c4b892526435953393715b9ac0b78dacbe57d1f21aa41c9956c32190193a956dba30835a3532843e6b4745491535d13a34211c38a308aa6c46a0316cea51219a3cc3f90cfc5adef23aabba9b33131b66c085e5ed4f63121f3e0b05bfd09949a068f5f1724e9555434f24d66c26a60198b893517747507f17173dbcd4b92f44a80b115dd1cb90c01ac804864458083a4f90a3f7b9d83c9368f25cd2845d3641be6fe28566d9046ee81e52576b2426e8897b7cf50b79c5103d81b591ed12271dba47f51c71a52fb271fb322281c909044671bda31019dc394782a1fbaa4e8ab62341dd0b7b8cb10b55fad25c9b0313aa973a36963513c39126d589b81f287b7f43e0438247d5c355a7d3be3c2f9c7a923f01788b64e01dda3e7a287604fcfaf649a3c1dfbd9039cd296be67589dddef091ea89f88f0ec78f54736dc259c1e44be2196e9265a1c5519c99fabea2097c63486b7a8a1b5fca9b5fa1d2a28f029bd714c1588d09c50ca40a572aa36e6e1a28a431809ac66a8c4c46dae2c4c90cbc30bfae9733931942ed1b6179db8d1b5e09d9c5484b6556b43f0a0d7b1a15077e61ed66ca6212f0fa21d94dfee975012019506ee34253604884a104a645981e5eba68edf550dca01eb7c7d90b53facac1e6490e81c010e71c89e7bd42d1152f78f43e0c19d26dabe4022bd0077fcb10e6a8632cc9fd42da717b0278511d7b440b2c1513b2bb1dcb70471d15edf89e2361e75177b910e27e2184c088eca559338138ea885eee4572bfb5b2db20ad4c032c33af1b0810dda22e62ed510fb01f8e1b0937fece644c82a6d7b3669e174e0148da1d368470fbe8a1b89187e246c02f04c6027fe568c2a79a69adc80fa1238789a38fa78e3f9d3e11e257f64c57e9bcdb45f6097239672693ac6802cfbee0515552d353d4f0b2ace99526cdc4c16a0c119cc628a23599896b6626b61ab5cce840ad461f7d371363b2d2a657c24ace4c969c6712285aaf5d392d90b7225f089e099272cbfc7cdd01bf0c9ac9fc6c626426a6011f2c30d6cdb4da5b88f8c34907a983a3135800125edae8e1855317a6faa5e797084aa0265a816946beb0211cbad796be9a4290c981f20417e2b62385c0b01bbf88964d100fdd1397be309d4792638f04028bc34ddc631b8ec825ab9855abf889fb32157ef006b36682a8ffa83bf388596d8faf7ba156ada21b8e5dfa901d78c49d7984f6b9d7f552244f1d0260b17945d36349348d017678d3d5a7d009c1b42fce09a65c127fe5923bc72dff6bd7bc05b6e11f608a5ef0ebef41bc1c604b4731f072781cde515dc43aa72e62c16fcdb76875aabc953393a95634819f0f8a1b5f9662d2844e3336659a90828c16d1a86a6604294785aabf4938644611c33e532163dc9900029c8177153cabb1cd4ce66753ff77e208ea4ce0ff9b5e5cefee7a4e206fc12c131296b5b85d3905fecbce52537f27191a78afbfc1af41a4f6261c1dbcd235f1d726004a5d0061014c5077071d985f7791ea82d200071eb7478670e89ea0e7880c89c01e23eca51758ae3e44d52f5d0cf41cc310535ff40546d073c4b51d6391d19d73c4efb82fd6043d6eaf9ff7221df922bae1117bce519f0e10fcd39ffe7e21c225abe5fa2b8690a71d75757adc962fb4bdaabab295dd795a4551c4c6e2666234cfe49176d2e000fb9e30a8af076d61481a7322155a25aa2e3bcd7295cef328f8d621690c6ee01dda3e0a984526b6bdea2296bdba8805bfb52bd05b9bef5df053aabcc5ac6cb23633d15c6b099ed7f3eba05e21614a9a1807cb325cca9a7432c3876ec10cc932063e6bd5a71c1bda55342656abd287b86606ab0bbc2447d933f0cc64093631a8338914ed49625970d01d3ff70b9171f1d10949c880975c3dbd273c365e08ec050d8e58bd99f06d1754940401cf73e0391be023483dfc0ec004a4e5c7abf1e36ba2e7571a08642f5d34a52f64c50b91dbe998b663fd1d8126646d47660213eba3297a697b8e04752fdce83d7ed11766df04e1e2098cc00886bdd0a1bae411356e4f55fa8a2e20dcb38adef585693b12dced88287da1e0d59e8c0c51e987bcfa857e3a463f27a2e04574ce1119d4ac7d65273d6099834da699010fca0ddd19fa1e9d4382b61143e175edea55a25fc06527e7dc39d7f216002a113516a1eda37b4846b56cd545ac23f1d05b3bc5d795c4e6de2d3cc399a9efabc0c133aeacbeb7a8c1501af5298642ac3162a2e9620a9c11d5cf0c588d06ce5e63426bda8c793753d3d344064131f01680003833316593d1bdb9cc72d523ffcb293e1bb27c5666fbacccf15d858fd8eb2791cfea47ae3b79f90a9db12ceea43e9aa98f013f09a4947604891bafa7d6c0f105e1d5fae17283af0f5cf7c2f38b96c0049aa00426c4361f11f35e54f022af7e914c7da105865cf7855af4855e764fb1e61e9abb971255bff2082e1ac21c7b0cc79d79c4effad295bea0297b642826ee0904869abba7aa7e91b7e088e1856a38a2eb5ee4671e310293d4f4c08aca278f8db5ac1b882a94d9867d4c4757eaa2d410f509c111f6dad9a9f399539db2665e95ccc3b408918a027f65d70b02c0ed8666e7871d82deda98e3da921854c4ca9b7fa7f8e8fdb263f7ca770756ed89ad4819506632cb0d2a19159db2ba9e82fa5e3885d469301cc350a36db512ea50b1ec15cd30a89661a6cd9031740ea09c4eb4442b6c78c999c96cf34c427953b8db5645e0c68ac00de5f7d792a5226863d983cd4f836e8a2b3b06b0998c08781003f2f04ea981e303920ae53a2e0402e343d10b0c6f2f44e711d373c4cfddab87eee1200a60b405a6dbf8154472ecf121326a84114edca304064ddc5395beb4ab56094e3ec2b70c1194bef248da8e04170db512de32442ab0424d34fc2ad2847ce85ebfe01e737b32c1827b8602233eeaa81518ecad1c653705ad0881c5de750321d2389aba42969d0e436527f50140f5ae76e79cd9f8162162786be8de48e24621340b1f331c2a89a58c83e6ba84532e677de52299eb2efbc6bb78d10df9d280ca950f6a36726662ba0d3cabaa0b004b56d78b4c0175ea7169c0a6af0253a7189597c46164327d5e9522c3d061c60c99d1869abce595a88a339399e69984a50dd1ee9bcb833655061b4879d096a7f7bdc415ed03de4c46043c3d7b252b3d92959ec94aaf1454bc35a9f14ed5d84bcf2f1e145f44607261e1a5ab7ef1b1752fdcec17b1c01043f77010cd4701a6f3a8119876e25ebfee8ba0faa56b3e6669f21015d4c255e27d1388755fe8d257332a549bee5b30415d37944f7ad15024ee526dfc8e7bc4ec1724b0587cf50b37716f506084970ba5682e17225ab28ab9654877da51de2eaeeacaafefa58e8db5ac1b789ec763042c7865037c0050b7b201a8e84ace9cb31953f684137403e1eda3c445acb021fba28669e6bab48713afe4ccbe96b7c0b3f03bdfd21f6f952f0faedacf998930f06a44cd93ae66be076a630ba04e76575e6d4f7e1dddc8e0d453a4170e81c30ca56f45b2971421d4182a4dfa309c36a35b2da36fb5dc9a1ece4ce6996702c08a72dfac08dc541164208a4062600d5433e9534315dd6570e0390b28ca3da91a8e873e4acf24085ebae0eca5f481a2e7971e613881c108c3aa0b19cc994704bffc336a094a5f02d4dcfd5d010261e8ea1776d52a7add1741dd4b84be6888a4ed88d9b91a8239fc88ef3fe6221026d1470f2f292a987bb50957ad62db8eda5b8608104672cb502ce0570141e79178c73de69621c255aba55070a71df547fd80b7c0f317d25232a2d858cb8aa698a26246c0daa93900a8de62a55ed97056a322683edd3987e42a6892312cc45c177c3811e61ad47374977de3a32e62dda95c95525e3e48cc64185515d05a911c782d5b2d3679b4930ff84516027ef5320e6d8df5b17769b878a6ef5a1a355ec664ce8ca4bfa95990915fd76b413319cf267698895104a50df7cfad4974599674d54012affe1414e026ae6c1f086ca26726a6492a69bf9650e5aaceb5c46a377474f6c2214c23302f44bcb1fc520b2c05d77644da8baf1bba27ee39e29b8fc8ea974e60d8ba17965fd8d217aa00861ffc225eb8da08120c072f30a22b861e237a8ef87d132413f704752fbcc04249964de027ee91f70b216e1922d8b38adf3781ad7e11d6bd70671e11b70c116cf94a5374c8ea5f52c7c68266623406ce93b7ed7a41aa1fd2ae1fbc7754b7b24138e5b276658363f258466f6db7e67022e0da181dd79cd5452c2f7511cbbffca71795fe03d84c74ae4f01ae12414758bb30b70d480983831751b0970fe4d10b95cce8588de42712c230a890319c33a3dfd044b5351b756122336dc0ff972d6632964d163413a3f69ca0a4fedac1a5befbe618cefe05017e57c5157481c5aa5293d166629a50698b4b7c15c855445ce3b5ea42476f2f38c8ba57b2269e5010d5af6444f52b55131f7d10fc4257bf74671ee14d13fa1a985e5d7598e8e6eefd49564e2004863bfc88dffba5297d3550b51df5a71d09aed946d5bd70fca21afc22bde791e48647821df7c4776c632f1a22bc658870c92af1d5da88ea17fa8aa178ede542c889fb94d27613008b3deb068ec57ecdb888855cd9c043ae6c987f553a6fd78b216a87bd6f1b369cc65b8386b4745c837b8ef0e0bc87ec5b9fe21f6eca973dac3cc6ab500e3033d1bc3e4558d99955ddc5f4d272827b34494244b41e7d8c75184a63b43b95a87ea5a118d1ac24f6591fe6c9e8ccfb6b47fea19783cf09207256358bccc4363699a437975152efb0f99b032b3e3ff0d378ea1cfaf90b5fcf2b5915ed83cd4cba48e80560c239ae1295f84a174490f6ba9a00c535012db0444d340223aa7b792623832e8069ea5e443d47e4c4bdbe0056eb4b38748f11587a1d267a816156ad12ecfaaa231bba4754bfb4a3f7226284a1a6be88d67d91ed9b0821b8e71177ec5127300966e81e21304cdd0b75ec91f49c63447e6b047ac73d66ee9e68e4ab1539774f30fba56e3ef2ca3a0aea5f12a4411f1bcb9a89d118786c51e1cd4c77cff4132ea976872227d234961d62658376c902b4b2c12dff6bcf9cf507d7ff476a9ec2397537bd9e23c1cd39f09bf22afadeafec47ff8a9f0295db532aca2c6c2663d964dc7d736a5ae96f2c278b31f6a27fbd39dd7a9881221923969156cb4c4234a2093366f364067a972f91a11820cbafeb05cfb583dd4cfd33d2242869d8bf6efe96ef3eddb2701475b62e1ae7e3e164026059a19908427edb2ef8ac5ee7d50054318ad65ebaa8eb5ef1487b55eb83297d2562f8a5f4404f7d110a0c421852603c4dd14b1744e9ab163f7d4fb86c020b2fdcbe7b6a81dd23bcea519d0742dd2d43a8ce23d99947fc258fc8fea39e5f399ae0ee1ac28f7c21374d10afb947c00b31748fef3fea05d68a0c66d52af2c0a3aee28558f4d5069ebe9196220c25b058bd6ea023b6b824a5ace148f43443ad3d6865c321c4ca06f8ba1bf5f8d4b767b70ce3e516fb8bbce8f71c096fcef128f8f67ac90f3715cb6e57fdfc4c79913d66ead79b7a8515d0d5010417956bd24d3fb9d58c05469c1a6ce815c38ce85d120e9321e055874d7f94c710211e32233c776944b312fc2d0050ce4ca6edcd99065803dd4c4c23a8ec047c41ca8924554604d57944084c83b0444de0d21741f50bdd7344b61d31a3f73a81217b8e04271f2905760b73d710beed88e83fdec609ec2e7aee1e25b04c5ddb117bcf23b2fa855fb58ab8e791f082ed26fd8e7bf4a67be28b865002d31c7b24ee3ca2ae7a241abd27d8f2d58a8f0e5ee0ab9d06b058642663c6c0e9149f6c23d02b1b04932f8a6638e7ccf6cc5f7a69d5509e581a575cbc37fc537a452cd29b73d445ac25fe152bee295727568aadd44cf46f9d1357766557a183bf969c3c396451e2d3d76298917532bcc918d6c6e8cff21385d46ac66b8ceaf425ad22990caa66716632591800eb0735b02adbcdcf2636980919fc3c00229a4b76c555dd0019c611ca386f217b8ec8b6236af62bb11a3b7d8f3df3a89bfd322c309f1425d5d03d6c2f6d08b64e2005a61fba27e83c12acfed2094c58770f15fc3d8f0d70a8ee1ad2f08b60f08b8ec050ea425f31845db88aae7e118cdb4be90a2ca15855806e0210c68685666294f892d2b3092b8e46cf3810399e6c946a376265035479d29e017c527cd7f5e7617ca10858e789347a57e81083c0a2b839c7a360e1f592c53715cbef54fdf2b8e6487a45abd59989663231b78ea36f20c78711bca8ecc53438abf5df8818bd0132d2a131e35a937daf93312a9515a803106672630d243331eacd094a99012bbbb2ddc26cb29c9998067ccec1f3ba09cc64da2410204c33748f98bbd7b720d1fcf284831ffc429f7c8467f07d529598ea17f2cc231cc4754354cd47c46947c2b6633d32f08d4314d76c636edac66e5bcd44b71d7575afacc6e02c6ccf9164e12aea9e4783027b8a16582871db519fc8fc16f0956950574860b1c84c7dc96db12f79e549b7b261c2d98c49b7a48ee9e5edde6b47a4a5f3e17a52ccc319748a586437e7b8e57fe3ad2e6205a88b58113501566426fa97a288aaf4f78a9385d85e24c196c18caa8769644650fd62905c6661581ba3dfa9ec9f6395fa7131e608c3a6b6a7af6c1ab86662d49e133201d675cf2bd4c06255a9a93fcc64207504e1c93b6ea5d7f5af994c17a2b623e6e46315a6fae58e38f3e8811fbd275cfa853af9a8840586ab7b11b41df1370e119e79f4276a3b6ae0a5e5d71dedc43dc5ae2f44e79160ee1e3774af11181e619ab9fb2c82755f143d47c2eb869e43dbed5bc0a30de4a746aa14a963c37e33311a547a228da2189f3a10f309740630f9b39b3927d32b5419159d37378dcee027825f148a935ef94edbfd4273918e43ec9c73892beda3bf3a1a3de568cc64dbf08fd0f530fdcd399a8b0eb367bbe6cdf72c5c78bd74f1adf2e577aa7f09537a598b99e8c720ade88419bf9833cb709450c8a565ca517db2c9308a113113adb7a0d3a3347e9c1f3c2b9bc14c166053ffac68228b48d162bfedc7ad8bc640c6a2ccf61fc7dfb9eb9f53d5c15633f50f9b88cc0487ce55bbba2494a87c79b516f793c19a169da0ec95883cf3a8097ef45e8d309289fb64ecca7b1fc48d43c89dab7881a1da8e6944770da1a7befc71d70de96b60d0c2d5fa3bb850080c39f585b9e7319060e25e77d523f9c255a4c07270b35f6a6f45e4b7806f8422ad9f0cc686fd666234031e5594b5fbc55084abdedf1731fa68f4f4e371df9c495c722975f50dc1f9c33ffe6b92440ebf7ec0afffc8e4c7030075066d54c679fa8bdc6f66ba064b1eda858fd46d67d813fe0110d591b8cff7840dd19e4cfcf048c2a8e3bcf1f07678e79cd9aed279aed2f9889b737e49ad945b8599e85f7b22803ecfea3bc6d5415d2d0ea7128a481b716567df8145d6766418aa6a0aa3617c540c1d9c24251a1363f5b92f69609cdfb81131f017adc64c946c32f33c13a6ce04c0743bc0cf61fbb2fd6be7ed5b3b972c07367c73e9b86d6659c3c036135336310d789a782e6df6e3f7bfb4189a0966935ba2a6ec047ee18a9ee252a79a5174071e5173f798c38f8988e623f96947c4d0bd66dd97a165f7e885ab940223bc691b73cfe36db2755f0282038f587e893441090c3777afbde1b141cf2ff4b65560aca4125501b4da06c6d32b3ab161bf9998e6b134f462f23a5fc1c5c84291a0a203df80bbba6f59f0bd1be017a9b2aac035ff912916e5e78a7ebf3e4d54560ff49351a1da871e78dff562886dc4d07d511f1d8cfde470dc88c3f1a38ea58c3bc99f70267de239e1948ba2e94ed9335d72e7b848e6e96ece09af78684133f5c74dbda9d015019aeb0208ee66d25f8ad99ea6d0447f0f39e206728dcfa07f174034386aa255eaa3239aa80a104d134bb51de9b4b74c5ff132b636668cb78cdb6d51c399c934bdb9dc9aceecaa76c3a9eee0cc443306afe0050f6861792de0391ec0a5ffea4c002bbefc1a808307a206f00cfd5cd21c296b8d2f6a4b296b07cf9842e8f10d7cef802f00e87dc6efa8ccaf7b29514f9281578e2b523d97b4dccf6cf0e5d55e63282d627b11c18bf8d823fef023c9994704c20804869cb82758b84ab6784273e310f6c02366e2fe36e69a6d44dd0b032f8cbd025121bae7510c4d742597b6e7d7d345155d60f58b992c70740e5b407af2e4e1b5433f835fc4f1339facffcfccfcb2b6105b65ac07fca7e9e56dc7e3166247b8c2deb78bfc707ff4f04371238e267cea903cf678eaf853695f9ccd98743e73ea25f18c2b39b39cb267c137e73c97dfb50a33d1bfa997afe88077ddc68114c1415ced84b955a098ec3e73dd8d4eaa9432552a1484d2e4edc8adb6f0a5e57060a565c08194065d6e0847588eaba255e888d6052246b43599d6bd8ceb3f52cedd1b5f00ebfb720ae605b01e8a40d517ce4c83b237c74e331993fa5ef0b94d2bef882a687d94dd7833bd1668830e9e803c001d6ea5d782e7ef87598d4f739bc2f35a620adbc0631d5f011e7fc037604fbea11ddf8c82dc630901b1a22bb1b83d4cda029efe013e3c92957d241735c2080546387aef853ef34874e3106ee5bdb6ffe8c7c7468330925b8690770d111f75d40d7e61da8ef8cea3b0010aeec0e3a3acc6e452e83e1ca4998a99c4c63acd64e448135c344a2f6972f8eeef02457b447868f8e6ffcace12ff7e7dbab8b45e57554a2c29c615b1deb30dff606fd4b003311f1f8e1f699f38da3165dc09dee7a7d3bf3c072d7d980e8ce5249e7bbfe04282426215666214c020f57d059ae82f8a425e11a5bb9a409d6810f475e8b105d87db8f83b3891576f26c1d113ad1d24a50475dda69e68724dd48534cd16370cd1d2315534f585894274f08d4e11bad1a9eb5af67d148ce911488a4131d32ca7a0052f0d2372393359dd18f8e030937181efbc026f4158d9097e7a04660a123784e434854a9b01bf128ac1e34c077806c9aeee21ac36f5d14c14abc069067c79a7c1852e694ba0a80158041888713f9169f0671e13b14bbf30d3f704f6c24edcc341d90bd979bc41beec1e8130827df74402233af62880bc1596d79226ef2c6c786980504d06420e2c2b319371234d67574f88884b0c0dbc1eb767983cf8505db433863ed7f8fbf00b4bedb48dc223f1a31c92c61c4bf90c6e145e16cd4b90e70b2adbadc84c4c9350ac7a2669d25e7780bfecb3f9a96ec95b2e76c39b6ebd1bf8912b4c8aba522a427b9d27f21e03d28bd3b52b74f557162089862da44156c356d14ae02a5abb2ed876a71cd9eeec4843d4d2d211c1763cb556cb4444841947ab847b9da8a9b2be9f7fecf7162449b58c256c1aec66a264136726ca98b2c264d84c46b1a92f0138003f7a811f35c143e53349f3834c485dc02bf08c9791a242f7163171a30c61db9160e9574a8d3726a954970e61d7ae2257adea423ef5851cff02b4825ca580f6b31b9413614a70b1193066d28d34092a3b5fc8929d5377ee8f1877247a4a78210f5f3af23cbef9a68bc393eba7788e9354ce9f496532e49f461565ed0d1f45b0eb21ecfdbd8846a1a3a651f86550beaf359a89e64dbd984b5132cabb78651d89c5ed31056d004fc1e2c640e27b121af0d7b3236e65471cd0401d8bd5130da934d4c59f7010571fe0ae5b475f74407cb93adcf16c8b43dc2d4568b5242868a2a99352a29d48c3d4d2304ad34ca41114d2504aabd0cda5211b9d5dbaa07a9dd82396e851fdbe771e0d9d7954ff9a7d6ce2ccc49969409b89ce664b9a01ff0ae01b0d3cd92595b4839f69c143f15d613dc00a23339936ee494a381ec8242b3d70871f75f6223ef088bced3115b5facb4fdb73444edcdf11d481a7126893402381abf06662141bab3013cd24cb157ea20b4763a6ee0c7d4fa7a2039163134b8b31af1974dbfbdcbac9214e3b848e9fabfc972171135924dc173e9a6cd7836df807fb108dc263299f9de04de097d75ab599fa784d2f5fd1f122afe58ea01e7de65677df827edd1c72de5077ad15fe5e05b4d21a1eea77f8125ede8e2ca461af4dc0580da3b4706933512d0d7919bbe62e2a4c210d7907bb7a2e0de533fc681a7e222d0551484bd516d278fa7480f0cbb4e368da421aaa8a0615d23a91136902c4449ab012736e40ff8521461fcf442f12a339f265dda526ce4cd6c326ce4c4685c68a26c2807f0e408dd8a236f0700a1ecc3d92cd6a2c0275a12e7cc4da0b75e9508a7efa9eacf4e5a31dba07cc024f2871452af0a4d677451904167bcd443f4ff39f1f8e1bb33f7ab85dc487bbc3de47c2e8b6d81b691d9ebcda3bd6d1cef1df5c9d3ecb721c5195784bf7472965e588050dc4371bda450cdd1fad6e14267cea900415b1d22a6a2d6e26e3d964a26b7ac13f01400ff6c708fd6d59f0c4a22670d9f616c9a660c27b499117c2df23821ad90614c4f9db06ccc25fc4dda28d48a221af56c0deae20d12ff6256f771214d234509321ae6a2fc0ded08e2ca4a987d25420baa134d4d1815228887303b82a5a196a228dbad199017739cb353f44e127d23211e36839d6672656af68e2ccc4c291a681642643a13a0457d8f00a3cd42795b6bf90426718c1637bff8a2a89717013f74acc65dbc84df7e0438894b5828738f081f71faa4a9bf5b161b399e8f7d4d2ca1b4ea44c3d1c3f0ab8675fd447b6114377bdd0df7b733afe87fbd9fe01620f3fe125a7944d7b5e7ca8fb23c7e0213c59a6eeed780b4ed2b88e106a141e88f9f850dcc8a389a31d93c7851404b1cb4ca66313d3c415b5811f20706b88b53f8ba0bf1f3cd1df0664b79cc2955ec4a55aeaa4d5dcd404e3b3da00e85049ad4e69d87be385f0fd59a8e575fa8575d893ba8dc1245762e92a6aba1b49f11b81e142da7392cb4735f7bd632e7b47dc368a3837806a772226d2b0e706c0e73f8ea890a6571a662e0da53415be96c687a3697776e428bb07a799cccf26ce4c9c99fac34cc64537d60dbe4dd2149d51b2b6c7d94db733eac1a3bdc9cd84df16d19704a4d7854a5bf88a0ef065631233318acd0058d10492502605d001dc01e801f4d91b396c4ff807c8462145ee65df80ad935ed16017f6099deb086d233ed0acc58a1f65af9e76f7106f8d29150c4833310df80c0037003339c556e273051767903828ba2beeafc6136f2b460e4ba22f46adf6c42dc7d3dd0881be06b516b980f826fed253edfc23e1ca3be44913823d2b426c2d0d7d99bce60e8747882d76c87627eedc00f6ba064c150d7943168a68f8039ef9c8d39d9a425a3476220d5548d328ad58dfe8042003ffb89c99d8c826ce4cec3113259bd86926c6414f2981af6a41655762497b587e2b787c030f9ed01c7d7f9ac960c063fbd3dce694d276f0bef5079b28f31a191bd69a89d14893b0b2d555b8d62169ec91844f0fc68e206c1412e670e8087e790dfc46322a5a76bd30fc57d48dc2f7c1db87a6dd6347e81a85a7f85f8415870f48331977e51c5fde0128e09f51072474258e8056a68a8e6890d2e2aaa020eff6d240ad1a2ea421bbfb848534644959bdb8059aa3bc8e5f5bac3dae823da5a22fa411af66d1763c516b88ef61f6e0616e9b474fa73d14935cefa08dbe8a9683bf4cbe89f40279cd1a0e7d214d574b03deca5692ea8a33939598c9ec234d9c99acd34c7d393707077c9f6694772614abc00fdbe0674bf0d8e8010db0f723aac0e3f3e3eca6c4121578d8e9573321536628a4c0b2b8999826bda2ce2963a97de218b2462181939eff2331d90d595e3a97b4920eb074f7e740d3eeda46e109dee74ec2ef85556d03d84c46df3a07de669aa223be58059eb3c1b7c15d61bd1f1f6ae7d38197731c744d84bbfa1e099f54e820eead346885c93d21441078d32ef87925540a64d01a256b8b2ed04737ed1453a8496ca10abc3c2caf15fc95e0acc67b990de0472ec0268f64250099566950214daf34cc95abc8014c44d31375c53de68255e4669754f4b9625e8d1fa29c869f4b0bd05a4de3335dd47369d83bea514ad35f1081bd15157d7a007d117de363fd5c1ab44411e84a52c39989331367260b98c9783699da4c7d0c7897726ba0adf4c9a5ed7145aa88fcd667b9cde021083c6a81c773f0c06e04aabc5395c1ea5975f014632a33d16113fdd8b0d94c4cc32f571e4ff9827ea3f048f03fa405c5c892125fa1748c99839ab87a31f448f464e4d896b651a8bf3fe788b65178923f21ba34759098c92457ce654185aecef8221580510c34e2ad4a2a8176faa5293a05e5e04b08bce7a659054e734513787fa03b94e41de067afa882b617792d4f729ac04f604084e08730f028001c0680e51257a5ab9991c5459dab20e8721a209a1b1ce43119e45ae464ed4e64a4d252351bf9a02d7c3c3cd1b4977fe1af9bd0ee3b8647d3708534fde9016dbb53b3d4f84166037804145474f5079b3833b1c84c9658d1c4996960b0c984234de0e5e05b23a7067ab6caacea028fc369e51d3c7907005962890a280a3c4144ca5ac18fe8a1d2e6e8c236f08c8f7e536632933e2d86c31858663613f54813bee9c6b45118579a8da92495663c7a1efcb95be89717e31707e6066454d48ba1b9a2ceb08244c798b9d84621eefe9c2445de203793d9ae4fb1ec36f01c65b7487d01365fde9152da0e40160d402685ea73002840363e294a60298db7e28d8f76340d40ad52772d9aabe676584d88944670692b666d0cea982714fd801af016902e6726ce4c16661367266b3653fff5e62c6826c2c84962c37e33319a67f2c9b23d96f219fd4661a82c56e7959c8ae6d650fbdf7dbf2acd4925044d7c492e76da1d7d7f8eb3605566556b3fb28933137bd65ad23b3a073ec319159dc965edb1456d61f92d4f739ba0aa7866bd7f469daf7aab32d01221a78852d5f7e86b69bae934f4791fa031f07ee6d6f60c1c33f5179b383399d84c6c6313672633b3c92accc42836663093d9563489aabb9c337f3ac1fb9ce6894297a7d3c4559d306b0af3735f077cfff2eeb2fce2320afdd8860d4717b18680b77f36f97b3ff1e967b2a79995c4ba32b3992cc0a6c16426931f9d039fc0ccca6ebea233a9b43db650159edffa5cd2f224b73924bbe95116d4a00c14413dbbbb02e8da2cfff4ba9b69757efcdaeba9d0323d4034f724a86b799509b0080368f538a7097c1f7166e2469a3833716662af998c659349cc64426059d9ba81e8d2c43319934ef2bf389e3ade60a3d0f6c93fb2637de0bf5899f6e82faf099d8fb6e654b450ff2fce25ae80fffaf1d8793e19279ee7870b2aea06a69928d9c499898547e7c02f04155df784f5148ac2c727b5e6494e134fdec1998933136726ce4cd665268bb089220a746c586e2646492d2f382f9c763a7de249de04838d42d76b7fcfcb1680bf5591fef49dc7b8defbbfe456b418ac336554d43e963e4e95977066e2ccc4daa37329651d7785f5ee49d514aef2e5d53c9334a797775ae1481367a6013ed234c8cdd46f6ce2cc64023361d34a151b969b8951f815659744b3ce664c3e95f6a5c146e1cdcbefe554342b44517f798e7f1df0bd5451c399698099895bd12428ef8c296c8bc86f0dcb6b792e81765cc517a9d2141de067069699895b37c09989339329cd3420479ad86026cabcc1c486e566c287b4c854d5795dbae59278c679e1543a8dc253811fe549857f794df8edc66c5949196726ce4cdcba01eb3613b76e60a01f9db3389238337166d2a59c466c2c0e262a33311969125537df94edbe9c35f3a268fa39c11467d1d27bd22b7724974e244f266b14c6064e79e73156218eb5ac99cccf26ce4c9c99383399954d9c99ac844d9c99d813769a8951fa1158165937905e298f298be59517e864935159fdbcf0c91359f0e3bc7b4ff343420b223c43ed4ebbfded8ecf476f3cc7b43fdb3f30ccc436367166620f9b38337166e2ccc4998925b17633194e9b3ecc803530d60d84f8bb3edbf09f8ae31ffdee3b3d5faee4ccc499c9eacc64fe31f0416e26b6b189339399d9c499893d66b2009bdaa852411e9b8161264675a6fb1777456efd5bcd998f6b936f716662cf18386726eee81c6726ce4cd66d2663d96471240d3a3351b289c24c8c62639566a22c351924ce4ddbd9093bffd17c71944ca1e4ccd4af66323f9b38337166e2ccc4920c7233b18d4d9c99cc9c4a0a60599799e82747d9e5f3f3dff8b6431aee6de4cc641566ea2f367166628f99ac67a469909ba9dfd8c499c9d466329e4d9c99a8ccc4283603c04c8cea4ca922c9cd15ff26daff4165dae3c175748e3393b58c817366e2cc34a0cdc48d3499dd4cec1d03b73a33e9a3321ce6c0629f99182534e4febdd5ff9ee73832afaad9eacd3418469a068699b8154d03fde89cc591c4998933133bcd647e36f5ab9918c586da4c036f45d33d57fbc7ebfe4fe1ad2d9c993833599799fa8b4d9c99ac844d9c99d813ce4c56536a32b599e054a9ded289cdc06013fdf81ef8e1c5a6ff2a8ef6e5ccc40636716632b399fac026ce4c9c9906b2990cb08933137bccd43f6ca2692646311e58ec3193a13a138a4d6eab86c76cfb7ba144cc99c942a526ce4cec311337d2642d66a262136726f698c98a56347166ea8f54a363135a12995c9e9fa55459af99e8475858e5f6e3bfa4ecfb384fd9c9c84cdcba01eee81c6726ce4cd66d2663d96471240d3a3351b289339365cd844d3b556c9cc5db405cc43b7c25a7830a6f479625f22a4ab2952a6b3113a33a537474c4f5e5ff9a7975396726ce4c9c9938330d5a33b18d4d9c993833598b9918c5e68a789b2eceba646df7cc3d1a90effab82830b22c21b9225fac6c62a79918d59902af5f0af8f97fe73ebec476367166628f9928d9c4998955e1ccc49e702b9a38330d4833d18c521d14b088b105790b8a5bcefe5b7997830bef8495462796670bab6b4c462873f5e67c1cd604adf98ffc8cd88162266e45136726ce4ca6341337d264763359cd18f8203793f9d9c44e33310a29b0a8b105c7357b8f9ff4ec8302bfe7252fe21482f4aa72496d179bc7c05dd67dfe74e37fc92a1a3933712b9a06cfd1398b238933136726769a6930af686263a9c91acc64381dfad83889b65d418691b7b2b071c9dae12d710cc877092e0c785e121aa3e0a556ca44ca3a695d4f3f99897e24956d17bffb9758c7599c99ac864d9c99ac844d9c99d813ce4c56536ae2cc648566c2a7863c10b0303115b650f0cadee995ebe09fef1c5ce81f5af21c01afee7eefcd69d994c44f7359f43fd37c6d3933b1d34cdc8a268b3b8933133bcd64804d9c99d863a6c130d23430cc44c9260a33a9f31bcd00606dd5062b2de3b165c85bba5ccddee99deb1800e055e41f5afa3c5691caabcc17296bf3eaba4cde9e7b72ffbae792ff9515e6c799c91accc48d34598b99a8d8c499893d66e256347166e2ccd47733318a8d53e65628224c2c802d1728db5db2e1ecf0cc3d7423effcbd02cfc7c5f7c3cac263cb79a9957999ca2a495d877147e76e9cdd7963c5bf49b3d2fb974d9c99383371661aac6c1af866a2641367261699c9ec6c1a2466a2482d2e369733b75e868da50b165b04de32e1d8160d6c61e39ebbdf2feff45d99dba3a23ba1a5a1318ae494ca5ca1b24252a7a250d1c5f553eeaefe3fb2ea36ce4c9c9938337166e2ccc49989339365d864cd66d2a7d37034c0428629b6fa696c0b8d2d2a6f21732dc7ce577ae24ec15575cff149b42221b9224b505d965559736cfebf841e9c3aa0cc44c926ce4cac0a6726f6845bd1c499893393d9cc64884d5666264621001629b6d8d8493490ab2039502e3d5b7666c1ff1bec343d40e61454e4f7acf451942226a952985e5d9c5d5b2f6be8e1ccc49989e566e2469acc6e26ab19031fe466323f9b38330d5a33c1a9a3179bcbc2adfa5062cb50718bd5d83ae33af3f277ffdf9d3bf3616f61e29ab3d35b7ac45f76f141a1f79392c048796462457a5ab52cabb64656df3578cc647e36591c499c993833b1d34cdc8a2676959a3833b1c74cfdc3269a6662149b4bc2ad702e63d2276cb16e6cebd8be4faf2dfe17bf889ff0c52d83f1941cbc957f3eb0c8eb696960a42232a9322343599453d750d0d8cb9989fd6ce2ccc49e7066b29a52136726ce4c9c998c48172a7a6061d2afd832ffd8d691a5ffe1b3ec5faf0936537712e9c4152417ca35c9aeeb790eb70b9c1e16df082d0b892d4fe055658b6a1479f56d9c9938330d12331960136726f69869308c340d0c3351b2895563e083d04c98d453c6e692801858a6c156bf7612e9610be40a6ffd81af6c6e6eff80d1d8165d6c69bd858c87c4ee46fee9fb85ee21257723e4610915fcb4eafcecda9a82866ece4c663413159b3833b1c74cdc8a26ce4c9c99586226036c1af466a2ccef9800606dd1662b636c59c9d8d6f9078b0ecfb2b97566bcd133f24c8b5b44d9a1ce4e9f3cfb3b052e8f4b6e47c8c3932b33326b4af3ebdb3833b1d74c03854d03df4c946ce2ccc42233712b9a06ba992cc026739989516c2e0ab6e862516cf5e3d8d6a90b538ecffb7f6efacde9cb8144a33b89e4d8d2c743bacfbfe07c7089ef0b79487c6572ba323fb7beaea8a99733136726ce4c9c993833998f4d9c99d863264a3659ca4c846920090a5854d8ead74e623f8f6d396c1f7efe9bffe1f37ca9a9b66df52bb6e05c93ec7093eebe213bf1a0c8ed59d98398f2185eb538abb6a2b0b1d34ad8c499c9d4661a04234d83dc4ce667d3203793358d8173666287990ca75b1f9b8b195bf4318c2da38a5b961edb3ab4f07f392ffa9fd7f81be88f6df52fb648bd458a2d647cf28edc29747a5ce21f551e91a694e437b458dc4cdc48136726ce4c9c993833716662b3998c6753b791b1b98004160d6c59ba93c8185b97791b0e7c65e3beeeef665e6dda4fc52d0cb6e05ccf3f1a54ec19a108e52bc5d28606ce4c9c99fad54cdc8a2676b5e73833b1c74c83600c7c8098a90f6c6aa41d0858c85815b6e88e6d9df19aeb76639e19b66d99b99348882d10efbc83f78bae85299ea4540b73eb6b9090e2ccc499892566329e4d9c9938337166e2cc642133318acd85f42d186319f0167d6c59f3d89671dbb62c3eb645184fe9debb85cec05be9cadca2a6cec16326036ce2ccc41e330d8631f08161264a36b16a0c7c909b896d6c1a3066620e2c6418616be08e6d19b16d8bcd635bbab84976dd2ebc18a6789c5e9353d4d4ce99898d47e738337166e2cc64049b3833716632639a7a0cc7e67cfa16385869990e5b96ee24b2fa92444b8d6da9b1b533a0f0c20bc5a334657651938a3393a5d8c499894566e256340d743359804d9c9906909948f2076100b0366bb3850a5be4deb22a6cb1ee9244968c6d016cf9179c7b210f4e53661536b57166e2ccc49989756ce2ccc41e3351b2893313ab625a33194c332236e7d3366b92beb9efd8e2c6b606c4d816c0d6d95079105f2942626b908f819b194c39458adc22057bcc647e360d723359d318386726ce4cd66126d3b0897e10c04286045bfdda49e4c6b65838b6e526d979a7f05264f973715db1bcf5256726b3d599367d3d1cc41acdf420c0cb7ecbc21beee718b38933137bcc3408469a586526f3b3c9e248b2523319482f2a36e7d236c321969685b065e94ee2e019db62802dafbcfd8f4afd92ab530b9a9a596b26eb5dd174f7c6b5f57387ba5d3804ff16fc1a84256662546a02ba5af3d5dff62c9fc89989331367a6c15c6a1a9066a29f1624b030a1812d6e6c6bf08e6df9179c09573cceaccd97b7f40e3c3399904df40368055c72daee673cb02c6e264675263db038337166e2ccc49969609989516ccef137ebc3085bdcd89639b1c5d6b12d0fa95d5089676255427e632d67a6bed499dc35c0fa05fe2d0c2c96988951e800ab5fcc44c926568d810f7233b18d4d9c993833f5536cce2281d50fd8e2c6b606cfd8d60dd9b15079a0a036a7acb58b3313d318012c76ce330160ad9f3fc46ee564f0eb6a552faffc7a5ce9e9548577418374009bc9009b38337166e2cc642e36f5ab9908d34a120858c810638bc45bacc2565f3b89ecc196f58f6db94b77df2fbe1a5719256dac1ccc6632025867ec7e81850403cbea563455a97aee86ee8c29768cc83b5ad65253d4581853e2182e3b1c92631b28dc55dad4c099895d6ce2ccc499c91acc647e369199c9705eea637396b719632ce3b0c58d6db1a293c8beb12d3f99e30b4590a82eafbcf5e5603313459d29a7a034e2c5d3e494649d66dc2faa81b5f717f8b71a60b1834df4eb4c82f284a0cc1dcf24fb228b8e4aebf9454df260d1ce3b699bfc12d7b8472d4f2e8ae0cc64593671666255383359239b70f9932c00589bd4d9ac0febb1c58d6d59e3d89667dedec7a5bebc9ab4d25695b5b3a9ef2b9a8eef580238f5ebccbfcb14353a606d5b32dcd36373615361a5aa8711b0d83306fe24d3d53366c5cde4b5f733b6e628d32ada3aafc7fdea1abee442c8b707fc67df4bf1e5ccc49989339315b0c98c66aaefee9136e40aaa13532bc30b9b8b596e26eab4a1637346032c4ca8b0c58d6db1a29368b5635b6e925df78aaec45745e73729d96326036c327519c97ecbc25f67feedc8ce2f05a591a52d55e0253e6e87a28b1d634aa044159d70d8370d008b0d66a25f67aa5475383db73d7c67eee567dfb9452ecbaf2b012f3c79e1c71d9e33b67a4d0709129e94d6a5f7d54c6a36490a4be3e22238330dc8a3731647126726b3d5998a5bca76bd18b233f41f207bc2df3f18f3c9d342e7e69eb7ac3513a340c042c664d8e2c6b6b8b12d1ad8ba293b1151fe38abbeb052f55a071d91b4c0fdc2215fd7d38aa6eef25655516399bcb585fd6662546772d8bef076c486e86207c0a9d892138026fe778f44141e7926d9172cda79376db377f8cf1be60fb3b8996826ad34e941fa8187e25deeb16b614bed39390dbc5cd9fe2638c9364c763836ff7144ded5906cdbdbfc8d85f58abe979a3c2e1ddeb470a8bcaeadb4592ea87a2092c71c5a3777cff289bc341e6726169a896d6ce2ccc492dedc53d9355857706cc33fd81f3dfc46f6cec6ee5ef0a7cd3dbf15b44a6abb54ec31134360a56ed28447907ec51637b6c58a4e223bc6b6bcf20e3c29bb955e232c6aaa781c79e9f08e2fd77cf537a12c0daee8c4143ba6caef57a9cb5aac3513a39c3dff63006f43a0703b304758fea1d2e64a1faf03f7d2b7dc4a59e71df7f3b588a54ecfbfdfbcf413ab58d124a9961f0c9803de67f0113dcddd1b92b3efe4a959c03a8038f935c5e0c3015eccade1c7c96e83d73919b4205a12ddf73a5370ec21f08521ae8816299f82ffa977c84af0050312e8ef6e3633f5814d9c9938330d583331aa33054acf218105192b62e881988fcff1e73e2b71f1ce59735e38c53577a1a8319e2566d245f5ca7010c0428611b6b8b12d6e6ccb44d8f2cbdd152e3b0ca36acfead1e90511001f8020f7055b813c84e5696c3613a352d3894bdfbabc58ec11fd935fe29a3bfc4d65cdb51e970f5dbeb7f04ae8a213410b6c6fccdcea357dc3f24fac62455358d633f0de9e0afeda3366c5fd8cade09f6cd7cfa300b0b2aa13a20baeedf39f7726f89bc2faf292c646afa8b34ecf0ec8eaaafbd89bab6cedf08e85dcc62f7d98268f009fc6e33eb318008b3b3ac799893353bf998951a9a9b4a57c5fc4288cb1ecd4c63a9af0e9b194cf4ea77d795e38d5296be68d825f63abbd2b3babc11b2c6f535aca4c8c62733a75131c626991788b1bdbb2ca4ea225c6b64edefb71f3f28fb7ae1975257d93c1b12d9fa435b7791b8332773ccddd7b64f7c4ebc9b601a91baec7af728b5c76f9d9778f057e748474fdea0910f39b89669da9b4a936bf2ee7b8df0f0025876ecfb9f064e1adc43de0e51e170faf5b3cd4eef2829dd7e76cf7fe6af3a92fd7cffbd01c6ceaf3f4524e55097887c187e3f4fcfbfb69fb9d9c5600e81cdd331d5ed000fe358fd8cf306149a9a4b132a32202fcef4e3ffc9a5f1857d5d6e51b7bc9c16b851e5830953adfd476bee1ccc499a95fcc642c9b06839918959a12148fedc23ec2006bd78bf7ec223f3c18fbc9d1c4d1c753c79f4e9f783cf533c7e4b197c55f9de24d3c143506bcce75e14e6547ab45d8c40458299b74c6b230b6b8b1ad8138b675e0cc57f033dff9f05f0c16b74e042fb812ba08aeebecf879c485e85f9da3961e0f9cbff33af4fc7d3de14255fb6b00267e7a86fbc54382ac2c42f7c0e7efcc69269a75a6823ae57dde31f0a10173dc17ecdceb3f6fbbd78cf30f77e556cbc19f0260c16b1ac0afab542fe18fc25266623a065e5c5f2f94e72a9a5b4b9be5c171b6774237eeddfc65b068977fea7af7a8e5e70317f22aaee7d4c6d676bce9636f2eb930d525ecc7fb195b6fa66ed9633ba1bcbe0d9650b654ba6eee7b3b7e1a1118e00e7e5bd8288e2b3d1d53722cadd2bfbcad8e331367a681546a62b999c892d790cbaf0ecfac4d2c6a2d68e8e9062f09949cc1d00a61ac217b23871d8c1d619f38fa50fc48c2d771889d2c6fabb0a09fe0b493470d2c4cfa802d6e6c8b1bdbc2788b1a581a66656ef1cbdcf648ba6fefad790052763767d9bbce007fe562cc1a67f196e3512b0e3d5ee410bac42973b377dea1e7f2bb9e1e904582ef5ea70056655b475e9da0a0415addfeca826b2d25456567f7ad02c9ce2f728b387ef4ee5cd788253793d73e12ef8e2ab27f9cba27afac027e4d185867f7fe022309fe286aa139f1978ad6da9ace576636139d5435775d3b6de77c6c7b71651df86d7a59d8e3ac3d709337e0e9e6c0b4cb979f7d0770bccd7bfae36cdbdbbc8dc1829355edaabef4e682f8b776fb7ee515b3f25186dd8605ef6755c548eae26b3b5fa5e745bec83e00febf11d9a7807832aaee46161d854e0c64ee0c935ce1cc644636716662159b2c3c06ded2fbd65bb84d5c93067405ccb43ffa23fba431a7d3273a65cd0a2a39b25b7b7e1045abd0f7e05fec0e1bb2376ad8a1b811bbc3de2773987ddc04614d5cebcbdf4a5a8b6fe7db0515d9577628fbd54c06f21a15226099015bdcd8d6a019db3a705a0bac300db0bca4bbbc25bb74ba3a1eb9023c0d5f8f5f1528dcfe2073975bccaff63e5faf99f9371858849dc4c317e7803f75f2de9c59272e6bad5176bc81c154d9de99a97c7e2f7cf3deb5e3b36b62c1d3ed73e9fe98022f0b8e813fbce70b7ff80f6eb91f7fb0169e55728f5a1ec0dbf024c7eef2e56ff3e51515aaa6ec9ae887d1f6c70e4d3fb7ef17e09eaaf68e2bcedf9f3e3617fc3a45e1062d6e283855d254610633314a5a7a1afcd1853d0fceaac8be16b1d43761f5ddf4cd21d9b64f047b2bdadafc1277b845aff68a5bed1dfbf395e78b4e3f5a7497bfabbca5d9e8de9cbcb9255414922e4f7df0ece849fb99f1451efea9ebeff38f06a6db3d14ed02ffdcd1c50e755daf53cbee4155aee4b55eb12b5dc397d476bce6cc34704a4d9c99d87d740ed99bcba88e050cda173ec22975193cc07e387ee409dee7e733a7ba48e63ae5cc2264d39eb021f024d6c1d84ff6457db42f6a1819b0e057734c98003713cfa44fbc229e9756f7b4b1a7ab9fcc443f1dafffb23995b2f154ca26388cb0c58d6d71635b748a5b87cece72d83bf5c491af2e45ae06bf0d293c04cfb03f971df2cad90980657b7bfe1ebf99ce2f7eb891f4eb23f1eec8120747b7afc173f68e9f46b8256dc4b711dd7377b805ffbc77fd387bb7af234aecc19b0a2b389e5e9356d9de9b5c1c1294b92334ef80d395ef05151177f89b7ce27fb91ab6a44af5d28466623406fef0be1658feee4f84c1dbbca08d5057c3565cbdbffce0ee096be7be0780955d13053e8a67927d0f04dbaef9ad86c6c6251742a507628a1c941dbd6179c7efa56ff14b5c139ae5693e3cd19b014f4be76b80f52c383237cceec6cc0b4f16ba452e03efad93dbe21869f4c9e0051ed12b5c427fdc776b16f8c05d5e6c07ff4d2e48ed4b3faeaee3f5f3acf32139b631c58e92ca1ce7e77b4e062fba1afe2330dcad94750f32b60312091509e0dd707afebdc3bd79dbbca6973434988a4d1647126726ce4c2c3f3a874c634ff7b1b8a9c8e1aafd31c31d92c79ec998e4943df382701aa199768741b52e47f06ae9134ff0261c8efb840258bb5f0cd9a72e7439248d3dc99f705630f99278c655c9fc60f9c1bc56bec9cdc42836a792376a92b211892d03de6209b6b8b1adfec7d6b19b8b362dff78cb2f232f256f608aadabd9db833376c3db9e02c576e0256185479e4bf6c3d7a7f8a4ac052f39fc781178d23d7c67eeb588a537f91b7d72761ebe32f7d8816950bba7e048a078e735f136643f3128c736aac8fea960ef31cf6f81a580a8c0d3aa5bfa7a7789ed95a80d2e618b01aaec0f4f95d5292e3ffb1e3ce56ff7fe4adedc614233310a1258e0b7d5aa9765cd2de017ce177f0e8adb165d68cf2f0d2c6b2e07b402be049f8153c15fc7147adce66f001f05f81429db7b9e675d0550381830c739f4b019ccc428fa0ad6b3608098ddbe0bc03fe57effd9878e7fb967c544454bdb89a0d5fe89db5cdc1667968bc2a537045541d25a711fdb73998adce3810bdca396df4a58575aabaced7cf9447c1928cae1febc2bcf17f9846e040caaeb7ae31b7b0ae6acc3bd5feabb7f33824ddb178d39b47636e11f5535b67b5d3ce4717ebfa2b691331367a6416526a691354a77215a8176111f1e891f759237e142e6b4ab9279eeb26faf4ae612d4a522a157836a5dea238414c0d26dcf3a92304a7fea307ba6ab74be67c14245678969cd642cb09049c17acb329d446e6ccb9c635b24c0b23d30097e123d717f09d3e2d6b5f40d403ff733b68664db0667d9024e05646c811a37312baf86fd78f6f137ced9dbaf88b79e4dfef54ce29a2b999bfdf3ec9e141ebe19bdc9eed7318fc4bbe11169e7c8e577f2f7bae7ee00ba72116ff68efbf9367fe3fdd4ad475de7fb26fdea16b9ec7cc8b7e7c397de15edb812fe0b7842dd7565ca868543d36af83955c5cf4521bc228179c6c00959f3480b2c787d40954a95591d125b7c364c762834ef209022706461634e4cdefd338fbed9a65ed1793d71fd3df0a5f5ec4747d799e0afc89bdb82f8b73ca34ea79766d13793795634218155d6224f95df0dce3ced60ff1d78c99ee55fa6c99fc4979d810b96b1a527a20a8f3f95ec7b2edd9f511104fe4746b7e7941dbd2782d6db7accdfb2e6e31081d36dfea667927d07ef7c0d3e755b2e4dbae97f4667a647c1becea7b7f3f829c641072aa3fe30b6a11b10bcbda1eb0df28f445962f8034f4949e4cc3468cc64249b069e999806ee0fea0a4e07623e764c1e773663f295ec591eb26f1d93c7120db9ab6b5d49634fa74fdc1f8d3d664876ead03e713430d9998c491745d39d7366bbe57fade828e957421900d6494260117bcba2d8e2c6b62c34b6a503d6cde46d614547c38aec1fca0e7ae4eca283add3d1d07cd5b588a5d7e3577927ac832a5bfc75979e2e3c7c7b0e783adce63303fc5dcd387cd6b65bc22d2139b6118547c0f3b1b3ebf70ea7a702390173ecb83ef371f69e80b4cdae59dbaea66fda776b36789b176f7d0380753169157823e04d9d085a703d6115f8eb4ff2f6af9df31e886beef66b929d81c5d77835c90a95ca2233e0204f42dd039ead0fe1ed094d3c0f7e2ba94f51df84630f9c01041928d8f63477af58f902fc91ab93ad9deb0cefb835eab6e68f271e7cbdfe9b616c5ed154d652929c7be7d0f62fc0d7c6a3a757342b614b1c43a507f7ac1dbdf9878f3d6356040ab70765ee7828def5386bcf931c3be06cafd8951e512bea3bdf18d79eabef7a23ae8a4b2d777b1465bff1e038a052f006d5cbb70e3f931c5833f36f41011e3ad66c5938121afedbbf9a29ad4a5a642265c835af1f772e1ec7aff0011fd48bbca39915d17860a5a62672661a8466323f9b2c8e244c680e3095b4140749cfed0dff18e9a1bd91c38e267c7a8aff0560d079e154d2ba947a606b7f94015d69bb8aefef8bfa08bc3ee0da49fe17e704532e677d755532b7a147d51f72eaa4c81b7d206021f3ffb3f7ded14d5f591b6e32e9f3cd646ecaa49010d28090c0400218db18176c6363dc7b9564755bb6dc7befdd968bdc7befbdf75e71ef8d1a7a4f99f9be7bffb9fbe8c8c218e3d840129261ad7779c9d291f46bd27eb4f77bf6f95561ebb96deb0f64db8ae8a3660f9b178c584417e86a0abd6524fb51192f7ce2e55c52bb8c7d37b06d751182db0c627b8c03ab90ad9b147ec82649ccad4011539753b53a2b43da3455cabe5c4560dbf22a53c4de9dc4164308c331599a10bd1c0b943dab3422aa3582cb141154e5c90369b11325a9e147b4153e04c0f2eb257a771a5a1729e0264cdc069de87e8af6d17f269618e68c9887f492b06d2ba08f9434e653b7583d79f9fbdfcec6741dadcd97de4e05964299aa31ebc56b377b966a60ef92db08b0a9009dc165a7e21a0ca6be5f02060af13037f0deef9821c18e4753298d420ed2f4f6742de58f5f1c79065b34b5ce66e2f41b8820bf3d20f164c98885609d1fcfe8e37a321fd3a38f049528015e07959e02d80aab54815df62dd472cda23cb6a529a385031703705bc9a0b581db3e42d841ef3c19b86c80e1b859da70cda4a7040c9eab1fb9d0b17ced8681e427708f0b53754bb5b9b9cb1700d6e39bf433ba2974d5af8bfb0360e3bdf3651cd3e5f180e5ebd75bfb2a0d8e7f8832582d252d73d1b5535e8db3618367ebb7ca4fbf0a33fd71b0e9bf9c999e356cfa356ce0b69507d7f3b0bfc7aad86153bf1b30c8a179efa3b1e95d93b28fa945ef6f06b03090f1db9336ec766cd9e7d6f19d77cf91bae5842b777f7e52667a109b36af17ec6bf51ed013c0d673dbd69fc6b615d849c8eea5179ee61bd2195a3b89f2db0b0659c0370007b18dba9c1a75ff06ad754b8af082b6199281a50a714d7a993db4e00a2d9b48492db90f9c0b54372826329325685142ae599268265a953a4de74b947b28d50002732b55c47d2c6d53c421ec150fb3fd9278ad2c798085ea863d468ed5ea2e759a51fd94cc11334bdafec41afde83a2ddf42b9a83eca83367952c2a847ed42f9e4a5f3bf929f69759ea97daa16a8021549db8ce0d02d5dbb39b8dc0b340088e05320eb982e6e1229d436dc8c074704b1a3f3b4398506a5fd31e583698e4ea2f6ec23701662eab44b0638cbd76fffdaccb4790ff8ece5efe39b0c703f58381de6e47d163e42e8c2c05d614b153c33a528a7beae1bae5db87cddcc5b8a107a90c239cc8c39621e2f5ad8cb79127f12b7c68fcc391c587a2a3a85ae47fd02ae0ad358e1a05255df1c357d29443c054d2e70c5c271cbeeb21100d626734bc367461a27d22b47232891a2648e30d3762f4976e7c295eb25bdf9490d6135a7ab0089bae64b4b4690a7b06cd412c8b2a633013e2602686e9bae7cce4ccf99e9d9d1ef32756eb57c1a95d6852166e94796355f3836ef756cd900b090b96af380855b67f1dcee5fda35ee716e456e77df3e91e851cdb91bd34f8b999e0cb09e14b67eef4ae273dbd6d3b06d05d56b011624b618a677a1a9ef66c4af3585de06b8016a09abe0ad94972bed5820b72e603954aa41d8735ea9dd140cb17cfda5519c2b500dee3506605a17b09c6b3589e188a24c93c42d028ee2fa4b60ad7ee1a845c6308bd34725718e98728543ca9512ba8c2dbd8e3ada08970c5b26f7d1fc56ba9b06b7eaa5b413e1ed0afbcd082a9f58a44bd1a345621bf5431bb5d76d6d1a37e25a3d5f3c7e69f9d7b381e775a6daa6a0d6a941a5a7222bb5cfa2f6e23f455531cc781552901efbabe1e9b9d9cbe7c62f0ea7645b08aa6c785a80b7af6c41778869ac884592545eafedf885b95f8f99b6e401ef5fe8f32f96e7b363ab114dfb4b438baf82ca14fd8ae4dcb3a580a260d7282afb60e4f0b981a261767a072db2ca8dc43bbf01256a4f0258f397af15f7e68d9f5b0af733272a6c3f3d37553ae2513e665d31e89dd769e217289b59e00e9b145ea50a875de7d8fb18b096af5f1fbdd83572a16be9dae5472593a62e5e008e87670127c16f89b10bfdbac7deb367892c5fbf26a09ce56b37e0fa874f017c34507e4b7b675563e66a628eac74be3ff8f2ad85f357cfdff8f18fce4cbf1a363d67a63f24336d49c317076945eb3459007232abfcd4b6e12bc020da8608452d7a6413acf506f3dcee559f59d7ef7268fe061be4fd068e264e91aedefbf9d740a81b1bea05bb5a3dbb0d186b3dd87a6edbfad3dbb65c0ae5f04a799c1af5b8463d8afa67a8ef549e824f3e2fefc2158648c948925cd7b6e552af85cdda5e79d29c6af5f042757d5e31256f10e5c3f2064dc33bd6b16d45f451627ba851ed24a025332f51beebab8554326a8169a378cc32bcd5c8a7552f61901991afed642b0c38050c1758a715da47f6e9265a268842808facd588abd2d539f61eb05450b38e7b0e4a9ff876196db0482277d8b172be60f4d2fcd3f233cd5eba543f96593912c46d24639082231696cc80e776cc54150d3847d6eb7b17aaf814a8e82b7cdc3bd586a1aa64d822b39b9ade89ec4a59bdb49c3e464e3763e6d272dfc26064b5ae67eef1c84acf67a44553cd502923fa085c09709104152be848bcef15480a28a23362f8e068e0fe2faa2202acfc1e3fbc779d8bd97e456a84b04394489127b7814f5f5a281c3007ae9a3eb794d06218dfac9fdd4b2f1941849a9def9dd2646b972ae19ea76863f69db6e8bb9624d1c69930fe411eb5ec5baa5db73c77e1e64ff99d69c98de10da3797d4b15c3e75bad59dfc1cbc636e8e576b9cd5d9e9fbbbcdcb7d84c0843d315e1daf6cd3ea12df6cfc686daaac102ab4434bb82ca3956da57801968f6cc057df18fe11a0ef3307fce4ccf99e9cfc44c5b55c168188fa8b679359c6416ed10c010909055ed974e2dfb3cbb857cfb8efaf51ff5ed17599d8e5a3157bdbb79c002e1ee5982b658ee9d07bd7b8503068f755c2c782accb425bd6057a387547b5fcf146c6dc45b9b82addfd9b6f55bc1d653ab24fa7410c2bac9a60912c611872090405cf7c991d5147e0742854da29c69da710c4f84f04336a5ca8fb2c93bd568d894283ad76af8771a8566694424a8182bed48eea00212c1cf7dff62394e2729b887ccf76cb5ea71eab4523b48b8229932642200ac906a4d6e830e105e42b34152ab113c3db183887a878e5b3b581ff1c8948668e7982997d86ae4d769c84c964465c44c2982f2762d9177c3fba9f183cc803643e73a8d4dae481d7ddaae7c2e77f8fb992dd5e03a7b7a4dd40f837a0686e0dfe1b38b4e19b241a5a7e29af4b27ae811357aee1927b54f7e98ca0d4e6e74c52d46f3074d71bcf7f195ee9aaa807f33ba28b08f51b59a00b502bb121cabaed9fad9abcb43674ec7d505378eb7fcbe2d9aa62e2e950e8465f7b033ba6918a488e18728ec3d70a68af3d260c0e48573657d452696629ac7dea59cfaa663ae24aa8e9cd9434def22c3f9ad1f2b0c2b73cae94879721b78f5703a1c1fb824269667fd0a15e0a8c2a14be6cd18c8ad701fbf305a3a6a838fb0b3832849ebf38a09db8221162ee425341197ae5e7b54566960b137b6015d690583acd018459ac1d71195f66e390ad1755a705e007cfd4ad5ed32e48373acb464507aacb1b11613d2f99b3f9cbff59300984e8f4fe06bd8c544ed39333d67a63f19336dc9d2b478ed6cc36cee855b37e0f6d5bb3f9d3edf6351fe352621735e23065ebf06d1d051e984592dcbc2af05b92846c9365ad107b4e2f7d9d59fdbf31cf11e5d8736e176476db1cc2b3fb5426ef7af91dbbdebb06fbf68f8b0fcdc8d89a7084f377edc48377ffc3f1000962e9fb104aa7d7cde7a6edbfae3dab63c9a7402ab558166200e059669e0084a8a3c42b33f8043856d82bc5787917b8bbe4b9d96479bc12f76db0aec304aed26636cca6d677815ab079428d8248bc1cbc2eba7751a07b6197a7711cc12c47cf26571bc4473eb865902c072cc3fe5982ee19a25099ce79d2fe35b78c2bf480e4229446b770f71b69f984f836e58850a3c6a5fa2183fc8886831f2ef26e2598429834cecc2ce1b6187f4196fbc22f51a7106ad4a6733872e4e3e9caf7a388704e484b736332912fe4d6ee0c00e7ae4480124a10ae9202b365787d7072b901471c43605b5718fa943ae2c88d61ede129da38d31f5dab0177e45722e99929488c3b4282113ae303b5ed43a596c7071a462dc1ef6a2612668fce2c0af8d506b74eec64fad6d2d9ddd5d707be6d225bb94e30125270179e10a896f21055568e557a5e07d2fce4f13e091b5116ad3a073fc035e2b2f03e012d8e580e2936d53d54f3e75eeccf55bbd0bf5d1b596c4b0430edca3f3e7ae5825a999c58978e549a3252c2bd4d392fc8afa7c8190b089303c5e5947f9e3bc3e6be057dcd81d8e73df62cfa33249a57d053cb79f584ab30de1d4c724d99d1317c76d5365985c119b1409d87778d9ba699faede2e4da1b7691a5f36b4e59fbf79fb61d6197e4a80f59c999e293d67a6a7e2014f1b70e6e5a8dee5f56bc04d478f00004d5d1f8eed365b958b5ae9bcd0c0efbcc06b4cfacb092d5ad1fbf0ca8065b82d16001cbcbeff8058f952d09333d39684016bb5f436e0addf13b69e6ddbd6e660eb57b76d39956b3a956ab8b5186c15b63c5a0ce85c14a5c22b55135b0c73fb99993d8cd8369247ab01d5641f0e153609f29b6f00e1d9aaefcfebce80666375510a87cc7ccb74dc1a756d4b957d4b5422aad5034b149cf364bcba08c488c3a4f0430049a1e5ca71cdfa21ddc6669e7cc0722956776bd231cb9421f2167bc6724c17f7cb93d79578cfdc4fccb79b685bac68962a1156a506c45636669538c46fd31052ab8e9340802f31cdfa6b57a4de1c6f850fb28b6652072e8c9ebdf1e3a3ca73a9b17cc0caabf0030c2a1b758c6f213a66c80235a2759d9be974ed9df0684ea54719af4143549dae57ae34904a44b51a55e78b91a9d9981a86458228de3b9f4225af42257a8c289e48387e610eb63fae490f4e4a721b61f04cc753a7a80d32490df55578d70647470bbab360930076e13425b418000ad74c79007ead0056ba00896cc932bae2ef6949bee7962d19df4ccce8a2170d5be4f49b548f879eb971fd09a7ce79e7510192d2bac8d195044dd17716ce5fcdefcac0878e157cc8e0d4476971c1e115da30063ba53cfd251de94a85bd010079c0e8f6a9c7805f2b07cbd6adcdcd5f3edbbf5c5d3112da309906ffc27e511476e70f9ac3d55b346c9ede4d4f6b33ab1f4b99bfb2d4dddbe5e2288ad7624aeda00e9fe9df00b0e6aeccf42ee7772e660c9cad5abc76ee99b2813f67a6fff254d3539f37b719b52f5591f3df75ac1689eea1a50d3b144d05349fc9be78e70620ce85dbd756af45883a2f54ae745e683f00ccb4b1616ba5bcf82e03b5c5da61c977bb2338f3ed3fba7073eec999696b80655ba38bf510693d4dd87a6edbfa0d6c5b0ef92a1a426fc3773acbfbe8566d5b7615c844621e27e25728075890d24e84a0923a68ead96e0480a52bfe3e517ebbed2ac0fac56e5b8ed51a804d0e00434572e155aa41e9a79cf2d47066cba751cb26e518afc0741800cbbae81421fc10395ac4ad5cc9a79d97d35a012ccf72addc1176d6b0595837d9be42d522578e952ec5ce9665b909c3a3d6c192c8553366659375c236452ca45c09cde4eaa761c0f268d1a3c58b11c20e4240b5ce96de7845ea5f24add00156c17462dff9a13337f80d9c66af2cb5cd27d54df916b53ae9497ca029f456d9693b9ecbc702e5e1ba29b99da13df31d39f941aece62fa521fe6d53a03b626b51a71aad59d33a54db8a2ec5021385fa3d3734b576f95f4e6db862a8555e9948f59150cb1f2064c8d7576ea9eda0e60c7ad7687f362932ce69c21d13c5ef184ccb4a5da1c60133e11005225bd28b5831635ca97855d48ed301e3ad70cf79b1a7e9dd5482d1fb16f994d9eb934d732178d4dfae1711a6d931df85fb896b27be9a9eda4f40ef6859b8f367d6fc2036e1627ef90261e53a79394654e52f8a4693ae6f4f99682de98945a1f4d6174f1a7c50531628edaa5f2e71698b3f6d9528f8d9f9bb44f3d2160f4c1c5f1877345fd0bc34e195240667015158f589cbb790b5e8dacb02bb1c1dd395dd223470a5e30b19155371d007b5435e6c1d0d9c929510b295372cf9632e18a35ce86f42d550206014e752c26d78c7b73b3b4e153e36aa2563b859a84958c58e0e667e31786ff6453e77e77487ace4cbf3b336dd5cf74f9ee9d75ef6f9e2b78381765c1cb453934ed35abfc9459ba8d52f8c012d1e475ddee85ef31cb3e32affaccba6e97431372bbb79dcdfbb5716a3dc0aad6bdaf3f056cfdd7dab6aca2657038a49aefdfaa6dcba14613c71e884c81250a68765827d9af93040f7945ca978da05a5b4e9f495007619313123ddb0ca9b147b14dc7c4e95f3ae2ff74cc5301ba4a1e32491b62717aa8ae0dda1ead06ebb692170056541381471b26397d8c904e42421719551b47cc59ae08b09ca265d23a8d33bba961d5da4661872c5325fd9ab47dba0918b042fbc8c943a63e4d7a56f9279daad5375e917af3b0153260923715d771a635bbd704b60d1b7d1cac845037f37e366004b0695c935e64ad4676a77be3541c76e8e775325d32e4a390ff4cde36e51829e270d1b04550ec490c58988ae2d3cd80c0e015327ba805fd8e3aa21f80e0fee94b334d13e5d1d5de9e39f4c1a5c9dfb2ad65c90a60b5b5b59cb976db2b87c18a950f2aa195f4474e5e9c5dbc7aaeadadd9d941149812b619f63aae8108bb9fd54b03a22ae866b54c94a47690d00169d4e3d4a8079729fa169ec86ef77c92a973a797261b46ea462ff465d5585ad10ff01696a623a41bb776f2100d4e3b95dfcf32e375754739ad08216db1774d8cbeaa9be02c5ebb5a3e5094d1c26d9b6c5fb718377ff9b2572ec3259358d21b3df3fdc2255e06cb5876e7c8f9a6b6d9cc8ac12cff2263df42059c9185531f1aa3a82df95e58b6436009cd331f99c0e083533f9293d64111b438f1f6390e80553ce480db83e149b8692d761883a616964726262fdefae91964a6670d9b9e33d3b3834d4fd3c6f46079aeff5c1ba5e0fd87735166bc5c9473f3b716355fb02a3ea1177ff080e9aa60fd698674dc16abe60bef7689ee73154f119b6e6da09f1ed08380b559d87a6edb7a166d5b9602c032dbff18b62d768e3c2d419c9124e151a1ecd3a4ebdf490aefa17ab613fce2148b4e9b435081301956a1ead5a2bf9909895e1d84f06eb257a5a655e031bea10a019651d918bf1341c99855d2a0897727f1618fbc00b082ab34711ff098066ddf22f9c81a8d8c6e0a3c97ed89fa3858851cf32994f52f92e7f5b154f46fd5c31312316025f5d3815720d8fb6f6245eaadc25650b30e044b08991038e15d5c9cd00627d55163eab4c32b5521d07ae7c9b866c9c436e8c2f6e7f59b00667916283ba54b98c61e65728f3a669e001c09ab54b1b4dadf3fdd7efee63d20a188646244b51adc195aa11c55a3af73f403d0f95b3f558e3b148fb03be6b3976e5c5fb87e65eefac5d96be7a7af9d99bcba387e756ef4cad4c8e5f1d39747e0efd895e9c9ab0bd3d7cec29885eb57976fdc3c7bf3def9558cb5d57adc6ac05ab1405d9bbd3c3376b1af7e1a4d0fac1cf6229efa24b1c900b61ce0c92a512ca38796d2418a6dd48d2ad272cba678e723bfbf4f81ac538684296ff2292b4eee09a7ce0d2c7627b618c151f5c844392a38c880771e790af02e7085c01949e9a0f816abb964cbe948be87ca7cba9fc34959ba7665ab962694c192db95d86cc46dd089a9d76572a50466af985a3d9af61730a0a9a9f6c2ad7b99ad5ea65c0942d8e1986a2bd8244eb53a6c55721bc1d1491800ab7c303ca45cc9af50ce2d5b8a9d206a162b0bc0b470feb29ed8367885b282f4e7ccf49c999ed954d3af64035f175cfc9a95d76dd360827351f5bb6d1bbf62577db6a6fb687427cdbeea308fb4def76a900f6f378ae96626f5d9640eb9178e870e5de8d84c2970f3ccb4253d1ab0fe04b0f55f66db5a0d5882cc96074f5b822daf36a3e40126c6a0bc110b53db43b17568ed6188a0d6496210ba7287d9c15da40dba6df937e926f01ceba8bdc2105be7d83f3160f9b619c637e9633b1122a74e725217d907a1d57d9b7c480f39b9d138a1489facfc5968ad3e5ef21938c92a59ca3d470a4257429731ce6099fb8a39566b50b87cf7926b83369e9688012ba0463da0f8246cb3f70a783d6a45ea35f2a8d325687f41d0fcdc395f657ddb561fd1bd52c987870e0016107dd94cb49a10278bec5b70c2255392c56b73450a3f0c31158009639673963c6e5d115daf1b52a104374c63851d32e560efd27a2829736c6b2f61f35811b8931e25c4ce90d2127d1714374b875d46d455a3ca9da573676831d3b498195af43452d414151439b956510f2a668a113bc54a98b64c9ab14b9d754a9f73cf9af3ce990fc85f082d5ce4942c71cb97136ace66359f2febbcd83470a97feccad4ecf573676ede2c294cd6167d1701567b0bf050d75276f9387f765ed9a8155ed4c8d3438265fab5633a3f69c46d3400ee8423efe879ac75a2cd365983ed2d69e4be1f3d1a76c831436dfeead213ce950b2b7376cb920cad5021841eb4491683f78aacd184db707102dac2d1ceeaa1c1860594903445d1ec575d958fac93651ec3068e3258277696f5e5bb669122ca9d9bc79bcce24e82e2eb025bbaeaf86b11766434cd4634cf7206ce564c7c3f1857e7418b14b24b3906840d1b4352df0180b57ced5a58a905295c081f227829609dd18949fe2ae051becf99e93933fd0998e9c92d4d4e35471f9d8be2775eb06bd86356b98351ba8db2d2c761f862ef85dbd7facfb65ebc73fd3760a60d74fb21bd6053a56b53cdd79660eb8f5e49fcf3d9b62ca31e002caf3642fa9059c9a865196a22659532681adc45fec5cc96678b7e4c932e6ed28d1b0bf9c729520dbfb04f3dc6e798dc93496d4691755a9eadfaebce49b42b55c68e7560a9ec5e54bea1697c8901cba355df1388274f0640c4bf483ea0042da2e2dd6178df1ddf6114df66847b1ab9bb8907d5eac39640c804c270cd95318e12f6a854f6e934e20396dfd1f4d3ac94d3a64e351ab665ca5e9d86b8c28801cbad4987162746e18a787719fee2a2d4005bc04f017da4c04163fb18697c182d3d84015f806662e7e8f10b8cc42546f21966cab249c6a2a94bc92942d841768228301f5094de713463df8d7bdca5e214917318c3045a763ae2b0439a380c700a10758c100f1d30889da6642d9a71db8dcc638e11dcf70794a8029f41240eaa560d4955d253f9d8d8e38049d2311889012bf59c895d911c2add169d80db1b28e5ac096c5ed23213b6336191011b1c374f872d07716757986c6a2d7badabe8496ada8469c938aa0b979cb6f00b928dae302b5b8eade0d1159c9afc41538018383519dd9488445554ae0d160faed40cadd488a85283fd65470a1b2b7d5531e2593161e7e7aa6320f9c9f099fea43642663735b7df64f442ef934c9deb9b1fb24c54b10b503670d9074706ce826fa10221141d70b76c64a20282af1af399be3c6224b3232a4d3dbb8d9ede65be707579ab4e260c580031e76fdeee5fac6d9ce2544fbad44ffb2e5f3fd7d3d7c377f7b7fb26b512f05c8ab44ee3e43632350a25eaccb8727a86782544354c42cb57af8f2c4fce7e7f1effbb0160fdee9cf49c999e33d36f66035fadeee57a7ad1c7286b95fb816dfab6fb6ef702d479c1acf253abda9d764d5f036999966f17140a8bc6c27f4b66da927880b55a5b82ade7b6ad67c3b615d8414a1d809867925c6ae4ed731c01568b614c1f5dd019bc68d83c6fc024b387eadf66b471b72d4fe01edeecbfd8468459b9fdcc881c2d08039a22efb0e3a443ab342096001078e448d91629ac3b21919d2b8fe7fa013c013dc4d719688bf133589e1d466e2dfaa6e9d2b8693b429068e1d51e79803608cfe195aaf0eeb6d687dc4ad4034b4f01aeb1e244a87162822c17062cfbf0e3b0534063dc6ee3d5ade431603dbc48a26f0fc1bf8f1834641c3a428e18a7003cc5ce227202284939cb14908a77ba3c8e7cf67ea2ab09266e961cd1aa097134a38bc26d32e2b7b1e00859458ae1f10058302c6989113d418a9fa7ba562b028419871dd6d3e12dd8c2918447b3c74c058ddaa3d335cdd9fb5cb250fb2ed3b863e95d64af082926750f7e3bd7e8e320fe5bcf509296e81b03d6e6b50ac59880620fd0d82c8d3b438b3f4dc9eaa5150cb2709f8be241b66f895af424ad608805471b30020806ce2c4ead9953f7c2de39780b27b4188457a9daf1a62f18057ca72bfd3e5c2a309e13690480357d71d93b4f0d2e1b9f7cd9d2bec8c79e3a377571a6663ca462c2363696ad29f55e64858b4f91727a27c52e41da28f03b6ae8c1906cdd8e99f2eee52cd872b2f26778a21f6a7fd5483977f3f696fc4c18b0262fce702af5c2ca55e21af5e01304c7a4ff4cb100b092cb1da991423629289106d7069c4400d0b2319b9189713c0003d6c3e03236c907ac94285f7ccfe5bbff3e7be3c2855bd72edff9f93933fd6ed8f49c997e5badc92dc14760e06c6b8a8bca7c0afdfcadcb4e35a202b7bb49f9c7eceacf833a954e7fdf51301150301e903beacbe930ae988cfd2d99e9c9006b3dd8da6a72eb0f5649fc83dbb6c23b89f983a638db8465eb750c002ba19f89b8aadf24b31b75f84c68368000105ea3e1bee18444e32811f37851601ad4470061969ea5ab088e04d6f172de755aae5992b42854ec30493bbeee8444e77a6d22070db04e15f7ae5537753accf760e522c0e2f45253864cc3bbc836a5caa6a95216f9270585c5c0764254a731b2e9c48ac006182a7ce45cac6657ae4c8b17a3c488d8142b0a00cb94075836a19221e54a407b7e952aab3df208b044df0d1926478c51a226a9dc591aa6a84df2c7a3008b9522ee9e2305ef883373b903acc476e3c4451a90d36ac0c24a5f342998b1c81d35e356e8f2a7eb7324a3c708c9ad84c2d366c5236ccc2ef1857ad13d4621ad3a1155a86f8553ba04ddf49ba705528fada8462de027a02860a9ec3e7ae1905948b546e21223b103ad3608d8145aae0c3ce19d27e3982ec16fe1e17930b98d98da611c5aa3636cbf4f5b699bab87787a1735ff343b384a555fe2a3b1ab137dcb2de92d1ca774c3bae1aac79b37f7fded9f5db3517b8bac1e5a5a8105bcefe4f24250b11e5c2d2ed17ccccd4c08ee5dce2b1bb32e1db36411bee664ab71eb7580f5e1ba8d6d60f62e179dbf796b63ae3a73fd52d76246e34c8887bb0453632fbc14fccc486c21845628c12722abd36cf6f24c5b57137e3b4e961d4e9ed9a789c31984e396d14d69994b4bae0bd03ffea17fa85c42b151c18867f37cf9a5db3f3e0858135a47de1100d6e4f77d5593cef8f35b33e53974aefad2ed1f7e0b6c7ace4ccf99e95766a6c728cf259b0a7f5fcf811b59a73d306039957f9736e4d879a6e2d2dd1bbf2f33fda2eefc7c5f2f5857e95a6fc0588f9ddcfa83c2d61fcdb6e5d66c108d63618771562f0d93964f8c826b8b61483b51c0559c6a752003ff6279ef7c19d746bd0d2624b2d265706e861d2fea912fe35daf4561a23e589a426f8594e946f450dc1a742cf2152c0b145c1a741fd56dcbb559dfb95ec79d770fd3fe100e450e0058ed46c56396b085407eb1bd54015ab9b71ab8f126ff43700a2cd7b44e9286080d4f712e525bb7db96a9eb1178d422e098698a146caa439962cc342d6e9e91b8c44c396b62e3216ceb219c7ad684af2de2c51ac04a3b6792bd60963bc18aaa37e0d4222f1aee890a87ba78ca12060039e91c7d97a8f0897bac34fc9bbc488f6ad581c39ed3c7c0f112f7c18261217d7a416568fdbed8465d81172da993987a96e95dad681472d028f03b3aebf7072caf7c19b85480a280a56053139b0c426a34e0fe985e03c06eb8849c332480c28dc31158e0e608ee5c69bcb3a5135661c92afa521f6635a38c17201a3087b5d3c1b869063065de8859fabc7bf15274fdb9bcaeef9b47af8e2fdebcf4fd23b8ea61f401c062c61cb74a3a9ad2c2e6049ac1fb2e5fbc36797122ad85c30e92837ff58e7f905447c9eca1169d36878d49ad2492d47678e5cae2c59ddcf34ec127a2b8cfff516875e9ce4fe76f5d0b2ba3f8169c08ab5071703d622cb7b3612cd731fd04afdf8778c774c3c55b77462f4e59269ee49365a2744085a659a204354634a4cc38afd3bf6424c1a35e93952a69a2ff159af4dacf84b3cca9d5086fb1b8c44b4d4d5f1e2f1e75291db52a1e644724aa526dbf75aed52f1e75c0a94de0ef9c7e467a1739bbdf33a92f28714505a3c9a7cf8f5db9fb6f011b5db9f3efd18b9335532595538558d553c56317a7d0980761e8eccdebf3d7ce0b74fef6ad3f0436fdf99969436cfadd39e9e932d3969464f0c9cdf1068095bb23059df972e72f4d3c53d8f490fedf47e905eb4a9dfbaad2f95561eb8f5e497c066d5beef5da01c527432b502ce4ae90966390946b8b8167b33efcd60f2953f22f92f7ce9371ca90006622730edb55a86f3027d1b5499f997a9c187198992ce55ca703c88501cbf8d4a7fc083a66953a681ad24df6d85c1ff9d580e5d56604011b0823ba4e2ba2565360dbb22956423d360b64611720204595eaa16029f1be6799169ab237888a7a9c714af434b243252e321d83d1cc44d798e38053d113a4241e573d15652d98c5d51a3ad989901477d8fb8ac23d390b6682d4202eb66676d360fbd3bac9e98ba63020204db17800d9bd0b0658e91374c76279cfdce380b3b0a799ddd492510b6b936f3160a59c655aa78af31bd3e7c9c0fefa15c9855429974c5a15cc587846c8681c795b5022fcbd94b4c820861d348b13810b06580a88ca235a120356ca32c3394f9accb9dff49519cb5f963bba521b88b370c8ac78980dbb5c326c119e8216450e2a3de5962d498b3a52306c9ed6410a2a558c9f32c646b1552e3146fabc53e9726cfbc59ab1abe3e76e6d94611a3d3bd333db7fe9cebfc3bdd8f0be8b172f558cdb574f78f40f7551d5beb00f46cb81c3fb26f19c7c002b9a426f5b9b8a570e1404946a44f2562282833f7ff9fcc319a0a29ef4b0722dd4d3b59514594bea9b1fc22542fce8859b770423e9b9b2120e6fe21df7295042f316db89c0dc810d46edf3d925bcdc241c0d13bddd0189f2d89466932c66957cbc7cdca165267575f91564e92f6a5e2697de47832b1f7e60008dc13644d56a8656aab0cbe4cc1f54fa200793d0ecd5b37e4d4cf38706805ceb0ca72f2fe0614d73353e4df435032cca1542db6cda169b052873f9ce4f43e7878bc733b24ec7ac12b766a66cfeeab9e7ccf4a764a65fc0a6dfcfcf74ede69d74ad376f5f39f7437fc6bf3335efdcbdf74c31d396f42060fd06b0f5dcb6f5546d5bb6e5aa1609a22e99922816ae9096b9cb119cdff22847ad0150b2e17e27f4434ef5ba8f9a900800c4eda5e58fb08b472d237b6918b930609953f7e1080a84c1739958e58db083ba48bfd86d8b69771fb000bc422ad5621bf563eaf5022ad5bd3b08fc2e5c5568651ed358e1c0d253b19d04a7082903e96da5c39610ad53fb8d9378eef2d5c280e5122dc5fbd7e4a9286dceb4688c7d1fa406cc9d028f013f15cca03b8b4e9ba3eef62bc5566e9b5edab269d6a259ea59d3e04c653820993dd4f866fdf02a55fb1c69d817a093c052d44e2cb1d9c8401aad75ed1c2199b6649233c3f22a57354d3a266014bb4c59c182d6994d142737d1ad4261ea6a3d2e57254c1827f411d2fb29b0a74cae18de36b86cd8b1c204b54f00b052ce30a2da50e28ddba81f50a6ee55a412d4aced5fa9c66fa891af8832730dba0007092dfc852323bb75cd52c5291c21cb24a9b8267db832dd726537309309cc61a9cbececb32e65e7239abfcf3b7dad77fee6f2b9dbd701aa56dbc03160cd9d3fc3a9d64e6e352a1fb78503c88c11b54b3de65b70023e08dc7a9de054454da1b7e806bb86cf74378e65035a31638ec07eb54eb43c0c58897541def92699ad1ecd93994bd796bfbf7d2732453db79b593ae8dbb758f7fd9dbb7858420767afd38b87cd5fc13b4e08de0d2feb9625099fc1e00a65817311ce695289a1d6d177c8ce7b895142a671621ef96819caf02ab535e557bb107146d1f1d0066d38b68086e195aa40a5be8527dc73a464c3dfd7cbf8d6b44466b5da17db2edff9d1b2544933e51be5f82f94e3bfa4174a98959e582da71addf3376f640c45024e99144bd30ac41fe63076997cd35c2d40cfcce5c587216cb5c2daed60f7059074eee68dd2f1cc880e07a75a5dc71a1d819c6a7542dbad4b27b2262fcdfef95a343d67a6dfccd2b43033514efbf4de44cd7f1264eedcb8f2ac31d31adddd508f06ac2783ad3f7925f1d7b76d79b6107c5a899e2d46aecd860fc39667a37e508b51541785b3e2b6a6700e63d2b20b11a29aede7d7109b0cac4b54184992a4486142f8210af7a8798efca3ba6df9d66ac534e8c0f73ebf7fe698b517cf118f01cbc6fea0a0b62588a0c9ed448f47cf4904ba8ae8a1c45719c515e87afb493be428fb7792ca70132c5e57ebb46e4ad438853b4b4f5864444d90224608490b8cbc19764e17c344ffabb8725d8837c8f3dea89b356f0671572087203e60e17f931fa5335b50522711c5bc5e7ac1200ba2236c64608a22dc9f39c15c6d624349c17225ff9293fc7cdea495679c5c64b13aa75addbf48de3e4ddc364d36a7dfd43557c12e5d3ca243db3d0e4dedd43cf2b65fe6c9845683bc7e26aea331587bf5a85f1a38edf52a51440b5a37f117b44e6a314a99673cad84dc660470e95c200b5002a11d1811ad33d84c74ca92b74e9566738f698aa3090ac1d51a1e75ca0f64e6e00cce9987546b60ceb00a175a9d9603d6074a485964f00a8b8661152a70bf75126aac9fb8f8d86e7dd3acf3368517bdab2e45375e4ef774476c3770ae35b5cd1b8e1e600d9c3bbb7459dc6e1e03aee1c98f50164afbd3bc1ef7f96b33ad134d09f54139ed89e76edc5ad7c6b474ed525eb747428b216ff6ab0d436f1795becfaf88e25da8c46dd0af1ce45ebdfb1fef12bb3dd62f1d64bc8a77fc88c92bca113b550277ea87ee73481387c3c84fa1b51a05c5a132a2b2f23ba2fe6fe9c7ee0e2839e99a25e99c21b9bafc0ac3686e070cb38549a9ff0a2e5384ab1d0ea34db218231a81e051dfbfeff77a412de96b72be044833e55faa897bc25a5dec4b48fb3d5edceff9023c0a3ae0fd1705eea7b442a91549c2dff05667e988f7bff379198f110bf9876efa0166b1f46ab14ae587ce0fb34b154839c27ae9073492f7500b8eadcf586d3657eefc04c034746ed8a54e7f031ae365c84eb62d343d4c3f57eefe78e6c6d5d53a7bf3ead57bfffeb5b1e9fa0fffb9fe03bccbbfafddfb99a79faedefbf1ea0f3f5ef9e1079eee5dbe07ba7bf9de9d4b48b757fede82bf57eedd8591d77ff8f97764a93f01336d4983ed35edf607ff37eaf0bde5a1679099b6a417ac2a74ac36c3580fc2d673dbd6af5749f46a21e49c66af2e4b659f360befa2ba3621d272aad6f42a3d05110bbe9dd33bc9f9432c8b642941764acf64a796c43f2966fbb7da6dcba64419befd2128426c0098c02dac823a8d01bc3060d119bbbcf2a457565c96c71134b8426583451243db0c33ba28f052d8801fd6a89730cd404ba674902090a3224885322048e2123389a784196a7cab41660f0aded92d7463ad4f6d525077259f22d4f1217698f828c07a72c58e9170f22fb601c53c4c5abef1f2a898354e465c55f540b1d53c5e34a98d583c8c4e53720391a0b2dd29f9184e135a2449c20144303a42043e738d412b1f6b6b7d02cf82088afb56948d59e57699104fed8087029b349c3325ddb2a5e0f0fae4cb42888d9b243f1a049f4eba0e2b85a7800e6ddcc11ff60e3011763fa78f81336a3e197ca71100966de10952f821b76c49d80b20c2f42e72e68269f00a601959ed8117017ec2972211683ef430ceae652cb1a28689f625f21659d2ce15a7d0fb3e010e0a7275dc2122e01d805744af2e600d5ae9b9468353a3498f14a5461f75c953f32d94d316434dbc7454b6958e5af1cce3eea7cf575db875ed518eeff94be73d736876295a9c4a46c774a586d05b34a53de3dfb7752d9415f6c6d68e545cbdf79fb4d6e49dac970f90f9807598faeabf1c5fdb63f397a36eefdc372fe61c67c47cabcdebc27552fe4df9e0edea9c2f647cb7c97a6f3708debfbafc1a52a4a44cffe0a0e75ff7b9bc681cb39719232c486d1a847ebbdff5e57fb9bff0add75f74d20f8905bff32fb717406241efec737ce51bc717f73abfb8cff5451880494b35f16b628e9802f7f3833eaf08f9bd71c4fbef7b5d5edc074ff1e0731848297e27395f1c649075f854dce73a6907d4e2bffecefb25c180fd5e2f4a86bf4bcc1161141d5fa3a6f9bad1ef279845c781c36423b7c9447ec04b9e49ae499e619997c957cd148d5c1a3bfdfdf0e0c5c19c11ae6f33c3b2e2d4c334665da9ecdf6a9238e85b3e9f553e9751329b5a3c9b5438139f3fcdcd9d8eca9ee2a48e0570fa6c83ba58819d26019d4cff4eba5f27cdb793ead7490105f632c206cc63c71c63c71db848f6b113f6dc713beeb86dcc845dcc842d1734c957ec949d4071d33ccd80ece3b16691124073200750e2fc8a161c92161c93179c52965cd396dcd397bdb2cef8649ff1cf3d1b947f2eb4f07c44f1f9c8920b316517632b2e26547d9f5c7d29b5f65246fde5acc62bb94d57f25baf96765fabedbfd13a7cb377e2d6c8ecede9a53bcbe7ef5eba7cef16a0db7f03336d25cff47f2d45f13dacf77fae767a3699e9befefdcbe201d66a6d09b69edbb61e17b69c1bf403db4951ddb4f83e465c2fc3a7952080adb441d66aba42f3e447d80543acf45eba47933e29f208c44294d7a95245ab7674530a4f9be50f9965f532adb972f84b9fc2dabf816d6b5dd832cb462bb5c14f70f8790d810aa26c762fc3b39520002c0da1b799d112248e90a078448b12b2483f8ecb881eed463edd84807e52c869e388314af4142d6e8e1154ad849a92d76a024e0154715a0c129718910dc807831b7242a461671e07c0c2722b472dbf711e25a59108e12dbc533f769008e39d33242cb2a50523316039474909ee793c25ad28b4470ff812de3db04441405a6e1152b89741509532d08f63bab879bc8871c4217c04422bd500a4009832daa9e8f81c79db2e5222b4562b8a67f481f12e2588cf5ca21160e9e8ef30e275c5c4498b846683b8263d1bdbefe0a1a87ea3881182559e0c32b9f316788e5fa06dc0828f4cd76d316327904b9522ef841e823302bb0fdb8f09bb60c6c22b155d518632db12db89dc6ea26d9a0c29e230c041508562c23850a08900b01c63a41c72e5ecb264d99952449f03f082866efb6040de2c1baf6353346d993d6f96b27c1fecf87a92f4db022363d6c4bf560bcd698d1176cd968a6bd0cbee66a2c9078b4cd76a25cda3087148845df0f1293a6dce9fbc3961d3b99c7efecef5d5e6ee2b777fee99abad1a09ab1cf3689d8f99be3c0877a2c4ad9910ce2ca22580ba98dd0bc50d23ad9f535fd967f83adef18384d7769bbfb2cbec6590b8f307b4e8e3f21e9f1fb07873ef0a81c9c9fd239b67aecaeaa1e70fb29cb34f0a3e411609a2a656df48e9fc0df80ceb90d3df947cbf3ee9f5998ce7c7428e6f7e6df7976f1cfeb2d7e9c56f5ddf801b027d65f9d21eeb97f6d8fee56bfbbf08484b3ce45d11ffb7e03692d38bf06a82a7ef5b21ad83beaf186689c8466edfef81c84cd8f74d78740da881bef379d9305bd8384f1ca49ebc579af3019019a350f664cca7073cffb28ac650f24c366a1bb540e2612063979f0aee320fec34b5afd1d838e385e554af13d66f113e60c9d7a0a54fbbb17595d2669e6b5dade4d7458e1eb5891ee32b667c4513b64f17b39016f94a5ec2724a5e764ac13a83940a3aeb8c95766e45e79dd3cfbbf075c125037411e49a79d13def7bff92cbe11557b8b557539aaee7b4df28edbe593370ab65e476f7e49dd3b377a796ee2d9efbe1e2a51f6f5cfbf1873f22336d0986ca3896e3d6dbee5e5af81d986973d8f4b0ee3d420f01d683b0f518c9ade7b6ad5fac2406b591721fcc51958d5bf9b6113163091e2a19b180c080ac3f3dd4b40e63f896f7e499c1211642900312426dcd9b51caa778985d386a6111257b1fb0b6d86dcb8af7ca46bc76d8be8527c26ad4bd572a89640c5887dfb24b52f0eb203a54aa9aa448e2469ab645f23133a809026ea72450e2022365de841a2d6cc215864d0570f14e93096dd681872247889699fc941b21eca07b83aae059ce9528d25b261ef5293841d545eb904474e8272d32bd1ad5adf3647ddbb40423ed03c5f88005ef755fcc476a03cc5a64a6cc99043468e1d212bc3b262d8f04295b9fa3784cf438c9265f96187e48905da0451ff12f920716e436e8046428f21b31441f8f1d37f6cc93c673d64c928ec17331606988bd6b1c7a981871c8bb182dec1356a10228c360ee8687b87d44008282290bc740711dbd1d14fb7d4f2b2db74905f5eae19da2471ff1cc3d8e1254f53a29c394e445a6270fb072db1938eb06d415d762e8dba49eb440c748175ca58ef73d2c43957fd14e5a9a50f7681e7bd750793b2ab00ea1058bf2074c5710c7226fca3c65b3f0f7c8dc5be42821b04a31a25a2db98d90d943b74993b149918caed54aef22e3b462e1b4050cd391404be5d8381f4645d8463d0077c12a0269e3f4cc7336c517fdeb2e25745c2de9bc58631a2703c4135caa94dfeb327779eadabdffc526f7d689c6d81a0fb72c223b5e31b12118eef7cdf3f846fb0dbce36294b75402765ba41d0baed228e65596337a58fb59ffcfd72b044674f8da275f16a81d3620a38b92dc4176cc9467c51dd309d8a7adfa310c1057ffdb2ef397b1445cb749b97df525f3e59da6e8dfdd162f7d65052c85884aa0bdb6afefb5f81fe0b9ddec9730697dcd23ad7f39bf06c885a88b277874378cc71cb68ab48ef8fc03980ceb80cb1bab1fbd4f5a1e2fc8467dac937e4834e01f386d06120ff9e7fd310f26c64483fe8e690c0159d237c7391f28c47eae9bfe9d570bd5a64ac530eb9052dce7d29cf701c574d2fec52a95352b3bb1ae9c1b751163f55b84f6993bd66b6d06ad56cbab9d10356afd07c52caccceff9caba047243ba8c940dba82e59e7bd5a3f09a7fe9f5f0aa1bdcfa9b292d37733a6e97f4dcae1ebcd33c7ab76bf2ded0fcbd99733f9cbffce38d9b3ffdfb1961a62de599b26c64ce0608fdeeccb401366d5e2f444fd322c6a9a1c3e4c00163bf5eb4309c7bab214465a007009ac74f6efdf7d9b636095b1e8d0659bd748855106f4ac72c058c15dfcbc4f895da6f729fab506f68027216d7eb44d66878e4caf1037c94905b36ca37e06c53662f2da483cc8e44761f5bb383d91d8cd231abe231cb943ea64f0b6193b0c5ca9021c788d213c41dca55dddb0cbd3b0978061f93bd1f15b944df2d1842f3e94a26ac52674d63a628813dfadc192ad0d56a85746887d5aac535e965f7d203cb35c99c23a4f0c3fad67bb4e53e0c69d2c163121618f0f4881142ec2c3581f72f56ec2ccdbe50deae48ce2e4c9cdfc5b18f8ae9336fda1c884d0058be854a0cca1eff72d53560b779c5cfd122fbf4239bb420e266f5d0b2fb9984b0fbfc44f6fb565ff9635b6f91d54fe14e5342faf5ed8bf9190856ac887bf6f1c86e5da7307e2fa8b03cf5cc39b3d8092a10a17bad0a679498b4c40cca52b6631fa66b7e09c380b7b2c6efa727339ba99626075206a87841ebcc2eaa8ed83f61bf9e302df78be9bab55a667a36aadb15c95be5c9f836a8460f1926ccd1d21758d973e60139caa85153254a68c1a5c8f368ab8636a8a72c996038f32d52c2fb1e99a32e58a93a305101e5bd143e8601a1552af014f8251059ab115da7854127718cb249f87b54ae8e952ac18a13815f0270fd235aeaa43af1d26f3175a89d7ae16933e03c40340c586636fbbd72ef57b7611882c801c387912e6e960abf0d3296ecb2173c736703e1b92cc2dedc3ed4a137a3d331b52d2ea52d3ca7cfbdf0b443520bddd61ccdde0829d50c2957c2542af02f9a261edfcd2330004da390efac928ec25bc371809f4370b161879fb6f71e7ce88ea9fced0bfa2b585ae1475583843f23bffa3915fd8b488b8572633b4d1072619d0cdc77d0e603fea3a62fdf272dab57105409c47a6df5a302d242a92febbf6001c0ad791465c8781475c4f7cdfdaeaf0a500c6b8fdd4b2867b69ac6306979bea01cbf5b3fe38878c83bc06758fb3d5e34c8382412f87741620cebb0df6baa89bb1fce78f1241dd4651ad2676e5da56c5e76829c77542be51bf5a4afe0efba3efd87e5d966048cb506b322472d83fb19de1d44b7163dbe5af9726fd55f2daf0e23ff5e72c89049ec94ed338e5939575774cd3d17c923f73a521ee8c67d15dd0ca8bc19597f2bb9f5765ecf9dcaa1bb2d13f7fae77e983cfbe3994b3f5dbdf9f38fbf0d336d5e777efabf64dd0f6f96d83db3ccb435c08a99a161711fa1a8496ac4182574d8386880e4df4bf4e94233bf5c5b0c9d1bf5013280789edbb6b664db0aa947d3ac52da89f073160252fea069d1b079d9985564a11e06acc876129fab9af5212041640aaf54856ff080e2933e052768f1fc195e265c618f3c19bf7265ff7a1d379e419ecd41801595ae8167bdc15739bc4854838e7b83eea31a40b8b5190252fbf61201af5167ce716ad4142d768e11377f5f66d6a8cb00436f77e190196c2dc4d19c3e46c22c237e7eadfcdab589e1873c72a456af93935443c081440058eb2a6e949c3948e719c02d5da38ee3a7c4b5233b5446373a503903cc9469e606afb0b156931cfc6b9921e59e2d852b62a81eda474feba405576805966bd8c44a6a1c41bd9dd600165f0b74c7f253c69142eccce361c0228b0c471e60690abd8d8d3e287d32659131c74a9a61e68fdcc7a9c00c65180c811f4e0d1c40dc0f3daa5a33aa05a17344955a58850a41693b00d6a3a0f029a4eb36a1e47966d1383f870a97a5bda590397d2f5011f001d0894ba604c07d7a17bd708c9d3acd648508e333e59f2a074712400aae559f14190c58f06a3ecd1aac7851b33811abc4a376a9c79c3224dcb2a5b863240c768f2d5a9c284e76c22601b7855669621b197c467089b360d82c759681018b41dd13d8a543e32d10896b73f4e823a1fdfabf0876f05c7dd90f5caa1459a9e24ee5a7a2c7e8e1f59af091848f157cb8a2b25179d494238a8bbf7e857211d56a893c83bc4f39458486daf76b2b6fc36fbabaf80e673f7fc8ec1b83bfe1cab281d5579a81ff9272fe54dcf94b9b3c23c722b26a80c80ec26b9f925ee59316ed95cf297c7d41799595a9a91d7eec33c1a3020e63bdf62513ddc6da6ff1eee7b457be603cc0614054826c196827eb15846e2c5eb64c405abcdae25e875704854b81504a8c97515b4363a84019fccf831e6f20f05ad13e9797be757f6d0d8709304b36ea23ec060311724414e3be504bda63942d6c57a76559a9ac14f7c541df57566319328785bdab9b7ec0a458daa458660385f49b468d20c68a1cb102a8da649171ad4fbfe2a44bb34ec488f9636356cab384591ba8f0866ff9cd88ba5b892db773baef940fde6d1abbd733fbc3f8f28f4b177fbc7cfda77bbf716deeccd27c96f69b3f8c553cb3cc04fa6103fde701bd80d68e5d57339b55f4348d3341091b25070f1907f4937c7bd0dabdee6d862ecd06c013003a7f32dbd6a6616b9de49613005639ea070d5101b5706c314c6d470bbac177ae878f84438dae63837e4023e22a881310d2607040c949df82139eb9c721384144b1295176a8d5b62957b7abd6c29ead886e6ac69059c9985542a331517ebb25733ffce086ef71780b783a7a6e817ce20033a28fe2d74b14d8a4809b6367e97173bf2c0c586c937db10dfc165668e5b56152dc3c7d8ddceb54710513ad4558a10c80983dc070e7a0a5fdccc9fb728658859396d99366f1b30f001cc8bf1dcd16845786430141dd3f955f740ba854869ffed8500ffb12d9a6f330d5fd82d6832d7f9eaddb942b8c2b62d8d70fe0086f5d3661e59eccb7b2d9788bac7dee1c237dcaa478d2b264c22a67da1cdfe9188a008b746abba010563262513a6a593c6a813b2441302e18644595e800db25f519037ac2c9059c82fdf2ca93f62c53308b1765c41ca1700e5bb91ff1cd577aecb4dc932b6e8898d86294de45164c4d281e60eb89bf1750aae89229498f3a827181538b20835baf631bcbef626f1b78d83943021007408ae9f5ad00b0407133349f164d8b6c695c6325841d8c9fa73f210506f7e95be5ca98a54bf9d42847f5e9c78c1813560adc7e4572808309cd06803b3ae208b068c4ddc94bccd40593a02e5dc0623c327a82fc8b1887e8476e1bbabdc848996564ceb3a8d1c2ac5811d72c49b85ccdccd01a41f410615c2e8783e3917bdca748d1a5d0d03a9b68168526396a4abe6718fc2dca89720e0b269144d5e9d866287ca3f7ffc080f078653e949f364beda0ba97901c0ac90e45648d10f1edfaaf7d62f8da0ec2ab9f53ded801378c5edb6bf68e698686732905a41c200cf77c4a7cf5336318f02ab0d44ec61b805c58fbccdea6a7287d49fe2b7ef40b4c5a262f83e006bacdd36e93d75710ed21d2b2786597f94b583825b6dfeeef389d86416d0d69ed737c1517280535ca034eafc3437c97d84319af035e2f6aa77d6b942daa14bffb80d74b7027967ad237df79be8686b9bfb026f5857534f81f846ce1555326d7cabe5e3372c43ab0976153adfc1868f5a0e4bd3a8ce2a6edfef498b581f26f7895dd0cadb915d77c3bb3f34ec9c0ddfad1bb5d33f746967e98bff8e3f7d77fbaf374f34c3d750565c4b77fb87ded9965a687f4ff6d205422dcaa1ec9648f56e404357c9402a13d6880e4c74b8379b61bb9b518383721fe00dcf96fb16dd5e9424c856f676ca6865ffcf0858b8a26ad86b6b6871caa1160b9d6ebe11560802d6030c42daba4a3cc982344def7b859b6bc6042a24fb341520f05823a9ef385e61b36d3201c06e52a869429f914c842c023f3a6b6a577d380e1527ac900557801e0cd0b031651ed13ef7c19d4f2275b0a502f7cc8e8e191dc19aa7da982458eb47da15c489b264058ca8c49608a92b6e8bb3efed21042207203568655abc44d5257339c6399026019bc3e1c90d42e926b147fb9e5d0563dd75a1572347f6a9573b5d2c354b709ade5398f0635c1842f785338dac00aa91d24a08aac6973b724045864e54fa38b75f2a6d83953e6e9b32c60b5e8214274bd36001380143edaa9b3a6703f062c0661f7fd46503c5b34f6fae0b30cc4ec9f7e0a682c66980867df23470a400477ec742a5608ead5b7ce3f0178fad8f9b98d33769b54e4a0817fb13c901f5c93092d06e99d6480cee2113643675740855af86923f70655af12a5900a75004438687081b964f1cf14d3e3a05da11c462892c95718b080d8d2e758d8e49e3bcd8e9ba5021885f4eb6f06f5123797b14b5a60648e9bc0f51f5ea367997c9ce2b43fa848057585c897358f17d5e2cde3d3107a2bbd9d8abb63a42d98c2551a3142dc0cc671ba0d38bd46cea527fd566a91f12dc480320d9f5a75af32657eeaae44357a920257946fab2667841c719a16d841f1ac35b64ed0c40314753f72cc94b74e91f62e528aaad7732b32742a2205d5d06de2d022d921d18af0b9805f44f05b0bde22a054c9a1c818315621d920526ebbf61bdb755fff94f0d78fb55fdf457dcbbed8d8a98402c28ca5132eb5c3f0af9f18bc8649eb0bea5f81c33e357afdb8e71ea75263b74a1a2551f133c25f5771d82b5fd25f831b7c915f550f3d2262b703dfe69316834f5a3b4d5f1524c3b0e4fcf6e0015f9abcfc3069a16ae31a593e90127b98b4e4a23f9508f980efca77e1ebb0d7dff8635c56808ce7097ba0c8e8ff3a31574ce0fa32c83a2217fd8968d09bc742df3e15fb053ce4d2a82b8024d362694ade515a8138b3488a37bd71cb98e5daa2f384deaca78f59977f6bccda400537bccb6f46d4df4e6ebf53d07fb76eec5ef7dc0f13e77e3a7bf5e75b77fefd7f5bcd33154539f5781d7f9699694b7a217a8af694b5756203454dd122c629a123e4e0d3c68183c6fe7d24df1ea237705887917b1baf22d984f261c037b6d57f60db966da5860957d826590c7ece7ae7c9c0af6d6c798618cc30da85008b97e8722b5572ce94809fe33098b4ca5b8de271950a1ca8c8496ae480116ea5837cbedd5441cac1de4ac8c2f1a06795229537e59bc06b1c10d78c5c5ce195aa612d9adc59fa966466f52d8e52ec0409be4529ea480c6fa5e4476a869e3446cb1be617c872da18c62a9f46d66a0235c28e533887bd8b54f2074d934f533199850c189222848c2385829ad4b89314fb10be072ba2dd307f8a9d3169eadba6ed56ab1a769ab04928dc3827c7192509a64302bc0228a0b617ed06496308fbdc924ec05b2714eae18d87ed042ee4b61b02e906149fc4559e5c5e3bab8c695300388750b4b504b54f5023a87c19df8213824650c1658aac3811c774718f0c49a770498c7701ddbad679b204bf6f0d7d0ee85b7d15dcaefb3002c66d3551f7e874dde605846491200af0e75f248fa77f022926d6e91bc86c03c0c26362c7c841bc39920088045e3b067ca6dc93e5e051ee14058e2d59ef0b3e6001fd8ca08272560f2da39b923a44599fed1e3bdf06a8548be67b02f5c2bbc0f50f67cd2942c2bd4ad13459dc2cfe9896c83b78f3a273349145ac8f9ed947db0ad83123c748466187e0330827173e3ea8c0376c9abc601a5cafe5ee261e1aa398d04a4c5e307918ce223af5f15bd3a87b709f7760d6842683a44e46f99835bfcf9cb714f1d476b81f0e355c2d705481f83975fa3983ecd07a1a309666a0d436b537b669bcf1a1da1ba6e95a4ec564a7620a662c8c5926699a9f19fefd639dd7b7ebbdb65df70de03059dffdaee554d70a1a162b53f32bcadb9ff09361af7d41434006b77731de34c950f5a8a1bb54528ed87c2a80300169ed64bc8e126348a834b9cffc2dbb52fd2f296fa07b5650ec4b137ef17117fb2581450c89854b96bcc995e63c085b435a0e88b4be757b036eafd137f62f0bc6e009927b79a4b58f475a823aa37ccc0ea36c5194008bdbb53a0106d24ad9cb2c46bd24a439ef1f09786335991df27b553e66bb51d66156a9ec96e4d569f4e416f83f37663d22fbe5597633b4ee5662db9dbcbebb35a3f73a677f183dfbe3f2959fafdff9f77fd6a5a2042b8585129fc761a65fc0a6a7c64c02fdb809bd1035495daba94d8ab6553d2d868b9aa471c6514a2c7418d52503078cfdfbf940e6d56184967069459d335d9b91cdc8b9d1c089e72e77e031901d504eed6f075b8ef5c859e5d2a4efd56218d2490a69e6f70525471c66c58ad8a61c73cb9682a8ec9128a921f476f000317c8c1239418d9ea27ab7689af2ba40ad163dee68e4043966860661cc355b0a62397c2f47e0ded0ad86c00110453c3c25cced0fe2ea6de43839b6453fb25623a40cd50a9d32244c6345a226c88ff0dbd1d7151fb00ebfe55da01c3a44f068500fea33dc88c966e8a14d1ae155aa82c8573cc286581250a7e95ca56c9377c2294b2eac52039812b59eefd5c3cf02c816bc8200b0127bc8d8009e36fc68987b943624b0e001032036fbd293aeb52a61fdfa3113e4845946fa0c2b67ca3ca400cd8c0b089787f74def24c737e9736ad4e1383b654abbe79e40569b2a35088a59bdb4a41926bc94606bd9e147292b4534e3f043b4282138da6671e2baf42f35a5de7308115f0d7998425091a8dbe0fefd8f939ffb8574dde60587026fbc79bc285c96b0a7c1654a14adcfd1d1285703804b984745d2d03e7d8b2c694af4114a8c88658ad46ac0c2c2bb66a0f031dc8e6cd602780d2957820318fa54537420d72a45fbd463c0c782de9e81dc938ea11298db627a0c0480e51b27cbb78855a9c64dd3b6447540ff5e4deade2d1a91838669d326b9d3e6a088263d6e3eca7af2960352e0b4eaa4cf9926ae7a5678071fb0988c6f7c0be4e0330ec733b6490f7f48f16fa1b2316ba6ce2e92e33e402b405b7cf03d0b14d33a511dd9b3d4c0be80b443f3cd0f55fe7ac07c876311190931d603986592a2b15df37fb6a9bff1a1ea1b5fd3df7729a3ba94230930cba198246afb25b0972019f6a9d1ff5817eabb57d33d403574d74ab2b4eb3e04612bc930202d940f232026db417c4dc6eb1b972a63ef06263d4de973d21bc81c86eb92ab480b5521e90f48ce7f0ff2840920ec21d2facaeaa5fbb25ed1ca005c7cc49e7a7eea6b15698906fe4327fdb044f0fb28d1b54a272377c8456dffd6fbe575cb8bab7260af9de4eea0e48b3fc26bbf56262532d113566b661ac26dcea879401fc5bd4dcfb545e701b5eab8b5eaae967b9bae779751e0009533c64a5a74f8afc2ac47a9e46670edadb8d6dbd9bd772b47eeb5cdfc307cf6c78550cded57a75a7e2f66da24366d5e2fa05cc8865a87c07e25fdb66007ef082803a016314601560b1ba1840d93434f9343868c914e83c80285620ddf170c0e1be1099ebb22781d7835ce04efb8f1927991c3244e9b6e6c33ea340da8913b604a0c7b202345e100690913f43f4553b1c6c86beab061fd04bf666daf5a75b76a15ef562d002f7c3f67d418f7fe71481387efeec01285b04a54d9e114a9e949bc8f004b509c3d4df42a90b14a3a2ac884859d266ede600762591d58012ca5cd8c8f9aa418730e033bfae4cb06972942608babd763e8ed0aaad7c22417d1a1eb997bdc94d7cbc03affc4c348671fcc4796b07ab4720884cf903ab5ad26de40ae892768e43d206b2f918d47a68d334b46efcfe80c08953390fe90dba00b21198e2d6c2d3b41d43842a878c402a263648d6618e0e32819939c00b0981122ec4471a774097682182e9659a74a67b4d3f0a3306c35e119af005658b7c1568bb65bcdd8fdb27870c69da13212c50457a663d109b7647ee30fff72351850326155366e5538699139c34a403321e8703f1ee096242700353e609dfc18a5ebdab569d142f89ab72b927f14db3d5ebacebf53076faa45c2516014077f11ada3ef0260c143a973262973a6fc12e1e1b76c830fbb644a008d59a71c4b9c7b9c6c5fcca011b71139cfb27be9c5c3ecd2314b7de90f49869f99708f9a274a78e49d02248aa8558f192561bc0b6fe703169db227a847df3441cc3b1f2de083caafcd068050a8fc3acc767512337138625fa4679a7cca26fda477a162749d0e5020fcf670cb3d615f607cd8f4cb0f55ffca4851c7deac75314b98bd1b200c444e547406c0c27a10b3f652b70184610e23c4cbbb57d191aae902cc22c69dfccce06f00617cd23244d5c91d066f9052e5bdea99206f50039396aaf439f17f76f0cc61fcca232fe975bff2c8d3219b0f5d6a8cbf61fde373da43e9ae15d25a6db7e7095bbe562a8fd850bf2e6939bf78c0e3d503aeafaf99e4f8addbeb477cfebe6f75c6cb7dadb97eb50efabea29efc0db540725d91f38e91728f0284e17f9d9b75040d1d4286180ef5ea16e5271fcfda6559a9e0d961c09db67c8e596b94b9641ba6f0d7822b2ec53703aa6fc534dfceecbe5b3e7caf65fa87c1e59fe6affc7cedee7ffef7776726befe7723fdb4a21700329e9a7e89d5b6a43f3ad57146c96e25f21832226b34e29bf5f1b76a6895366965654042d8213dd62e4da9f7f873dd47c9ab1130769251326e29689495356916334517d461992bebd9d122856c92c50002fc0a4e1aca6d438e72fb8308d1a6682953264953cc886163f70675dbe29376c5277ddab4a3b668b0bb0f58f94ab1d3f4e42993d44953785978fd4759ee009b04531d9d12c58d9450bf9f400458f4ec49b3cc49b3b811aa6fab366c0c4ec8ad911d6fa941905795aa31af96072fb8491c5c9d93d3917c1fbf0e9a90d84dca9b34cf9f60e74c9a674db1e2a71918e662c629dc66bda45623dc74be78843f818ea1bbcb21f418b0a9d9caec3360a6947634f50ff994078cd6c9b7b59279ab41b3a3ebb543ca94832ad4923b48be69a7788eaecfd29a29451396f91316c9134c7896b12e1fb042bb0cb85b4dce6d315db7054dd33cab55dd2a5580096257aaa520bf32b5c459e69afeb7059316d18d062b8075624d72cee0e447f8dff061a273a59263f9a9e849f2ba60f724e93acf4675468298658e8c7b09df14e5102a01f7e31599b48ffe13dfe9942a4be208f995a8170fa3d451f904daf8d419d3cdf31c3556c43c5e043e6581a5a8374a74a39eb6286a13ef5ba4c29da40436aa31634509e1875daa94309085ad022cf8d7bb450318dd3d47caaf482eb49cdf7d37adc39845fac62e400cd55e671911fd94d04a15dfc213c0e8f428de659fad67956d448e53712834e689bc2e66690549015ded32fe27f666213d84591a419218c27653ffe9564943aaa2adc12cfb22a39dc4773ed27a1db44de38d8f34de500911f6ac6378d531316361ccb229d4ff97e987dbf53087a12c1790162a41f2f405e57f0c62257d9b4dfd5a4c352344f8732129afac252dd62a8397c97d09ba4bac252debbfacaa30a2bf024fbd40873ddf5c0d610223d7fdf2e243b075c0fb2f3a69df91728fad9672fcae63216f1df07e118f3912f03f27b99f9272c5a2c6ada2c62c5d9ab49fd83b8fc42e970fe827ffb7150d37565c836192c9271b8f29bd19527f3ba9f34ee1d0bd4600af333fcd5ffdf9dabdfffcef6fc64c5bd20b9c71ea7d4d3c4d3d4d74fbadc0ee29a21b3b4b9a1e7d04be2be11b33a45c09be5221364314474b260fb3b37a99f98366e563d6e6a46f0410c019355e4d75108cd78434b807180b035cc8208191c8672c4a8c30441af7cc53f875cced0e0284654cb0563d910d54c415f0d9e6143fc9489f6485a5abb2086823bdf2950011f86bf08d5ae60db1e2c7d6a7b4d8ff9fbdf78e6ee4baf37c65cfd896e4b1d7d392654bb2524b2dc9ca5237c966ce6c86664e20913301820073ce01cc01cc09cc39e7d8cc39b383a4b1673c69f79d3d6fdfccecce99376f76cfd93fdeefe2160a4530349b64b766563ee777fa348142a1ea56a1eee7fec2f7f74894738f9636e299bb460f4b252af9b3277deb1e4928daaae19d0fe48080c7a98e04acbc7b34989e5367bc8bf739e7afa8a87824acfa5a5cf948888bc8c0c2255fea8de4e06158eba1b4ec014f39e894d3ef5c34ea811a336b5af0b66f887b7743e2a28ce1c84b1ff295cbb4e4090f65bf7be9845fc9188a15a677d92574dbebe16080f5ab58c602280df6a05aa4956db36abf16e5b4b8c34c1c2afa1c460c5e0792833ba17889c60b7c8f00ac653ae1ba7b7217dd25adea1b51e57d41f9037ec52341f521bf69578c259ac03a1fca81db926ab58035e0597b286c5915b4aea36a09582720a9f79de09e5d59ed009de9f07a8ada51fd8db4e99b60f897cfb88101ebcab0ef24775df54341e33eb102e979a82898a51180956f51f34884c3705d2bd2e6297e5cb47159976fe341d0c0fd307ce9e1b0e12c9a5678b09373c25ce12e33acdd4ed664153be85cbcc7ce192772d89b5745bd0f437b1f2a3abe0e69428ebd20ec932b58d00116fc99b741c73f55e0755c8408cf84c87803d800019616e34a765961ad36006a68e1546511dbcf8eeee222eb46761a66457430ece2be0aaaf7a1a6c0eb6156684720062c7ab97de2b09060ac6398c52c7578d5fd85573dd0961f897e9d3a21463629d6c3acd40991abd2e80d7fe4e5c2a4f51bffe7c1de66bc18d1ef0f7485004bc3581ef94638ec789cb4ae0bf4cd38ee0de3f8d7dfc3d2125a0e3b465ac8ad85a28aa1faf645dc8b47dc5d388b2b4e9bc845c99a27dc5aa9989f5ec4e95c60beea2f6e2b7f46cde822cd38e7e7f1b37e8a61e72ba12b5d06fdbcfff73037eb34cbabb0edc837bcd86707ffa160fa9fea97ff7befee3fcf0278fdcdfffbfbfffb5fffdb3fffcfff79e5ccf46480557c9f4fb5922b30c113db7f44b03b9bd51ef0d99aa7a4b4e2367a9ef6de291c7687291c8982ae09886eca1a6b9d15e8006b9f4bf259d90394b78e45a7c0dad64530b7a146bc7bc40655403f0f824b9758d55b8232cd2bc9cdce783fb2a89bf067fba18cac2e24dd601d0fe4358fc4e771d7d5ec0975f58907615c97b7d3bbddfbf6e57054cdabfcba0566e50cad64d25be305d4c5614b3799d54b4c38da014dc40d802c2cd59800ac09df8a0d36b5c2ae699907bb6adad007bbbcf980b094db9139b064e43f51d984faa1548780f7c3428388ec31b2189ee83bb41d0c430ab05bbac200088e6a304febb4cdee73826b845d0b75b34cbee775002c12da4a960294bd8e29edd621d544ae4cc921978a837c9feb30203a198b5546d7818c80956509dffded92619fe2514fb813621a2db8c5065d5bc1159d7e5cf7b7f397039f28627b86c7ee4c3b1284adf926a8eba17c603f74604f919e65eb6ffe7296fa0ef025dc9c00974469c223b96ac81fc601f969063c556b8c9271543f88f442a7fce16471bd247c2a3ec5a47a92499277cb9240e8f71e00d66960775977ddb7a2bc396fdc761a20091f70ed0a5f178add40a21be48974af056754d957ce06f4ee857468bad6c0ed07078fb2b2eef93d96e7ca775955abac967521bea53b1e8500de61c0a259be527d2f805487c7f7b3fa40081b14cc071080c5fb2d26c2d0763b32fcaa6830cf9e24a2ab51d9a60070ed8f64030fc2ba1f2a9a81d27e07df2bc46057f35054bb2a289fe4e7f4f2e2bacec2ace329f07a98651dfdd92de9bbd414f8e3981537c47dddeb6718c5840dae29e362b0d3304b507b1739ba7c9e7fdd17051fe1ff9c3ac78c594926362d66791618bf857d5d47490bfd1f1b079959c2f5f831b66bfe5724846944bc088f17ae5b7c5f7e5a781119263022852b42a31641892dea6a18b15b2bf13912b6dc6b3ff26fba6553f8da67893fd44bead26c89cc51f5264622499f2da3f59647cdfb0ea5afdd297bddb9e24dd7ea77b91dc61766acd425faf73305feb825877fdcd77df70a77a8c9b22f04f05af91f7d7bff7cef9b7fd9f9db7ffdcbff86da8bffaf674057ff8a00eb907f0576ffb2f67f18d5c121910f539892533b6c60fe2e1af5c02a85c01ff0f447e92cbb680ea69923470bcbf137b5fbe2fafb92ea07e2d207828a2d148d82090ce6fbead9c0aa9900984e2aa769656bacf22d76dd1a8a360e68d3867aef2bf4000b20af6e99ad11b9e6c224a469852644729d1af743c3bef8311ebb07fc124d7d1680147c16a02a98f1516a876bf5020318024e247700f50d8c6fb1ccdf64929f8a1fb90b08026f954ffac157776d233983981c42e85c39e19333ef0d4381ba1a77a3aec684acf688db9564d7b5ec0661c95692a5aaba08af4661852b8c55cf8e0cebe3c3b1d5ce336048cba67cf99a580cd2a0aa334561d65e94d92d62be0f9f02c0d2864d45a55f0b53a63c831b2cb9a546bcb2db11dd7748aac38045b3fc657a975d5a876d729b757cb365ce800b7258ae2287255291557b451798278fdc15559b0acb8dc3d53695336882cf6a77c85f0cb880eec965e4eb6af6056d9b62182b72a062238cc212be02fe03ece8d991e979fbaaba69c513fe79cbfe706aa852b2d30e2e1fd9f31bae60b0e423f53c92ce823b0dce1aee90f41a5b0458a7944d5cd25d07ab1724ddd964818b3ae1070597b57a85430256e93d7f3811b2bab66f4f1e9a6390dae7a05e66c34f0900b16804ddc099dd0e695d7667935cc6bcafb8dc08ee58d4eb6636006e9eaec310a0ae6cecc132bc16dd64276fb0905519876a9554b3c65c51612c05b06abe15abbf95d47f2d499ff20aef74489df62a7b24203788549ac2f6fd0f8eac85ba1fca1bbe96ea29d5b5ec8b86e785d383829966de7023afa5855bdacecbe87a32ccd2cbcd3a8e5906d2eb4057bf15fe1ae76669ec54ccfa42fcf6ab1e2f6020bb15f676c68c84b0a398256df1bcc1fd05f275e17a460d69a17a468dbd27f83341b373cea22c674916d14f7b5ff867443d23ff475867f5386951a38a37b4f6beec4fb0af8b5088d0babb08b71615b6e28ec01692ad4ff8915e4617d5ac727f15d467ed5dff5b93dc9f9d96386f9cf353f79a1b822e7369bfdd935af161f0f7b6d2906a11eed706d679cfe08b00bc86feb168e69fd42bffa31fc0ebdb7fd9fdbb7ffdab7ff8b77f3a0f333d913d57a449cdd6b7c327b6ab01b5670b764fd55dc7d676056617222d007846c354543ce609f33a4cf0adeba28665443fcd8b7cbacdab25759e4307ba276cf7aeac6e955b38ec0e8f75dc88030ca604985194832e05436eb8660a9809231a58cd83201d6045de2c39e0c307e1e33097c0c449f62a81c90f20afe25ec0d9feb9821d766c934546973d193e6339fd26a5c3b57025004e0426127119512ea75c0b24fd76f2365bacaf0d5317ead93c1b58bf2d084d21428459e33eb04df61a3da2c75150614c02a8bcc5e6f201d9f27d1e16c70782ecde09d6566985e14499c424b3d67561d3320ff71d82d3810181c14109eca36e2ced91c0958aeb734ca8b1c3070c470e0cd7f00061621f72fe85d43f94e2102d15eca2728980a6acd004f7db811d26b4229978f8167cb9b34b1d6133e2233b9c82113718a228b539bbe85642ffddcbab9c9c5fbe4eb54ac79e54200f12d0bbd782c5111fa3ab36ea419de671374ca43bbfc22b7f28c858f013d7989163c52b3110951a492a6e07babe9edfe7017757e108a19e1a516bca70fecd653c7367b8ebca1ff1b92a431c6e03a82d1cf1a8dc62e74ef9128095679ed183aa6be10e844382f5095cf4c0e88f227b1c558b01f03b02b2074c8ca8371369ee61609d3360aef8801354872e93b4d65439e1a6da60a063f856a41c2342848523fe6d8f426af64499737eb1832e09c3ae55dbbcb647b2c62db194f1110a59269a0c1c28e0774aa6f7f53e50547d23a60256d53722f82deb62afdb28f60a04dc7d1052fb75d00941d26f456d3bc2c919e14e17ffafab78bfafe4edd670e7eab8038ddcc6166e49072fbde7e2982569f4b689f95cd146a3a6c09f8659de791698ae5ef57831bc37307d3a289d64aca39895342e308ffe0015336a4425de62205109b037e92f860ff8672f04672f82c900b322fafcdf17fc9cf075e9919688202de4df12524c53b778432bd08553e6a98145328b8b8c2152b3e609fc3ac58cd27e71b7e2facdf41f51038ba7db0fac8a5e66b71b9fb33e115be4a4fb7141879adf45957dad283a9014ec8a0af6c484edebac90b403c24a1e0457fe4598fa6f62ff236256dbdfc7c59aff49cfdf467f8784d7f30f99e3ff58b1f8df3b77fe79ea9b7fd906eafac77ffba753f9e97ffdefc7da73d40ab8efd89e9ceabe1bb03b1fbd292811017e890140094e782f1af184a93d6fd005838b4cf4a98fe1b5fe5d0529e8dc06ecb5c4a9b94787cd92daac135bade29b2d0177a21b2d2415c68a1a13cc6a3079032b0034c0131948a2e67e50521305b0ee0b12fb1ce14be183092d56c9ed5adf4317f23d648fb99dec8a3be4976d716a77040ddb41b8f24b586a18a9368fc8b809bb05c0826d321669e1dd77821bac648dd6314377a958a65c0de495217212551a674eb8176fb2e0c5d0642d608df9c09fadf743baeecb9bef07e7ad33e247ddc2bbee642ed22e9f5d57bc402b9df041e2f8f30c18bd963501cc5500073e869aa434d1a73573746adf2165af23cccd30b699b3def9ab8cc88e3b09c05b6b81c80f576daf03ac8782ce077a6db9c311693d0822d92e520b58d1455600a6f1636e6c4d110390078c3c4ce77139a67e262fc166a58f04e58f84550f45ca657f76eca7f4e88f02433ec898f27966422745dbccf42e7b006eec57a39e972409c9ae66f63ae0301fdc87d42ee355b30165cb740c6a398b01997d6e59fd1e499d2ea2721430f5317d29b1ce21addb1e16125cbcaec8fe92eefcfa8575891f6bb91b81f2569bb04efbd419efd2877c60af1c2d6045e49b095586e1756629ed5869e26e66bd7d728b73dd0371cd7d414cab5550b911f9c314d79a5d2c0eab1c457d72e097dbbc26402a5f2b7c582c551df0d54b5c40791c5bef5e95c236a915b6b8297bf32a9ff40e367f2da30256f93e17c75e49ad5adc971a461e165a67fbf36a1f8a46e605db5dfc3f5472ffba82fbd7e5609cbf2ee37c5bcedeaae2ccd4717a1b39f5addcc24e5e6adf137bb3f42a0d8f6356640f83705f85bf4d561a9e81598ea9375fa74615bd5e60d7dd51ce072b17909198153510f881e01744549145252d6def20c14f48d97ad2e075c2d1458d2ae2142e2a6c851f81addf4652442228f65bad59e7bd46a6709da73811eccbf41fdead7af7b4fa446c647d22b6c27d29d6cdaafa3642b9c18d9ef2bc4c6a9762d829799156f675c87f20ccaa59e265fbfcf9774857a752d7ff93a1a5ae690d75fde11f80bace41571ac0dae75da51d9c66fcd3ecdf0fd845165a0a851f81c17f2e4f754507bcc449afe8011745bb7d58a743b0da52506ac82d3680a57f44bd45c1b0877a915dd2e51d68f56b78c816d77a50d10a390334ad54822b4da8b20e5c8dcc92b8cc28a1c512e5758db80334c07e5a36842a20aa2627fcc80e8efc0a435e2a12d3b2641e158680e57874bfd3716f5cca94675aa71d6a71331b089344e954607c9b637487a330ee4b6f43d49b2fa5ddf5b181570d801e89c32a2880557d1fe58f6369abf62d71e913066acf70b9658fba91e2f8304b21e7d902ab6e9a89bf9aeef01a5005ea3b84fa39dac3d40be8195c65cc2b3648ee722121a3f14130ec2abe4a0758806e4d1b0232b44a7817769077a1eb4056fd00455aa98085692f738926aa3665971804375a851511ef22c07a28e8d1a4880dde0fabe90f8c093762d8be9ab718f0ccea61536690ce6de9a42fe1eadb265c7d60ca4657e47d6cb6ead8423d9b096fdf3d8db76fdc0beec6dcc1bb2dbb80f247a28703876165fdb400eb5f2754db971cf092273d237b1dd9519ff8babc46777afd2989129f68d9133ed1f18679352ead2b62612921fd2f2e378a529bf318d76b7a02896a8f1d69d69437905948934d74bf73de26fd6271d82c0d60217eeab0074c87654c84da4c39ed01bf4ad4d369dc1b20a962d89fe6fb26bc052f02d603fd03adc22d8412b91e86e4cd11f1eb882cd3923d766aa72674ae59ff60a15aacbd52bbccae1967a6a8ecc3536f172c049c915d57775f343a2bd86de7fda18260ac3f94b1ff508a8df50715eb0f25cc8765acb52ad6641dbbab9153dbc62de8e6250f5c16b3ec13be7a9ff14aec20875a69781a66258ff15ff7fc291955fc32e48dac3929022c6c14cc8a1b611b86bda5d58cd09216fbc7441346def3e84f8ad9a47e40ab3423bd59ef51a38a7ab0a538025bf09f1364e8b5f649d44f4eae4ca4a4701d2f4ec4e65dff09b7d35ccffc1bbfb42f7dfd56d68f31871965bfe058fe16bdd53074ccb5f67731ca752eb0d11526d1478cbbaa1e06ff87c0ac42b55365ec47df394e3d39754d7dfb2fdb7fffaf7ff8c77ffba7ffef7ffd6f3d7b8eaaed846cff5c76c558f6b4a8ee54b03b8e59053b5c32d9dcdbf0cf6bf6c46d8721ed8721ad8732f5a1547520b824c6e56f73443566bc12c3a2711a758a6a9ee6075aff9ae3fa967af1085ae1485c54a32d2c85eb1679a93d6ec20a93f851576d80e65644bd597a971dd280980f28d6e86f253652004b0379a58782ca4351cdaea86e4d5039cf2e18f58f6941fd4c92a6bcf471709fcb2936047483ef85c73a1c096ed5dc78182c5110320dc9ed772f108755241be93c58eb487dbe78cc13e61b14be5c675c55825d749b4d7cb3256a4384c5f14750ba7a61871b794db386dde0ddb8664b458d89b0d450a78cdfea805d80f872943f10c669010bd0b0e490876af2b5a155982301dd706677dd3c13263f00b2c81c2d60155a0132aa0f83baeecbfbee87f53f08ad7f20811709c0ca31877781d2bab68996857dfbf2813d45db8eb40a40ed99a89c64af060a4a8d0857df9cced507705f361450aca9b1a85b65636f1fea8649f1f625b559f5ede99a40c3f1c3b8e184b6e43ccbf86a7b12e3383442a6e1322a274fe4ae4b1972a1f65a2e9e0890d5580a4b8d838b4c7c9d5e858329eff0c5ab17b87caa496f543c71399ecb1ad10256a75be6826f36ec738999374d439d828a6ec13d96dc662d95fe3640f02ed12da00ba9a1964ffa01b6a290eb7d69de3d1d6001b429976958848c55885488e1164dee70ecd1e6e9c380038e0b79bfd57ad4448068839aa2c8fefb61dd0f140d8fa4155a7f5bfd81706c9abfd7ca05c6a2609686b13498f55760c50c644574b0431563be8ad9af66d7b571f27b784917f5661d17743811b38ce437c8a862588f3f0016b6e398a55c90fa169bbf19f022aa553c4a5aefb05fc0ec05769df3a2a8d5257f4d9e3ac3d7b0d7919022d1785123064190d651d842ff275f3c665fc5ff5c3f7feb5865a2be5b4b0b5b4051f4562356bb2936f8bf75e12b9f934046b1afd2ff34b0e556d484fbd59628eaf2e897031bff2eeedf3966a5a7dc6caeb5f9cec9e94aa9ebaf8e01d67762df29d515eff355fb82822d0e3919c7c798e8e5f90e1c8636ee492ee9ae2bdbe63668dae852f38bc14a1bd1c33a3edd848a56226d92937a898f4b9f2a9759b093a83e67163cc48b0d45d56649e3ee05db6c92e1b27bbda3e4b7c283be0c8d37823fcb0f44b82efdc8891c84766e4b2b77057a3e39386c9cd722a9b80db329ccac30cb366e894a0e050058d161861d4ba81772e77e48f5ce93455415490460658efae46f3115f5287f8b5f62c029bc99bbc9bc92ec3ad57d81a0dc1825ca54dc8e549b27b75b6774dbc34886c5de24af69e6a44f78bb2dbbf088323e5846ef5d523d12c6a7fabe38aed28e04aca23d5e5a8f1de15ae84632eeca3e94988fdbe0144e79abef4b557dfe30e63e86d7e22aacdb3783c81911a5d1ec862454104a071139e6c5dbece2514f203660174c6c5533281854bdc47a66c5b0112d36c8d53774c4d5d7b4cc2becf526c86c994ef5f6a576d8443798cbaa8c792506a59334ecc6230a05e61828ea3aee0dac9cdae44c821d56a060b8bc7185a22767b8eb3216fd004ae29a348d8c26889c777c1572cb89a0b9b2e60e1c270a17f63824b65a2997fc2f497559c31ac032baa6a8b1207f2f7017954c0466f679a68c79a68da27e00feb437f16d165ca9d1d0ea471a5a959b1c40b45c0a6091dc96b31a9839ee9dd6eb9e3fec85da84afa3244b4cff7ddbf220e1c778b3d687fa850870f776ec482b1f1ef1b4a9f7841393fc8326ee63190bec2f0b03ffb2002ce02f0a0336ca02276a99ed4decf24e6ee6a0e06a318b56648301ebf390df50051d4ec3acc8fec0cf825e45095bfecf13aa1081842a84e6951742babcf25643b0b1eb6caf739f7f871a52d483ad209d06842e5f3ee8986933e8df0fa164ca93658954d5d32395893fd0736b3996bf4d6fbd0de65afdc157693f06143b6e9f27ffd0bbeea3a78456a4c54c7b35fe5dfcbfe7dcacda3561e77dd9770e49576bcf6924cb8fa8965fd0f6ce65df3dcc51a4d8eb0e247d5a25cffec330b1dffbf89157d549a33eb9bab6a56d1ba2a6155ed916f7e218378f6af86beed151446f95701b908e1319fb636fc36b59e36e54b4d2ac860d2a66e878264379d98b0108e0f6b97a48577320eebd1f4a7de0561c885a0e6564163399ad8ccac817d935f3f4e25dae9e8f2d638116dee3a868b74f1c71cd5ba2a97679b58741f5871259f8cdb4342bf878e33217b56a1e762f5aa0951e08cfe9ba23012b63d407482e7f971337ea1ed6752771caeb5271d87d9e6a8d59b5c26e5e1702b0c6b6dcd165bca90ce4d52671cd9674c7d749c0524ef9c1a794ab28c59eabe91ecd571946375a2217e084374a9159e1776f0797dd17c6ea00cb08e82d7b9d1ed26c4da6750b4b0d83ca6f0757a164b8bc214f728415c2cff9c5069d9b92ae2d295c5f2404301300b3696aada316b0cc8af6b9511d76a1b5a6916ab398268b8456ab94766b945137eefeccea61d366bce28ebafae020e1eeca6abd4b6cb3c785b790b7af49dfdb97d6e55831e54fe52ad492bcdb01cea27e9153bfce53691a3d650e7a45e698a776b93d1bedbae80117383681ca301957b04e1115ac1d5b41f199a630f2beb75fca6dbf9b37e816ae269a69a6cff95e12ec540f78b16536a1c5e6f8ab019e88d8fa9ab0ff5051f14894334be3b9bd13196e20ca277ecee22a93ac298f923d0e2639d880e9f03adde6d5f04c53f8b3ee6110f92c829b07f606f724a93441f06225510fd1a5cd0b247fd770cb21ffdc2afbc4386cc3ae60729c77d8c04198759cb1b49885180b615600b27c30daeff3c0fc0f0b03162a0207ea99ea364e411f2f65e452981537c87e87f6e7af7bfc34ac2f404fd0e134ccca9a93d8267ea6c9dc7a1ea7c6bfaed14105f32a32c95d0901cb5b21182bb4d7e743d17fc242f32879eb68fed6756d523c1943d4cf973f6a0061a7256f9decd6a2aa9b263d773bfb67ae551f1a67fd82e8697d92f9a93f273148da6fc76a33f0acfdc0a9fccdbb95efb855bf07ff67b71b5d096325ccf935fd7d02c958ff3e31ebff307b2e6f874bd8eea996ff14ed3ba3bad69d2032e481ada0fc2e9e0b2b3bfcfb0f144455ff2ab15807b6504df916ec722f0073d9d3a8ef5efe906bf19827721bdc0b244bdee05b6092ce2eb803df9bb7c5ce5c0d8cd7f0474287537a8f6bf9943fb5aa3ca5dbfe38ba95ec202106583dc3a442a6d4b41ecaea5638f0a4eedc92603aa4a6d4a02cfb599fd358b0688f57b32d20c3135deb52b6cb1b796dc867031389a4e2b6b0d41886ae69430894f6d838ac0eb0467cae2a6d2e6bc65b39e044a6a0c13096cf30a97e2989da326389e6a7151a4521c2293f12ddc2bb1cf166d2cadbc96dd68482c6bd80b25d1ebcab03ac242392e7b2d719f1c36e09dd2e514df6f25a2bdc0927adcbb96e9e89bbcbc5c518b30a6ee50ea1be907095b1b324a9d52a4245e8bc47649be15d29570223fb9c8595a6ba30e588db33ab874d18750752c41dc793daac32baec715feaf80a3b92d852fa1c6103d6516f1fbbf85644bd794c93652185ab22d5e668cb829b299d682739636ef50f24650f84cf52be2e79ca9bb89a15b7919ec2901bfaa94efac7b5d8f25948c4ab719c4b144bee0497cd06c268973ce05f09db951cf2156d76c22a1361a549faa053e13d9fb22d76f50351c54361ce8c7fdb9c101e232d6b82c2519fdc714fd5018fa8787d286c7910dc7fa8c1a9c3f0b66571d94301b940eadf0f8551859b472f490ec5eba77818efdaeecb701502f01c2c7b882a84495fb8f1545a803bd1d4db82a951dec33a8c59cce3ae2c2d6305ea31d6ef73c1fc7e9f83ec9b1cbf8d12da6415bda39155d9c5cd1a125e00b3e247b8270a3a9c86596933a2f7e82fa1d6d75e2f68a450917d1efc7aceb22c17590815b392a6b83715af633d0832798bc8943f5696785da09f2c4f35e0306a9abcbe00c4496589a406c4270960f0e29f68544f49fb01d55c2bde97f6db733b4d1dcbdf30cef9e9e7693f38316bde28fb45d7aa77f99d66b0f1652c6787afa7e6f047cc7a5680f55dd9774175c51b1c8438abdaaa7e8d8075c76210311917da134fae05a65e557fde3af30260a7a8338b6bb64cefb453f63ac2d45b3cea890ac87174668507c7101f6782006b934d7e44b5ca524d202701cc7fe95d76b14d16c195a8402f6dce5f8fde8a6691b8253c61e1689b9609d26ade93164c7a01d261192de2148688a9113829b1f7cec9a1d81d76fe9847e9840f2ca09b34014de0bfd4542b5fb397153556c18dd6616a9bd46e17c008e01be590cb635d77f24402b0d287bdaf24c12e76c415860266f7ec7e27247b311b00570a8eb37e915730e2a79aa22b970331871d01ac493f92cf72d699820a422f94576290d0659fbbe0570823a97937b6c2cecfe465dfdb2f0160c19f250782ce43b95eb0b5775f513241cbe8718463c05d20a5bc8f64f9a6129868bb6c639a2c2415449e757081293e80f06c33a0b7fa43e434edbeaf501f4a73d61909139ed1032e00d64fb7ee759753beceaedbe0b7ef48abe7382433c1b9cbaa8ca31b2dc252bf8a51d990b816de612faf360da9361195dde6ab0cf92586920a938c455ace3a5d5c6316566746701585c0a21acc71b34ba0f9fa25b66a97f3cce4eb8a1f08c455c670a860291d774a277c7306bdd2073d4bd6d881b62801ab654600cb18f8b1c32dad1af7ce9ff17e1a71d8b24341c31e21853f783fbc615d14c4fca0640449ffc3bd2a2e33ca1af0ecdc97d5ee0aeb37f97a0e6ca052586ec1d0c1b308fee5141ba47639e925c9c1cfb07b3d18835dddae90ba648293425508032ea80fcfb2ff795c7135abfc911eee83f213c2856732963f66acdf65fb2253fa68ccfb30cf77a19436504baf6be7640f092e969bf558cc72cdbcad892d1209f260613dfe394b483deb386629172577b36fbd457f819a268fbafa50610bd71e0a9ed7499e52ec1dce4f2c92de75cafd4897232fd3a93f9cecd63aa6237fb600847de19b81cd37ad0a5ffe3cf564ae3a6ee6f9bff0aeff48dc6b13d4677b010b19766cfcdb385237eb8f98f5d4012b779b7b59db39d9ae10c272d659597301c81602af648745331a2899414de8607a069c423289d3449e7b74b4213c8b711c04a64f7872a13cdf4ebb8416ab8c7bbe4fca7379db1c56e12d6eb14148953170128ece20bd86510f7c0ce5c37e586b3477834df5cf658fbb23c11eb5193568183beca6877199034e98dbc81da215ed06376dd233acd634b1cd8ecca7496eb38e549bc1429f5d748b5f617ca2b32d66f06e682d92dc44f832ea59394d031255883e83c34b6c7141a1d5653aea44db668dcbddb356e8677bef48c04a1bf6be92043b51b51956db822b829b492309f255015903afda17e02da9809539e14bdd09304de2a457caacaf728d4ebe081f6c3e0ceedd956b525e42d4d3dce2037ecb613015ad60062583adc5e3be021552288dab34f5b97d2d32df1279d79603237b9ca48d56d206ab881ea7887c4b1d601df0bb7683711125927bdd3a6f98f549eb6149cbdb62654fa26ed93ae1b41d99405b64872cff6680ec7d5f8b5fc69458976e71aab7f980e6099d28e80624ddbc266a5d17d7ce337307dc01d40a77d8ca01e7cc5e9784368730b595b8dc845762c44cfa942678575e6a91d2ef9a3bec09f70cdc8dc9bd772e2f74724e775de6226af9aca83185ef85d304f220c1a57b4d2a637f1c1976ab660ea115fc90e1c606706cdd08eab81f527120bcaa386cfe4a40ded09196a3c04322df1b7e36af70233f8dee714aea702e1841839333e04cfab071aa40ef6e48e38104de823b194bcc87d49867f7b9e825c9a124fd690e86b9f26d0efc307555087db80ac11a9e1549a394c8ece33c7045fb82dc7bfcca2e6e770367ae9a7558c62452b20ae9fa8c95af612c8a2beb77391ac6caf621302bcbfb2fc032bdc0f6727da6cb69ed8dccd25e5efaf895615658178d442bb04fc4af61dd2c82b14ec2acb851a659cc0d32734b1fb63420f5aee0c537193fc1f696d6be0a7f35698a5dbc1daae8f7c0695b648efc71a92dd2adf5a19e5b2bea8767a83fdc4afcb955fe2b9f263e775a8efc19669cfb67812db7843dd61730e5164f4f9ef48f98f514012b678b73c4b6b954bb02fcbabc6d7105b4f7a3430d93932c588e6f28324ccfa0ba73825dd6a03351d53fee45a4462db04b3b89ca209ecf3bfa55fd6af3e04a636ef1ade881bb17e03959b38d36a7ea16ec27bad11c8986f7a024988c7a3bbac36bf87b7337587a64163be41a5467c12cc4311a8390165be51a430fe082aa4c607689a778c8e0b15bb482368b1ff3e095a1bceff03a33aafc0f92aaaa363b31ea9abe1080d53261cd8d64a9fb1da373081f4c428b4bc5bea8725f9cb51010d1eba468b78f1e44a37176769d0eb086bcaf24798ea7c9a002608d6e30cfec76281872832b4826aa0fdc0f2bd0964d006001b9c23d1360f9ab8c09dfb3a9ae788fd7461129255c0b0792c60dd4800f25bb681aecc0fc0db70adc30d87390d2ed22c9b9ed6d8c642c22f32d8ee360a4b61574b8d2ac68978b1ae94c78c3dc09345c0876b9b289b3554e72b758124d2e1adc69d4706af3aa28abdf33bdd73dbed2ded756dbae31f9169c4eed3c034eb66e9127ad32efa504d0070ec3aa0ec5994b01d4f25598e04b27683e1a098fd84abba23d6ec68053b0a637364765f8ccb4ebb2d7e8f88e85c543e1b03bd98d0a6356e7b2c4dffc95bc5e570d5a11f2b625134831a1ea5e60f12ee74ae2b0f2365b5eb1011c008c0cfca8e1a9a29aa1f91abf042323e07c081be4afd062db6d599a6c779c2d80f909276556ed0a12bbec631b2de0f86160d33aed7153016a921c6c59d2a3f5bd1df0f247dc600984bdd1d18d16b078e39720f5b5d04e87270dc2023ee6acf293c6900a7c6a0fbfac9ddbd1c89ea961ed96d27faf4bc9a21d0f179ec1587f91e1892cdde351a6e74aa1ef604d607d3b3b77447849ccfa90f52b12b0a46d9e5479d233302bb8ddf3b3a05fa38c784a9a3cae40d434ab7ef18d80e729f6132fd5eda2ad5064dba139ab92f7443fd6977ea0ea6c9da8fea089217e18f6c33304200cd37e7e54f78148dbc2a475b6ce166a539df603b7ea1bfc2ecb338cd769e1d7f0395860f32d76bb097e513260dff03771c755e0ff8859cf04b0be2b3b85ea4a76049dfbba077dcf862c3acdfcf2d016d188528ce16948fa7e60b6c8acb4d7459446d01339b6c9425e632250e9f27c23fb5d2e007659ab0c4e896e272c4d124c54834544b691cfed6be497e6acb360e38a3d51cfa1a2fb50de7c105cb5272e809d6f737236d9f02fb9c3820d76e906a7664bd0b61f2ca9d2b67c5619c0d1c6355926375be751364e5ba0010901e4f12b8ce130041526f276fbf4c580d3e2b0c9333e4075927a8bc83ee79c4d5650c8e7844c439b2b7921ba0ee5ea7d49e99ee0b1d97521090460a50e799f27afae744f58718f5dd8e513916f1959844e44cf63c72f27a649a407d66a0557108b0c352c713a36836af6c598c38af704e5adbe78961d3c086bdb9294ef08cee036d5229d0cdaa2608d26fda5e54056aae92d083b3fa202af0db6164d7a8765991159567916c7192e420b58614a33f833be0ba971caab4da415b743d4965752067b9ac50ebbe23c33144eed43fec8aa19229c8a87a5a4c193bcf7e4719fc30f01f80feb08005df5ee85f4ecca7a7664002b9a9c7149f11e1fe13ed6dfaf31cd9ef54ee92284300a7a7cda0f431a0ea585ebacb439bf3c4a71ebd3320ab1a52fd2c25b1c38d20f72fa9ce1340147ea16982dab0238ec818350a1f77ba965d6b1cdd6519d8e31ad0e19bdae65937e70cfc09d9339ee76259097b7c50a6eb0828510576514da6e97bb46574ef9e191894934edbc2f076bbd1f5277284e1a7587e550420b7af8c045c1e59caa1d4ede364ba2b60cae3489d728896893e4ac71925cfea02b9c577ab51d8974b9f33e4873a4d65444a942008be871bc701c367f5b9036c38fefd7a9c027f7f2551dc05bacf94ac6d7005ba73296ef198cf52d581a98fbb7a9eebbd99ed3a5feed8d8cb25e5e06c0d61362964bba21a6abdbe1378ecb939e8159394bc1f40adb7719ff894893c7a485ec27bf815748f37bde35ff56e1a6a2080c33d656a861f46b38678b4c90d7977e909eecd6fa40ae23307d93ffe9272837eb07d452c44f128ec2d6e3dc5a5fa6ff90d67493d3617edc7cd49fd914fffaab8c3fa5029979c135cfda8fe0ddec1dfe69cd76fe8859570c58d99b9c2bb12b47aedc2d4ec51a17e72590b55a28536a25286f8b7b993de76f715945b7b8c5c89914d5809c493053c27c29157fa48b282d04289aac58942717b6d439ff8b215dd2b40f6eff8c2dacc5be7947aa1ee75475d2b272edb977df822fcd5e63c1966d07474a8706ee87c3345fbe27cad3605cc69c6fd6f05d58d7564e134851344e639152a2f93703e51f04c57c75b1c869e116a77a53d07d20c7df0b78072f8ab58095d5e3d9ba4e34f420c49cf642daf76425bbfc33b2eb42120cb580e57576825df12eaffd40577fde322360d8bda648332637a8df97f4dc57c4b53991c3080b775cfd8efc014b8ce26d1dd8c18891ca145d5b52d4a07a9e59b4ce3a0decb207efa22a044d7a1cee64d7b4ccabde12648edcc5356254a766b226bf1b2049d660058025637edc32cb47e2dd0772a05e2ab7017511809565067fe6ef70017683ea2d44d56629b3be5756157b52d435bc87c8e5876938add33677c0054891ac97849149cfb1256f7841d84730e5c37c5f31e50ff7156c03ffaa17d9300e48b2759e593bc728d9e60052a78d7aa54ff8e46eb280e192b580d5b61aa45b05dd57006915eff39f34bbee02f275ba1ad8111f56e86fe1a2a477da91fd9d5002c02287e3f2a628e50b8de32a00ce082e22fcde639a2c842a43586f5c32085b74c82bdbe5d5ef89bbefcbe1eac3c2a3ec5008af6769012bb7de15356bdf1069d23d6585e3347c5184a5862882df6a95d26c4b825ace0a3d63dc3b67d4879a2417d368819e513d0ec18acfc82d918ef1b887a8da94fa74e2aa0c73d619970cc216eef3b396f889c3facd761206f8459dc8b9355fc1785440a3a6bd9fce581acc4af7a432d6b7a96edfa480b93e4c755bc9f71aaa0e50b7b3f34684e7c1aca451dedd0c23d3b00f13c77827ca939e8d59e9b3a20fb9af681b5423a27add9b1094c76693f249c186a2106c53416216b3d6fa54dd8713dd5a246c056bf1eb987d1af1535d1de269a58809a7b8b552a9b1c29f913a5ba4da9655e12b7a3a5b54b32d79356edef7ec9e867fc4ac2b032ce50687b4ab82ad2bb00d76f1b46fe50c0de748b5ad8ba8053575bb922706bb4d76d122bd7299d5bc2144cd5febacc9a7123ce960c918df6aed6bf292aeaa7f95059f4ab9e7a7687790365a8beb2c829bac13a7bc2f4375852b9c9461cf9c195af126afe75041a528b09c22270c587d87a17a6f69852442558b2c8d8cbbc66d33ea413a247af7e435f39cea398e8f396abd2709fbf2c9e3b09cac09d4c307b80df68927e0fefba1b914c04aef74219a1b8e1d11732a5d629c016d3ac01af43a63b39235967a99d3ba2684af1ed0b6652c6ff50b8ebe8537a8d923a67038d9b41ef7a826fbe02af308b56df69047cebc7fde0672fe15edf0abf7c5a57b4260b8923dc1e04118ecad650d8926a0e2be51cf1ca0a81dce8978175e6f463835fb7485087054ca3506f010afc430b5d316a643d82ca8dc88246f69ad4574be65a8f0f39e5d94465d3d1b08d7256fcabb04f9f610b7855300eb19ab9c44f41024ca2dba15a536072ea4266375eecab83ed709f715ff33f53dde90c6add5b32383112b9df02e19f7026c857140d1cc11f7c261f79675e1c08102381225711f480ab480e563740db80d760bf8d2b8846a5a610f2d1b2260ac67264a9c3eec1d94f51553d3962aa2de0c801250188e395888564d8a42b3f41e57d5b84ffea06b42abb5b09228719035db5c260e9bb34acf1c70821f05dc5de4afa6fd3004a5e24d128095506599ddef84bbe5a0a4ab2d09b758e7730a8cfc489e655c04a7b014503ae3872f4def6e4844831d959c44a58641499ff3e8374e48b35b6164cef8258d79244d79c1bd7d8571d8dc757eeae4c93d0d13060508b61a58f3e5f44779fe17652cb76f925d9125dd05dbc9709b2ef1ed50d34bfb791748813f276685f5d05ef37cf155cf175ed39826659eb0cf24af15accb01b008c6a26016576dff0ee7272796229eaa682a85ff685e39c980c38ea7c653b3e3cfefd672abfe80d16a8ccdadfac39b693ffe0c33d9714b26ccb5eabdf3b48efe23665d0960b1cf679ca764270256e618d1f904e71fc0eab951d3e40b2b11741c843c11aba54f7a2afb51293e19482a1cf3a73ebf82ea2d93a7fd48ba42de9a15d65579ec8a36b8f55ba2be03f971664273d561d8c04128189c57d38e246f8ba36bccb2290178c2be22dcfc35b2113d76251584b800800e6a47b8c2836d906f6f438a0f3e28eccb278ac382a5ccfaf38a0de29b356a8de3de5811bb7b5f0e6f918015dbe018da6a0b7801ab6a8d98136a7408cc9135eb7306ba4597dbf918bf44b3f975d67ce0a99b2d04a024a129bfd675d1911e7987e13139563802db42716ef5edcb51a6f92621ff53b9c42adb1576539855bd2f410eb9267798f2e1a2c3f486d2ddbaec631a2d8aa7023a0ee575fb41853b3c146cdde6aab6f9d5bb6296b6f7229c5a7c0b4a68cbecba039703e35df28cafa2cd4e5061c2a2f41de2ab8c4aa7e8fd7b2808955181f005f84c5e6dc22cbcd5b1256dd910176f71298065fa8c554e1226bca833345c5ca2bdd20cad7c9d53b8cb63dc7d432bfc16400e2cdc78c00ae553fe99ddf6703a402a691db6a91d36c097b032811b12de45629efb3260b8e44e04587e662fa7c17075133d5eb00a2bfc780b365957e6a27b9cbb2e63c29791fe39d9578a5b7c2ba6d94ac07c8fe5f89b8458d37cb5bb3ce666bedaad7155583c1150b0c4ccdb66835d92ea22fb9c71bd05c02bc01c6a86b3ccabda13c25b9913a837a28ff52be232c39476d4f95b35e10dfc043fab9edd90da056ed53d36cd09255fca95c689ed36d4ce57f0f38777510181a667033df1533fcfdfa0dc5000aca384577d2026ef79b8ffcbcfad4e777e8f5dfe2e3f638e173f786aebe84480ad2e0d6c95053ccaf5234b0b358ce57d06637d7b8cb1be4e744196e0bc9f7a77aac4a7a599913f2abc72ccbaadb8414d96c7f69ac74fe346d9f96b72c458276196a2c7eb06ff6747441f4e746b5144b6341a10474d48d87bd23fa5666be9a5c69fe6d6fae424b79645fecb01cd465e759f99e7fe92f07b3dce0cd25f6cf89b783000ac86bf8daff97d64d9d7f2c20349eeb620678b97b34d1a1f2c77e798ed129607b62728ba1f54f9bbd0c6bf8f69ffaf7fc4ac638095b5cebe8029a9765e443baf25cffa296a4cf4d214509ae71c1d665358e1d56c0acf0f7061dd4e21d526442069dcabfa1e4124f008cb1ff1830932f99e3f001310d51301d6792c7799513a83e8b069990734400ab8e332b4b60d113c6d811ae18cd08a7f55d0bcc257adb271ab57b21f0b4c66f0cc851387892da486c8802185a1e18c88a0cf4eb0b29b48d257c41bd5ed49da0e64ed07f2c67d69f98ef0b11498b6184004ddaa4d60d881154aef05146a38522cfb0cef36aed119fecc580a8c1a40412e123552eef99d33bbeec4b209e5062bb6050932e14a406a8e39f2568eb3f1664dfbc15856916842ac91ff01beac98f6838182895f4fd54cb52b10313f508d7961492a6026a9463a21bcc116453637c5754b1cd5942feec20bbb8d6b75a432373fef6688d2e878765df63a330d58adc7b970d4bb41532f06475552ebe16d742da4d034b8c95aa1b64e6873ac98a201d02bfb9c22f2882ac2d04cd32b29803d310e7b9aca09100072bf95dd46b50eed7659931e794b01f9dbc887a7da13448419f8992097a74aed0567810a6957783098a85fd3887b4ca395406508d8cd29bac52abc09700f630e038e69b568d2bb744f98ac6d4614516aa36877e0a88cc82c43f86cdef62908f874448965e5e680b6ec220341a951449355de3a3332cca06f87b89d6afb198156bfa244dec3b0f51c2a1a0e507ad905c02e7b9d1154670e3f048eca30befb4ece9c6fe10e016d18b002826e203f599531702a35c50d2da80e427d8d5ff636bcc6cebf49c88ef41d911de9472db7e57d7b0af2a1c4a5dfd0233caa7a08ac4cfa0f43cbb525b4575b3651b8c7cf5ae4270e9f8a59b87574e290a018c116735945fb8b6cefdf918ca54dc9fa9648c9c28ce57e0663218b0773dac8701baef0abeb60674f8aaf04b304f52ec701cb2ae163a02bd24ec4acb871e6c7412f11c586c7451fa872a64447ea1f9d26af05ec753c2ffe44c507aa5bebe393dc5a5fa4fc8989f21ae1f13ab7557ca3a8f82634738d1531e67a5562f1f221c79869cf827d51f37f89ff236669016b8d8dec4298f5942c610aa520c0931deb71e3a80d597753dcef9dfd2460c7293162a1feca66a81dd8a02e4442aa24e3cd32979954c0ca5c665dd2339739e5a5ec45e183d2091f98961a16916b0ae793d5cd33601a83a91d8b54c123b56a260096bf485c6ad61fce14981209a68f78148f7ac2331715254da0905c54a30d490030384462cda477f912ab68831b537b071f7c71bb8f56b450811d12658bccec4df6d938183be221a83215d798877539662e0490af8b48c06a726ed7e487f51d86d6ef49946baca4699f8409af4b26db656fb0605e4c68b587b9074b6690c23f485c71868737abdc146071322cff83453460884ac77d88a2f7350115b3ba0e157e16af8878ef27b55987541993e3165a6f0d3bc16d1ff1d5c12a0fadebe2a2715a42bb73629bb33fed2defdbd764098627e6d28554a3e910ee49a01094e8b3c04c4c4579ee61b916b041fe2a3367c019f057a6f952699e090958277bef2e570ffba496bfc36bd897f669dd844d933cbacd6b62dafb38470d4e078634bb1ff56b8a6eb4ac9de7e40dfbca6bad8021f24750c410981ede0aab35e51419f4ec86746f072724a1738fafb9537f20a9de13a7cefa86763888aa4c65cd36cfd25d57b4c3add916f7680b621a0fa4aa2514b26c5f17f5695f8c0c3140e9835b526a4ee710ee33b31554bccbbfc26e1319e308b002e51f10775d2d6a478852dca6518a1bdca8554b3ce4e2b2ff15b9c1913c390df4a380f88e9c0a5854bc2bdf15a075daba669d068b3458a1adf2ab379e6e2856b9c24b1a7d0c6661d2caec173435b1e64b69df284f61aca329591acc3a99b11ec581393e8c735aca71efada155f47233672e8e5959f3d2ebb46b54ba7ac3f7671973622c047f3666a5cf092de26ee82b3e906e2d36c5ad0520c5fdd1890a5b60d7f93f3a5281a827f7f0246e2da0ae8ff15be4068f33938c6bd1531e4faf2d8f62d8297d955ef737517fc4ace732d7d8cfd2b2a8763a63f1b53a90b07a9669e5a394bd8e697536c19137cfcf6a40e8783fb09e466ded7bee00b8544c117e78e08fae0305de3263090116cde2574cfbd761590f7f9eecae3b1fd8c58f7bc1a49ed86a95d9e3002b5798992aa7694006f0106c59e153f35a502465c80da00a3603cb9af34f6cb586f91b6668386580cb8c6e7bd809ea82d7eb0816d560155a6721535b2ada1d92c63cb2e603b25759f95bbcf21d51e91883e5884209ca2a179833e004e1510ef486bbb0654f7be76e712fe08723012bb5dd032606fc4c079aa95ce35d55ca1d805d56af0b598e8e13cc5bd7913859d508030356f11a1b8b9321f99f510f606558f167f6dcc1f952b8e21d2896c02ccd9cca74422130df3bbfa6b1af07559b4734daa6743a63717cb2ed63de808b8eb9352ec6f635093e5f59bce1711cccd41684c21d15dd609ed1ed905863eb63a80902e698976c0b2a7645ca2546449f8bbccd3ebcc759916bfe18c07a8656b4c96dde1451252ec1ca9a90e3b37050a3d2d4ef0cb75c548339ee905336c5808de172e70cf9a48f79c070010790a85a7d0fb957e1c60e917daa9ee3131972078ad25de153f1d59de1ae9bf5c5ce213854ec016d59e5c38d513fcfa4b254f3240f7efbb092c1171adeead99121dd8a15be7a815dbea42f80721eb03bcdd2c71060f9b9bfae2b40d6e8b323289f0b2cdd0202433909be0ebf26639a510dfa7972b008ac1ed32dfc82833f571f481a0e826b0f24a5fb82b21554d64aaecde027804a5c17029f5e1c96b49c755ecae4b9302b7158983628a86f61cf94d11e01695d8eb11ec582dd791473673fc17126dfb3ad21b078587001cc22ab11b171ea1da9cd761e8b59d276f78f45bf3c41f1e1a85beb3aeff9b728da5a6f695d5fd7b92fba167d71a4fc50af0211bbb54e13323daa650aaf63fbe8b116f5c3af125ff4adfbfce9a1951e6615df0ffa9e070d9fcb58653d9165ea1b5b6757c76189d37e4c4ab20bbbf0a6b4fcb650faa1cfed6bc2e0cfcebf9f8c3536998fac4b5da2d4ababb60498a272573815ad7e83871ac7cfaea2795b5ab8c1bdb0132eb413b5c60b2a378a6944bd605159d3082a6bc28e2b788cc272964870e9d424b874d8c0b12575dac267e3c6bc049526dc620398c245654692f2dbc195c621d52630b785d79bc15318f69931ef8f492e7783dbb82bd5053ef61429c99692f0af6a9750ee51f19827ac89e18be0e12e2abfddbd1bd27da8a8d91265231fdb79b3eb44c10460a5b4a3563f70220085300de48c795c2cc1eeb825cff8a576d8e272742c9901d3369608caeff020e2adeb6cc45543ae48fea7c721ad03b5c4c645a058b85587599a3872c796244023e44d1cfcb04fe92203f60c070f9c8a145cebcd049a7684b0cff249ad92d6bebca0c79704aca21d7ee5aeb87a57ac42d9090463a5cef94b1a2c4535e670953357e88a0c42270c00ab575ba000e3acde93aa7604e1390460c1669774f55d260e0b56b0c280db1e4e93e8d174b4156654897566bf232c42c41455dbfc111fb804308bc3b8e5ad32d21602a2075d233aef24753a178c78634e85c14ca8b7a89c0a847b1bb644196f0bf45321ef29b8eba2344d7b74e1f2553e9c5a42fb9db44e3b2c204c3a3507f642e156819b07b681d7914374898bbb60c10902fae46db12f10873dd1d2c77cf075e7847d22aa36631719b08b6e49aa4d94cb8185bbbcaa3d51dd8a40e477c3c7ea155d9e5c99517c8b2535194bbd290ccfd4de3fbccf86b4d70b15c66e4b6b965870dbc30f1c3529ea77869f0fea443eebf3cc9ac3e66ef290acc3c0b9300b2c654850ddc69ea808b89feda527df70026325b91cc52ca747f14718eb618cc3c36830fbad64e7319577432b336f527c4ecc8a19605ea7fd39a62bc7d45bc79bed3c16b3725782bd0a8cdf0c7c916c41fd86d6ad45b6e8b9ce7f91f07551ec0bc5af94cbe2ac25a12e235e4fc2f449dc5af09fe312a6a7d80f4dd35f12f7583f1bba222d6d25b0e5ff4af8de62d673192b2c9d3d216c3d558b1e7667171b686a8f8d02423ef0b5fd157ed008a59f1da1bac7811d4c84e4234c51a30dab4d78ab16983994cf96ae0bc887174e46a99963642f332f068891fd7789549e1283f03a3398ce611e22c2853381d18dd6d28adb41e5b7613213961aa24c97120358c28676dcd13aded851836ea25af3e33a1128c1a5e066c60a72b0152e31ea1691578c3a8b002326e6db662f33b2075d5034a7ce14f73001abbac7c44936c5f702ce9f604702564c835368a3251c361c30ec53d171e772c97647504c516b0ab33b2e4787d9022b26c070a5d53ae8a2ae63ee7046f1cd9670527018b8558b46518c8259630466a9d638542577002c14591e44c13bf838af8490cc08aeba0ddf880ac1a6fceb97d8d51b8248950dfe4851872f49aebdbb212deba2a23576f906af7d8f48b7afdd0b02f223012bb2c00ae66c42c6624b2363019f5a1605b33ec280755565131789c3aed07334aa9530a4c7312bbfd425bcd02abcc31e501ec6535a691a566f9dd587a440506f992157b87b33465c75751bb3fe28b3addb21aed9120bd8c63458a577daa1164cad5629c3779fa55b8e5f8e3436e39a109a604534583bc5b43824b4396061335dd3cfc35061e96d76e1addc414fb2cf0cdc30587d03657cae5c4da308b0b45102b078ec0ff2340499bdc1cadd6257ed0ac9c429f8a96664dbf17375ea2d38b732b3f74ed9a45fd78eac6e472c4f35267e7d618638d18a5a189bd5eb14dd688e9484ebcd600126af31c95c0a787a71d8132d6f8b977e8f9730745ecc024b1e16567470462a03f6b2bdae84b11e4681d93d88b25b4ebfdb5fe957d5c355ce3e06b3e03f31834c79a76fd6bce44479d2f36056e238db24f2bddfe8696be9dc5a2fc08b54fb44f24ac1a65cb517aeda0fff22ec1aa5f6f02455ad73b8b5e03f48708b621f9e62770aaecb061c9e315d614b98f76dfbaf49dfcf4ac3e7d257584fcf32ce69a73056fa3233f91e2d6d9141cd8e02c07a22504b99a3c95aec44b516bc326349bd65c2e0dd8c59dfcc2506bc95bbc629db14e6af73e1ff456ba8c306ac0b8157eae69930dd168d7a640fb95ecc5d97ba10c8a2f05048b5892e5c38ee95bb4097a8adf4c929efabc4297fbdfda4cc0784f53893015302daca8c51b075da07260698ff6016442d879779781681b3689ce167adb13316e961ddce416a4b498db9a2de2abde76ec514315f66f5dcc99cf33fa7374e07586a271804203f69a34d70934dc632e34a52ee94eb9cdc750ece8c16971b01fd0042a186423d7772fa9ce4c9463a265b6745f73af15486c7a113b020bac11cc7915109db8c1f6c4f05ace4216f7825633150de6a87c19d881d971a2574dfc91af7cc9d0fc8d6b8dc12aa1df147cafa0270450260139ecf8a34b2da0d8b288706cf91799b3c793a01583165d6006a0031808670950165ca267de153b90d2ee701aca76a516d36496dd658efed38666564db22c0ea45b20e3c24736001f77f89a63e00ae42729b35ac4c60d8b3d75904636db063bb1d78a4766ece5721c5e64175162c74116f25cff83e5558d4f3d849d496f830c2719ee5906bf9b45fda88574a07aaecc33f105486bc8cca90c3bbee009021c98609a20b16fc2a91187a036ad59038e17555d89736eaab05ac0f0917dd26bb6201b517c4b998a4fb30b9fc4edab477749395ac1a91222e84cc1bf669db10776e4a5a1744cafc3bbec62fb31c7fd3bd856e456a616c7ab77d64839da4d28cb8992b4cae2075ef1477ddd91e3bf860e6022f71e409302b690459491767b832e041a6c7e518cb0133d6c348bb076011b63bf1774654ded5dd1ce5bd0b0a3a9c1fb3c4cdae1f705e26b4b5fc08967ac3ff79f40ac5de63ff42b91c54b21ba6da030b77cefde488ca839ed0c3f9dc5af02710186172641f9c6476b96f9f883e826e734197b9b8c74ada6f1b32f814f12b739df9fd1474782e6d997586a59fd39e26a5a52de803d6e5a9ae7843d07da0ab562bdf1202c6550d05e09c1232b2068fddf27bcc963d59d99630eb093d70c14db6479420ca8d123aecb2a77d329711dba503a90cbbb3d3bf04ae62e47ec5507ee1effb261c03bc95b7ceed3e90f71d86f61f8635ef06976c0a80e79266fc8096248dd6c22ab398118f9459ff887a33dc6fe77874acb4ef08a829575965c08b231e28c3a61365d888ca8c8090cee98d136a012bbadee9bcd975e7289bc85da2972cd06b9738ed9a423c0e45859553740b8009e64b79f29792632977192bcca841d790563b698335a9ea8e4d0a98d5649931e5850f80042ca1f77beddbc16dfbb2ba5d49e1263f738d95ba1898b648cf5c6392beba8a6d61a7564aa3b2c39feffe4e649679d32a0fa77ea3ced67d28b098d866dfb1190453354c93bd7b21b99b1c79ba368d3ddb2cacd321a80285741535a67081621a2d125aace4f19ffb9abc14dbe0fccc544e8e1ba7c410295bd6991ec7acf261bf00ab5f851758a52fd3b9da3240452dca078283975519934b858c1546c9b6a0655fa6de9394ef88946bac70b5839fcb6b3eb7af45a86ce05b32579960e7399e2b84add4797fb656594a5e679639ee9eb3c684d7635bad70f3282c830e17b1723a007e5683a8f823344ff30387130cad35156ac5d06386dcce49758f672c8d42873cc538a9db5df327277bd80dfbb0ab6603704d06169a2f6c472a27b83857d66c1bdd6c9f3be4d9b57da403a64aed0537586ec35d32a5122e222e8c4def714749fdcbc2981607583f3ca538ecf92d6b999734f6c4989536246869646ce67a1f67ac6329596733963dc958c8c26d76e21c464abc6a7a08d27a4a98153bc27cc3f7a7af79bdf0ba56c5f475af2312a66fd2fe2c799a57b2130680854dd0e2a0a7f2a0538a179de2d63aa6177f434640d8717b5f6bc649af04f7dbcb061cc0247db68c965b6ed5ef5917bd7c33f3477ad2f086ca17dcaadf15765be08dafd60a0f44df43ddace7d29698c8962f6f6781da931a95ded2e68f0196e6f5ac1576cd7650f3aeac6d3fa4693758bd2329dd14028b3c16bf2a57795d5bd23e4a079e81fbe1d94b6c59d0a725e368d50e538b26f681aafae3db9d7a77439032cd32e789c00e4635b4db49da6413d26a1fd9e55cb5c825728ab7842484f1451f534f0d03169c8b9e5c967a57a2476f0953be383156aed1b380853b3965e6b7b94a226eea03df4240623b6a73ab53c86cb07e5c821de1ab83013f0f609ddf52a6bc33fa9d619c5513a860aa6999d7b925c9ecf73ce294cafa82c67ac7c7e45a50e4cde37b50ef4a07340df2daf6428229be40619569d23d3f12c548c052e63950c71340aa72479cb3ce21506f8d5dbbca436d77f7741afa1d8be2d05493c2f9009814b37aef24b559c9b4a5882d9a3860e332a7186ec275768816b0144a73f8337d89113de4266db0626b23b351436e6705619f82d0c9f1386c703381fb7a98953fe0caf34572a361f956b059f2acbfa80605a60595a6f2661b5ea12129bb206db4860d9af7756a6430feea45819cff99aff1cb18b0be2b4b5fa4274c7825cdfac160e257f2b7b8fc5214858f549be3b8332c9952caadc883af980e90551a93d7085bf2ecd3f2bd258c7984e31551ef1dc2f13c83aa5e9a57f9d94d47a8ae0c79b90869656a867ea4eca658fc49de883baca9925a75776384da166e5d94d2b0c02858673dfbca891313ec946bdce409de9362165859076746e5f775eaf9182b4ec358b18f612c6c3bb1f6a32a82b49e0666f91659beeaf1c28912a66041adaec5dba1c53b606118b372d783cde2dfa14a3c9c205e4a8d219ee4d682174fb31b1afb3ce2e7c26e6b69bf3dbbfdb66dc9afbe48ffc1633b497f9ef603aba297698d5f48faece08357652143771aff2ef6fb264ffa5cea12f3929632cf886e76896a700683ffa4ce3372563919cb2c02ddceb673a05bea3cdddb48d7b04f20fd145ecc586177efeb8ba1a3fcf483d0ba2db172857332b72d315533fea4a707cb9612f5eadbc1b0f390f04f135bad822b757e91d8963bb031aeeacf9ef1bf80bb4eb9caeedc39322de5ac11acc6171e05ac0506bcd8a1d11405aa436de0b6511b38544cb72ed0dbadb8def24880ac11155a466618d0ac5f11c9bf20392f7f8d5bb1292a5ce767aeb0e2c6bcc2ba9d423b1da306ddd216e9e774c591801555ef78e20602c1c752c6473161860cbbd724310667ef2d6ad85d5c6e14df6c89329f86dc60546be71830cdc069d62df20a46fd8b2702c2620dbd4d882b7e1cb0aa76c4d42b0e9350fe242d75d82b7791a5b7a59f390158956d7ec76f15b8108dbbc1f9cb4cacb286a348a494066c50da4b43d1de09cf106d033e66e12d79ad65f51ca3721ac568f2865cb3569821693ac06ad8430507fd87610d7bc1d9abacc429dfd8510f38eb2b89a55ec6521702a981518c59d1a5c67447a20e202cdf327f8353b71bd473a0801f51f781a2725b1c5d66e763feb28fcd2b314d4e98d8da76a47d7b72f8d5c0109141ae9ef5e0f22966ced317257eacc70e58b9648555bbceefd90d51d459917990a85543b3a580f55ed776305cdfb60d111049f9142daac9565c6ec22b3194a82d63463c9e12ff0136254dfb685644068a5ad364a05b6d71717ab96d488a31495779f3349db4f2f211cc6a9ae471026f2857e8912dd6ec42d2d76b90daed523347c7fa1a3923677ae02e1a843d97c7ee2453ae5e10b3b207f8bdd581fb99ee4fc658318f612c1d699578d574b3b3e7ae12b3b216827ee3f5334de2fc0b7a225b9f885e2bda46ada38bb16931ab704be1a8fc94ac3ad4d7d33a875bebdd204460a7d987b217592d26f4965b56052f9fd6d0f00c33c8fa8973e5dbdc4ed3a03edb2bb1d455faf74d05feb994452669a917b02566508c017e46fbdc7e49997f67609f587575ecc9616acf5c615f8cdb00d1aab7823af64370eb98de4d5956ae03909640f229bc5bb221a44e96f0ac87e73e56a1441933cbdcf493782e73c40dc50b701ef4dc11cc823de0627b5f97d70204ef06d55a84ab6d52bbefc25318979ea1aafe1e87d42774d70190552fb20120a80e92fa6d297e571fb0e61970d64dcb3c78b6929de0701bb8ca79ba1e60a5ccd3c5b516e494c9af320dad20b2b301b0c8cdc8c63b83f7c35af764e59ba2acc739f9f44c0758758e7aeebaec554ee38eb47f978054b846e191866767d70935350780b0496dd6ca5e9d94145c881e2d86c6841b91631274cc1bd7b6130c5bc24cd9b115d4b373c4db57b92da26e490256dd388310c73faa8cdf875a1acb6be7e8483973d403688f2aa9553daa2b71485f6264cd05964ff91375887d441d6254ff5d12b042732ce090e05bb02e51ed2aef4a1c7e9789c3522d76d493a59d9801b6f2a603cb3bfc556aafac1c7b8ecb5b71d9e6644b00dd72653fb4b0d2554aff6d5c8b0b72bcadb16b171854e55bd4156715e993c129376e88945aa7e0591ebba7e3abcb5a65648e7be40fbbc2ed048707572177d847e79dcafd8ac6b9ee67fc32ee3209ffc2b52e1ef58487005c6838f8d255eee5e3b06798728325a822142e008f42aa8d135aac65919ffa9abe14927c9bd86c999ede6d8fa5958f6356cf560827e006de3263859138e55330ee0b37644ab19554f85b89f0b7c18a8fa31bcdd3290a764f3d13ee7c967551cc4a1911aa9b99cb79de4fcc58d18f612c6cbb1ad2aaede110a47569ccb288fef8b8842958e4008d681d7d1266f99799e2aac3b7b4625a5499787db7d691b63c1a5df89394e2b179567c6a9e7bed336a839dd35b479f665fa4fdc0b6e4d7ec7663518fcd254ddc6b53fb87c8ef55b39d23807531e34b3ec5134c46b6dd497e82f0da6d49ea22eb8c3d1ce7b6ca7561efde09bd65e2634c10602d324b3580a5c7558026f06c858766e50c2d772e508fd8e2c63c631a093d2d2c5b5a31a555875f17b66f49a8ac9332472fb917088f3978d8e1aafef03a33580ac78e7be3bd9dcb3fb7c4cc99f6239b071398b51bd2b92fc7ce393dc04a9da7672e221d6d98c5e1ab4bc6bd80059168d68847e1b07bda12438fde8ad6f9ca99c08c315fe53c62be884a0712b0f0060040c7c750435a21aa0de139b3eb4e042cb0c2154ecbba7e2beeae3569d6ea59b1545ed96db2a2134635bb1fa966544ed3e0c2e1ac26d889c8ef063926e2889b992b2c80c28c15c485d9cb687647f55fd3a8711bcceec004a42b0568920a7618b0fc4d5fae9c0ea89e3d591c1f2342cec05da26dc0b09b6a02856faa270322b2ccf5d84e39e58dc3c758141e9162a38d4c0b58e1791670532185b36177246c36e47aa20fef19a89c9c68d9eb9c9c397ac2807bce6c60d9a6defa24bca207b5fe6c5ee11fbf61d065dd9655ef04652f31500101450597cce5c75d29956bdf99af4ed1ee10d5609ed5830a09ab6602e0510050a25e16e40ef9a4d63bfa58fd52b302bc96d26107870d67811f0283142574f59ee44aea614fb3d48580208dd799556c20515bc7f61022f8b2e4db7883b81e9710adb432d1c1625ce75bcdad7426010b5bc112bd6a36b0b2ddaf772b042c21c6941ef371449fcb7718ab3d83ea94ab9ce4c98b6056d2a8b0b89b3b56e6ff30c5f5ca198b24ad3192b42e8159414deec7e9ca40f10eb575f48998256c767a9bf9c25b2769c49fedd682574e138bff22f29a41fa4f8ff431a490d6f1bed167dbcdcc1fd19abe12745b5dd2d2d6e8dfab9e86cf252f302e66295ae30721c0a299bf82bb52e8f5d7030306aadf0c4a59601eb1d3792b6f9105d31e4cb7b0b8ecd995f553b2d161c10d3c87b659e552b90aa64ccc55a841ef9857e1887bf6a887de6ec37a5c60051f5c69ac8f599a4758eefc1125f7947bf4b4797a569f6372bb7568ad29b798cca7f178023fdc2233b3d731972c8f9f25eab65a37c57803de51c002aa4b5d6464f73bc3b1a142bf6e870c6d3fb8d42e7b12ecb21719e52b9cb62d094936304102304554d8eb004bb365fe321a49003bec63d0f3e2b46d4b7257398f0dd10ab4801559eb48b25dc10c0db7e286c1c76135f232d5ef48cf70e99180c529ba155e6f96de6907e30357010607b789ac5f159103a2e07dd6744f2b9f7118d6b62b8313cf1974c19a1738bc0827d849198ac2751e097318b0586e6fc0848af4f1c912bf312fdcac9a248384b63b41e546a4dc43569b23cff7ba24c680eaaed3401e2b66c85dda64c3af304145a96aabf8711f592a0158f22cb3c8763b49c56d61a921dc30e27acb27aa8ab8a4a192db497fb0d47b017a6fe5aeb26b3704d4df11452940f753459d70eed18fdf2784b76f5fdebd2f570e79c028c536a1e4fd64ad1c6e46973d6a44d87735297a1770d765ac30d94506a252c3a4562bd45979dc0b9e062d6b02cceb65ad8462828ff14b1c8df2597cb3a5bcc6246fd8871a8587532ebe84f4ddd9eebaec0d4ed9b6b0712fb87a95dfb023c9d9e4240f7953000b6d93dce786132b8f635661b7bbbfc52b9c80f7c81de66c70eb3645d44452b0f0428be821f76753367131cbba0466650e0a7aab021ea4ba9ecd58faf20de7632c3dd2ba1866e5aec8ded1ca6b617bddeba7c9537cbdd6d127625658bfdffbbc9feb94b4b4625a67bbb5e04f0c61c7cd38fd255dc7e8786d2342045bcf7d7a21d2fa2ae34f996dc6bc2ecbb38ddb69e1dff8a573e575e78a775cab6f78d67d446bbe49be2b197068fecfdfa3d6d1cf25cf332e6918b022e45fc17399daba41d7626f950f5491b1c03c27ba954cfbc31a14e64ef5221b3e4825add2066ff83aa0ba8c4526ee9aa2c75548b21c1ef4dd0e695df67a48173fe54fbae8116635e9302b77da3ff91e9dca3af0273059e2941f4ca22c6df28ab0ca2c6186767edf5ec2947f58ad69529b157012b56eab6491851d753cc1c77a54072fc6743a286a4ce0212badbc0db33e4c1bfc120369831502ac05ba720cf101ec84eaf2c1ce1b12b084f22f308de5cef8eb91048c15d1eb708e8ed428e0481e8789b03722c9bdc119735bfa8417d98a1bd5c0cf13810c1c6ced39509c915d27a574fbd1e87ca26a359cf05e364707224c1ed775dd6e9ee29389564841634da09af4876b07b33b00286a983881fae4346a7a026225b0b24d21097318b07c4c5e8aae4469dd278ae3c3dd02e722ab26c2378232c3d0720b5f9397e083246081e184bfde4345d36eb06a4340ada520012b24cb2c6d85150504d6680bb74de2acff25eb679f48e5441e67141d66989460c6727e2371d09bf096ad308aa6fdf110b56f8a09b1b4c330f2a74afc4e891f290f932ebe3de0b2d62d30d50bec86454ee31217481a7e8ccdab82b821777ef911dd1058b7708b0d421acf5b3671e5eebaa459e2a71d527d42d7bfe8684312b072d6386953fea1ad0efc4a93d2497ff809e0103cea5b351b58b0c4d407bbcbf3d61aab6481a1d6c81a93cb80ce7d79f2a016b0926ee32d4b660338da470db74887592935d64c17d4a1811df01ede327b855935472763d9642269c7a614c6f9d9944d5cc632572e8e59598382c10ada83e4bb4f89b1b06d26dee9aea3154c073d296639a6dea4029677b1d989ada34fc42ce5729063c6176f041c13883fcbadf53cbc7edcdee1fce493d83f39d257e778c7e8636eadc70610ad8a7ec9ed343fcdd81da62e95d76f65fdf8f8078d73fe0c608bdd6e029b957e2d6bf92f8960df07cc7a2e698e41d8fc050d0356bedaa516b7d89ba31fefb207d370c65c60d2f9880d9e8f851ac1216002d80395b494450ef07578b30a92ab86755c0593282c4fc3ebcd804e92ee05eaa15b708b1d392bb00b6f055719c7b658a54e78c35b49b381e4bc2e09f8a07d175526566e88b296d94973f4c419ffa4595a0ac56f778a1d41bae47926abe8165f65105a6b9ad8aac3ac74d87291a95a17aa273835bd81302fe22c7e4c7529e838edf5749e42bb9ce0add046cbe4764dead2b03bf2dfcc13e9e13846165de3440056c81704e48d791e418ade3bca3e4758e2e70eb860a74ef684cfd909766009c33eb24c3379ae257e25792e300c9f4e973d1153d3e68be09cb6860df119b8963c1f18dc6c27ac31e7961a715446f226eba4c1bbe9533ee9f3811aff1c2b779629a6bd8f07a4a0c295442bb807e05e4aee4012f9e232a3d8260b4c66b0be87d771abc7dedd9082352e09737ee6bfc403e26bff2b419909a7e816afc440586a08d81ad160953be8513e1da89af0cb1bf6086fb5ffffc97b0fe736ae3cdf5733b33b9e3bb3b3bb33e3b1c7616c8fb325dbb22c89620e62ce093903244122134c2098939873ce398339e7242ac799dd57f5f66eb877f7d6ab57efbf78bfd307683402299262d0ee56fdca25838d06d0dde79ccff985ef4fde7d5b3b1e9cb5ce4aacf232a67fe96e62502bbd27b64d90ef7baaac7f10577857a82001abc8f542544e8af785fdcfcc5514036bb1a90d3ef07ade06ab90105fc5970813396c54461ec98d83d4b20f2618dc50eb20a08db7af64970f5497b94c570ff991b20e28e63bec779e1e3baa652f44905f23a5cb15e60118655871b47543c8f0451ac53487dfb48cb0c8abd4f738014b61e1b60415d3a85755f126eb74c9af6093554c7471c0caeca8558029f3a174c938e128b21df1c115b36119033ed4512faebe99d1e8191bf5296e816504ac7d3e1c69953238fac858af537a1a4eb8d774d71dd108cc12eba74e8259a5933173f58c7fcc3e43c6027b99e2bd5c15d13a293e3a66a54d737f907e84e9ca29f1cb435a471f845929d3ac1f14ef5b68965a75e3a1b8b590583cd7f8d78f7866bbacfc7bcb5ed1c723ad43dc5a911d578443aeb6c6e8be76abf897c6771d60b74a7ec5ed772c7a20c280658b5983ffe530eb52d626efb8966d69403c7497b7612236260ccd47a09ca1b9703c79e1f9ab7c3614e821dbe6bd76c06e83034c0053249eeb2d486b8b9799e70a1f878f0438c05c050bad91ab3a5ce54d8ea448b76e914e9e163359d60627d624ca07266d73cf5861e23f65af9901aba62d9c92b19434f84c59bb1f9bb7c53753e09103a9d27663ad9f842865ca049e5ba6c1eb0d9649fa8d837496db3b0079e41b75f3d18a5eef9846e79826e7842eaf1c80c50d0eaeff4aeb7107b8312e9c44640d76ea234f95da465f336019218f97381604aba098e03cd478a7c951d9e204df44dbe192d2e59639671d487db55b6e8d892bb3d44465160e6490396d4d4bccc213954d54ec8b079fa9c89c98b671365c1051f04703fb46b4c212a9590346b901f839f0fd711b229cc585b440ef4aa83087018bedf12ec3f96dbd213275265cda8ec4308b26236cd38c265f24c21728dc1324567a1a012bed06f6d855dd15d90d9901fc4dbc48ac1aa1c3f94d8075de2a27e5bbc2de7d0b3706ba7a2b22e036599b6b2ae512c11a8fba611222e078845af5c12c990c4aec708347f4706f9f81500b1b7ba169791c5fb0c7d72f45271982d543fe391bec7373d7514d371f098f2239ea63eb1ce027c0578507b2768149768060babc6d2cc578a602d081870aa831770849cfc363aceb754fed762bd8e1bc0ee7d9baeb64ed6e68b49a3a0ce2b6e2b88bb32d60651a0261dba06a41e211f073942dcead9b3cf29e764cf274592e70987e3218d721522b33608381ea751ec92b1f1cafb4e275ca264ec58aee0a4f8c59e506c9520dfd1fcf92b1b0ddcb0d1ceee694afcb8e8859455b09f96b7105ebd2c37b1a1e8459550fd5dc66af3ff17e8d054b09d2b2706b9131c44f44bf445d7a6ccc39fb8f76da17523a1852db455b91d6e101c49bc5bfe00d38f1079da916d8f8a7abb93fa5beeb20bb55fcaba4d5b0beff9305f6df01b32e656d708f6b253bc2ce47b29167ea91e7ea8e870909893fb23cde812918a50d8dfbe1cc21dc6baf608468b737ec9d331594b5c9a5d881f496becc9013229319fd48ce1b4e88490b9604586235eaab08b00832cb5963e78dfae849aea254a163d32f316c79eece363f6332326726aa68c302ecb22880d5b36027377cf2a5b6fda1ac6047702cf71e7c0701456b473b1a0c7c7667573845e9b66bdc52afc4e46f1ce6d8cbdee4084c6a9c6a9c213e1188abf05ab7f8253b026da30ffefeb1aaab169cb7c5499e0a034a13545b5f22dd02ed90ecba832cb6d5d87dc8982fd2eb81151d4bc78214da6bc725b6fc1d0446a38f159396ba1bd5ad280bf84e6fb0517ddee09f4be4c3f12b6f90595c8089f83aa01af54d0e15ec4aee8aaadb230c0f916b67e289a6f7beac644f0caf67ad31071f996b0f8193009b70c7dfe187f1fdcf941a0a606150abdce4588556add2e4b30a50c3386591ebebc89d1cb16c826a251b2cbb6e0cb0a23dbed525c28f0aec5280b48c897d44134cb8aad9839e002519637eb97b82a4895051ed2daab74fdeec48b6c2cc18f4a6266ff53f5114ee092f56971857e7c1d74be9f648eef24ceff3a99ea7016da031b51b9f97e7595ce9cf727f97e6f09bde65144aeed915c3adc44ae8a9dd9eb1f54ea488da09ba4d1c9615b72fc0631fbe1b5c6dd42d9188c0a278fac3783244a8c8ba45bea56283dbb123e9bf173ffa44d9be6ded379d79a96d7a2c550ff90144c26dcd19b2c0ac3678efaaa0fba9bcf49ef87cca264e2dc18ec4ac13050dabc6c56b95d167cd58602f527d166aa39a66624e5105fe10cc2ad88cf3caba6cecc363d98a87ec7b68d58a07dbed82cb8a097f7397681bd23ac4adf5dd11028811ed97b9038ed898bdd75d4aff1e63d9112db8f9d3beffc8ecfb3f99ff1d30eb52e63a3773e3a896074b8ba9490869c3fb729ef77bb2fc1f60cc6bda503f2c55ab93a2c509e66559139145d4702b753afc95dc96bdc12bdc1614aeb049970f9c01e6f44c1369151b02b901ef4be2bf43c713a006f8a2ecf311d8a0158a22757a52912e67935bb923ea7b6cfef2d37f4eaaba1b43825de6aa11b0680ebfeddb8b3928cfd7f05c5d7f2fcebe2bee004b9e0c876f2869744e9a08c3d4d541f4a045bdea9ea9b0428431b8f3447938ae2906fccc3f900893154cf8172d45e7128ec0c406136029af925856b0c36f7918dffa30be763f160e4b9e0a9775df96d4a34c73718353365c9957066d6d084cbf4ce7575908afc3ed56e6fcc0f27a47c0fcfc58a512859b9c8675942c4f667151f376d531dfc5275f2f9c0d450d04db5d6c191a316b875bc17468de26d7a24e624f3862792a32b4d7f34431f2588952b61f2b1057edc7009d183bfe2ed3e0a62456df26010b9fad700ee932c00249865671be3c2c6c350ba8924e5f841ac6290b5d4fa0727272db60168dfb5b094c6037063c54e5fb12b1091d008f7206bd8050b19278dd1243d1e26c6e82597d03eb2aa54c86626ecbd9e2268e06492c55f28d57bbfb365c31604a5249a4ec2432c5a7294a2caebf851f425d8f3b6a47381f0110d37f376682c2ebc3bb09e2e04f74690ec0c7488c773a14368170bcb2d515465fd76e4c4aaf4fd6eaebe6ccd91ad9081566c2ac014fac4b52b7ce2ebe2bc89c8c2201ebce1ebf7687df7337869aa735f9221189e13d55c23309064303ee2c1ca09f0ae39bc4cc606f996bc2ac92a1c09ade7094adff585e764f78d661d9a23348b02bd815652d9c3037ab7644b4551e79d68c856daf2078a09f5bbe213f35cc7a78206669c668dfc6bd6beec3c3f805e9d6827f20c9784b73c9f8bce165b2b0df8d6c116dec036d22ad6f8e465a870410bdaadf63f7dd62f53a04357e712de7e746263bb2dd2afa75ef7f6482fd77c0ac4b19ebdc432cd36459ebdc8a4d5e3751dc8756414b0d85963116cdf3f7dc9cef6d676434f7d53966ae71322967331a86b63556c51ab3698bd74bcc2f238fe4566f873540d1ec94dce92a4b4429e1005856d897b1c6d61a4214fd7eb21e6fe02af8afd6104a45b7c25566a3293e3246514e1a7ea6228fc95c61e3f94e10f4e1e179befdfbb1c5db024b87dce1c6cbdc30bbe88a379192102c4e582000ae272639cc5b453b42db202cd5342341d2760ff8998a7edfb4b928ea9f12ebcd8045be38f0d49c9d33f9525b7b2f16b35ae606e7c4597760006ad81f26a8bacecdfa8e19f1a1f1ea01601db93c2277955932154c6d1887b3b8c8ded5f5ddd152ed8f39dbdce48910c4858d4e094d2e9a768fb45e5f7dbf6fc6a06fee887fc96450feb83f1c43e5b6862d94020c280008852a1c2d7d63707ef813dc5323572dd16ae68d1d7f3bb605ea0a93072bf506f6d865ad30959d1ed4d02aaccd197d1ed9039eb0bce50f7b4b63bec080f5faa22747b7c491005b37068e16a147744fa81a3067f2c1028fc45dc790be65e50a23738581b9c49ca85e7903b88a94a003837fc82bddd88a2ff9a53f9a5d9e7dde484064210aab872049b055c6f9b8eb0ec235a5e96792c1c1ba455a2791f0446df9d73ccce478bc0b7f020803d6919984367af751214efb16ffcecef1c8ef28beba8c65baa8f69629a8eda01ff32f34953e90809558ec5c3117010f61db06d758ae416c0ce05b618a2525f1b02a5ec516379692fa86312b31f71ac3edf7779afdb01049ddce29c761cfd3f2368599b327c4acc621e15e49f8393016d8339def6c23ad613eeeac31abf281ea87840fdf8f36f7e1c16e2d78e57dcb863c5fc5fcaee6a9a6e145b264d0cb4e8b682d415ab66e2d1bd2ba72306981dd28fc4560e3e73f64fdb511c85e6919d6d6fc4fdade7fcffcef80599732d638f68c4bb5ec1576c56234d673c2ce06bc0ac2068b9cbf92153f46dffa2d93fdb1a0e89ac5c45d7333693ac22ebda5cf46e61b02c8041140192c6b94331262c5589cf42b8cb0f7f17c8400cb96d50eb6ecd970323e025f1e678593dbc4826da191d24c8015c7fffc9579bec5eb1c5bf7de1103ac554b74dc03b8658d8d9499b62c78ab14d0cdee1b8f40721a0a6061b0cbdf16908af0b8101d80a302b68947cbae3bdc32d739a9b351f05fa6d71fc8e82a9ff9f9d1cb2652877c810f70ee3f992c8f95c97079547547449cf647ea5b2ab60815f5c528e0a1624340fe88776ab71b5258988920b92d6f9d5d4dac5846682380039316f6010028e3ca5323574d1acb23009bb20d212460c5a7dea0425bca54b8b4c35d5075836fb385a0fba32ba028703981cac9b1ca26a82a274906344ce2ea2cdc1880598dcb8c82fe50942db7caa23a77e31b1d0ba6c20a378c81d4ec4d2e57fa154777859bf12d8c2f79a90b7ebde65e0c59975a3fcb65bafe9ee6f43b55eb6df590bf72c02f87b8e670adb20789d4a51ef7acc5e873f2d81d5436b1cd550ffbcb7b6ecbba3c53c683f2966855262561e4167d80f2faf12f62b9bfd3baced6f57a920da3546d1e6d1b3cdcd9bd782ee2c4dd260eb1ac7556da5c64fa4274ce1687ca67191308b09841efa7f71ac1179e7f9c528937b1f013e0112555f18c5cbb1059b242cfecbf4d36f9e1155e65461bb73759d56ed8b15abac13a756fdc3927d8e5ae8932a68fddd3106356570fef695ec8393016b6ed3b21bd43fcd22df9d961967e81ff61f4af50131e02a43e20d00a75e6a1d8fb51bfcc5d93d43f4faa7f91143fea6f6e59688fb48e1040fcc9410144402e338a9dc8eafe51d1f3ef1988b15e1fb3febf371ab32ee9d738af34c02058cc702214b96e5978085e68caeb834d00f46dda025d3d1a24eff3550d07ea961876192e712c18d6455c0b86959060cdc3310e3861eba6b0743aba748656b1c44a998aa26a1900601dee75a31ab09daa058986e3f808ce5480f5759868300c736ef9ae181fa95f360216cbeb1d7db77b8e6d9eafa904af742a287785752cc823dd75d96bcc52a20d1f02b8b970982eeb08722579abe0c8e15a5bb0b3002ce29562226188ac42c7c562556baca3e6db1dcd4567055847af9610d73b491b6ea1d678644de24c183c09b871353c0c72fed771893f52a92e67935b3c170eb7036e10bc31a6ce08108a7e5ff3314b347cb68ae950586cd013bb667c62f1d5685d6357cc86c28d20b94addea1c5be7404496bd54e566c032b3dd36efceaea8785794bdced54e84c6777a5253eb688ea8e65155e27e72b993e30bd1e99719a4323b192d2a1cf3d3eaaf692a3c8dc7ac30d423815a4348d66cd4d85315e1c54cacb82bc6f4c609fa90bc71aa12377805188894fec7d6b3281204fc31a53308835dfa225d5cef68de3e55dfc83a8e70c9ebdb2b192e67321837a281c1858b5b61bcc334053b0d49c49f80a76138a776b9015ad52f3371871918d430d293badc481fdee99a5d6ecb3044a20a0cf99770ef507efd28128483ef8ccb35faf624f07cc21783c718a9e2198c19aef0e5f33759da411f450b4ac0d0b43be3670f5b72f18dfc61ef82119f8235c6e9c6612f24bb2e7f5790bd644ccc3a2e66e5cfc44e3530fe21e37535488f6e4ff47e532d8cda65e9196156c81d07d48407b354a475371e30ff826b75cf92ea00b09e27290dc164bf425bd2faca9ab48e1740bcac33fef5c4d6fc7f6b7bfe7706b2ffea9875297d95439ade9e254f45c0f20324847ba6626743ed225a055b373830176051d0f434473cc8c5d26fed9ec7c2d63862427052deec98d9ef812744e3068ea8b727379d434fd5e94b2c2a6089e3bfb5e2bf039c70c89483fed4f808acb8f029801ab8f2cef04c9dbfc9c75e3afd129bfc087af0fbe2062751f58d985aa45e885ac6767b954d47362cb36b16e9655361996b47253c6b5ba4034cc09584f994c82a0ba0f256d542d4b1b98d62ea3a2360c528aee257f25699b8460ce66e345f4f04c24c5d301d725c863b1cec2c008bf119995157bb1fd3f150d6f558d6fe30a1f9beb4eaae24db12e012ba8c9a5871750e89ed2e99fd9e644d62cd7c44a206e96fc5255eb346ba75b676c04744f1cd086a6e6a27c2486e4b9a0855343bc1a2450087afe984886591cc3a513d77c710008fb4ba0da522517d51f21e6f3360a5dc20a1aded610299c5d5f5489ebf25c85ae7a6cd45278e87a44e452a0a5cc03257d9af13753da251b14c453cdea4c594fcc80bff237c7375b927f5b0c26dfe30c56b3bfa5c934bbc4e052c65891b0059f1ae10a7fb90fe4e188c555d61c99d8124d8656db035a381d236b7d8165740b7f370d71daa4b4cb5a26d9ebcd505e7f523a5b46954dc0ac80260dd3acf6179be9bd6ed1663aa37ac5fa4a3fe5780561dae62e2714a9b8f3a31d81dd75da727008ba3fc12178bc0770636c2e51a442d023fbdd703be6d4a975b52a7abb6dd056be3a93bddf1db536722629a50921cb54f2b2fe51b49cd4dd82a646fb04f370e7b510976006d795bc2cc39c9c930ab724cb4551a716e8c05f6e714ef85baa8b3c0ac94290e05a7ac01eb43dadf94de95d73dd322c67a96a49d89fcc2d4af1091968224adbffad296b4128f435aba9fe0bfdadae5235bc7bfeabaff578691b1fe4b63d6a5f415cee19638118e7348018660b4e7582e5a286eb8c6ae1a0aa73bbd4d021615daec9b29931d67e01a3d4c336146ddc85d31413f68c30d8b59faa225601d05e04ca6190b21b7f858dd80f49675ee08abb74524a591188762220ebfd12db2d42341314da840a972ceba55b0e1b9a6693f2ef350b6b3b5a24d7ef7bd3869c32d396c3ddb9c933b5d618dcf1e34f356f65cb4557036c34472d9b0782fd2520c21f23e5fcd6848fa12d396dea880657c718d9ddaeb41141f382b5b9c0034e1d3d5c301560976af695680855edce4f65372bfcc257b2f125b1e48f3b6f818d1744b0c6a0c0b4b3fe8fb3c321a5c040428206f5ce2357c70ee16bfe54142ebc3f8eafd98826d7ee61a3b652a2269220cfe0b3702702d77835bbcc5afbb1b5330134d9e50d5e204f71ded0dc6fc0a4da573005e59039e9a61ff38530e326137629b5dd297e8aa720ffcd1d2941b18e90ab60564dd1cee4c30f24459b42338bc1ef654e2b0af32aeb2df4f54e7286df7e0c47d114de8a3227754b9a719c836794d9b5c1853d49ca4b23d31fc894d05ac623778a56c0b651c766cf3dbb790a01d0c46d8f3d4cfd15200b05e5b91f875dc7547c2b80d76e97488bcd9058ff7e42e57b8d7a6860dd1b1accf698ebf53f4f9c8da3d92bbbd8b26c21a9619ba1e4fb2490358c632f3045477324b1f4780c5647e447e3aec63b1ca1df6b5178c06911e4af36c39e847021c3ac97c14d583c549fe868f1b4dde13b73e4ae87c2c6b7d14dff0505a72577c169eb97348b0232d775d98317d42cceae8e13ec90d3e6e4fe8d7b19729def3f5d1352bf1a78b595ff1dfb1dbeb102ca2c2a9f6a9161b6056fe96c4dc169a425a87b8b58e1a408457920eb0e423d995d4bfeafe373d0016b6ffda987549b7cc46b6729071d29639e206733d513c11d3c9ec3756e6974f85e4b4de66b8be4d05202a9f65ae71f337f8859b42f86ff61a4f6f7cdd0c58c2ea1b89ed2e782ac4fa9930b3e3289ee1b9ba6853a85b30a28f28e4e33ba5be3deb31c34fd5834f55ad0f12ca77c4fa35ee212497b6c424272949ed4d601a5c2f5d351f99bfcaa6a258fe2aafa62d7cec1e6a763b764fd1fd509eb3c6cf58e5a4cc441b9e9953a4617185fdfde00369dfdd98b24dde91388f00b83b44d8ab6f3f267330d09cfe5f7d035602cc5bf2821f00f26ce3b3859bfc862d01a02740adaec7d8dd19c8c016e0d4b5de26c0fa9e7c317d9129a5f4841656df4c9ba7dbc1387b547778f543d5dd989ec78ae1676ab868831b7145c5deb0800160c15f8bb7ad752e265f6808894bd458b7f3ae24c7046789e3a1a4ec020e3915cd44e7e4b86767b8264a7f8013c66aaee1239bee49a915a0834f9575fbb1399b7cf853ee12ad8c880775ed0801cd3b762456cb526cf54d459313d6c41757dfc02938e9cb4ce0b6f41556ea7c74ca6c947e8585494e5966062cfc4a09e1a6b5eac05db9796c7d93d789c3be52e584e5f7be39de57ee49be9ebfc2808d10728ae0cec10fa4e34f940d4425ac35606df28ad6d838819d54e02c9f0e299d0c4eee0c3c4cbbee5cdc75afb4a4413fd8b1247799a1399e687f94dbef15c7ff3c9a5072c7eeb4c60d449c704d60c7a56841ae74e0d48c55d6e970ded12c7d0c0116cde56d7e05c581dae498d1ef9133eca3ed80317b4335e42f2aa5e4fc955ccb32a5d0353e90b63f4e008a821f65f660a55e81c3eeccd1ad461f8c9781a7aaca7dc969c561cf27bbced6b2978524631d0bb3f2a763271be87f215c592627d6d93216c6acd9465af5eaa961567889935dbafa98f977e5f795b875348959df6afe96ec097d2cd2b209205a9016bc62fcd349cd21e7b75dffa607fbef805926c03ad492a6a3f896b9bdc837d0eaac1bf0ce988f16c57d4bf530c1ffe277014bb53f90d90a3e8d3ed7743d94eb06cc9c41a20fc543ce6bde11176ef011e11180c5727b67f229a599da8b44d44defbeb4714ba83fd40317df65eecd02b0a5ed72cf9a09d72fb3a9c7946d0a476d6acd082cd0b63d4830bcd060aec26a49c67ed2abacba255ac62b7d758465ce4560151c54e4b52bd652be92d1ca7fa47bbf93bec8b282b3ac75eee85355ff7e6ccb1abb72260c301487b400446c494e65022c89fc7b12ecb0a5ced3d52341aa91c0e499a8a364dd1d1e842ddf110d3f55d93aa80a8bbd1160ad71ca76c5b65c05970e0005056bd63965ab6c12e652a622123abd943d3ec9e361cdfb52ea0901ddeeb48560a4eb7e2cb7fd44c3734d6a9f77ee90173c39800548d29d6868d8b4c6cf1e0e56b57ba81bdc58a24f61195375fb5165c0e23b3c0f72c8590016f14ad12a1337de26238c28c57e3e929a5d7716762c5063f95200abcc837c3d9748dfa1e624016655a142072e15b014c56e48cd64958514ec467cf2874d99ecfd1ec9f58e491d016f80bbee15348603a6b0038cab33877dd56dee45557ec0eb32de37c022f8c85ed3b334fd52dbb8c683f198b6403b19d59dd85da71b8b30fa68f36e8a6a6fc1ce475cefa8e8f2aa5fe576ecc52a3b3c91bcf0363721c381e6fb2e23fc0346c48702ee17f8bd55f7cc3db987b7e3bb6605da04144f4f6ef5cb58618c59ce63a87bd513256edb5ab1f3ba41d80bccae33faedb6f8590b22fdc44930ab624cb455126ec3583e67c7587f41ea59de334db4aab584d7c7accc45915dc0e2b5f8505b4763ccf229fcf233534f68b0cf49d89211b0659fb4feea95a95ac63f51ec72d2cf5d0bdef52dff24acfe1b46fb3561bf9364c8ed10934df8a42c85dbb554d296c375ab9139dbac3b0f8495cfe31bff2f75c7bfa6fe67c4ac4b694beca3987a2c949ad52baabba51d0dc95fe7976c8b72abfd9395d725619f908095b6cc06eb7a68ad9865ca6249045e013c6a5ae7494cf5c664a667f17468f1222d7b8545e25dda3c13e54539bd8d9b49e3de29a825cbaea86d83dbb8cc289b8f4a3f04109758cac140799faf6220406308d32db3acbc74e92beca60d241040d69a51dbe29255fd46b5a45554d50f0b6dc534aaeacf9aa7bd32c60aa66877cb192420602112f00276cfd923c154c062723e86dfa85b6059bdb1e93e020e981c814b80cf60a52494369184952dc629298065fbd7a3c7550fb7fc751ed98adbf0544566f6a084e805118ff1190059de06df2e57013ae344a8b2d9f00cc0ac6d51cf63f9b45945c2ced302d6fa201e0eee7b106fd4247ba284cf854708568e1240ffcaeb9a3667a07314fc5d44080b5f6ff491b17d50cb98d1fd9932149ebe8cc2beb21e1f79af2ffcfb208f9dc204587129378ceeba65261958d413a573295d6ea986e0a364dd9d561cf6a0b209d2a880058c08afe46cf23a1fc9b01c14ec73e0a2c1a869596737ae32b389b7f0c23ee679bf47732000eb8e1b711e8eaac72bb6ce415c73536872fd7292be496a0f78a3dc75764db740c37394b8c641d6ecaa6e73cb1cb8ddb36696ebec9c1394ee89e07132bc48b47ac6469f691aeec7e56cf14f007627b334136025e81df02be57b22722c8c3fd7e0d611f057f2b6620d94c26dbee1998dc0db8b4449d89f925afce1005ca600afe03138703f0e4644d7b610cd966becdcd30dcb9e57769d95e56c083266c527c3ac8e6eeed3ac208b64ac33662c02b37ca69be9af8f5937147fb2a2ab6fe3dfc395863594d6d18059fc760fdc101a8c4a5a87b8b5be7c650031f167f03ab6af357fed92ff075aeb55f9848f6adaff1c4c3b1f0cbcd5fe2fa9ff8930eb52ea12fb88963c47570e072907832ad605434fd5d396237cfa6552554b184cd608b008269bb42c4782e510a6785823f15e0ac63cacbb0dab1c799fbf7c2000002e65369ae4b93b9bc2ce87722416ff4cd37c57ca247a9e1457f819d16a4704eb68c332bd7a2e029655d4da798156b0214c47014db65d3bc43f97bd80caf5c95a334c5af025c74d55fd3dbb222bb524dc9c27adc72d792ce8282e40d89ec2c61a290d4e042021c435a4e69c3b4717e45c656bbe4e48be9a5ee4a4d15dd58e066b2723742b1cd2069fa29914264a381ee8047e6c66bf27ac7cf27e3f5b8c53d65000eb08d87724b301b5f2552656eb800b05dc4925adde6509001686b95e1357a115ddc45570f54a2783001381a45b36797d84f219e9389c2444d57186f5c843639235ceb32edb12b4119a645612eaa93da8779bb0ea4672a72b9cb37c3a046e13dc44f86258f0acaa29d4586035147e44779da2d40458c9d749a79d6634d85207ff46ca74e4c1f976af8ac01e2d0e7b44cbd9e017ef8852936ea944dfd26ffdce0858ebdc0e1b4d60804e00d3defb71b91bbcaabd98f1fb284fae6b56101bf999a2c8cd846e1cd40a93f458575ca707bda76d0b3808ec2eca6367d7f43391a5b33483e9899aa2f872e0b783a13fbd4cc232c230bac71e5b343e1a79a62a257c7be7e0ae4b1ba500d6262f7f93d773cf6238343e90665b0216d240d9e2d5efa2526b34413d5552b782fa14476d8b3f1c30f05886f73688ab4c22ba48946421b272362c77ddba14e37c3c76a79c6f8705ea50c4507202ccba3329592b8bb062acbf9c3163813d4ff3996a6154ae9f1cb344ad0116c141fadf65af88a9820e2466a5ce32fe24f939d8a7313f3f2e691d184054ff0c5efc46f35650f5970906eff3e12a5bcbdca4d7fd83b2f73f32df7cccba94bac83abae916d99df7e2c69f2021ec699bd81f588af23a0056ea221b6c9cd028c7ce2a3ce0b1741e1ef3adeb9ca655262c87d98b4c2ac665ad703b6d5c5f5d7342a6cbdb5ceff73a36902304a3152cd5003a99039e483bbecd0de520bfd4763d48285a171cd12d872d6326dc366d1f01c48e0857f5b7acb230579155fdaa56672c1090d0ed7d10d251c10e8b0dc6d53b64f47920b1e9b988f255e4a2138a2f6765baf4ee49e043e1fc40092860dae892bac8c46f1c2132fde1a7c1d503a6448da2477d94ed6eba25962dc6294d12e40058e6d70fccae635349ee10b342aeb29970dcb6089591ae73cca4f540da3048e3d13fc387d5afd9e7aaec41afd46e37b88095b31158591197d0cf2065c518aaa022b57778e52adbae265962870719b386fb0237a872062508c3dbd122742f01b6f5f89a648dd3db1ec8469fabc75f240e3c5536de93e66cd84fa1539498018bfa7aea3c5dd1ef17dbe216d3e2aa1a0eb20ac2bebe1dab60025bc1a6a0fb919cbad5e95910c148014604801ba108d923e5fa278aa187f1680cee8a9bb6f8d4f16b78a4ca6eb370c8e99699ead1e0d80a270621219bd816f046b9ebec5ad90a1389b050fc97e82703a03f90c2f081e7a1ff1ed21485b9089e5b244147687262153accebf018f7a0c4bef3c8ae4b1b0d3716abea1de07fab89d1646c79f41869f1f73e5102b4c55b0256ce06b7699585454cac1cc9993a1704589bbc262259104d5c6b6c180b3064aa66c3616f566c08281cf5cd5e8c7e9d38ec8564d71d62d9eb7cfd8c583f7112ccea6b67bfd4fbdb3096f7993216c22c9dcf441bb362437602cc2ade914796b95c11bfff11fdef3e88fc15f0965ddd2c00ac8afbcacbb2bffb93e8e77f121306a42521480bc3967dd27a6500f1af3c8bfe281df5bc28b4a25ada4a44db3f27bfe1deac4b290baca35bd51a174b62e22d144c04b0f9a306890a4b7c847157521659601df7a4546755c7361fe605d84be17517164bd84e954f85e4ce84637a4b5b6495adf3fa8cde23a5559cae92704568d4570132105a8dfa66f47bc03a2d32052e5b3784f04698403bb78539cb6c0c79d666cf33a71c0c50b538e94cb5664887825063aaa554f5c3eb54b524d264bdbe4761b8f82e6f9203d2fb3cb2672275c4eb31d2ef46efca604a85cb523e1d02f865cc75edf7c76facbf1b87974fb8d430a5562fd173e622d3169976614e61022c3115b02c2d6d81993a4dc3a65bb44369afb43ca2e011ae12609315691537fa0160e1c38a16a2cd5c35025ce589b98a9445c819f6c5c21c6483172b41456ae3f082f968a4ee63a549361198d2ed412dbfc8ec47fc8a44655799559b7c51c427e4e2d4b8212183297031515adb263f6bd58ebb4e6e02acd8e4eb4749b03b8b38ec51ca268ab6f823c400b4daeaa4a7380260c10183442326800c3c0c8121002600d3f1c686dad280b82cdae26d9115c091ce3c04586f86bbceae65afb28a8846462846bcce815f4ab882123bb67858010e1e33a08de655a40387c71a3c9c564ac2a48c70ce31c1ee6496366202ac74879c15248f075f86dab9b9ff6102501afc955aa29bbf4487e90846071c49aabb613d42adfc5a62b31fbca562838be7581808a887b7c9e30e3398a6cd39692cf875e2b0679560f77ab896b1204c478c756ccc2a1f13ed15869c3f63fd85108237b49f10b3b037ab7033fe7079d2ac15c1d7097ff789f0e79f00665148eb646eadebbabf17f63b5f3857514d331b58fd32e14dcecdba94bcc03adc48ba4a5d4061b22622428407364c64386f09a633e4af7eaec9cbf314c65e31d2d8069feaac32eea5e6c2f1ba8bb65363bef9c3de19237e70b06e81598985bc89cd59df5d42c2f4b182da4e4ec6fe0a661975de4d7d9fa7b2c54948a9611654dd6858416e271ccbab9c8b000a39dc1ba75f6217acf1aab6c59963c6de5e004f14c52fdf024a553facdc8a7e7f71a333354814d3e49a3c4bb74f729696bcc0848391ae668757d21c9d64bb82ba00f85df04be157c3740f9f85dbed493b3c4938d32f738b368439abbcf457619c19b064dfdb3d20d9104d777bc7e8e50afba4698469789138fe5cd3f3585eb51393b1c2b138fe009f1c6e5b9435e0891b441a496b1e91963edf89042cfd12337fd42f7bc09aab48839b889415b1883ff2170a8199ac341571cbf0fc119ff445a6662428bed151dee448b6ac49ee724deb768357a4f5b7e0bac5d43a24767b664c85662f44eb9759e92bec78eed749b26b6c4fa42251b32a22d10a3e0e3e143eba783ad4d65d6706aca4eba716693d661cf62856bf49491ca48c943b65be8a120fe0b096bbb128ff664f025c85f636abe63037dc351898a841d36385e1a9b121e6d033d541ce3c4d6bc09be0b1b30b76590bd199033e1aa2fd396a0bb160ac7580df7ea7d72fbdd8092ca7d103abc1a16e9253a1fa5e8fcc7ecf9c2124260ce00e8f19eca0e0a9434fe054d011a9ee357d72a9c366c04a190bca1cf0c492cb18b3e07ed56e0b326d002b6b16f9b0619894113da6b02a2f0ed9cb785f0160c15bf2565998abb0c75ddfe791d8ee12df780b4f98f21eefd3f1cf9d6f82dd2ba92e6b95af9f145b619699b10ec6ac9c99d8f106fa5fec33d6190216b6a7e9bee31dacf2cd1361d6fd57cb93662cf1be8afbdb4f043f47984590d62727222df7fc0fce2dd7eab8967f97dbf3effa3713b32e652c7193e7594731dd1c1d4675e54c185e4d616003cdc044807dec804483f7a5a9da1b0058f8f8fc454b67151ef3e37e304100b2c01c97d4e9aa6871923639a52c300b08c94d24614a4c19c06448c2748f687df808b53e8405a0b8dc0f661938bf763a5a391c24edbc2d0310e9f5c91b0d6e5c419f05efc5b13cf8883443e8417eb8ccd9e8b2792485852bce1ad7f9566b7f5ccd4d05b16cc7d41155fd55a86a2f659199b2c8d2ced03413e1eab130e024eca8a39a5d92cb5ae116ae0bf4cb1cdb3fd50d33b0770a7e2c2c0c30c3e21669920667e28057a31bd5e45566c0b2ebae53b707e203b8b7dfc7821456093aadf7133256b807011cfc84bc152ee98a837b97d265242d589ce0f6c5f1bf00c0228f4f99a5297a6e536b23cc6a115537e0bdb86e14981baf281903b7494d45205d00298039b820f24e0fcc76c973f4f8aedb96b950661355df40196ccb6cf8096df713c8f255f8a552c617a9c3113d7763305aa15e229341f09000fcd5ae707a1f2b6af762b356b9180d65c5ee24601dd5b1f77a71d8133059e632cbec3bdc46ddabfaef195dbfb9b91ec088704cc506df2aff06c62f529a45815acfd2a950bc47eadb8f19b81787b7499996a2270a93e6aaa63df062dd75071960b49c103447520b2d4eb89e14ee2fd064cfae3827d7bda18fd6d04b8ba37d9e5aef4814287800cac0260abba2e13994d4de8c23c484e16153b73927f77b1d11ec5ed3639762022c69ba83663c445c73031e7b184d4045b8e5512e7192cc7aff8afae09c6c37a6cbdb00589aa100d8aea49944748108615e450da417a3f9811f2436f965127d6373278332fa3d923a5c61f8882c07a0a2dff775e2b017955d7724aa8339644e986e909c00b3ea06f88fb2832e84b1fe42a8c0f70ff24ed8d3f05598a59be77c11fbb71ff3dffa580066222de161a4450d207e9ef0f3d09acb174e51875bc606adf7df33de4041874b2803e345222c4859cbdca439e62196321901fb21d8edc11c8dfc16d3a130b0816970a7171c2452482e030025cdb3c052e699655467d5887716e1cf807904a6330945615233140c53063af9986fc924910b45f8c0ad5a1f6665b860c022992f659e558fcbfa886c7758e6e124a95d6e685aa977b40044c21b97344bd7747ae09d2e124d3045136a97d9fa8100458b9bacca99a8eaff9dbc2f80da752ebecbfb58b154ecf0bbb321187862d4db9c789158b02eb03aa66d868faeff33152c06f02be042e1224149a30b3ac006e0ec1a896b96806507f5d46d01f8803b65beb674858534879e28091634425bfa22ebce12ab769ddbb18bc32e6aa125df00832a1169b9698baf473bfc964bffccba36629ea1180c9476dd8e6b738f697625df082b0afc585827e071823b0e2b44d9221d7eb82d39298602a99c071756351212dbeac1b7690b9832c7285ae3f5de8b1b7b6c510a3ab41d9f3a1451b4cca6a21576aaa5f6fa8e3f550e3e90b6ef8a32088c23012b26e9fa2bb3eb2eca32e7a3a9bd80b0eb17ef4952b43764251ec06df92b2c6afe0dfcea9c21af34c2a10878a1edf4685c660088c02868271a9077ee0aad302e6d9621915f8dd15c4b5f629f80024fd15d7710d5a5cca23252b1892160e0a352124340eb06979ae13efe40199b8f5a564b9a5de4bd3e24a30b6c1eb684aedb4701bbd777d7a50c99004b7733759ec63709d6c0a0c81ef4ca9d8d8063eaf663c99f30b8119b537c3bc5a4a2276db80513a9d1dd3ee6975ee18c38b8c9cf0870ab1ccd4890b8dec9ead7096b1cd216192708c29e6176dd69835dc6323f7d427c02ccca9f8a59a888bc28c6fa0bd1d3b0612ef62c302b6b59f8bdfc9d8f796f21e31306a445716b1d1440fc5cfa16bbe3e685f3d311fd586fa06ed6259487fe5c0d6bcce86379e5a6e810c0520d07c3fc05e35fd7835af5158ca05c1c98e5915b6b360cb522598a16857f8c00cbf416dd7424e9ac8265189634a18d3631bff24642b78fb0fa069c3cb9d31526176038bc33a336926b5be6b03cdec580854e3e6f34dd1ca398583233fb3d356d2ed41c29ed74b495134edae90d53aab6c305559c4da1e63c48fcf36e0cacc7d44c2fb0a4698676862eebf38febb80d74059f78443f1fb6dc2556f31612bd9ca014540f3d5159855fabfaa2715650ff7e2cac91702561c6442eb476cfe3f21c98bcd20858a284efed1ea06a458045bff5bb9e7531ee8562aed4c389c0f7e38065cb370508dd66a2732650831db80b388a875b71e78f8759dd415ed10f2cee273427a4288d00ebd0c8acb4c3cb029e9a9d60ab9d3f11983d47039e032897b679f18a7f302f09853f62d44b5b64d7edc5753c908155efc6e897b9c97308dd625bdc4535e8a6c7b6ba172dd2c976d128afebb19c0c9c356c485009c574188956d8d2fbfdba768448af7c89563217090027bb63022cedf563554b9cc40ead903804ec5226c332fa3ca8515a5c9f018345117b0518118e495f66154d5ae4df48293f5cd1ec8c7a34cd2287347018fcfcaa15e639b8eb4ee6b13bc8d29658569c2d6f76ae5ba4f5de45fd07c729ed049a16b8bcf2eb49d3914069ba6556de02236b3c3ca1c9d9ea61560e059c4f765df2a019b0e07fe33bcde342dee5a95f63e76df2a75e6a071fc4c3d0ebd816c0e88369aa6c866ee50986cdaab6dd851741b4486af4b5a2baa4a970d55080bcdf17b0523518a05b629e2c0e7b5109762724b6359e7e468418ebf898d5d1c97999ee67cd58e702587f213aed4c37d3cb5162d6296356c96e826bfa671f71df4266415a6f1d1440fc34f62d46ebf583804631e52b1cba15ddf94d44db17a12d9f05377f12d1fe25a7ef5aeca8eb453156d993d8e3c993febf678e5997507ddf0369ffbd589c8a5eb2c2d1ce32ad2c6d9e9db3c24f1909256331f10db7601f9cd2e50658833d4fb06bcceff6a639fc46107385fade4443a4b4d5cd6a16b3d832f6f9abc6cc6bb64929de1300ee8ec11fa51acc85578e879209cb5480c3963c15a9ec741758ceb3924617ed2cc3ea4831d1fa465c73135659f8ceb02ce18a33f8f9782ece2ff4c29fa29da2dba1cc792b6391664157b351c6be8ac68e87664dceac159ec591557ec6ede90369eb3aa772260c78145853351a762c9ec326aff3357ab0d4d7eca6d32909c0928bbee9da3617eb19bb4113c57aad1b1cf81a152b6ccd44647ca3a3ced45c88ec418ba8e589a2718d9f3716963b1a5a324d538d8430bcde25d344b8b4cf0ea7c0e459466c9b87b0e6a6a8ce51d2e80c3bf29e7de9e40bed9d4d2176c869c722a36ffd961ef00746e07bf4c0f7c4ea1ff0eb15db122b975bd54e0cc96d005bfa9908dc921cbe2dd92e1aee2c3ce180b9830f15f8c8a439ba6a3444d1ef9f3f1e523987d2fe002fe05da855d1a057ca0c2d810258af8ecc1e59e584b4532133f94080b8e6869cd893640d98074bc56428dbf31d60447c986e365adbe946e6df504dd5e26c74488ffbe36d52fe42f46160b7842a242ed26f7700d52928ad1160fb9437ea0fa30f40131e6c84590f8d35aab08d61d33eca5ae3f53f518e3f37d5e5bc4c6add8b55f4fac4b57b68464312c7c3d2574ecf5777a8bb2e69c81c22c43d27a49d9e008b4461320b5ea95a65e366cfd57368878347dfd0830419c50d0cc649fc9aee6d4cac4480750671d873cfae3b1ad8bd0acef48b02a0ab136056d590f071568099b1ce3ee1ddca1e65faf70c0b4ab615a78b59150fd411150e08b0386fbd92b4fe247e2baaf107e5941fd5a4631eac9eab414d1fbb55fcfdb5829f5ecdbf64d79ccb7e1dd5f17582c1cbeaede760f5ffa03cb60afc5962d625a36ec2164a458745b46199913cc34c99a1e7ccd1ca9698f51bdc6ea23320f047e3aa75ae129f480c57343b0112e9ba5cf9e1a8a2db0ab0b0a90c91f2812069974f5c87574cab87a4d915fe2bedf2568f47e203e07fad4eab261ce0b047cf3684b03cdf31abed99ce5fb02a68dc93966f497297f949b32ccd144d31142ceb0f940d04aa0d51b6df014cdc649c9be2ea1df47d1eb0b4c00e1e166398bc06ef4b8776a47c3fa3b675f622cae3197daa1e7baee97da4a8dd8dd12db00f0fa11a03a963483c0216ecdac528946c4bf4ae369874cf2bb725d48313543f8edd43ce338000580f6ae6230b467d64ed6e87821deb20b0038bcb728a4dbf95381c6197c0942d08b0324b5ca8f57ab8350ab5642f6f8e16d3821c697253936c632bee3554f1476dc53df122114ecbf0b400aca3974d5075db275e6a3357b8f0a27634923c1b8245e50ff8e0ce07327337c0e76ac056f81a75bb12b303afd52595083463e172f839a8268b287defdb8fa959e659a15ef1120357a4c23587274d4e64bf25f4fa26dc7133d601687f3c3cbbee35ec78d975d83296d885abbc9a2d51e7bdf892199a394a5b8ba2b4f0db7306bdd4faab485ae98ebb19e91659ca916049930bb5b19d80186232a247136c93602c64f77bda25b99c154ee922bdd01008e3914f28dc264d479f900b4feaae7ba56927c2d5a3c1aa91e0b4f120dc2f1cc6b511b3b61166a1be5b4f55a2b04f60505b61fae40b4ddf23997e8573deeeba658e44f6bd40f075d260b8d921b768941ace5c60c4d63b2075b7119fd22994cf80271334153f5135adf36b9738eddbe2d40506b5558ebac1f72ce2b0179560770a60b7c24d9f32b9b28e835977c6c5bb052167da48e795b6591a56b71077ea989534c1f83ee1dd3fb2df0243a465822dab006250c565f9a42f36f1b07360e3470ec5bf3888a8ec1a10984fdd7bdcfe1be479cec1b40b21ddff5b7f92663b678359975ad6d9b86c1bc630acafa81f8b2110a5c5108de8716ca8770ff9db471ecb35ed9e76bd505cdd15badf1f48004a9c6124ce308f659a29bab0d6d19ade9a5c34e3119a093a75c545e79f65662c73a913a5e17962cb7e7cfeaa20c91e579126edf4264f0eab4bf620a1fc899af3b0ca97b93cbf0fc84f69bf974056f56325f7a60d5ecadc612747eeba69bab4fe968ed255da0a4aeaf6e2b414721288be4956fcd831c1ed5c1074acf3eb96a20b0c81dac9a8a390dc512c798e59b02668de8fef7820abdf8b4be94101507da50bac4056257ba817b2a96a2f75968685bbf844e270f680271c5331138a5a71af73a86eb9c1272a3b8075347f5bc91a1f553010923ff852b73f90c1eb8923d680858fefb81b83758cfaeec6c003d9b34b88fd6c0b534c097642e23bc737dc82652977c80b7e14aec982af5dda1da4e90bb34e929b67668f07c0c1d488a1acdf3fa1c80458893f9e20507b543b4e825dfa1cad70261c21bbc92ddabe23b6cd1f12677ccbf0f83d01586e564897b6c0289b0daf5ba2b7ac73734743acdf587323bec4d916e9603f00171cf65d7025f5260d11b844e7efb13ba2a97bbce18985af6a8559b0836a9a62323ddfe9da8f435ba907f103f7912c168c6bfc2ce5ad724e0076676729fdbe781f88261362c3063fa47503e58c022ce22133fde72400382a60a91a7c4f3d087b6ed975670776e973021dc95847c6ac9ca99885f2888b65ac9729de639dacd22dc5e96256d9be22bcdce163f6fff823eb17b6a4f511ef2d8794f765133e60cc9eabee95bf391657d99a63c92fc35abf881d75c7e73c6b2b7e283e794fc3d3c6ac4ba8b1eb6c38e014ce46878536abdf8bd285dec458444ec3e86345cd222b6b38287d2000a6e98cd150d940203fdea217215f724533cd38c408fcb263ea89e8b8360f94435d7543dce89cd01f800fd64cd0ac016b8651b261dd4e9824ade6bbf1792b0280303b18374d8febf49634b98a6a5116bcbad73bdd10923e1d9d0c5f608291c0fc3251fa038b103268de931ad18a283d6b5c6154cf47144c85a2d31e0c58aab1083c2da6116d7f3063c1fc4e3256e986987a7c4cc2d59917c662b7fef598f20d71ca1ceb70863bbae5aef0071e5b740c9c789618cffa3256fa455a8f7b6ab75b4a972baadaeb70496c774162ad44e19eaacb13c84c68022c61156a4403bc02cf032c57b8dc0fcff213cfd5655b6238180316d3f5f7695a87c63156cf23d42abb6e2fb6705d00606497fcf4f38cc6158b6429a4d8f45c037fd28c44506fb748f903f6d535afb1e14ac2d308f702be0676c20173a4cf1bd3e364fde65011dc02f85d00d0b038e92b9d595eefa87b4229b511ecc27561f60a2266f57878428f6f5cbb27986230483bc3882f722701eb30467c95a3ceca5d776253f5f9ea7b911f11332ed6d24495194b6c458b7b6cbd93b2cd03be3c9bf927f2a201235a9d2469c0172e05dc41b88070cdad188b9b7e253edfc58aeaf4cb9c89e75ab8d1ed9b3ce0d482111f4ca2b25ebf7370d79d200eab5b62670cf8f189fef15698553317290aff1858a4119e9f55a651136b85493e48058b8c3724bb0e9bbac39ddc072275b7717faca0db4ef43f80f18264359eaae0480bc0aaf74d5f3ec015f77a71d8f3cfae3b65b05be401639d00b3861ae917cb58603b4521b58b52c458a78a5969339cab8af73f64fe026116222d02b6386f7d21f9b564c89d3fe0e05afe9bef732f5d05cb23ecf530eb87829fdcae7987dd7b2dc1e07da6a698f26bffe7d4d76a1d7d7a987509262018bd85a32813366bc0338d90294fed72cb1ff63632d662144c4698b1b0a79d5cb05bf6e3818180a88e0558762d7391dbf5503ef312b5dc99215a71652ff1f19fd4069aedf96bb725a8c105d1900e48c856567ee889eace9a30f10860973ac76ab9173f69029da12da928f863dd0cb36fcf8456846a7cfe88774a975bf396a8f381ac7453943cc7a49cc40870c088648813ae21662c9cc0d4b52d6cdf9524cfb2a8c0a7cd70b6fada13cf13eb77e3d2e6d9c66366cd7674b44a9b63d56e0a061f48a959ded8867713b83eef73532f1f94122703c8983526ab99dc1b37933a5ce1f1c0920aa815f726af7d5754bc2ec01f87016b70238efa41409340e48ddbc2547b80953b190a4c4f264b1931eb915cb7c0d60c5b0296e22a7e4be90c5219801b81135390fb6ddc1fb02365d69c2d17d36291ed2729fd91c7fad8b8f674879087b59be244532fb570378b37442988e18c4158f802ecb08fd9211f295a026c83b0e76cc07f7ca21400f9110dfe987171c101599981c44597384c1f732fc2781bc0123720e53018e6b04e63c6aa98a3f3ef5c23e8ea5b31f35365a95bca3c93fa16a067b46379aa82837189ab962871558d1d2880722aeeba135be64c44d17880d0948b29aabea16a71cae8f3c86a7313467e04970558a4602218cb4da107c9f414c12b193391af9f5d777aee3a96a2c55c00a86a75c23b1c3cfa70ce28dcfd3b9b2238187e14cde137fa34a7de65c90c31798e3dd3b4dd8fcf5fe79d6e1cf60ced7cca2696b8ba09916efcd898d5dccd7991ee77b18cf53ccd67a887538c19ebf430abe29e9256edf211eb971f327e81488b80adc8866b01f51f7f97fd93efb32f7d9f4358aed18ca4f57ab0e552feb7cc9e1fa4e3b7cfceb277d8ddff2bc3c858a78a59c3c7c4ac4ba8caafcf23b9cb55ddea9cd0784b524b748069bc95daed064881198b9a348a18cb94b55db313ab9eb20358f0e2112d699a59b4c469dd11e34c640bd478a1d5ceb0e018d5b81dc06ad814f6ee496033d7b78f2247b03c63cf3f7cbd9187a815176e0cdc7d3f21699679a02f6d9a51b0c44155fd4f14543dfaae5981c640bfb340452b575c9f983b1a3afe44099fd5b829d0da3ba7a8ce91cc8c8177a1148ac92094e1b4cc4c9e655ab15d56b98f5d3a84571af7a44936c7db981d2f5dd61cadde46e1029649f2536ada23a21d7ecb647dc4cdf9de3a54d4e8824f2b1f0aa1160dc06f07b884df5232155c321f99bdc0a4866231600defc4e36f8ed10aee4efb160fd6f2f2f968ebb8ed0c33addb1d081e8801e5a4cf1b31ab7913119b7ac81ab0f0bb7423fee9bdee6984e30d5841d386fc6df25667f36901796719d2cedba27aa7b8764ff9402035fb9e0a58c34fad7be54ebe486cbd97805c6ea7149c3daabdaa6c42d6e78f6f0116d2b44a79c671e7e93f6b5317d8568065056aa27af45826b6a3fa59602cb8e0852b5c56e01fb9fe1f364d21470edc0bb89ef00000d2e1b7d4edc5e11b0a1f84d5cf61032669723d5377ddeb58629f4fcea0574a97bb85734ef125cdd9e8e30116d18c878a6b6f6ada5c923b5de16a00bbc89b1c5161cd64c4c526d89196b9c2e9d897c6d6dd227f82b0ea3aa02dcc42782681dd5aed263f679587910e7e9494f639f92463355db8651d3ba8a1c53905678fefaebb18b05be2e82685ba71f17131ab6248f0302be01c9a151e6e1ba561d54bf1a78e59fa05de75d5471fd27f0198f5adecf75e15ef7e97f993efb208cbbe046626ad9c5323ad90e64fe3c63ccfc81226bc3bff351d18ebc231eb126c8e917a828d1a6442a3631a66ac8900989149c602a6c18c056b926e8ead9aa4f32597f1fc45bff53b95e8db3bada1b53bb1f5bb71251be28c052e22a4493a36f5248334cd24237b3aa2860841b66ff2709a172c1854daa8df95da07ac2946ed92b1af054c372d6becd6754eeb06a76dd3dc5fac6b4788bb0297adf2ecb21d9ca4789e863f1d40c42a1fa86c4d04c7e8c783013d71db416cf963217072f844b820f9d391b68025ed32a77901adc23c9e37e2933d1581629d36071736075aa0a1890b7103da81478af405ceb11c81a993c64a3a9c7b041787dabe1ace3cf94233f54c035b5e7c3195c361f1ddbe312dee31adee09bd7e9a693a496f2a4384b4c737aee336200baaf41c0dd34ed1307ee91638b0faf63d54f43d56d6eec671035065405e9e2742cf0752b898f0a164751eacdc59d311fa052e35682bacbd256b74a4e6a4c3ca9133cf806392c6a2b2325cf3f2bd62a33ea30256e2145dd26c5d8e0adf1cff1560a57095dff94036f13c719a484f69bb9f407737d74628bb43f091c9732cd4e5f789b9cb2fba2626cc1d7ca22a5c131c2f1a3b67b6532730b829649a144e792673fb7032166c4bba1f2ae04812b014bccba5c3f4baddd8924d71fa22079f27d6943d0954913fea933b1b053cc70af8b0b0d81b1e3f18dab078e35698c21a87644294e4ceba310a8f2b30aa01ac2782926ca44fced68e13878deff1811197d4e10a9b01658b8baeef36595e87c2a6ccaf688ebf83c3b453d1c0df7c4aca3ffac9f38c0bc9aeb376c22d309ad7d83019e659c670d16eadd335abdf3377263283e85191b5c205c64a5b640160b13dde9d7caa997a9938f65801f309cc7b301fc2f0af980dd72d30950d7ef1f9aed8d20d74782a72d7f844f5c31b510f7bfe71d8b42901c158c7c3acc271f17e6ed0b935d239c89ee97c7b07f9c55b8ad3c52cf807b7e9f627ec5fbb14fefedb8c9f2003c6c29665862d3ba4f51a0144ffc63fc68c799c91953d89ebfe373d66ac0bc4ac4b07858a70f83fadc7dd8ab1002f90dfe89e346b818bb1090356b2c258104775c3189eaa861fca8a57782463196d82ae1b424921b61db810e59824220dcf13e160e558b425605d4e9ca49512adc750e30ba2ad58e56c18d959ac66c1a22570e1bc05d89180a53384c1ef32e69951f3811ea1b05ac73d193e4c391e9dd01f24ebf1cf1f0fad5ea0e1162be5532128596dc0533d41b3e23695215a64d2f713d4dc4ce8f1534f5a1f43da9dee60abbeb3180ac9d6b3f55bc2630196bacb03955e0e13d2ea538432fe6214d2fbde2094f189eeb0ddcb4273d9918176acf36b6798753bb1562eb7de6509cbfd5da6db3bed2be887c0c7c12d406845e8be2623bd7e970954fa97d8b69f90b7cc034a8b35158d2634de82e510f52332846867e80004632647e6f4cba4e24a7fb1f22ac55dc700d4133718b58b04553795a3e1f0950a17982d1b3cb85cf0f0503d91ba1447f2972aba4230dba5cfb3cc977a47d4b32bc6ae50605012768b56f9a79509f73aa61e8c90d67a7073bee7e55fc57b1edb94e7cefd58dd221b0316dde9edae392175000247366e8b93e7996a4324568885873369221253172ff4e3f1fb8a9187327802612064f61b6f8a661c1d00efbab32e6cb82badda96e4af7075a7efb13bb018f664a634e9c848eb1d80dd3326c3a8f346db3807a89d3c38698e21eb0f88697605b3a38a725e097616364b2f32a0283c6e3291d2e36d3521f3d4a80b59d186b0df245f3cf64c93c0f91a7e5d718dffc0fd387817462b980c4b260261ea2e980807acc457a0bc2e082760a0373ed734ecc701a55dacbbeec2e2b033fcb431f171312bdf9ab12e00b0b0ad544694afc94e1db39267e8df65fcec8afe27df62cbf889056c651de0d6b222ade3c016a3e7aa64d4fde8261a7689eabce257ff8173d9afc1dc2a7fe359fd7b9fbaf7029b3ee10d38508f4c5e0eeffa373dd8c562d6618085194b473016599253bdcc2a586403a92827e8d87862045855cda1543735ee630feb16ea2fbbce2959407e2cf22dd2de0082de6c3c64db660f192e930114538e5a03169c2a65c057df871a8a650fa2947c30349be066c0445b31b21fb06e32d21aef10e1d114cdcef8a719c593e629e249fbb1a52b02abb7942cd061ee2b99447d78e08db8a78db4d7dfeec9654321f2a15035d569670fb00a07fcad3ace6228343ae7d65875abeca3c75bc104d50ea2ea1b8a66a7d42e63330da4f76d52a16c594371438decaa3970366e0d7f87d055ce22bb6b2f06f763a1720caa8eec8a4267937f87e893d094824fd77698755f6b96d82872713fae67579435cf548c45504390096d6e9a29ba66866195958f4a0b17c54883c38a23816b27a2815cb553b48209a4738bb3bf8dd9f726446b1de750002b18835ae64cf4e1d7bc659d5db9ca3e24087b6a7668829da23590740c17167b8f3f56c17080ed4acb3aa76a260c864cc522236bc15c120180c5f37e8f442b1cc8462bee06a76c899104b8668802cca27e842afe07b4d63e51c020ad9e8f002ec79e6cf940d085b8eb5edf24a66ea1312d48ebc40ab066089d94d40576de9a003025775590b97cd44661e760f2814018b630768c8cb527ce1c32d76d707457c4fcaf9bf662ad869ee1a15210f0a120f08fadeb6c788c49b44aeb46fa67e2f29bf8e7a7aa6fda96044dbdd4c205b9408fddc5501d06bb591e30d67131ab604cb49f1bf82630d6fd9c80fab938c458a787599c6e872bba9f224bff0936fba4757a01c45b25bf140dbb8a47dc5e69c22167a0a8eb457f7dc8d980b7a23a2e8b46d00981b1dafe29b5eb5ff5178b599760472bacbd0526aa778e69f38a69bf2d6a701154dd4456e300ff9677796b870293c7c2b586689581ae30d093a7d977d644651b92c21561d2140b0396427085a853538f3c920ddc8b83a58e6cbd8cfbd8e80da14a031d1b7c109fe8b2026b700e51516f469c4d6ecf2e0ad8c1bc3ff6540534a6b0042cf838f4e278745c878fb0ea26f084a4f6262ce4d206147502b650b53a539b01abc72349b0339b81063f107b0552bb8c812adc020c26a9a2465fa03a603baac1729e35ea97d46111318cef0bb4035847365d034aad30f79a352022c4ce39ec992b9c8938d60963dacd7ad066c956a23b2cea59361bae8cb74898b3052cf5340a9e5abd9838c5b8438453e1ee605929d460f8896292d28d24518ab84d9efa43cea05762bb4b4cad45479db299681cb980cb5b3d17993c458bef356617499adc8096009b4ad6048005a870e18586ea24eb7a203f88f9e46daec0d946e13193280660dc38b1c5373c529901ab3318bf2569027517b020f2713fc071ea95cfb117fcb593c3f78a0cb9d731667c9951f3362fd7c37669ecba2f4b9be7642ff3eb77a5cdfbf1a59b62963f1219691fe7a0ce3ff7a530888038d18a4b687d75ed8ae132a6ceb3a95497ae7721ea2ad4703080263c84f0cca06d555fc0857bef0ea2bac3c12e719a16d7ee99d0e3874486e72d00ab7994891e89171ac3730b40197eaaaeda89493b9acadd99baeb127a9034430a95b17645b2226796f473a1eceb3b1dfeed4401a9edd06b1d67a320b8fc4a0921ea06db3f98d68c4eaf926bf8e7b74f72e12d4843ee991accf014c9c8c130197bacc85de55f80bbee4da0ba592e662cfb9835611fb31063e5045e6c3216b6e7693e5dc30223639d066605d77d7939eda76057d27e6a9fb4f4079056d601a47584006240e3c7c261d7c32dbaf3db1b777e7e44af9863e9afb803b7e05d552fe408b0b05d10665d928fd3a8a638d4b2e6793d0f14d3d438e09f938adbc2a26fa1362995ed21fdfbb1b0c2c1ccdeb4c2ac5d8caa9c0d83c91dd63058d252bbdd5b77633befcb2a3725696361b8d84750759d2ca88623810000c85ad6d132d97737b66a8d073c271fb1062c05c179e84fa3d1b19d3ec23a6b012db355df20a9ce8ab1623bcc1e7880b3242c9e34e6a72b7664b8fe1ea88e3c5235c9c85de2a7ccb09413b4848190d8f6db9216f798168ff8de40e538cd0ebd1dd9040957a4448d1840214049722722c2f45e77a0a21cc233973e1e7c2cc0521aa2498505e356beee269c5cd7ebae1f0d9037fb51af249a94c7a2f11bb396782881e985318169e279e2c85375ef4345c36e5cee323fc780a2b170776c038ea85091f01861271627fa53e558a4b42700ae4f4c93aba6c333bddfaf7a01b570a95b42ae23b8cbe8228f0601b7c947c2152311c672871966fb8e08ced97f2f164e3bfc3001ce4cf256d622d7d65da71c8bc2e929c944df68dcd5079759a170e12379cf9298fca5f28e60f28db2816071bda3b80671392085acc9111e420ce5b0bcc1fa9464083b56e4f42c4c5ae689dd57b82d37d92c124bad22550bcb54fde61126cde1b772e137b0b7010e2640368294514dedb90db775f499a67c534c165b68136fe233c3b085eb0688a921d44415c3a1e7ecae3b5d038e2cdf94b4de8dab68082928bacdf37e0fae644d5fc4d0c378db821278c00032faef4bf50bec8b75d7c9fa03f09885e719c6080c969c459624f906c3f9ede66596d109bdcea60e3d12b312985fc26fcc6af680c16e1efe553734cd1ec8ebefff216c7ae12e1b65e4ee4a90fad79e188bc955aef12fc063772141583b61594edaa8f8b898f5e63016d8440be3cea6fc5430cbb3f483cb293fbd9c4a589ad18ca4a53392d6eb0610edc837fc94d97b5d30e462d7f883cebe751f5cc56738c8f2accdb1e4579cfe5b85f7859dff92def92ffa0bc42c6bc03ac852a799cd3b31b0efb17250632baef447e8e3ff41d332aa48c27122dc5f36a3df836c11a8ebf7c7331a4c0d5db039336901c02287137148f12d7492459ac680a84e3346cbd2bbc2fa5ddd1a9624bbc6935c51c0eb96261b0a0360b2952a1535b8d81e6cb4719ad0b219aaa4e4471eed23e37a3c124d625ce77d399913d6b42bcd5ae4294d7f224d79881d0c583cc1d734b7b7d99aafadbeb6b0eaba8458fee5fd01c78536f970b8b0c6c1e222d43bcb874213a799295d61b1919ff128e566d85197b1c09db25978c86013dcaf9e3d49c904d2488305bb7226cc6e2beeb2fa2038213bfa532af0d5acb0714a16dc56f43c8cf8e87bd11a20a973504dd0a84716cea13682704ea073382dce452379ab64956f872627687c22a425a8bcae6e75ce21fa4693e1c2f61da194fd955dc0228c9ed0174828fb5b977720c2188b3c5664f6b87674c052082f1b9b45de279a45de8bc32b251024eaa1f9d422eb31270729781577f8e39ed685a3288c2e6f360e8a8e6d314a82be1f57b7cec7f22562d697f88d707eb8f2c0d0693d6e82ea1baa493b997967eaae3b2d4b9e65d5ecc44e58ce5143dbf12cf7774bda033ab6f9246021427da2008ec7ee76a096ba551bc03a5f534f449171f3a41e8fb4e928003b002c5d862399c9805dec38d64f96e64c3c57a7aa512830bbc13b73263a71325a3112523a1bddb0cca89b45bbd39494eb707f5b0825392400b6ca840d300cccc665242957bc68af2dd829b9eb2e5ce8e49560078c953a263a2e660163ddcb7e53186bbd34ac7c35e1f531cbb5f0dd6f927ffa4d0a323369a55a91d6e90710ddab7ec71b74b6357af7b55bc57f637efb71ecd69d5f25ad4474fe733ac158178659976463b4c34d3d4e2f5b64756c0b603cc36a07bb4098a661d1b5da0ba669d00817457f726724a068dc0f6829addb4dd1ec24a2d4278a6b6ea2c4acfd18d49c6793d7b0449735bb907f82dd33f2dc0ca1c04dfe989fc6100560973ccd1a7962b153efdb884b9d65c19f0a57047d8f94fd8f947d0f95959b92e419f462c260684c87b7a8d14550ed20a8b919d7137018388e46495a3c85b54e312d1e719d7ed1cebf35afc7c351a4df6ec28629c79ea9eb7662d3e7d807d2db6166c6322eff6b639e8ddf1fd8eaaf04360de3e20742143630f74ab0538c46c675f9c28f52f4f8556f88e01251f969fa6552d30083e38594f7b1a3ae663bd6ea074ebed0004cc3dc8d572058cbdbb77819fdb7738856dc28af6bdadc5d186e65d78e2826ea530458519f52694f3b492b9e32a664c1be3ca1d1ec5d930d869ac3af13b4d22954a9503d871a0fd72dc1da60c15bf98b6cfb21514a87a5844647a037a47204703f179d3845a7bbfe9ebca1b2f620ea1b936798ba7976ca2c4b311e25edf6030625cf4310c62b3c8576cb264ed7a4a508b0f22abd90ead8260fae036a16b9cea1ae94dd7b22188ca41b63ea9946e0ff21d3edf739bdb733fa3c60f4519fa5ea053a19a5cd9b45315966c087036be8d68f3e92c347c0f587fb1bd771fbc2bd772706bbf20d81b15a96124103838d595e8357dd62f4f83314171b7988d2187af724c055481f64156532c0f39c7c5ab47752779d622838a6d92dbec737719a8e5f01c0caef0f863d09ee1b86954d8c35c2445937312dc749c291ccacacda9b3c55de02f219170fa3ad6f66990bdc5c94b73783f4e7e00ce55321580c0c4c3f1d75ac38ec9b65a7523631038c254c1d3d1e66e58fbe418cf5203ba07a210e18eb7530eb07fddf7c9df4b36f927e8a300b1b862d2bd23aad00a289b4ae15fc94d3efc01d70a45a60e3a757737f8a29ed6416dcfc59c73fa7839d0966fd3f47c2ac4bb2d1e8432c793cb2622e1cbb94605a2796522176508f3c928d3f5592157f2377e50ce7b761300be2bfd3f478c7373a59b342a373812114d669380ff672c1682f18f5b3ecf87103804cdeecac188900b6538cd3879f584b16a1e5ffa5b66c433cfd670bc29bfe7352e5860461d3988dd9a095d240cb5be475de9723787a8994846a3662a8b133d970143e32698a49954e80cd2255b9aaebbe5c3fcf39a217d0360e4b0296b1927c203cb6fdb6a0da9cbd241f8d3811c321cb5ee00c5382085656df1b4d3aea30606167155a7e70ffeffd58639fca4dd4a71270276f24100829a9c33573c09cd705737ddd42b432c198da650558609af148759787554a16b02fd0ad39086ba01973d1c6fd8a270260d2873393bc056b8976d2bebb4e36128173e9b0c5353a250e06680cc6f02e8d0258096d4124cfe9e7b993a63bd8f75091b78c0a1a14631109fd41715d3eb2e1d0d7c9ab3b2d8b2b4180553e124c6d1359351b4e5d295b3650493f355a9499ee02ef8a4bfd166e93b2c545dae0a868714beeba5d3e1bd5444469e1edc0c779a3beea293a00565cf4e79dd3fc917d19dce89a85c8dc517f9521eafcdd75a762da1946138ea0ed49b05715c62cf6b8eb539dd2ab9ce087e3e90ba5316c720150d044b410893219a682805d92c7c32eca5d97b9c4abdc8e295e1759b5a01027dd289ba2e12da8b2c509d5e51035c228643f178e312bbbc4d8dc29a1da3b798e55b31bdbf718e9ddc094d8b3872a7c13b3aec1f88237e27a20c0e8ec014fd8cd0285a7f77ac075bb48d7dd9b4175c933ecd4111130d6b130ab7044f844efff8630d6a30cffdab958cc5827c0ace21df9d7893ffb5a6b32445a3fb326ade307108fa8f510d6fa15a7ff163666cf75d7d2df7d67ab13714cbb96fbf3b67f4aebf89fe9178859971246a30f32a09cbc11a2e07f3208267498e5613cc3420bcb2dec9cb0ba12d13f470ee401e3591884e26b5cd165fc76e960586c4f80aa3fb87c2eba66114594603a83f5122766612f176ccb147d8196fe0307697f28817734801e2ba0b10d60a1949417a8fb2fcedc6cdd8d931fea90938f47e7cf315a4d6ac8d4332b8597cdebf150143e5e3fc3b423a06059d59f31c7b64375f6c0ceca624a3ce9eeef000780c175c32fcac6a2a4fdc131edb7e37a038f8b6ea4254dd13b77447dfb31389f090011ae0f35bc3bb62f271d7505cb7caab30a7e66c7361fedecd7588d2b0cd8f7c31a8f17214cc371f50e9a36677d9f07ccdab9e34122e6a7e47503c0c2789732c32adf94142c0b5366d94a039050645c8f7f6ca74f5ca74f7c7f08d593a73430cad745ea56d4b107371e860580ca5b39136187b9ebc622137a02a45d7ef1fdc156f8650558e4ebbd0f2d226b532fb5d55b31af934b7788a90e316baf18bd604550bf1bd7ff5805df30a3331cbe767edf6d6a9bc882111f72a5847fa38445cb68515ab203ba0b8a2fb130290c341c12827187a3b4b8be4cd6e418df17c8f4ffa07998855d5f6d2be2dc45ce45b9eb4ec5d2a7d0838ae5df703506b915d4caae290baf014f542e31f1060f2e08d02a600ace6480472eb5db2db6d64158eb0888799e2e3afd02bb633fde9cb1be9f4005b298949ba38f146253d01fd708a7f5b8937539c919374859bbccdef0818732ab2c8ee661262be03d69dd4d69bd436c9d036c752435a8364848f8cb635b3dfe1365d79d29d8254f7310631d13b36abab97f4ebdf8a2426c4ff47ef5d33124631d0bb3e0f5af343f034398654b5a490790d671038807a46a7956bdcbea738868ffd6a3e20f57b3ffdafcae135b26b2d227b1edff538718eb8230eb52fc48f481d6e10dd3b48e18cc30bfc34c04e319492b110e2d587dc9590c16e6ee7531165ce10a2f278c4453ad649e5ebb689cce605280291e663a584da544c992b0de3961384ad2ea256a7091b478c60f45603e4b9b66f613048315380186603f6aec8df33271fca902a5a4101d5bc9cc4d5866000e326698767911a04d351a993f8152e971572f2c4c4ffa786adac2cdebf16014101e0056c66424ec14012e91bcd6a2fdaafee245d62b23ada762f631ce1ed815cc9a5198bc47461a7eaa02241dd993918ebad4699695b3cab802cd85c3aa8c9b54c21a0f370eb6d194f4f95b8a0140c0683aa5d93300169c10e8811a942422aa71fa398e6dd944d204ad619d0bdf8dac48878f8007035611cc5bba6e77d57894ad7f0ed825678155b98814d100d34d2977ced4382c15b0e25b838c4837411f7c9800f71d2736e19426b83ec953cc63c5610fcfae3baee9e739bd0fe5569b0795e8db58cd37449b4827b820f226475923921dc72b654a973bd9cd1a478b3a37046c22f20b80c53789bf974e0597cf84e2286d12a5b3754cab070016cea027ade7813c67c946b5ee82ecb860a73384e2dd206a3eb810493add614e48e07dc549bb2c28f8216b169555a20cd109f448c3f581f90dae30be2c38461fdf17703eeebac46946f932ab8b108c256721d4c2799e4d1e234eba3eb0165bbdc0b2c8d1446e7ec7943eafe4c9483cebb2bdde2d6af0c1f9efc632c31766d7757a8a2323fc035ec1553be986236167e9ae3bcd04bb7300bba4494e0a66ace360564f23fd4d106ec0f64ce7db34212eda909f00b3be49fcebafd43fc398852cd112b6927e661b40b4435a0705100f4dd5ba9eff967fdd9fcca1c653b2ec1d56fb3fe980b18e8859dda78d5997e287a30f3271135ab724b53761302777ba66f6238f05ccd42593280507c58616a3514d19ace29b3c65ac3148c4115eb6023560acecf110d826660e782675a0441cab6423e9b035dbc947a31bd638d87584fd46d869448a9e77ee085a37382825c5b2073058f654b415e1196d3852de82640be027c0f7872f0f6c04278773e2068bfdebe62861fc6024c6b2c4911054d23fec5d30e273909e826e22e21047e0e141588ad1ccf6da285648a434e10d3d5c19bcd274e2443ae232feffe4bd87575b5996f6edeeaeee79bf999ef54e77557757f774acecca5526e71c254446390704089173c6011b9391908484120289ec808d732e6757cddbddf3bd7fceb7cf3d575757018c6d40d47c6bed55ab2c146f38e777f6dee77966d63854a20e90282059053f0a9b54c25943664ab664989b6b6662c56364814f664c532f16619e2b4b0e042c60a99019c7c567b56337e56de7c8a22a90d3c955a49949cc82d2aa9940a176f4591ddf844cd14ddf96035b23cdaa73057059627d01d4da05dfca5b87f507ac5c12e956cbc86626ecf8ebbd723ad75fb314bb5d83dd2ea376a5ecd425aeed4ee0be305c76e7a6ff811bca3812eea026b34f5e04a061fc4249a590ac3863c022182b1eef1d011a938ef9556915964c3eebaf2173c3b647d52de7387b9cb1db7f20abb165019177cfa7e2fa357ddfab98f96700ac8ae23fd5ae96f679b271ee1c081e2e1bfa582423f6e254daf30e2063a75d2b1b58451b7af028445fe90d5d97524f13d71f9bb495007575cce7d24f9fdc948a64f6d6ca01b038a9bf1db466d0fbdf030ac78eab72b82a4a637ecdab3a2af56eec108d46024a1e70479d1f5f1e4aaa6b58e6352d885f15b3ce9d611d924221c48be60c8347048cf5aa98f545e3bf7da479eb23cdcf1066e108495af52148eb750a8834d282ffa7806c0fa379abd0f87f5b11638509b38e28178ab70b99d5ef9686455ead21ae652eb1c78586b013cbd938a1756685a960bf4fcd640058004c81e12a5159b3a4d3098211bf4d5ba2b168a9312398ed3a564a60dec58922648643343b23b9f35be4feb289cd52dc8f32bc817a36b1aa3b36706df214844cc8296cf9f85734cf2562550880096ceb06cc0183917ec1279ca37416512f94cd668ac6a30034e1b5aae968c04d8d2116a62e80c56662577fcd424168a4a3627bfcdaa7e8594042f9789a41e55d828651def10a1bc01486e033b3f9be449dbb7460bd282059859cbfe712b5c638f5748cd4db41757aa3d4f34ce37eae6d3fcfa3608e0e58ece2f7e091e35b426441b38d0f3784f3714ddf25618d250d97b1e0bb1112afe286393ff56a5edb6702d597c129bace0bbc756ce1724b0033285c8a702e48c07217531046072ca581acb76a964ba86b86eef8dbb4c47aed82ec2e554e7ce105b2dae592a173640aca74936fbd436ec9a4b4528f0f65c0972f2ffca3f078206391d522c26ea87729474cbf073547895c60549f87796a0d496374af14d42cb294d61ce02ac55c967ab110d84e29fa1495b91f2a836d9a969fd50e5c16ee5fc66ecfebb0401baad93401e19ba981610ae7dd09a1dd3e235214138a3ea8adfbb2decdac5e60549952c441e660801df5a678e14844f5522869e2bd0ead03557b87d6f282196bfaae920e58caf20f579e6a915de60dd1d046c9d07a719d3d937a02005665d3e774d40ebe9ce66f2bc9bb4070b4f53cb776adac66a904fefba68c183e38db57b02319eb5530abd323b9dd97777818eb87a674835b74fc9afae59875db87595f37ffc747356f911192b4deb480b86dab16c56421e3b390d1faf268d8641aff6f0b3056b830eb88c255bc43886752038621c958845a17533f1b8f7a6516d29b16197c99af758900aca34a573144f31a67e6aeca704f75f69ab4efa2a061a58278bc486ecb077493cfe52a1cccedd86e608581c900773a030951b5395c98830912862734b5b852bbe751c366bb2d1958078847ed2c08c03b0c6d4a278b9a9960f18a57f6b85c883a5e6f88700f193912398afc98cf552c33678a26e3837309a8a6e02adea9d2fabaf11268db31aa67628139e098f4621a5eca3eb59a8bb546c72ea2b456d7c9447aa2aec653d4e746151338ad3859851c2a8376358e6db2a9bea5da9572fc5a3fc02afa9bda5d32bcc5c719c7401feec76afa446ebe23d3ce22f931200098660cd7b8b6bb92ce45267ff06bfed037bc864f95e28fd55d51550b8528c347cbcf4ddd56c277587ea68195ba6eab022e956e279a32451371f4a7f901d64c2ef578ab23add596049cdd403afec601a9a85dac57adc3be79b42f6491e217844d02967245dd8d0fe48b8f9045f7b48334e2143546a8dd450a6b8e68d42f1105ffacb265572f9594136a4fe493db801e2226b77814d102138fdf92b79ef3dbf7aaa9fd9aeed464b9e567d364b927d3acee71baee55f7c3ee4c75dad5b2bef3e567aff04c77659ea73583cb857e79f1a968ad291e6e019900f5089eb1202963b8d8d02a6b2ebb6ab150664ad398536b8c496a7d82c698d4b7881ad414a6f4fd68b00b0ec9041a45e1134973491a638ddc94514f9335477674c42f7ea70ee81a6cdc60e3270060f1bb3e8731b989306f087939f59f49236559c49fc1fb4fdc5168bd16b13f9606bb0306bb0637bf6941f44a9835e03a440def10cf5b3226d6a488b1768d5911adef7c58f5d687d528fc498b065bdb17108feea68018aa550bfee97bda9e46c7f50ac3ffdb4230567830eb48c30a5b315fbc7d1489a643156e4622e4a674e57c21401810550060613833deaf0cc85b2c3cad1dbf29ef38c70364d919ec00dd7c6dce443d8e1237473e27170acf9e63d51ae265139192b148917f560cbe33263cbf20b84d44eba6afd2c7743a92e1fd4faf3306364a54ce42faaf50380ae98856bb545eb75251e32953385952538668dcb7475238161322634703bbd7087177bcb03e0287f44cdaab629976b98cea67aa9c8ed11a51de11100455783da86d1c0ea64af45140a2aed2c5aa34a548fdb7fbf9cd58d371eec7bef670a0670c73018005c835bce96d50dbc6877beeb618cfe5431b4595d3d180c8708a11466fb1ab6da8134e5af0d7d92dc1f45639cc164042829108c94c72e56231463af30335ee520274033e0004874ba55a1fa77430e855573fc0d2e7521558d57c21a0981fa68c47a93d25bbafc0ee4db84b5484c26df73c696a747603353852964d40399d9d712433354460aa83d3249d8ec7f7a0148ec9029978a30396a427be72a1d0e9dfcb4fe60e9fd49cbe26a95fab8097d4b51fa31630946bd0f4e5726056dc5c58bf5ab60719bb3d28bc06525d8da7a4cd933fe4ef7b6db92d15fa0f0540ea1cce5f4aa290fccaa80da576e03ac1b9ab4a17da39717c4bb44628b8c2a11ebd54d6baccaa593aa0741d7c5518b8601544672ceb1de4f534b025c4cfe93b570ae70299133c50c09a849e0c367f5785490e95086b3e26577aa12ea713c64cb6d7f55c2df804efce39732dd00a2c6cdd758715ec1a16848d2ed12b61d6c81cefffa086f7c3c2588f3bb2862f28063163ed02b3623b7fffa1fa2dc45838306955bf22696d5740dcbe550b3f613f62f0be18000b475830eb085add3eab9dba256f5a65cbe78b4386c494219c20906224027842624893d959d45f39423fc0827fe2c7975e849024257516beaf37deab1cbc24d278ca03904e395fdc7f51d06c4dc5cae6add624c0a01e572aea82228c4d500b14b193bf679929d6a7044080683a2124b1c99d2cb99d299dcba1d72815d37135f61cb50b61a2dcee0f58f6420aceda37b8d82415fe3bfb40ddb2c681071576a6cc9c0d8742616386e0397fb07ba5908ef9e9ad97c6bd13cc6df47f56bb4bda564b072fb047aff067efc8dc4faad75e68c5fe0d37a211541bad99898543da614f6e1a8a2c25c4f7031375f086f0bb6633e5ba38e554b47c325a3a16259b88aed4c577cce7986f89e856dc303361320b04acc512d458bdc608edc3edbf51e0f83203271b3a1d29fd4b795a4f89d2cc84f799b014a346b16b1c78074043fc2ba4c6748c7467ae4ac9c4cc932a987ee0dd0696f3352e46409d9427fb0ca61f0876c15fa85c1d198bc5724b96782a5e34162d1c8f5638025fbb9b78d3ee3a7709d698805303573b696a441890638db133b6fcf2f87728c08297b46c70e61ea2b6f455e2e6d2df5551efe60758ddf1403f9ea7de4d2141855ab892a7ee28b527e229bfa0e0ce42989eabf7345db767e12956eae2827daf516be61d69cf22a3dd99dbbf5420b7646087091ce30ed40f00bf514588b1296d39649576b5ace51ce765b9babd4fd78946a38804640420d1c06206c558e3803e2be59ae5d2eee53c6c00a5bfc286650920e0e26335bd175e4b18c2a22b3cedb7fcd3dfd27b39a8cbe9f44a3e65f68c8635ee07189dc7b7383d9704babb2a18d04c0fd4f03f13b71527af8a5bcf73f7235d7748e295a84ebbc206c0c2b17bccf28c141f9e867788fbbdb9a72ea980b1768359b9a73fffa0f2e71f54bef5811a850fb67626ad97b46abd4ceba1f9a788c682a3710fe2ec33f5cc7fb718febb255c9875c4fdb80a6632fb3d24fed9b3512e7716d1a3d65376724b6c7ea05e7e4198a8fc50ef7854d3758e477f4e08c072166b3de54835ea792dbd1727643bceec7d75fb060f3359fd52e9f475e1fc43e5c9b5228c05b271b4a7ac4a17536b404e26cd7389edb6e42e674acf42baca55885e6567498c19e2e924d174b2449f2a73146250ab7421ec38be5ed8bf94d3664ba21233a2c978a93947369727b731e960170058f04ff24faee2002d2ef82dc72f8b76cec0bd6ad0994c723a8dfe4d1006118ff76d0aac0fabbd27a201f875f1a9c6f5488ded89601d4fb771ec5b2a089d881a3e26a8fea834ee6d5aa28e623b92d8e436c66eacb821aa3c65f0fc00c0024a6b7066773a49b79f7e221949f7e186490efb70c35cde644d239231914a7316d92a67664a0bfe06970a7c90e9061fc80c5e8e9d008087c83d101ee4da74f6baecd41551e7394edd72e9c11761f7a4bb4e66f4f59cc1a50e173916bf38b19cd36ec92a8ff34d8dead628dd0d316acf7ae1ef907357d57581a75d29f707acb88695b2909222a850fb882cd42e3cae6a77e5c2b9d6ccc46a89f50cbebfe0dca1cafb6246d837c3860c206301e1430f0c019713103cde140cbf147e141e64567fa88767d26fa2295729f2bd5ecb875f8a5ab566d3f7bbc16ee790ea93a98e058ab14e9c2fae21fe5a654a46aab9eecca135d2000aed7abe2b753d5251771f8c4bc043989f2acaff1c70a757eb63fb1633079c19f48320adf81b5ef698ee48b75bfd9abfab6cdb1eb3c2d260172eaad37a388df3a257c2ac4eb7f86157cea162ac1b271827ae540e5e55bf14b3c4e6f4f7553fff004748d2daae8018d4aaf59202228db4e09f3e207bf368f0c5d1c6b7747f6f9cf967f3cc7f37870bb38e20d1a39b0258d3c03d3cbe595cbb5028731469164bfaceb1676e496020a6ee677af45e14c89c453882010b1eec58afa00677aa11871ae27d4db54faa713b8ef54165fb6ae9182cd7aeb2b111a17636b0fd0bd5bc462360aead9c8e56597300e3b68bde0b7cdb3d390c4993974a61d88269be7ac657d403c00aced2c9fc010bfe891f572f96c2570dd8d50fbfab1240c4ff1d76acb4be42888702010b086cf446a0d8ba7f4202698422bdf51b7c5212e969f5e845769d39b56a26a1da90d464cd94e893456713cb527ee3f7ceb4441d155262d67fa915f7eaf775558b25f0fc00c0025653b80aa58654c95824da19e0f5fbf3fa70c713967fa4eb628d335fe12850b87c0939f92cb3b30d9910c347c095804c8897b26a88d38734d2f6ae0e4bc63e34cfbd0ad8158bfdfd9ae00aaf3125d6b80a248349f433d5dc11850efe5d09def11a1c8eabf2662d99981477c7b5ae96f8898910b55aaadd0a156a6f89e0f0ea6f08a5a6f400bf2058d820b10c7de29ba6ebf6623f6c70480d6446132e27004180f591f32ce441790b89db619f6fd7530d3c937e00750bc8a41268ac9510f5909bb3f6b5bbeea5a174e451071c319635a5c1c3aa26fea476a3e5a57232aac9821639b014c126ad008878d733fc46b8e561f05c78aca6125415c57f140d4789a7e2d486c4c1e502c30da1fdbec2fda4da7d4f3d7751dcda100dcf1196fcb9db9902e361f00002cb605264f83be5dc3d69eb067bdfbbeb0ef7b6091c758b7cc458af82591326cedf0f53a11062f36ce10000168eed31ab799dfbbee2e7ef2b890820adcadd91d62e5ab5020a88e8c1ba7d89b4a13febffd18c000b473830eb886eab02e6b0d1f38578677eaf3be7e486bfabe84365b0f5c4eaf7f5c0315247114408c07214f5af231d26fd1536ce48e3c19d6ac481a130a017071667f020c010ded94708994a9bad1921d330a2a9040aef8243bb54bef2a20e9008de19de0ac62698a161694eb56c4bccd9d493a93c9cccc6f2032c1b0b3fdeb054eadbd54fd383a87797ec407828b6a9b7d2a3659d7bfaaa74e66ea5f561f5e2b3da95efeb3ccfb5e69bca5ae917f42f039017724e5dfbbe8ed25e07fe436a64b7c524633d244761eac9caf962c959bfe5ac5fa2ce9bae83909ab3bd9d76db5a710365ea6f88f1f3e9805551f4375f59d6c192cca40afd8d1103c2705bd1b8caa6e39ddcc4181acddd203c2be1aa80430d9765a3390157a8f7aa0ebb5ddbdc2ee34da98e06764a57a1780af754454aa6e21b160a4e5e118dde944f5f128f19597dfd29bc34949aaa6ffd060e3e1cf9909701ac82d074fba8f2b43e17184bd415d7e22938b5eaabf791b5daf3ac808eabb39b65c0792a279ca994800626e94c4ad837c386043b0ab0442311b84f1cef08c66b33a4baf25c63b85749019684f19793c3d99e07480f19ae5b78a6642c4a61cb3bb066bbed480e204f34112b9e4e505873ab3c25147ba9ddc5540f659d29be9730d98433889465aea261191b7462502e8df5a539e5a753bb2ff216b741f0c6ea6fcb997f809bba723a96be30c39e8cb88e81d7db4072a397cac3d56017c66d1321a37e5ed080196bd79875f164c1df9b0e1763d92d9c812b952fc5aca355bf7c0f180b87d21fb62a7d69ad5768d57a5901111ef7d1d89e86d495028085235c9875046fce070441fa9f8e64d474e9ce426aa29bc5e42694db48b11d15869e69e813f6f46da5d45e04c111f80396e0283c38b8e26dc1d928a0ba70905c2731b8d31b71c875f656c5d456392cadd0720dd6a397cbb110e8a9b592806d53fc816fa4f642cc7610b2a0b010da894bcf6ae06b031bc167a1862d576ae534e97a2bb532835f25b5fa0116fc131358f54261c85dfdd5ae821d206fe7006eab5b2ab7f8ef0cf28b1f1aea2bbfa1be0c2063c05a13ce059e506158a43c6d6064c4f2eb98b100b928c602e244b9b120c0a212757ee12ca477aa055b7163c4ac7597a09e3957497dcdb1331379a7ce66d7cabe448015949393cfe58bf529c2d140d2924fc4c0779b7fa221925e64c84c8c81e369f8970232e21da370652204198fdeab3aec1ec49e529d62bea86d831bd2186afe86829df43b4de397701ce014fb7115e11709271a665c80512c15dbd8744cd41957e92a6c9a4b6ab32575d851491d266954ae0daad5762d31e8a82735fa9c9aa4b31961df0c1b12ec6426bfba2a565d39b34634635de3daef4901a466eea9e099e80a67fd6de307dfc1843fc15d3375855bed29dddf06bb370bccdc386091d3e9204c36bdeb4f58b8c28fc5942c29f85b6b7d54bdeaebf2d877ea7539b67b329f8f99ffaa78c2520c8085dfd3fdb486326fc0de41a69ba4c830b66584415bbb5cb21fa9bb83acc3ee09d5693c150d4e218a5d6356af53f8a22dfb5031d6f7cde963ab52c4583b625672f7fbefc97efe9e9c8c90a4f575e37fc476bd9b7afc2f79231f17ebbee259a204b6587a08edf488d9361c446cf357813d863dfb6dc1e4d1cc337f8b1f78f7dbf6ff7db4fe173e68db450cdc95e8fede041146cc3a32b09801e36fa339a15a1f8b1b95d4ba186429ba465a8a063bb753492c89bd1082ed6fa807ff8407b58e9c1e624cf70deb6ea4cc042407233bbc3fd5514b2db27b17b26a8d713dc4720db00ca7c4ad7724635b7c8eea035efbe7bcd6cf84ea4f5acfa6742eb11a5c79cab95c89390fc116c17938e4ce62ac210ed30fb1b14804340058009f8ea5928493f1149cf9451060517f6a73a4b405edea97d959c194b6cbd0b84b6df715d8c10646fcb5203369d409b12ea0f760ad0625abf0721396b074f975ac140aff4f766c00633d438c35714b0160271e4ea7deb33cee1d8df8f3ee73bcde8b828e0d5ef56229bdaf2e60f700b6e286eba47f819c9eeb165970a8552e72431f157397a575cb1540698dab6cc3bd4ad37db5f15ee5892d71b5bb0c50b57f89d16c4baf9a49108d440acf1e1b5c29c4af6a59e7527827353160b6c08fbb1ea9001981cee12a828b13bed55ed561a974dd01c46e70ad79b5dcf920f4bcb84138a9ab6a8fc291879b0295729ef9f94522c762c2590f962570019cb066036001cfc9ed4cf15402ce444a46236484905b2521e40673369cd0fad9788d232748b2ae5866cd97ce6611107918ebb04a270b509bbe0068b7271f5fce86f51b5cf630466d2049fa6a203394be62fe151f43b87de08e039880d10c6e9053e78a0e9b761d9dea709f191570d65aac49584015b730e27d09300250f8e8baa51a395746f998d931693d52239bac17b53008e8e6cb3160092762f4b7246855760b11398cf0586418edcede28c0f641f0fe75ee82836fb00b4bbc94e7b42e2ec958bbc62cf354195928249bb1c2cf58f77b724f5c52918cb50d66954dc4ff4dfa8bf72064bf0820ad88967798e39f29dc299af5ec7085ca93ca9b8b4a3df1a7a3da7ff15527434544fbaf75ffa709c5df9bc288594760a8c51dc4b40e8c08984a81480080a88c05b00ede378ef322c0044bcf35327b91c4160ab06c85280ce9f2c918e564348c0eb4161c34ac03a93459125bac897885dde94ce99e4f05bac2bd99583d01ef0f1abdcc56788b77edadb1000d3082c0408094212d847ec448a4c8908e510fa2d6e34bf6c0c802e3293c1f980386a44e478a622a46622d90c0d7a631191973fe8035c7a2fe24b130846331f443241c8f0d7cf976110ae6c6b7b858a11e0641e460f30839d8e09995ca11baefa97d5fc65164b9a7c0c92a9ca8a09255706a60d2a56c6d607084b306648c18eb26c958fadb7285b318c04e74060116ac7447f4cce5477e7584b51fea1c0fd5a7b784f27922cde628144d2705249c8423119231e4d1a1b6e7e1541c2054301a0279f76f8a3ccffd2861fd8706c3753e16d0873382dc7beeca2839cde1ab528aeda4c67c61f61f579fa197c361810305bf0e867bb50e41ed6bd461df3cf692eab601bb892b1cbf791148eba98fb47a7b9205aa0f01f1e1bea09772d03570854df91ac12d03cb15b83544dd71be92ab354fac4b0a10f8f56580e672f72d5db79f75585711b187371d085239150de3d5a9d55c380818b05096f7fbfac95b0a2c4fa05fac00b4828386d10a9e06070a8e64c76a71f33aa772bfbaebde345d27d1f9e9e388c722a45e0d428cc8a317cb026ebdb1f3453ef3866b1c1801289b2c543e9ecae594beafb0e7572e160f6db2b1d735ee0fc1750c58d902c321313c1b2a65a86d590793aedbbf22ec5e515db5a7acde29a87708778f592d8be2dbbdf9fe8c15fe42e1b9b1a2feadca81adcaed30abc655f437c92f5048c9f8b2ee578c914fe50bc961e4aae0502fa7b3263ffbb6f53f708132384af5c7a6ffab711a339617b3f4078e594782c75c58ef520ad148268a50079eb85402433936f6c2ae76439b5cb1b51082cdf7072cfe27f87114732c912153381e1b7270273f8ed8ab0c33372567054b52b407db9dd9b3c450380ac59602785b55c547abcfb530bbc0a80183026044872399da1b28366661aaab9c2f59f12684607ec29d0a68c7fb3aa3cd95239fcb27e12f545494be5f12f33604fc8fdf9f00dd6cf043d2d10f198d128e458be17dbc48e78da2dd0420977a9e1c019199e3751ee9157857ea78809cb391eb2261cc6cbb2cf10196bd68648b1f3259856d6de80aec80aa279673601681a78d6d715b562b28b0c38055c53feac7432fb43027c1818281183e62f852856adecb827696c4ca14fa4b46494c59380fd7739e8ff7876e5be8c46edc3fd42143ee175af4a3ee49712b09fc0aac5d84b750e8eea8a8faa9c48824e635922fec5bd2e5671a5867c38f855f5765cd7ed53aecabc78e4d75fb4675ea05725ed46df9db477e47a6395beaa3d8b2f7e16a87c915770492a59c8b4523e758b87b1257f9bbe791febeac3f2190ea805ccdd9a2a940a55cb98375f0e9ba3dacc38a89bd7868c7dc421a1c3dba011f4a036f08ca62dfaee47f028714862f0aade01e81955ead2919f512bca81bbf29ab26f6c31eb6749dc2c1945972826beba8cea04f801b8adeb301ff8f0d36603440e60d17482b336c93055754777f22a7ec7d8c71ad2b2598c8014cb12356cf7c2a8cba75a678f5740cb61c45ca7307db5d17ae6d13bb899a053600168e5d62d6d44cc5df9b330f5bc3fbac9d0f8cb51d66f56d29bfad7ff7afe25ffc4dfc8ba3ea7f674d7c59b39615769cda2104b6d894c13ff91ac2bcd17cb10c01168ef061d611e1748a702a094230ee378fca27a2600cea201a9c617ac3fbc860aa43ba91d7b8139ba54a98b0ad401e450dbd490327d261912d2df82b6a73e67f028f078685299cc9104e065ae5f8c508cd48782a56399747529a1901d6f0543e0c2230dfc0488181098654aaad0ad087a2bac665f6cc1d95f5bbead9fbead1ab9281f39c96e512046ab6d78c1d98ec35a2761e21111278bc40dad76057663408de1221d7c5fb288731e92aa1000b00ae67bd2c64b20a660bbce8ec74243763671b5d4cb539ad76a150ee404857b550d6b4c26e5ee1289cc5a2d308b02ae27fe3be8f56f90037c0730076c03af0e9b8b103de7c6085e19784b3158aa693012b8593f1124b3e7e50ed2ab1de97e33da158991d6008467cacc701ff83365d3e54faf65dde27ddb8e12ac2b949d208f2216a491ebfa9a0285062408035bbc64739c80755d3ebbcae7576e57ce16b176443c7ebf6cfed07d8d5ccb342cc8bd7c87911e0bb46fa1900165e8d9c5a6560b046a51ca254d4bf90dee94869b2246a0c71cac92858209d592fd778caeb962b169ed6ae11e91ce3bdcaaef37cb45bd6c1929832814b44137128c71c8e74dd1e8684dcf11a3dbe5916e03284e3f829d477d87d3611ae3a20891e1712d883e51c1e37666fa1564538c2e35778950b8774db84d251209a8c138e468a7549325326dc89f0cda7b6b8782fb6e709da850dbf7af17115dcfe00493df3a47903baa2d67d3659f575df00605199b65e4f0e76c48271a3d61007cbda00fb20893e79df33768763dbc42ebbebb44e5ebd5db87bcc6a5e103fe8ce458c75989ab19eb5669e3c2fefbf5cb91d66759e971cab7f3767e893aa958cb0f3d32e83638efc4cfbaf58540222a6f3dda91f1a718417b38e08e75864580ae888e3adfdc7345912b003c349349de70cb833073c99354ea6688ea57296d81fd5d087b3496bb158f515fc0947cd62e9c9cbe2d1ebb2fe0ba2dac50ad11c90164b68cc164e250b0296656331a2d93c785ca84b131ab2d133a9984580e5bcaec0553f98a4010560828141446bf442e1484408aaa385f8e0631b5cd338f20616339042fd0a6914889c7a2f1653aeccc61b3cf32de189299fdc2860997abe3038590523699b2d093bdbc0f8484d1bc2a944a0a2de0b02db439f96f7fa7fd58f6f8a2b08e1cae6fa48985790f8d92d91e13a1729745c2c866f02c436e8ceec76a60cae97c0598377a85e2c0bcad5a138b3c9c189168024989f809f48a5a547280967bd27013820775f5e23775feab6d006cca13506d2875c63600d6e42a55ad9b05ce12bc8cee45724fc86de980c617950d5b1c193bd4a1df6b5638f496e1754a7b2e5c1bc48991a91a485cdd42fa34b4256fa1e47f12199bad0c5a20b80e66b54ad0facf28f5de22cbda8830546404271fab652893631bc4ac6ee408ab0af0d76326b7ea52e76f47c113dbf8ec565707667fdfb7a7ec67f9646fffac47c76fd6c3cdda8403a1eadbf86b636c36509ccdab1fccac9bc706d9b685f62e15dd858ea0c6f2a345c17120d1e48b61780a999326f58ca82fb1a860e51c19fd9a5effb90ce5554359ba20022df66c52bb7e61d4ea19370c9d7c162b5ce2e80d80d6635119865429d5899878db1ce8f14f55d564184c4acce4b82daf5dcb033d3ab86ca931ad3f93b2c2da15d634d7edf30f57d63d831eb08ccc1435b12adbb5c88d0272738c32421a43e6104c7b6f38aa968a9390f9e2cb116d91f86f0e2587aace95ce7c113dad64801742a603d7de68a546a2b2291cecc804f941832abe7727a37383d17040a47b10ff8bc94269a6596c5be0d0325de04e4b82f0726800111a62264a242b58e51cff745e19bc68ed0f6d208095e4a5346bd291e26543cfca16655227b81d35ad87511a6d58e81380ab0f00b5b16f2bdc92ab4e8d49ae2ab7431d479f1c36263aaed4165c8e29d718983a49fa37e3dea6201f700d561850ef80ef06500d7348638d978a46c227ae9592dce45d9eeab9a572afc92700b45745f48acc141d9e0c0a00f3316bc2d802376e3866534b50db3d596d2624d043ec0d2d5ba2beca6253f8613cfe4298adf0f5970743dd1c045b29b3aec01c51e219dd898291a8d0044aec5a646f3a918c1b17de4d98d82f2f87778da63e21972f79c6a3a1a95727431217d8d842311b67b4aa2194ebbf2a216cee0f233cdd2d31a589cb89f544dde9486375db7b77558e57c11acf7b0860876dfc39805cc416d7c6eacfa166ea2a1d9dcc94b15834bcc764756972bf7f84a81fe0a07ae61b850e152840564e77caa62bee830a7eb28aa1bdd448e46d35b153357b9e65b0258deb89fa85d8fd401ad17004f9a99d8264b228c188dc72350ff0600963fd50145490ca9a2c978e1780cda403a1201ff154dc5cbacb9fb97ae3b5475d85702bb5a071733d62e31ab755ef8b423db57283c340def938ba2be4baa00cceadf52b55c280b3b2abd49e48f1e8dedfccfc9170d28be6f083b661df1b5843fd34edc50b4ae7084339982a914c154b2409f2130e6090cd9beccd658b4c09427b0b020ce6c89716a9ade9aed4d9634f49c1784c42f8c594dcb6c20b01a57e9d835d92a8d03965fd4352ca13ff9858929cefbf386776b3a6eab426d58abb93070c8f01c331a1df82a1c73af1ca140ed5563276843d93bb47a8eac9c46132a0c7f1df664c0268027bcd684e11ee65405ef030ab02862535bb23406bf6455c8183e5782db5aa90d44f4e33f3cc580f7e4e7fce7a005a95bc1d4d2eb4a85af0113369dd5c636d96496ebb608f8a9c9534c3162a79b41f785c4dbc52959cb99ab9cb3e7517e1188ad7f011972f7cca7763953e067b6da9260d00728c45beb8faf306a1702ebb0627d9e56f5a54f8af66935c001ae3fe2962fc35d95da55b23715db50c9b950b1db06bb5d86dc5154bb58dabec63e7949a0bb2d3fb55146c323625e34a00ba38b40f0866ec407bcda6328bd379b2b9e499398732556a648978cab45f4504cc68e5c204c145ed4e2b2acedaed47a4702cc01e791d86f882482c398aedb5bb0535ab2429b1c13668e585fa692fb311cc0dea994b18ba4673c3c61e252093c196e37b80edbedc93533b1c0b8d2d91012c487275d87a36e9185b760c3020619d55fe791eaa3cf6aeacc21c499d145a53d8acd1b00b00e4b83dd61db36b1bb50bbcab536419d4db07bcc728c96fcbd253390b1c20d58777b73fb375588b1bc98d573495e7fae20ec84f4e6a1ddc81f7b563781192bdc987564ed87409fb2c5a7b5839b22a9ad886f6609709818027da660265b602ec08f3479cae885a1806e009808d166f2e71af827b574763faec292e858157dfa9a105e8bbcedfc37a5cf3fd62080a33e1afe9f0658e8eb3d5623f185cbe5b80d0bb0000d2213f118fb042131ebe0c38b6b121b4b3d5fdcb454d6779e7bf68ac474afb273219f3ef689472394844b60c36c429b0df54fc09cdaa94b2c8df1d9a8f9d19b391f215ad0cceaad7a44f52ce450ed3b769a280e3da155c941534e59fc3bf5b68c3a533ccce88139305dbcfe1a5285c5592ea2718aa9b4b330e7b5bb32e90676586863789d94b284278f9c2fac3725aa88c4279257188d0848b3c9a6622be780124264f844babc96b6289f2db45787966ef9327e4dbc731d365c0d762fefc07332fa9699631790c11cfc466c3067bd2b1786ea4d84a327effc122b49726b8f05235def7a19bccfe4e5f2b1cdb2b18b65ba2bc82d18df9570acc8b2ec65245a0627112b27c1d9a99a0f67ba6e6fc14e3c934a743244379a137a0893638c599467f688a300df442dc3d174cbc5932ba803a9652e911c40f0cd38937a98d37572a2bcab36a0462bacfd3b7abe10311621f14f584d54f62f15d41893d5fa847a4b1adcc5c233df9665d28c1600b07e3c0d76e1adc36e47751a1b576b15ec1eb33aec82efdbb249c63a4c854287b1a2d7cb589d1785b51b3fbeb2e076d1ba5532f1bc7ee27943d831eb08dc96a443d963d2a10ca70d161f57f79ce3f1670b82433a5730b9e5ad0ddd206b43782244b320d1108077a5c123d4ead9720b2da0e1c9a69b7ca241878b9798c17da95a4f850fb0208ccc8af8df50b202487ce1ae143e1d86d14177a6d6486c8cd2a5fbbde4cdc3f2ca41072cb995d9bcc03cbe464a9f634d7cac7031b6c9d92ef3241b8f84e1be469f5091f65bfac6ccd00c672e109af284c65ca1215b3893596b4eed72a69d5ac9c356c178996eb88ef420e02c38888674246346ec3c1a3c452a8e8a6699224b81c8942bd4a70b75295d8b79fd1ec6f866d9cc55543d81153fa943ebc90296adb56600e1d579cadb9d59c817d2825436ba08e70d54eb74132267cbd958de6c7085219a4e0efc8d2391425daad09813a20e3b5780f0d15a28d4e5b59f8cc3b6d09427341657a4fbbd00ac84adbbee15c10ed5b833fe50826ca77f5d16fb7663ef3164e2bb895ca1902af77d39ac3dc62f73955371548d0fc9df9f8a2a2ffe23750d706bbf0d603599bdf0ec79bff421fd968438b316a88e0b2708200329ec1f60ba6e5febb0128bcf700680bec19cd04d6016fce4b31b0583c60c7632792b493bbfa8d29396a64d96c4565b12fc3f5dc41869afcce51fc28c1d9dd8a484405d952e066e3de454b8eaef54f8504577366b73e6f04f7d431f4900b0fcd90ede3394d4f0a149d7858bea76003bb5b34c6be513b15bcc5a1b2afc7b4bd66163ac672d1927d765bd9bcaf60b02cd7a4ed8a9686fa3eb1a9b64acb062d6118c47385b40260cee48289bd85a5729cf54e017b305800e54ae829a057ded38c4f80eb320e52a432ea02f95906be88b6853fae885226cfb10e01f0c71fab2c40fe90ca8a475e274e6865730d0d786b59c0d6b5098b6f9a6fc902c488639205821634fc84c385b506dc9ec75a5c17c06d31b5e6262c6825f8a953f3be6734333d66894603a953b981ca0b7fe52b01399f3eb4cf130e602ebc0ec02ab73985c47cea1de79f874aced4eedfc07a26da98f24d1cdc4a4435bdb52296e7887f38b1595809cda6dc95a639c82d89e36b85136ff5079f64239cebd615fc86a3d52ad6c3427b45891aa19f67856d9182887379b2fd0a50a26e2504c260867f3a83aacc655d4bd5cd8e3ce6db5a7ca27bc09b98978a121bfe964146635f82181662f8425c0f0b9a2f076d7bd12d80987fd04f415b20fb1f3095cc32889fbb8ca43e47d91f1d10bade7a966fd8706a5b384df93407f1557f36d00b7553b992819b39a4ba50f910d0e5105c3bcd5bb90019704dc20706a802ae01cd5ccc4aaf571079cb4dbef3aac68ca4f2f4a39150d3fb6d399d2309f8f9d19c99ba8274a301251674ed35f178d5de2f4ba1995ba78c94c9ac4c29058f22573ccc39fae6b5d2983ef8c7f26dc7470aff9e4ddb708ddbb7b52184ba9f56ab3bb50381247bf8a2a4adfd7b84b7ad68afa96f2db1ca9b8874f381e233665ee45ba2e6c4227070c761a2baf9664ac5d61d6b8aedc075887a9196b65bcb8fd3cbf663da7663d3b38bcb092255b8c2fb37c963df5c7d4d17792477e9d30fcbfe34eff3bfc376bf20f2ce3875cfb37d5ab8771bf61df4d01c158e1c4ac2301963554b6001bc4563b8b0201cb54d03a9f89d31538d98ee73f582f92c8456c881b2576e3e30534b9865ec9a12fa3e1ffe1a371a184ccee3c237d5d0c772afd3e710601168c956726f2d69ed7618976dc8605ef0c23a9d090bd135d1d64980a04e34828a19950112319eb422196b7a068127ee9dc5df9a9f592c195c2936bc5639b1cf51c4360cac788c61d0802ac97829d210727c060d885d9b4d3bb7b88bef39fd2589af0149779fdcb04466640ba0ee81937bc773a9261a2524df9d5227bddb984deacbcc19216d45b8d1acb949351f0f395a68c1deaa75a77b9e916527d84eb042e12f82c8d812611a24b178fa56b8d488db6993084ee702477cfa7d02d013a17725ea3bb6e2f1aec5e07e60467fc004b2c7aaf7f217dfe3bc50efa61dde705fc5e3fc0e268be0da0ba2a3b03ce51af2b151f96c0fbf15cc1c9957cc9786029593811bfafe9ba30d461ad0501bd68442e8a21f1b76f179c4c91589973f7557ebb53ef57f65f14aae64b0f7fbaaed98dd2e18aa918ea76d31862bb9c29c73d8417fb45d2c215461854137851eb79ae052c90ce327d4720f33f7b8fa7b91ea96c7725535b653008630f75fc6e32c7ab28a11c48baeed0525da5bdbc768e8f627798d56a17fc80aa8421192b9c80b57e2ab3662dbb7a2d2b2054cba95cfbb78c99f79247defe76f0adaffa8fec1cc78ebf953df527912b1a5e5b7398e2f85dd9f8b3fa03c4acd600cc3a4299d590798275264e15e01c95c054c035fa85c655deb590536f4269f6e00a1135c437ba185dced44ea2b5192da3ad49f07c6a250d136aa7330d154a80c62e974d5eae9823ac783c4fabd77ea833dd0d0158fc8c3f38afca3d0faa2c57a4d337e4a72ef27a574b1a5d4cf12c331801f72c66b78d908025d021776a216137443116fc4c3fc6ba4f3216bdf5ad76a19c7a136e7f2060ed82ed98d4460421dea74d28e2c0ec0be7054e0a6a9c3f5700a3f0c0743a3bc5d7934102967f28cdd94ae46613623fe9a955061ec7ad77b7b5e2168cc550bd7ac1219d2b5a785a8b1a8fee4800e2e11a8343045fd5d7b6af4b231aef720563beb904fe2a9b40bb5951097526b672362decdd75db8695a5f594776cf08e5f128d5c930d5f95f62c9697c7bde3cb45f1fe3a767127f76ea240af3ebbca2e8d22133065d16fcb5a63d5aed2caf9522036f15c61db2ac77c470e385ba54365af86d98496b9449c3e047a43bce5c9eaf3e448e60a90c41d4d7e4568cca69270527ba1da515069cd15a10271aa08956e598745e5e455c04e3a575067cba936a6a80c292263162acb1af2b9aaafc8039efafb96baa881c58a9655ce4aa8adb56b3fd4cfdc55b5aff3a487355d5769cb1ff064c248a29cf689368b4623e036ef9e4fc5be173096c27a158f30f6ef54f54b48fa44624280c5497e77c6c3def8de4f9574f9698df13a5f3681efb208a9a3f050a5ebc2b56d6237a170166b2c7c92b17687595b83ccbfb7660532565893589706d26b5632ab567d217046654ffd3166e85f5f4a54db45ece95f169a3e522ca5d0dff64da27a37b1b66dd49ecb1d7d5c0b8c152ecc3ad2e948e976a6f8f9062e66e03c41d74216c7c0a4423ec73a731115357457f9e48c3b16a1988c524fa339af8e865cadce0c9e91c9d7670738ccd0637029776825afcf95a626c442c5a391b5a6e4d95b62f793aa9e0dbe1fd5e9116035d61c0b18162d0faa3ad779825956000206862974ec0790f127122926a8d2c760357c64ec489369c58e4301e6d90a5b09f5269c20c07a29d8a1d067c128e9c743639130fbc2d40bf32e9cd6dec5ecaaa98c92a85ffba19b81815f0e4772e8b2b86b83af75974be60ad1834606bc275f97c69f4e134ec46b8c71941537fc10af157751a015f7c96ff8a6bc1deab023576568bbe8338de3811cde04a721e19de170916f62c8f6d258016aad1b0dd5ce0f107680dd75bbdc39014c707a4bb2f43cc414eebaa9e4a6fd9e2cd3b0ff327d8517c055cbcf7deedd7079007dc24cd9de130beb8a5367b3dd34452bcf73ade33b15f6f46da2312e7933ea6234449b11f0bdca9a4726de509b5d8ec8942b9acdc78f54b94a8e9fe74c5c2e3bb346db2902d7ed68347af2e15039d90dd8a9e74be098afd1d62ad6efaa24d6425e4b0c3edaaab20f97bef3538343fb6f9e6aa87da9abdf6ba98d3ed687d50dcbecc398aed325c2e80ac372a325d9ff1e8f808117d651b04ac11e0963972bfacf55289c45a4e889090d9e3582cfe817dbd2d31a24af7a4f3a7b4b30b159a69c8a118ec71eaa74dde107bbea398ec6c2db3d66cd8e97fea335db8fb1c2da8cf5a82dad613143bd8242ee4e62193e8c19fab7d7e6aa80f87ae0a76963bf65dbbeae5c4ec71ff1fab1faa6d171b562ec69fdf8d3fab060d611e978a47c220a866615911ec02e57d83450654cf3d1959931bce19b598faf1486c426e4293b12c99dc9c7afe2ce3078134982b3816a3dc052b0d81a39c7827576a339817abc67314f775dcc37b1e860c7d12369ef8113e92117fdcb2feace5e9156394bb946e69bc58e94b6bba0004b4028fe55eb635bad4900377e8c75dd8fb1e027cc7d574da7340c58b0e854967d58c5ffb456f27983872db315bf1cefa602cb7638e45331526326cfc4e41c4f0d44373841a60278ff00950deb77d5a72e8b358be53c334175934942386b86b89ef9402b6efd7521bffe537edf97fcfeaf78351f6b3aa39a175835f63ce96c8ec098170c82ae271abc80c6a2fcba2b1568b38227b3c9922024bad0f826660876f4b71940e417bac12e34d5ed5583dd0e219e2b34de51c0d415ac8b816368349702ace10bc831136677b8006045018782eede6dbccec3febb63eb858327fd2e7be03078b2e3be1c6967dce4cfdd91a8f509214fba682a713b10543a8a5d8faae02e864f015c867bb081760f0a6719af90ae3b7095132a6ae68bcf5c44bb26033abbd1a1de92709ba2f0d19ebb200a3e17805968178effd6d4f9874abcdda765857dd8d275828938f168042c96fa16d39be792159304108f4448c7a3c527bfa91c8ea83e1d513f18ddebcc6f5b64d4cfe7b72f97f69de3352d57e00c5679dc3b8b77d570bd01c4c32fb5de95986e92ce0d70f7f5bbb3c4c68cc393aefb51809dca5aae31f308c6da1566759bb9ff68a3002b8b56280c0363fd5743daa0395db59c2e7727e74efde59bfe9f7ed57704c51e0116159127fe254ff757b12b0e48ab72253c018c75fa3bf5d8d3ba37c0aca6d7c6ac105e845470a7d2d9334c08ee4c1ef2abf79006ccd8486e74b3423e1194a01afeb642fd197e152d18dce92cde64b26034bade9c766abdd87ecf97bd80399b6af46973e5492cfe7405a14380353e57846d5842ce5e10c6bb952a4749e06b5f3b8c7eb14b4aa30316c15811146351764394733616e9b17fa796598be9942619ca342d71837fe0c2e39ac9ebb2a6a58a1d088fa7cbe0d3e5f8476378d369e8718c6edb00d6894be2ed9a813ccfb4e3d7156d8b2c29d1cd03fcdde1f05d09535b9c4a7b516912aa39aab99f98afa2cd0d63178be0c7c2af46d20ca351f0052804149a59d43b038b0065c2a118bf587c6a25b77b3e453515c39fc9de365d67c845f26c405a13f17c1323cccd7641db264e9ee750364794a1e4da0fbe6cd6ec0a8f02acee853c780e4ce78e0772009db9db629f7bf7e572bacb64734b24e6d1a5673558960c086ce61a072bc44e5e2eb5dc9634cea507de86678e2169956dd275fa3b2aba9e1cdc835dce14af167c84c05210b6f2ebaec1aec1c5183e47503e3116e1ee026a64587aaee53622c09215be8774569fa37c151c40780e291983a05685642cfc77a71a6ff0803c462f730f5bba8ef203d51ae3bd89e4c2b1cbe52a4731b24f8dfcd599e97cb8fcd0b689ef14808fd455e77c542361fc059ed0dc18051c09c70a2bd763e786932b39038b48066ce87cb9e16ee5c9cbe2baa50ab13ddce9ba1f03d8c18ab706000bc7ee30eb5e6f7e60122b4ccd587323690a4f0acbf0f1b1819f7fd973e4cb5e3248ccda07d84a3cfbab0aeb57aae5b4b044c345d6d8933a82b10e1ab376022c8e2e9704ace90cd94424ca512f22f115b469e54a05b1f150d2e9ca159cf996cc2b0c7cc52efe1357fa69106091d1b152b1e1d5b2825b9dca5ec0ca8cfc447d6e88174e23c09ad9e0202716afa284fb31292701e326cef623d1ea17da9317c56c83f785065fec1978ed18bce9c0a90ed69d3533b1adb640c642d2e7b784fde7b8c2597fa03432875602e90a2d3d9f56a3f9f53e4a720c5da8e0a3deb840bc53da8bfbce0ba66f2a8cb715fa1b52a0b1b6150e8ff604f6604a006071f50cc0af995b4a987131bf6e475a6b3fd41b6e881bad19d88a7bc09d31b0cc505a517d16008b9ff107f77d35de7c00d31e5c24004c947f0b7f3a9dccb1cd165015b4d5efb5f07cb88a002960acef5ac89299b2f7b19d6ed70d76afc15b22336b8a667304e7089316d67a85091e8e2d40330958828fb54e164c8700d9309d53eedde39bc5688324dd657231432efd60668583b30ec8b1f82ae117798e8584303c99bdae54db3d2474327cbe4c70da771bf2ba622596d09936a5a3041f7fb87df03d089f086793dc6700fcba2729bdfd29c2e250cfa6d38b623eb58b275594d81bbf291a0e75575f02925ac57a3177915e0c29194368ae8e9c67056f5085dbb377b5f0b06d9b10ea7cc9698d21167e7e8f3b4f65477f02c06aac39b6f2acd6f59d2a40ee8e2c4fdf5271d37e5f1af3f6d812ea04c566a06823cb427a8b35b18a9017564cc5129b586be1181a6fcb80db0e4977dd2102bb2080ab32736a6679bbc7acf55385ff68cb0ecd580798c4bad995267525c49ffad517dd4720be84e8f106455abdfb425ab143ff566af942b194fa86a17cf518bc23438c75e09875a477b58c3b95c11b4f0834221c89a410873b896e6f542432c6c1bd0da000e3112170c7af5f282d177c5296f3ae54f8d18893855c02370afa1732aa66e279a371dcc954f60c837a9f912b32b2d2f10c39de006490d90b678a72328a879e1c8acca6f3cb62dec6662cb3b702f527919cc47d24be457ae13d54b52c556c4778bb8f32c59765251f5051aefa7a37afe2e819bcf1f8908cd54630d6e0524eff12b3c353a871160a670b42525a8fb3ccd788fa5c03288945c5e087c30a55b75501934a87dbf75a95ada8779d63ba23a7377551317e5d413d933d1008581c5d3ed7c0b4dc41d294b0f6c5073040170d6ba953206bbd276f73642b4c9914ba9526fdb6ab3381e266c0c7e17526fcd86abdb72177248aaac3d62e949beea9179e6a9c8f34d33765272ff03a974b94d6d7aac96ed35db74f0d763b84ca5a40b977032fc2948f2f57445af7645855ffac81dccf552efc5436c79ab9c601b8a1bb77d35d26e18e68b126d599e245551f2bd91f9a6ef0e1c9483e6383141fefb027d71ae2a46391fdcb2cdc5863bd2669e98915f2de1f9e63c0290074e872a649a7e2f893497c5aadb66585b341c99d3c90d3338ea291637c43ce2e327661abc3a29865c215553d13dbe1d849a440da1e0b87faec62014e53e1fdd1019231ddf3c8ccb1cb99828545a83daa75cefc4395aec3ae623e13b3d14899298b4234002cfd0a2c77d1c586e5ee3c4f907f037d10302c7150ba3afb0fc7ed5900ee3086379a130236081b6fa2be056cdb30b2592eb71d169593c3037601c8a5b494d5cc721163ed0eb3ac2325ff68cb09c158075b28ec9a8a891af8b72f3a7ff24597378249ab671f492b4fff37b927e580a3e162e1e8e3ba51cc582466d51f00661d315ee70b4c052422e8f339d3d9dca974202a2a7d85b841e7d36d524fc7e072e1a95546959d855884fbb124ffaf8bf72b61bc0602806906ee61aab38a3f16cbd6938c35bc25a5d001b7e0a0c97883d9b798a930a66f0b2ed3f902c61fb1a022a93c79d92b2771d53fbd7f838faa1e5bbc37a4ab8a93e9012082120fa73377f9728e2e9b3b91cc1f8be78f27f0c613799329bce90cc14c2ed7e0634d9eb1a0659933715d61bcabb63ca81ab92aab5f24b9903f98eaba8d244951b7cd03398c9bf0a382953f1596fc7a67c1d90b48c814495ddc95021e052be3436817d93b0096ccc2c2c710ce1dd6f084b98aae8e16208d865ab0efc914d6228adb00b0f40b15b8ea4775f6c0e4573feb634daa2defcdebb0e16ab0db01ec9473e88ce0dd9a944f335220bbc286a38a48ebb6b8ef742a0558c064431b4523e758d8bdfbc47236366fc62e93b08ca99c8e067882e326eb433e39f54ddfc033e1fd01028084805ca93d9ef2c918e05a80639ce2326f2175782cc30b4f26bbd7472278865c9c9f6b5fe3d2ef4138c5f03de16bc3a74b0de9612ebcbeac0e8b18cec4c03f1cf8a0650ee5d44fadfa4c636c7724c4aaa09adb185516f7369c0b386e582f86d45c5dcdc59231c73dd942da12483a1e49f5a1a2f6c1c3b16dc22f4c79480dd890831486bd0f0260b50dc5c1908b85859141d02d247787ebd4b022a2125a3582cfe04262b33fa89a4d974ffab576c8c6a3db9d59b33749db06783738622d0b798744e5e4d0829d6caea4dac485d825668d4f96fda39d00acb61d0a85fbcb585b9d89dff4fccbe71d3f41018c858322adae233ba5b5f6ae80983efeaecc9d7c90018c35fc508318eb60310b79114edf94710c053b43037f2c8e7e432a4d995c6f250e00ebcc441e8cd7943c150c61b0c2a636de73a732f03345e6c2e39b62c39d4ac7a31afd2dc5e94d41f74a59b59d45bdd57621931fc5fae07eb2931ba496048c08587f0b3e1ad6a603abc56f0a58fd81208200eb441afeabca5e327a5566b95fe578a4597caab13fac99bda7d6dd528d5d530c5e14012789660b773a92c68281f3a2e5507bcdce5e9171e0d37b92eaabbe264d006ff0709e035b32c3140b8beceef914e0d7565bdac60ff56b2f50a1cd7a578a6128a40684e79996b3cdef0278adb193f51174248912095251f71ecc40a2c50269d738f52eef4136304b927e3b7f13b90bc3bad9f9408113932829624349112f60e51d4c95f6551becf604e0a4c64c0023641db8908e35de48053242691dcbf0b6b4936dd7e5824f91dc899d7162291bbb77c3cd022754638883091e267bfae457674ac5620daafe98467352e5b4dfd40888d062cbc0a94d522176a3002721d03ac7935567f232ee583c4eb6892c2ce3ddca5562c73e00f1dc5dc9f865769b9b25b1ec8fdcc9ded561a9108c447907a248d4f7bd900607dc709583dab0bced47a32bdcd2e8b73b4d893dae54b85fb05e4cbb2d19f014b0acc99258654ae6fbef9ca002a9161f92749d9955b3507eea9244775b357c45a6b49704809dc68606044cf648587813190461b93b581461c76b382cb0e8ea6c438aa3e5c5ef9170369b2f346477b80bc708db06aa2b0b8659b8807be6531bcc89420bf39529704fd2753f12b013cf15551bb998b17683597d060e0158a19258076553c83bf9d7cfdb7f4246c74f28d20a015bfb9cd6ca9efab364310942faba215948acb07e9daf7f2f57f757c6cc0785c64f4acc9f97cf7dc5b547847c7ee755eec8232dc95807855947dc4f9045e0a94de14bb23233f9bc8914de640aa2257d3efd4f00580bb755545707dcabd8251056e178c0e24d24bd21f170f4cc662b52d5c2c97c5f3edf9309b3084c5448f59b90e08289ad699ef1861fb703609dbe2cd9ae4bc9173f344cde5028ac2581bfc2c06c5baeb0dd47ad12c179261cc357a40058f07143e65c9fa8fa9a5754dd9eac35c52bbdd6811397796887ff330d9c4158b39a6f89666f09ac7725ceef903e38dd80a8decdde0eb0a4b3f97d943607713c918a3a61d9060b7d7c488365d224b3bedf559afc3b2cb183211be67bdc8605278b72397cc333121807de5df792debbc9140023c0236cd2dce940eedd83ee4cb82ce138c0710378a5dcbbcb044701ec1aec39bd0b698db309d5fa58384aa29110333dc489d56259d17be8f2abfa866b6470f539fcd158e14844a72bb7dfc398bc8c90173818b713a18b6421fde41a034e01f0319cbe166b92f7ad2278b44c9e609655e52c93ce15718384eec2a872b2cbe04ffaa40ae0b8355a920dd779008b01ed470383695cee5fa463c80a53341221f43fb0d576b4e5826fcc174ca7f2e952202391872363c7d22e96eb6ef9a9d12ebfa853d88bfd3aea7471f5a678acc342090be3ddca947f0332247da854967f88018bfe7285ad70e482efe2818b1600b4662616674f05fa6dfcc70e205d7708c06e37e8a636b2ab80b17687590d16de3fda73b765acfd2f143e6c4cfeb2e3e79fb5fd840c8ab4fc616b5bd2daebb456f1ec67e285c4d7087861c2f07f7c33f0d3edde39f2e4ff02eae23ba3258b8954a857b301b0701c18661dc15d9fe6db228999153c93492c459d6bfc91abb2e12d69eb0a971d2ad5c4117f4a7556c1cd8c2a44e75085486b8cdb2bc082e0eab2251331288d3f8dd2f8d533b1b5863858a0c31216a6b4162b29f9dde54c5159725ef5cd052696ca5e52b7c8ae5baca8992fe39f0855223c91d6b1cadb19ad8030b056240cf78038dd6b1cea236a9d45135b5cd2af8668ca011ec5edcf016fd2652f41ede7e9ef9e7066e30565af2bb5792e110d7ce37e7d72adf62caaf3dd74933f738d83d7af942d0f126efdbe6eed87face35ee7680058f0b751995d3b158a1031fd5fad9f84642481d065c58f7773a7cad2a103d0b191cdad14380e5fdf21464c3400f833e968ae68f46ed3160852b686007f74bcd7c49c72ae7cc96a46381419ff215847b371c400062385c284d359746a9e703607167f2b546646d044f50eb6285dbd05583250d5899938a04b4cad5df00c949e78a7946d47ed7e629c10dcb80bc682f983b034e109c35e55434c084e13a7ffa326ac3ea76a69093e5d9631c03633f8bb07b5a87ddb1bb8e6f64500da38d73a93a425d13bb41a06ccdf75aea660436ad28ff33fff8d70107b6de92be4e288a9dde9208cd8588db66f2f8ba0cc1540a7f2637ece93a8db370f41287f4167ce6a740010b30bf64de285ac0c827a280ec5be61291b03076ca5a67e03a35f26fb8ceed3f43def8e545ef057c96c2caec5dccec74a4d4d3566e644c261f70ba6e6febb007c06d2a634595815365e4ec12b31ef5e423c0f2160a7d8cd57c108ca5ebf8fad3969f7ed6ea0d8ab4da7624ad9dd35a6fd017ffedf1b7788e68912b213016b68dc2d9a33143bfdce5fb7fddff93c4b3bf2e9afd947af9a97bea9187da83c4ac23a8fdf3326affacb4b1e81349adab6ce2aa74d57ffa9fbea90c9e7564d5df921bcd88bddfb06cc215226af5cc9d4cdba3198ec19d4c11849a8d84de460a186b78fa5d0156adabfcd4a6c4f2a06ae5456063f8caf3ba53c3d974f56d0c58d344212c2457214da3e71aacc1ed7aa482e3e0b88f76e077ad94f38ccc2e4f01690b4835e578379ac1f381c6e0e554516ff99996938c840fd829bfd5747d05035fe57474f01c2c1c893cb351026f054405271106535c461c25f678c259404daf0fd01633c70385c45cb80360a1d033d0568690aa9e846e2a75786114964d27d28f6449d26f5db7480792a5673508b2af79059688fda1bcf1c45d9fe2431d022353eb60f6af164e5e4647d87a5732ff5009a76fea0a3fe4350987ab5a1f5b6f4ae431fe933ae600586c1d696d041cd66c49ec469e07a9ed8eb4767b5aab3daddd91d1b3903372a1184e6ecf60127e555d4782fb194207c0e5d35b52009a56573e36e1060e0638a6d716e1c2406d581ba80d8bac2a8e44fcd8ebb0f4e01918bca954ad25159304b254bfca210c0624b8131177799f1cce46472ffad73d5399edce1ce5549c6c32a66b217f89462d73df55f97452c2bd6d826f2a685dc8c7fecdc61b3cf839d8438cfab6ae271abfe74fa550271d2e005879369813809690f61ee1d335bc5150d7f04d69d4afb6032c08a1291f09a0d045a1815f2712f886103a76fb94ae0b6f1df6b5c14e6e2c530360e1d805665d1f60fea323d7c75807abdaa0e979ffd3e69f0263e1f8cc075b3f0991d6ea78cdb4d62b9156faf8ef85aef8dd04cf199d3cf21bbf84d9ae612e79f4377c670cbc49d755fed9875a8803c3ac235413a8d48c2a6b1c4341e342e1c41667eeb61839d1d2763ee3d02c9407cc3a22d5d7d45f51ebfa2d116e9bed9e4fc51bf539d3d97b39cfe9f3b993fe597dff60cfe4effc0e124be1e48d9d9ce0708c990a0300cb72bf8afe04bcb119e9eb3ca9c6b246482ef2be0cefc09fbd25803918e8a7db9de76b7fc61bcd882dfd38810f4f060c82d7a28496b729b5bef26bdf47c7fc1aed3c984c034c114f27b73bb33be6b3079799e397cac8f6ac0b686fffa955b4b11f29b6bbd2b0330f6a7ebf25305ce5762c91c54aee609a46fa459de22b49fe5f03010b5581196df3d9b09c6db6a6129eb281563954f026520200abb72779c3ab2881dab06e106d582b396db62418f739ba3dbd00c2142a5356ef02d2da80a33dbe594cda68de25132721c4a870616e2c8e7dd28f6b1160cd30a84622d1c83100e8fa59b2d003f3e2d06a1eb0d1d8c5a296ce28ca2d67f0949fe268c71adac92133a44b2763033eb4da90387b538cdbb0a84432dc2faffc930f591d3620b80646d35c12e5f809400ff702ae8b59ef48e022845b72f034e90239a2676e100aba580d0bf745c060056b21387da35ba243b26da2ca9239e0465238d8241e4e22fc1640468078ead4ab1c2534c662f2da3f0bb80014935170d20983b264b13ec7efda2b7a0fbfb06d856b7d506dbeaf1eb92aebde10904e124606cf98cf33e4bf49baee0d1bec0eb008bb2dd8ed1ebf64a652f50c07c5ee30ebeaf1827f0260756c5f28dc4fd5065ef71f3f6dfa29622c2a28d80a4e6bedb280b8735ffccb60ebeb819f945bbfe5cfc70584c03f8a4c9f450cfee22bfc863b47308111117df25fb98ee8baf38567bfab4571509875a47f211d157d5ca99c19a6d0c8e8f7e49d3d5700100004806dad907528ad9b076ec88081b88cfbb1795d80ff0a8317100329aeb3988136ea8fec577908b0833f9ec00fe080977d9cd85c38770f812312dd7e5e1b5ca1a387bcf87d3a604ddd54a264d5f75ab208486870a36415968b248aad5831126fc2c77bc24f2ce77679dd974fade4a28e9c732c983ef1c61fdc918af7f353ca492aa261c29767a27dffa1f36c98dae1b5488b72a300ed4123dab3e0231acd0955fa18e95864df62e69975e6e9d5fc93cbd95d8b793c237a61eb3267c5db59bffe4383ce592e66fc850e580d4ee6c8f96242268768b43a5fd8efc96f30a74ac60285f839d359f4af0480554258716f7c5f4fed4d836f08d35eaf2b55a4db7e7fe88f27b81349706cb1662c9c4438f2588189b42a7f84767d4e6ef17add8c4e57dec032abd3cde24c67e26e45b87282008bc9d565051c55b2d06345d0d0e1ca929f48a4bfaa6f30852a7e412c3ea96d70b32596227423e873b9d3196ce1fbe39b1cd7a32abccec1db4d00079be790f82ddc29613f86bb8d5d829d3e179b7e36595069ecb8077520e1b10beda7bbc19bbb251233ff828fded0440e52197d524d7644dc12c2f131dde4038dc1dd3abdc5e11e86749d8151391d8345e6a8ad9186eb814aaaf56e3fa9e1d2d4dff27abe0cb896949331cdb6548121973b95170058f8559e67813da0d687d5273645eaf9d2f036d81d581d764f426c2a22016b779875e538eb9f1d79fff425b10eb4194bdcf8bba38d3f3dda44861f6c059356eb4b0a887bd5179f3cfa1b9e3376bbe038a253477feff786af14bdbe883ffd2b85276df841ed3066ac03c1ac233042a9a6a36553090058b5b3c99477def8c5625469bac9c76b742a4d3dff441330200260c1543d7f5db1e115d7a1c41aeacd097b9cbe0a0e9cd01a8bc729819dab515c43c1c415f48b1cf7e548f3e9910a8b6e2f3fd7d08b7454346922e88035705e4016011faa9cdf295011f0ae14db9ba064d5752eccb8ba2dc455588c1beb1b0d2ee5c041ae9f453d37b82307f73e53fbf949e52442a312f074e2228f4ae9070396d45c7066a30035a52e67133b0a539b2da83d4b36e1c3204022211a64a3aa8c29b859aa7989bb1e848f2b4fb5dd6b7c0e31a5e96fabe87f0276b4dc164f5c423d1c6857e0a5f2d31b257d6e66ab23bb6f8945d7366313805516fb8ece59e6b8a698bd209aba213bbdc93bb15edab6c89499f3c23f61bf7170888a9e7004c92fb5db92d1fc078c0573f925ef3ae41e617c44336c81e349bd3c2460a1ab71323538e9251e8b12e933f94646e38968faabbafa13e0c25b7d11b81e987b503d7041a4b49794a6be3b662aa477c2e1443290b7642c02d15eb80fe39e07df9b05544d4537cc2674cfa70cba3331fe8e5d28564b3ea18edec0483a6a55bc2d4622589b25e39bc5b0c2813b146e4058edc0f3f9c6f0a7eb78d359f8b70013638e87ef46aad513f504cc58d5f36574b02b89795b23fbe2d47a49bd254d3b9bda60cd6c7231555626df44b4dc4de5060116536e2bda6155e97aac39bd25d1b8ca0e4ce524ecdb265e9bea84a6a2ca1936c42e316beb78c13f3bf37c49ac83556d286af8f5d1869f1d6df829c22c1c3b90d69ba4b55ea52ffe9bc19f71ecd15c474c701499be881cfc7fbea4deea8d2377fabdd3f76b10631d14661df1167d9261088681586b8c83111996833034a35680cb48739c5a4221a3d0e7da80610e008b9df8db1367b22de7458625eec472c5e90b9c81d5e2e6f93c81e125d5ba3d9e08f52fd93f58652f9cb986e4b661fd8acb7330ecc2c805c08448eb49f5f2333fd26a6b8ca60356a3bb1c7bc69145c09b02782b18fef457d8d35be55834120e1a4cbdc3eba41e37da8aefc9148e440889de678d2196d8654624b43c59275750e9109e0f633d4e688d5e628b87fce6e300c08290cde677cea7b558936a0d718a80be545aa0a40571406496a28527a8cd2b64ba6ee4aaac3594330faef7cddee463dd79b80670c978784b12f07d00b054651ffa35a511ce45cd4b1ceecbe43f7e14818576719b8bc610d7614f86891c1019cf7f704505e77ac7afcba9976f0758e88a9dcae08f92bd2ff03f487f8e38656a634a7dffb7f457b5f7c4c285b7f4ac7abb79d17e553e349a839be1e032b6dd93c26589b61a2ca407f4ccfd8f0918b2fc4a63135175a6f84e4732ac3dda4fc6d18f5ef7e9249457bece8503022b0762598532d058c2577f955be32a0bcfafa0a5ebb8ba6c6ffe290a4609e4fdb082249df13506030ef2bab9a7a427db94b6e2be8154b77feb0284e3514df73a5f6062712603010b5ed5e02e87b12ec00603995efb7b3998ef573578d8fb95ae3b4cdb265e3b84c6420c58bbc4ac4b275808b0e88c7580aa0d29f5bffca4fe672810668520ad97a7b5f6a72f9e69f804188b1e6c5b54fad81fbfecfe29ad16b9071131f0afc76f2b87efd7928cb5ff9885012b82a3cfe34e924d24d57aef327d35979a42b0771e0c4c63a14a84cdb5917ea991efeb6082a95b2c0fb9eb308cd1ee666105484019646c72dd4b5a77908aa6e3817cfea112efef83a107c69d3ac55774c0525a8b707101dbf1e222204a565d444b61580763ddc893cb39c8e7c49d014364cf7c6a3b9204a3a797222aa763602668b526f5b85251426b096fe667b62d16f08c4c2cd3b00360b1897e29985d008ba9e9999ca44722f863b1bcf1442a630103e2e45521fa69844a3b16675f7a5a83937618b94c7754f0ff3ed7b6a735b89e825b55cc379116257024f218b92b951165297a0060b5682343cefa9e67daa14b1285ed4d95c9c21bf454139cca5a635ca73365d0433016aee35ce35237086eaf6e59f66d20c580c549fe9daae2a31ac16775bdc96a67194c7ecdb01ab9a15c780227a26ee5b9d678a7526527bae5f4f94072ca8e2fe8d7404b67145c780b8f54db4d873e2c7ea6b5df554f5e138f5c621f5f2dacb5e57066de54b8e4d006e1254fdb58301ad9664b39b192dd3618c34d7db7249aec606b3b1e8bb7d405d8425301075377532e990bbcb60f367c7b51e513518d6652e20bd7a351aef4a6484d5c212253419ba774628b8f77b1d05b38e8b1fcbceec4069f7e159516be072fef5a2b0f618611647a8dbd1c46af88c3de6f77b060f70adc26f007ac9762d6260056573e0158b85078a0aa0d9175ffeb93ba9fa1a8ff19455a9f0490d66ed35a7bd9179f32f2bb0a5b14152ce3e75183bffc828e6b7b17b5ebcc33f73510078359477863f11c1dda76c7f1ae9fc834352ca1bc2dbd54bb89e9a6446a0954d104c03a79363be41dbef85473f29258690f54840a5774bbf387d799a805ea42d1f86631b0e3f4162acf19ae734d37f8d8450e91165140842146c5fe880e583c4381ee2a1b7b6e9045c0732cd23c6e3517d6cdc73d59583ab2cb9902fcd4604ea835c4a97531a2a036263c86e2cdfc1d8ee4467ba6c844ce822101ab738def7c5c33ff4433735b35b425e958e3fba845cf8020321f21e6d18ea512ac748fc5d9e76ea351d57e4f46164901b91ea9adf7e5f04f7890eeda4659b6c10b47cfa304dbc4165b6d0f310301601d1fcadcc1877bfdbf1ae06b2b7fb4981550cb938d47021f77cf7b13bd443f3236f0c649bed397fd927cc2e14c9dab22f898ac3c03a2f59b1a57beaf97588a70459257ff09fd1a686c3b067c3047ac04fca6c3ef9421ad8d0094ad0fab81f3fe672411773a3b53e9c8356132a56da96cf60e1c7f9febf3fc4d659d12ad911a7b238086e11c05e76861298564e41ea26dbf33d785a2d9106a350716fcd158fa65563f1b8f7b36d02073ae4465657166988dcefce10db2a39f6c01f40ab204df7a4b0f6b82016b60b5881410de0ab4c4a0ec1c902fd94dd297ac767e8f06f0c3bd6de2a554170c767c234b355301b14bccba4801d64e85c22c5a126b2f192b4efbaf1f6b7f860263169db4b64f6bbd425ffcce69adae6dd35ac7067e516e8d2cb51ccb18fb7344ffbff981da5e87d0117ffa9ee6cc3dcdc160d611fa0d40ed6ca26eef1e57eaf1a52c6c513cb85e22b584187d00b0a6e74b775e584fdf82f935fc98d5e9ca849f73722507cb3f22ff38426b9b24ad2b6cc4223778b3b7c802a228ff4f74c08277e85f29c2454094ac5acbc34540ec1fd7eb4aedb02737cf25d69be2819c0052a5e39158de903b9ec81fd96653de787c80ae4448c0723d09b14805e482b95cbb50c1d9265328303187cf21a57ba4cc7ea9040fa9588a1d0da337f9841f8e08fe090fc2cfa7bbb6c131211b56905f647ed302d2a00ff929005867cdcc10d3bc7f010259716f8a79dbbcc9610e4c3c01704cdd1dd80e0f1752676e089bdce51cff97f7b9d97e68f5433dd2867da4c63e48404bf4bf1aee547266f2d135e30f5875cd5fe3ddfb2f9d0eb1a5312e7fa33d074f6afb2f08853bba0bfcd8838f0ccb1521c57b579f6945b97fd6747c09a4327da5021f7fb820713325e029ac2bb01b151c49b805fa568beb1cf935e60ce1582c4a064f24e3f5e7c104772a837e9949c710cab73bd3d4d67c7c51d55ad27cb6f117c9ab0e564dc1a9ac65021c9db7e5c180d5efce0934c6f00a0807db39c020a09cfbf1ddb37eb16f60c7339080b54bccba314800563063bdb450b817aa0d69da7fffb8f66728b43f0b24adba1d496be7b4d62efbe2774c6b31f41f47f6fff2737a8fd7fe04db1c79faae0618eb6030cb0fb078fe2b7511d171d2664f6970e460118790018065baccc3491164baecf50cc6d3adfb71159e6edd4fabfbcef1c37ba735cf25773a5370a739368f43a4b5868c7760648131c557402410849df4bb00c052cd31e9454078abeef994365b529325416b8cabd2232954ca23880ade4412479f8bec867c9815c11f0fbd032018b024969d9a52370889e7a95bca8e559ec4bf7ea734238f3c5801e3f1145b0c8d50c845fcd8e9cb65a8696c830983ac9f6bdb0ae1dab69c032f171877aa3101604dae96f8f970df09517ac036d23d84e4e98f2eb813c901e7144e342ee2f4b9b3bb3d8c964556a58d15325dd434574cd5a1b0c524e5aa0b571aaafe5c63d3d7240043a81fcb1fb06a1abed8e574482527745b15d4dbae7e5f7fe6b254600a677a66ff62f81297be0917f8897e3c1b6b8e89eb8ec29aa7c79deb79520dcf810b122e4edc46099c8ae54ee018520969c288c2db1bb76ffba043066f3cd157f107c243b57ef2eee34c6762b247edfc1e5f17203d958514ed7f40a9aca5e71a748d6df182014b6acc263584edc99d8e94eef954581cd2edae91a383d7cee1c472ce4badccfe7f1bdc99023a60bd14b39ef431ffd99def63ac832d14e6d5feea23cd5b1f697e4662169db442a6b51a5e2dadf5267df15f75fd9c9e09dbbf2899f9eaf4dd1ac45807825947fcaf1806d1d310e1edba8de54ca5bfb4818327ff1cbbd4f956d55edf6572c6bd4d2ea9adf7a44a6bd8ba1c6009a89c8aaed6c7c2a210c6970e7b320c2b30a6c068024309c00496aac2054454015c2fa2efe6a3bc0835d65ceccb8b8a80b3c8420ec66218f8b6733b41a8aa4bef5ce74f5c57ccdd53cfde911b6ec947af4aab1ca521bf673060357ad8546a70bb321c557832df57377b3878b9d6bc50845c0bad49f06df18fc5644947aea13566a72b8394689f4fed72a6743848d736384ac823cff41221feb2f4df8f5f245d0bc9a93d20cb42bb1e8c375f62ca74784397032b10de7812dc23dc09e419c5d3e7d2ef0ed95cd1f18b62cb832ac7a31acbfdaae39b6212684ea4592f4960e287f90f66c100ebc053ab48ac1fee0e2a01d3bcc4e1c1fbfb0396b2f6683fda349ae6371d520647a1dc8de0324649c4e7288988fbed169e681a08d3a4ff4921b33090b0dc3552588e724a40a4f51c91160016a7fa239410326401f7c373e099d8f680943b3987b6e5c2a1c3a968ba462e5e0b1df02f227437b2d8fac01db870550808e13418c4b062086ae15867fa5259c44e149ccab2dd93c1cd38be511c0c586c42e38647d8cbc2bb49280de1a96818ca48470723e193614ed0cea6ece14ffb1f160058ca9972158a9763568d9ef3cf1ec67f77334227b1b62914ee216395d4bef351cd5b2834387ef6516d28d87a9502e29bf7c5a368a7a7c1f63758d39f0ddda9813818cc3a12e2bad1a33bfca53bf2a890377c43ba2f139ec1b0a446eecbb42535dd2db8ca1eb65205479f4fed05534c4655e962b4c6b8264b02c0044c5a88b4dc88b4a80262eb600c7d6ca2008b8d968059557a64cd2b0dd55c151092f168fbbdd0baa62dcb21d239c180d57f8e4b75dbb81ef957e2f06ea0a735d4548aea712fb4ae2735b6fbf0e44ae904f20f86d153358de0127eb217b9927b00b916d215e63c0085ffafbdf7fe6e23bbf27dfbad65bbede73bf3ee743bb4db9d83db6eb7ed0e62ce1473cec800114900cc5194445212452a302010190473169302252ae7562bb5e41fee38cc78667cff92b74f9d42a150288020c520525c6baf5e2d0904813aa7ea7cce3e7b7fbff2fe48b93e444a18b73154e3e596b80353d9cde3295a7b2c9278ee0d1578e7dec4a2df002504e3c30d93a1fb3c3b56eee8103b73bb57640b3eec3bfa5da56cb000664ea5fc0b58da0131615d67b5b8691e4922f8b876e979adf1865ceccce6d77e4e9f03a2f2cf948e1481355d688891e943fd2d871edba891b8d38bd96412f13e3d8958ee5b46b9a3a36a208155c217a9b11012be6ae1ef00b0042743618b65bacc816711b63d809fc2d968b8f101585b46e2e002c23d727a11512f8c0b963e598f46ebe6048f7680084f3022959540355b9072f637512a6be096a4e72c72183c3195c60a58e41b9ad2d08eba2fd0436cd7d8306c4608adb90058387c198b8159cda6927f6fcb06c0f2cb589b7c50c8affce5a7da1f409098e50d5b81486b53ebe25bfe1feac55b1045d6af4edeaac08cb50598c506586bbded659fb712ea88548699340ca61930e3a51742e4d8bad92f72e4948f1434ce723ace8b8dd7958edb2ac6b30348029ea1b04a55da22eb08ec38ec3e40ec984a16e7beeb0fb0505832d1b151af5f9504f77330c270890b48e46b468b0f6e243ec531be80d5bdcca5d7d9304a6dc8c3b8bb72ea3c0e9fd28e3f50c1ffeb2f72253e0f5049df3ef8e20810cd09eedf9b25302630555b89e83e874ea080060e8ec6516a5bc25edaaa63ca6c1c4c6865f8704fb3f870c3343834b5ab3adaf8b69c96339c91fb2a7c32e5cbd043df6af927909e78973315c9ee137646704d48eb6e7b24763b8070dc94021f23ed80072af3b552516b147d0e94a8bff2dc71960cb42eae36f78e4c67b026115be799660c3b3ad49668aa1517b5b09ccbd52f1760b763ac2d27cd799fc779bf5c97a41acc3a3c938d5b7d917eca7452fb4402c028b0a9da1c4e197d76cea14d02fc2b3c1650319c216edbbf2319966cca8491483eed43a9ac61772a6b291b975ac21c3b319f81ef47cb25eed815c5d41db569bc58cdff2d03b03c33ca9cc6472dc92cf618fcfedd2014bc4921b2e65180b52a66751a8a1160e124d6761c14ca2adffe54f303145a327ea30d485aeb4d6bada92e1e08ccebc59b1c4257e4895bda13c0585b82591b0058c58a3f720bdf519cfea6cc14a6317beda71b5d5e27fdad139b7baff26cd90a5776c3446ee762a171858b15d261178bf8e609e21b99deafc10e3c5e0138e0c3c3beb0693046a9fc0d8372988045fd524b3aec2cf9c60481215ea08f9519a3d496c82a470c3047c76ca695b05e0606c2b683679e5632cef88e9c651e993100ab28fccdbef305f42490e7246e85830f6771dd3a55f54cada64884e2a6c474995f6e8962d99b1efc826bf23e86006aec4f12e862847de1e2be906a677cdf32073e3ffc3a58ba8e4d2555b90dbcbd00cb9a2db0a4298ca8ae1ff9705b222a3d3edcd17031291feeb68984aaa1dd609b83a37c38afef927b9add73fb1df91878f79e9720428afed9c1de2858d761d9839b02661a4322bf733e0f97bde34457dfb922fd409ece9e5ba7feaa30ec0d3a6079e69e3915ad8bbdecb3faf86c3ace28e324226007ce28374ceeaa0c96541756658b6c1c8c6965f82500691106a0dcb85f1e399540f977b5a163d678989640b7f0c8a27b38e238bd84344801596098c47da1dca073f95b10021f715a9cca82076c832bb6da195d3f00775cacc2808efcacd7c4dedd15755d966cdc10231fcc37df2c73ddd70c7eabb5dd2e3bbc202c25ec4a116919e351572661232de88be49ab754cb706785c49aafb2163318cb1f66f5f715fd7b7bb687b1d67250b8211d85daca773f51ffe0531c9a1f30618b495a6b4b6badbb2e9e71e0b8d9211f4b3a71534b30d65660d6060016ecab381d09dca3f1fcae0851377baf9ca46f9f4c1722eddf44bf0e952bbd6dcae3e3469af1dd10616332cc5827160b563dd143920a27a219741500b0bc3e8323199eddb0f7c56d3ed8861600089f598cdc93e3866a7abbd3c8032de34d188025cafc35bdb6869e0e4495e9ee935946bd33b59a02876113dc233359625a2723bfe9f3a2a837e956395e61cb9e7d4294ca3e46e6cd806e78c90156c61b7d4049c68ff02c590264c5cd32014a89d1278ca2c324965d22295e359ad5732e97792c75574637f02647f9799d248dc88686bea1acfa9d5a172af1b94a65a648d3651ef0312e7b87d184f10550c6ef307056ac3810857faf6420eff872e9c94bd25397a487168512625d44f56106189a50aa80122ef8d129a23c6b862ccf22e7cf4246f9e04b440c2f123c6bb66c30bfcc1a4ba106602b303d25e40b5fb9dd8a8c203bfa926013826457a7f6c31e40a1f75b3159698f755c17611a6b194b0ad2397e0b238b6f88a7f258c2de50c2c4629f98fe2d88afd63e95c55a96e0bca7113a729c77d5bed9f4f6b362dea67ffe5d15a5d602a5b55889186b75cc9a385df0efed3904606dcf416167d5679f94fff093f21fa050ffe0137fa41538adb5a175f1f097e8958ca8dfc4a898c9eebaa1ed02c6da12ccda08c0a205acb2fcfe24a12e92f5e1c537ac522ebddec852db63b1110dec5fb125194086e95209c9587748f3d79927154767734bd96b0e08894e6302d792c9391abf0ec0e29933e4849d5cf310ed932ce5e06d34e393205f67a2d967ee590de37d7c32586fd4b8127055cda1314fcb0fb3cc191fcbd28ee4500f20611b029865bf26e8bf22169f4ce414bfc7e1bf5f55ff55f748d6a9e9acb6a9b44a670212264507011ed82a1f2da21adf000a71120b967cf88d95b60878befb56e0ba274086c0108fb7bfacb13b8c9f1503191dd3c9d8c31b09f113400f240dd719fb1de1ea9f9947649d35ca42511389fb3e35e58ecc6476cd031c1762d15a549bb5940d0307a3891a29c612a864d8dcd3eac6593edf9633f6b0c26b697c5e67bea1c2e907be395566407dac4a639886c82356db711e31a66928b665984c244b1c3b3827211fc86e98caef582a315e118dde57c1aea9e75c09638ec90d215a4b44dd4074cb60ac28f71db8e69dba64e4df750eb95f7bb2b07d6102430c02147da4ca1c5d35907862a9c87e4bd17351d87aa64835b8fd5f3640f0ac993cf70d0bf794b02f1c1e5fbcfe24b831619f536e8919bba72435932955e1e7e45c32df52518a2130c120289d61cb0d25e0d7b67fbb9d12326b2106ac6030eb76671e022c7a126b6b0f0ac7abbffeb8ec879fe028ff21095bbea4a509445a2f94d6f2a98b8717789d39b246dd4646fd6209022c1c9b8f591b0c5854f02c99026322e3501fd86be37f9705a9f361037958428e4eeef762ac9512e4a67cd38b6ca6095fdebe0bdceef325fd9705ce5b32f5701ebd1d6c7d80850d55c4281b118693f6403f780dee25521dc883f69a00a5b2eecac71fa8e0d937f77d95ebbe86f13e6c3a5859c2fe84527da85c4fe681e057e0c33874200beba8230a7e633dae71f63460a36640e000645cb8902f72e4e0efd5d1b59ff263860b05d08693524045c088f833544e96504bf8cc63edf05d193ab43a9f07f4d6381427581d9290d03c5aba7c000bfb1feff428b7c6c0a56e1d43434c56ffd0eaac3d06def7e438a1a528f4b88697087ec337a5a0d5d192dd389a46b613128d6cd8b71b060e46138658dcfb4ddfb247436be179edd1732296d6d1e7b5d38f2b1b6789f640b8ef0c3122b65aba52b2592c6c876629a4f6f4c393a8a01beb8139ae9336a9630fca94fd11bedf5770e48f9cccb7f1353f61488511d12f1720f76b17a98320ec09d9f62fb51901e3dbb3ccf5f2a8b8e765e400dc8f3553e02fe1a9089b0198a894ce70cb995d55a2b7a921f706ac00985565e1fcfb91dcbf1cc9613256500785c91b725078af36e663d50fc908405a810f10574b6bf9af8b67812df4af356b8c5581cc7ffcaeee8747afa83aaf6b3a6f68b606b35eab1edddc29086b36bf3f1936559b4257489a8ff48953016339a2002c608982850aa71628c6c2855063df2a590ba1184e64eb042c5a8f8f4c17a2b546340ec6b44fa0369f1373e9b000ebce13079757788e1b425c1c36fea0bcd2c7048d015865c59f1aaf2b8750f3bfb6eb6c89c61a2bf6594b98a79cbde4a99c54b7afca1953e64ae7b9bf9738ed9dc5e775f0848527af7985d3bd481e9a906b92de7d866bcb3e754936f2a062e979ddec932ae72d79cf45dee133f9aac1ac35f9ae10164c09843e3566b8f02d78ea6d41887a91da19f6f08629776432118f322afd394b96fee0226b58e4ba97b8f401f5f222b466374d20cf4ae0e0b609e4db0dd04c6f4d6d1c4aa2e72186bf5563ff22f84b08728dfc56892c32ef29a8f64074d321bd15b64cedd6aa3a6d54f0fbf7c395412e9033c994b22b62acbb32a46bf56df9f1f9bc03a3691047677360ca711a430a43dfa0aef94963dae02de47e8d7614a3f1b8ee4ad8bbd5fa0b5b13da915cd2a6e25209e509869d2ab07e323c7ce08ff097b66b7c7836c20b904bfd650e3c10e0aab6cfed54c7852d0e9e3547612d8250a25805b34e188afe82002bf72fed391b7350b8ae24d637aa9f7eacfc210a1a6979c3d67a0e10d72df7e075e0187cd4ac33228fbc75fc9a0601168ecdc7acd7da2677764d8c50ef4993a8fac36a1c5107698c05ab1d9954b8e629369f7ea8613096766c03000b598979d7d600f3d578331f5a7d970bf0e7b15d1769c758d4ede98055a3fc13f010236331f548ab5be6358da4f8b607320e3d19500bdfebf0a168244cfab412f6acd6ab3c2cf9031fd2bdfa32979c8d335ac9224e157749f50f9028be62e25e34ebaaec914d43316de384b3e41977212061e0ddb5542c3c9de40fb0b80463695dc9d57676dfee43e3a9f43cc410616184fd8b00d3c96512d6c8ab3c5826eb26bd9746745e9fc8288117e822b7fdeaad3578c8a40f9519555823008fb04391ee423e30015c8791bbf2a9efd49e16cee775f02325d521f46b7eba3f8372bf061a2eeb0f13bd4cfa0b1b1bcd13e958d58f32aba02494b15f85f11252ff82bf87db1f5e0073152e0b161986a9db30be4b6ed2cd0e91350f0356309835de5df897a30460f926b15ae980850f0ad336e9a050a8fed5478a1fa2c0984527ad17496badab2e1efeebd5b1b8ee089accf20c5f0260e1d81acc7aadd2162930ef60c662b81dc3a393389e2398e64caae7786e8543321651868c8ee79e9272cf67beaf6158cdac17b080f662180b24ec9535e6f006573452ac994eee9a43c5ef2797f21a26f39543058709f551e71df5f8c3caf14795cebbeafa192e1db05c67c5bee741f36ea38fd17bcaaea54291915d2d42a88b607c3cf85ebdd61c5c5905170196677468329776603896d2bedaf6017d6983d39b5ad21451d2180ec169619e49c9f5a8eea77ec05d613d9bd239975e3b8af8099b3d33004beacad78c158928e73b4b26cf945c618f519b23cb4d11e5e6882a7bcca18964c3b2571ec2489860c2a8e92f14a035f23c5a2381dab116bf7684fd93f34d29a42f786f086f0776dd53564592de7d55b648e40249f877c145005c809b1a760b703be0ae828947555c1fc0ea36658ddd570289c2e5ea9849c6fa0b425dd4b67fb5cd88a6d1647800922acad3843918615981859461aab4cf64c24580cdc0b12964480fc4092f8607144c5dd80d2a1cbba14a720b426a2da0035660ccbad595ff97a3792c8c152089d5b26ab5fb9a19abafe2f71fc97f8842e1898f7d61cb97b436a12e1efe9faaebdac8a8f20403c5cac7333baeaa8f436c1566bd466c6a77f083866e8f8a330ae55409d4347b09149db1e0897cfa928cf19e18b014051f3754ee3b7224bea36b7f57776af75971d77269eba2a872bcd86f158b2543d8cbeeeb0c0b43fd507ce5509ad499053fdeb6289a6733675dfc735dad25875a18c66f50e5a8354bb494dbe27394859a78a072de10b7cf17354c737b2f897b97b94766721a8692cacc911a6bacc8ca7c50c2f772ce918d69b020c1a5c0dd52f078c5e91361df8e3c3fda9a28caf9d0ab30aef66bd63a27987e358ea80ad77eca5fc817b0ca468aa8c4e4f4936adbedf2a3e7c48aa182d6b104cac709abed33f2101db399d8bc08564d780d2c9ff06258238f4ea265724757af0708ba17a454b70f2e6fdb4442e76c2ae5430f8c357a4f017734ec1c8e9d93706980c58bfbe58186f0914bb2334faa26bf2b775e179d5eca820d0f2a0935aebe65da59513e9cdf7f4d7a6aa9504e88ce20616147147c59d84161853f8453d329227b76993506367e305755c630783ac9f41e85e1b2818caa914cb533090054a08f12c055f2d3d1f22a87c09a23b716e25815b3aaccc5ff7e2cef2fc71880954325b158182b40b57be3fa9358b76aa23f94fd08e223390e2fd86221adc0692d9fba78b6b496dfba78f8a35769d726853bbbf687ba9f1e5d29ebb8a206c6da32cc7a8d585699a98e1d14029f8e450962acf0ba816878a6508a09be65e658b5c8705dee4b4b929349366f835eaf7ee6efab47bf55b72ff1056cc7673c4b3a3a3fa2ce0a7b517322df10cf33a753af397886830b4e679f54f83ad49a2e49a9c5d836cb030a9c79ac5df89e85c670426becbe62f49e92dac153d1bdc2028ef6337cfcafb38f2bd0a1c9152e2cde84a622e254a17e137534767a14a5bee3a5fc59012b7482b23ff2e452e1f03dd5e477dad92795e30fd4ae3b4acb4d65f765d9c105817c089dd9f90256fb124bad3acabe7ca7ee3d5f7c703ca9ceadb64fcf431c9949973bd2e09f60ff506d8facb445c20aaa3687c3520a7c2cd3878a1d59326786c49a223026f0fb93a896859d1e704fd16f7019e1430fb880d5350933471edcd463f7955d174855390c584d35a1f34fbc6e0ab89be04eb15ce5c9f461bb4ce1a96e3c179e6f4413ab5c638966703f5014a1a81c516ac3fbae2c42528bd90ca13446182f929b2e557f98bb347307efc0372924b67cb9ad1045109865e92bfcebb17c02b0d892584154bb6fe04161a2e2df3e94fe0885ec4734d8f24e6b293722adb55a5d3cfc0df5e20d89df048cacee3f1cbb5c8e000bc79660d66bc2de509e2965dbe7ebbac3d7855744c86ec1c2533f10dd3ac654a5428c45941ebb6ec90ecdf3586b8c4ece0b585106b30e69167b47d67f452873f973cf4525470454310b1a448e1c1bd5cc4fa8533248cb75ab8c5a8cbb74a9a8cde79e82f149169e13cdd5cfaa717ff5d423f5c83d397cb0334f2ba997cd3ea9617c3b00ac23ed711426c23b036eeacee777cea6927b7ad3a63422ec8ef0052cf960fef41316f576cf483dabd55f95cbfa52198065b8c66e9d44232d4dcff992fac1444f1e6220bad48e8089674e6355dc2eb74423c1fd33694d43b1d45ff2fb77f0e93f3d043aaf4435e00276da86ef0b3b04b8a947ee29604a53c59418b04ee9d2a94b7ae6492565b36dbbca3f75b64064dffeefb5515136900a77315c8afe4bc584c2b0a4ca11ef3b49784d7fa0ff146a863026c00e10356de8c32b6cb1fd2b3caa34132876e7d6ed6d6a2001365b811c4561309875fb44c15f3bf2ff4a25b18e6e68b5fb1a65b15ad49f7c50faa30f4b7f44621693b482486b0559171f58ee81485f79bd7893a372321f000bc79661d666c9346cdd5c47bb5bf6a674dfe227a291bee8c4d992e69922d288972d4e790316a00c80cbf4230dc01051682cc57ebdf0583f7dae50b446d918ed700ea54e89ad3c30698d3f5061d232af7832584d4da1a8ddfab684d13b466f1f1b45192c05b6cd81bf9c7d5c41d5ef574d78755c036071627e8e4f09e13513df9579c41a46e34b0d7bfb5414027b6ecd14a773b91430c87e473dfa5de5c803adfd4e79f3e1e8e2889f5143a36a8a187f58c98a4778c2e03a39a422764b2acbff900e58aebb65a82bf04925e5c4eccfcc7be096bc7128192d8d87bfa67d48c2d78876382e3384e92e20bb4f98e4801de52692c0f8865de2d4cb37a18b20ed0bc14a131a4b64f348e289f92cd3a5120026b8c87031e172e9af2a4e5d92d54d73393521b80317b62270a9299b6db8e960c203409c5ac8ac1f4bdfec8fbd65213346005877cc24c304c0ba77f03438369be3a52d5cffbba2828f597f5ceccc9b27a61f16bdc3cf04e4c688558577cb2cdaa8105a7301b070ac8a59cda6a2bf1e2700ab63b524164bb5fbc6cb623dab4b1028dffe40f223c02cbfa4f52269ada0e51ee08ff8c56b8a4fd715a1077e7974a51ce2d84af95662d68e072c2e3e95d3b108e14875c8abab7a20be6e38a97a385d3394a574650968f5ec2267ae7c305f3954c83825d4f66792699e67d5403cb04c02b88cdc95533626b09221bfd8f3c82fb669626d070d55c399b8da94924da24cd300dd00954ecd79bafa55c2dfc096d476953748b48f911d643791078ee3ba90de6b6db98a74c0f14109d0187c72f8fccd6778f45f8d6bcb54859f98c74b9c8b22db3cd77c5564b8587c7c2eab72286d4dfa0bbb32601a1c9c1760097bd6e8b379cae38e9d4c5c7cee7925d17c80660b5c7c80603461eec96191831181c1322c161687bf897f90aff8023948b2d9476274f632f37e8cccbc1d5724a50d6c0a17960cd560eed80378a516de0769699ecf3b3e9b523f10bdcb32583c530afe467047b78c2075372488752e0f00cb714300d76ad17ba41c9765bcf8b750ffa03503ae360c81e532176eb79eb339f0830022400f35ce68e76dc5d07dcdc98b52406a46a7cbce0a514f88a46f5f9d33fae8d47e78bce82f14c0636ae05669c5600e57f80157fa91a6eecb2e5bcad1a194c6d114a9399edf9f4857a483afcf5a3950658b448d117b3558de516acba7006b55cc1aed2d24000b27b1fc33d6aad5ee1be79fe3612c1cbea415f80031705a2be8ba78f8a3fbc56b8d1fac3554c399472f951dbd54bec598f51a6fc3faf0b73b2c197ce4099808cf0e7eff7ea4e5e8a70645315870fc42e9c443afd334e37515c0167e0180886e208f7e1a08cb24d00c3c770077f4cb05d8c98454dc9eda5f319a573652241f2a08e619ad1d48c1b249b8b50791d63982b42e11a4754dd03e9647ade245e16f764da4620ec31684b0b984f0b4925dc8a73aae5131ca151ed55475e66915ae01a202be5751e8bfcd3daca27df1ea9ecb72864ac52b1bc7cf0961c4671e6991f2f533666d1c0e79fe477868da3be3e69e562d3cabc107c73859357a5f01eb13d0308c0240332c7258a21d06ab5cfa19296cd6148a1c24af7061b0b083a4977de44d11d62bc27ede9499b77999af72a6f24dc98c8ae363e7c83e532c1e8bbb16dac689ae052479b55bca8ccc9e322cb539fcc0702c2cff70fbc095c4595bdff1b24d738b42df9064bcdb7fa118ee142c910f3f057c56698b84dd17bc55cb583afc200c1f8c5def25d1c689926c7550cdd4f0d5e0f102dfb4f75c9e76348f6b488729d77a287afc810ae6183c2be091456ad90339994923a0e6393e957c45fdc53784f0308137393012c7dfc905249b117c6b8e14011693b158314b612d7c7282002c7a126b4dd5ee9b238b058cc557befdbef8471f887fe421adc0692db603c435cb3dd0ceece06f309605884f3622220fbe7be462190ac4589b8359b7d931ebb59927d51de72501cecb7653485df9bd57e48b7ef213b34fab6ba6d0991a808824fddde15b48d718ad94d704483ce66211d00c56dc0636823d343cc8e0418f94aec69297dc3d8063df55762e97cadcace61b92fe38ad15f5f31fc40295d34cd2aab3a5d34b76a4bc0fe15fb1f92016aa81209d708886b2ce59b2a70c37aec39203cf4758953bcf0919bf1abe5769e6fbacdf7dec61054c03b9ff8fbdeba37abc00c61ac9afdf950355e31e88d9271573df57d18fed28d39b43c7a2b1c725235965bbc607780220c61306c01746f6e442464dcb97a4b65967a49783e4798f8324ddcf1b801bf979bbcdbce18f305b70b3a7c010437decbeab0a372b23d7488036ac4450e388ded1b595be41d7222937851d1e4becbf580c548a15f3f178e1be602a3a88f682d2fcf7bb6690447ef350acc6122ea6b9106aac31d8601b6d9f2e738f2eec548d4d3ecd045a6d0aaf1e4a123b8884b4219d1bfbcb85a7d5b00180e90db30b9e1b8d836e2d7bb7f02f3cfffb6fa866888680a9871af33571d7d9e2aad16cc14eceea6d52886d7900583856c5ac2e63e1df3a01b0824b626d6db53b622cc5dbef8b5e7f5ffc3a495ae280a4b5d175f1f0ff5e58b669a119cb6f5f2e23196b6b31ebb5334f5015c8e4a38ab625e67abc9b42e8c83d7a5638f91079c32d3cf77b0634f7acb67cb4081fa51d3c1265bbca47a78117c9d340201ba019d804b78e27c0430a368bb0e0615d75cb5531bd5a6bfc4159db3c8f71f2c8b365ab860b15e658aa5097744c739316d6a8949e4860487055b892b1f92096ab393c160f70d6321c070b067c8c065734bc49d3500c1660848fda7fb1e4f05c11d7e7e108dfab5af927e44a46d45bb01465ffb9ce72ab0caec0b68fd7d6c7b18502f2b8f69a00db8c00a4126afba8366ee6b116e7abaae47fc08372a02d1cfbe1c0ba05cb333d59054300fc84729cf3e930a6803b4727f7d775edc33fa8ed08452692d34930e2c84492e120399f4efa792f907ede3d4b3988c6ce7b049c10631913f0c76e9ae52f1043890b68e023f59e2f6c18cf92d877dbb18e80d6cea236479e9c47539d6c5b21ba4628ab06604dece178e66125270a95cd1dd7271f99c9d0d862289bedd2be9086a124dd323209a5bb402a0776ea75431ea0ba4881219667a2e9b318d2eb355f63fe863d00cc70985aade3f13881876afbbcadab5e919df6ba031ee9145d058359374e1721c0eaf44a62bd24d5ee2463c909c6a282822d6fd2dae8ba78045b1f97ffc00bcb3627928efdb6fd82aa7d19a26ceb31eb35b210e43e2a04a99ddc8547457c5884668a1c3725d8908b3c037ae2f70c68e25195f82492de2e89fe79d7489ae734703685f0898baf1f880630c2e59f54348da4e023457ab556d7594ef950ee8199c2cef35cf335c9c4837258a4dba6b318b5622469391169d50ca7b27a1102969521d19a507831fc6a783e4adcba353854c6b003c3b1ed93c9756399a54ef64b018075f070241e6b5cf1c328f781a73002ee2755bd57643bf7b8647dd1354fc84d118571b0e2c2b20d788d0d466065c2ae8270b914859fe0416938bccfb452ec9bac4209ceb934982d8050c0c480c20dae982a7ba4ea3409582592df292cf1c844d21e59e34066ccf5aee846ec20391c7770340e00ba6d9ce9e7dd7b361708acc1c5cc3d7089aafc8af192da696ed948a178172f90964cac4a2feed90757d5a372477813a1ae11c24f1d9950dd534c7c5706f319f612dcd85fa2f3dcd3f1f04f08856f88ad5705b6eb48fe1e8698aacac2eeda300a4a6bcca67f910d0df1406ec30c0fb6c7d5931c961718d23bbaf62f617199fb0ab844f07d6152959bc823c55da655b1d921b2e596a20c565e3098d56e2afc5b57110a0663ad9ac4da926a778ab1b4ca0fde13befe3e8e00a415f000711d692df81f7a5dd766c49faadf6c5994b65d50416c0b66bd866a41dc85205de7d86ed19d1c6543b9bd17d093175791c3c377f8ae0c1f00a19deee30ad68496edaa82ac474efe55bb33be63c6731aa836854bfb589a16ab07e25183213e52bc2eb05e210be17bcfe650a551f002f8a5f61b5286a30e1562533cb0141b6065a3c631b483f7eb8d23d445882dc9817d7c01b08ef625c258dbaef1a9a21f66c50f517c0d1ff5e01c77db876f2b033806695ecfa5e11604a02558b691a11beef7bc2670de448bb73099f40fae3df015ac55baf3f9385985b29b385935b5bf752c1e68a9d619a5b546001397ba274c6124aa73e7c9bf6898e1364c152aadf18c0658806640670068a52154d51f566e0ad398c3e14d2a6d91baf385f0c10e8d913e7aa2bedd69541c3878962cbe3151a88f2e234cb1900995dbdc1d7b7dc2785116903093fba78bf160b57446c26d489ebdaea0b3d7be7379306a8068305ef03ed5f648d8ba90ccb1436aba35a3857d57640bb45474ff0d15f36586749d3d97dc3a3e28835b1e760270c52877ac6dff163b2878a8bc3d8f8a55316ba5a7e86f277c018b2ed9e0cd58ab26b136c7041a42aff9e213e14fde13bcce425a046cb11e20064c6b055117affaa13b01b629f189f275ed6841eb7965db79158aedc0acd7d0e9c3b95c78dcc0debd6162576d7fab47b3bb892510e7242c97b90016a4c93c5646f09fd052167dea2e337f43a1feacd288248fe91923ef145478df8562f29c688583f21978dd5d40a92ff81ff81bc01aaac5cf7c4554e5889719c2e406a43d23d247f18df154c1a91fc022c292c9efdf2fd4458ae89fa4779f2038236d00ac8ec1644fe98fbbee072f3c78eda1eaaf3bcf96ace96aefe8e0593361c9691a4282d748d873863caec52aead414325fe6164790cd80958d7fc41994e3675219c92ab5399c91e0a4004b23fc7cfa410535cdc61fa8bb160b2aec2c5a6e5efdb0fa5018119c7b70fbe8ed12dbecf50c96bbe01d2e720561a9de3691806b19294961d414b254549afb011eacfaf67da8787121032be3a344e36266eb7842fd403425694185d711db4b1995a379bd1779c3776413df95d1a5ef20ea67bd1a8701b0b03b16043c79e01104373b3c949a09b13461efee7463dca410da724a890c56309875d05cf8b713c528589358ecd5ee3e49ac3569bbbf800934c46265e837a27f458c858322ad17486bad2af7c05ae0b55151d817d57a4e49c63661d66bf45a10956bf7a48bcb5ce8500f9b8de0fa719c9000000a26a17594614718f606f744acc01027d0470b755192fe98a691e4e6d1e4d6c9f4aef91c33e1458fea6f2e900d8654b556fb44c2b1e914f84ba4b6708d0fbf71ec5b255266a7f9e4485d5ea5e581008b0a4b16cf9cca37ede79952605b1fe43501c06aea0ef3aafe7197fe30eb7ecee6d44fbc42478478cd96e94360b9adb2450227e11604e45a439b4547adfb3d0a1a359fc30b905fcd0c9245a840c9aab052b6ec26593575e80bf8a9a93b6adf53e9f9efab87ef288ecfe7490d4c5b021c35ae04947ba0b580095e6dcd7d21cdbf01a90a9bc2eb9cd1a403e92c22e3f6913441f2afa8c1d21ef8e3a1d1f856e2e0f5d86412ae816b1d4fac77c5969bc3a5ba10512f44a84017cd0b6eafb25dc1b7651f9ccc803d123c4fecd704f03c197fa09a7de24176e375a5d78f18d2ebb55f2fb9a556513bea650edce380a480a77b02576b0a892d1747309875beb7e86f2709c0c249ac2edf24d60655bb376ec041218e7b353159a5bf788fff3a0ac1eb2cb0e54b5a2f5217aff8e187f8f5ac215d7f7c53f356893ee6f059250e26665dd83acc7a0d1f4054dba36a9d5102db2e012cbe35ab6130aed57f36026922044c6835d58632288761f67cfa023a54c5c20d4813eb1c59054f3518c20a8daab5acc8cc04d79ec32f450280b79972a092813cfa3b070558eb0ace89fd25296f95f5a07d3f60042a001a88069840d53f2371d40a844b7f543bb6da37b819922d77e5554d141d9ee79f5e91ea2e4b1847754a63288c1ddc14cdc3b17059f04452957e4a0d8a48fd1bb880b0a81f994aaa1f4d9399e3253a1681751cfc03bf2f8afd193fe1575e2d05cf6b17ff5c8b851e60e2c124b4df10491c997c234a520a4f7b7ebc73210fcb3f02ea35112d60fc1de8d9bc9161c9f435388721438e9f83f14a673ac3ec5950f119d0b3da1ce9b8215d241ae55cb7a4fa8b256d93298dae98a6a1585fc7859733ca1dfb49fdfa259417a73c8260cf869f27334faabd7ec4905e14fa8671b810b7e0908ed76773812fcb2c51c1efcdf64260cda1006b55cc3a602ef8dbc992bf9f2c597b126b23241bd65eed4ec5f3ba845ae547eff15e7f97f73a495afc80a4f56275f15e99b0c051ba7a7c56f6af691d7fd28e141e5a541c5a521c8638abd85ecc7a8d76d2b47baa3a04e654772a229a35151138a10500549af95e60c02a1bcad55f2cc44781645df30caa823f3c160f8f6c6056557f98c49dcf38389a08af81179b564a1cd785b0944e3c28c3fbced1ef2a181f1e03163c1639d13fdf58c0822869892aa909e1b5ed137533218028000a511842554654fd23b0ee42c052bab29a26b34f2e16982f73f14060db6f40ead23ef6fa36395a98c3abed91aac62fe8f381a7fa546488115b5271dd9b66ac68f2a166f2a17ae096cc765d625c11f49ce7749f2f81ffe93e2720a750f4cf9748f5dacaa53f33bb38179ed7c2876999292447ea40a48aff99f39a74e47ed98cbb05ecf44256eb78bc441fbeb734220768c690f58610cec4e8ca30008b53f3250059c370b26ffa1046adfb3ca772a2c4b7ebf6a50b4ba6a42f04a662db38e175bd98ad5f2e60785dc32cf2fa114207abb2f4f7d669ae7d866f9ce5f45ee4752ee4d78d66f0778d46da9684d80680c5642c7f9875a3b7e4efa708c0f24e62bda064c3fff124b136beda9d1ef395a1f1a237df25308b9db402a7b582ae8bff40bc96f0c35e1f96be1ed5fc91c89c7c604e7a70417e10e88a8a2dc7ac4e6fccf2009650b77b9c52f8fdc85843d28b36b55a0b9187188a5d25a175c593d06a1d2b60d0952f6041d48d65e3eec2635349f0c8835f51ed882a3711270e8c127847143c10299d2af82d407293df95c3424beffd81a5fac89278e4ae9a72a89dbc5d6e7015b42e0804f68d3eb023cab95815f089b56ab755bf8a6de94dc348df1586be87e83cb05ce6c24060c69a79a4355ce289fd5541f585f34cc94c2f42add725eabf82706df43e329784779b7bea51cf1abdafa17e6af8ba0cbde0b1d69f50c8ecd32a2c9301808544b3cabeb4cff287964b5db7a4b805ac692c796f69c4211bc8d5b8d2d58efd6a4792c492c2b578fe8901582575a15c6b56e759bebfcb8e733fbd57e495132f6fe921657a5d618d38341a8f65597417f2f12365e42e9217b6dcf4ae732700ebcc779e33c4a9c7552796a5caa1c26dff3a3b2804b61cb13b56c5aceefec2bf9fe6fcfd14e7ef6b4e626da064c38b32d6f3ba84cc43fb3e10fcaf77b93f7e97f76312b6f86b486b055317eff5236b0dc473afc71ffa5ded04bf655e8e0301168e9703b33c80c5772bebec82e0593285b4fe2c992e24d884d6654efb7c11ef587c30800551ee4a3b301c0700a7b184cb0d7e5bfcb4d608f8a50076f0bbf0a6d3795364b9565a35eea53805b0c578e89f795a090f4d58b6fb56846b353d0cf65a993304c678619fd781cb2eaba1e6995215c6301826644c493056ef59540a8d0682c658a3dfaa3ae7f30f4f66b48ca51d99c9699ec8e6f527513e21be66cfd4fb2b5cb9c0e8d62b3cc7752116d0c21aa4583d6be86e39f5537d63b90337c5930f81ad2b661f57c00ba61f69a61f7a194d3a6fcbf9360458a599ef539436fba8f2f48a4cfd4a4a9431a274200fb61cae7b1a46feaffdac987a0d1b6065eb2e97928a248fb41e5192a75573df5751e27010f0ce0d33dcc00db9db13966ca1bb01992e678fca0f88d4b8eb96ac6cc49b9c0ce9a294775881d279477d606e13766ebb2e602688edd9621a6305c02ca535ef693787042c962456d18b25b132b62c8905a1b5f3a5c6bc6f341f20c6a222405a6bed75f11f88683fb2c6f85cf986c49c7ee08cecc01c8a9639f94b8859af712d99a850faa56f9c596b080c31cc23b0d5125aa797722b47d1e386733458c082e05b0840e9f55b7f03a1ea0f6b70c5c0af43daebf3398767f32bc7f27d85a6aa264aa8ea1c78f4c3723b7a4f010bb6fd9a001ea02797f2859b798a81aae68d09b88a9fbfbbe68390a8d7511943eb9cd16d34c6c25dfd28a178478618cbbbf9c070cdab5e3800606987b33c9647842013495a7791f4a5f19298faa9f6d371f08221c2fd067e29b0dde0ed526c3409e0858c260997c9cab10200acdab22f7dd7c5c1fb9ac30bc257501012a0b37a3cffd4798eeb7629f02ba0128011e3e268dc00ca0a58a62b027c91193644be8e9070ebb52df0b7fd2bfb86401fe579aa18c31a07d1538530c6c93d7daea87cd8c789c190ae157f8e3cc5691049bf62538fab5ae6042f234dbe3421b0658bec0463058159c386a2ffe8e6fefd34773d49ac35e98eb60448626d00633d6dd8afb1f32100b3f23a623f16fdef77383f7e974327ad35a6b5c42c69adf7c53ff63a760c3a920effa17e52d43c2b6b06c0c2f15262d66e307b660d9e254ba80b67c51ddf84d6d1e9a4da9174819dac6b0900586d4b22d30d95f1bab2e382a47196a71a29a4715216cf920e988248a53f49a08b16f445087511802c0243bcc89c22b267500f32d960fef10b92fe1b2aebadb263e725b89110fe75e83eda58c3f31d1efab00cd8ae212979dd052433dd359756359cbeed1776c7052ad6a1916edd4074db44c2f119249e04cb9217633df062acee1519fd7d020096da853a4631a953824ce61524550aef7c62be84faa972e96700764060f04b2d9751f3299265ba54e2e53279a1a06a341700abfd489c3fcdfdf967b5a7576462e7ab82598a81cc8e5972bcb0aa1c80112e64a45f9f317745a32f60891d397061f5cb1e5d12ba1911e90b790d75ae201bf51b42fb0d117fbbbfb56ff0dda6d7548120ec199ac792ca0733d921c990ded0b08f0e917485e1e987289937fbb8c27443b1c758ac019705e88a8ac098556bc9fb6b37cf0bb0362489b526ddd18d906c8078d094a4b1f1501098a5321747d7feee9d921f0366e16021adb5a7b5de17fdf83d3a9f0511bf55fc9bd492d5342385689ec5f1f262d6ae052c14e64c61afdf633b2aa155ee48147ab74ffa03acda29e6111e5eeacc37cb0e2e084abd9b01fd856420cfd70f71fa4935765cae9e281eb92b87f503d666ece041c92122a55367f4f4e38a8947953d97e5f533dcbdf47e3001bc4b1ff7b2feb0fa81e87682b1900eb87bcdc68571b8400a33160c37fd7d306071637f519af19e2cfb03555b2cc537524b628d230a068832978477c6157ef0e687c773a8595414fe46eb60023016fc6bcf520ed0184a9d2e902e9327e6498b49852b1300abab3f95b92262c1fdc7e4d9d6e4c38a8699ddaf072bb4a6350fc7e104303a642774dbedd791480112967ba8a1a7b244c4a0f80256a92393ae4be2b1245accea5ecca6dc21b122206c694e2ebda4be9c84ed203a2814f68408f4317cb77e1e7b18d20f754553e2765850daa3307cd3a330dc38f3f2169f6d6308ed592214ab6396d4967353c7f98f1e04586b4d62add33c87a93b8a251b9236e4a0f0ce8114b595a7c68ce5c62cdea9d4df497f81308b95b4021f20b2a5b5a8d707195f6adfae9b10354d4b51cc485f7eccdad58045642f843eeddcb4bafe08587d7d7fca1f60752e970628928570ddd31c3b2f518db01790f26cd92d67b8a3df96c1ea483f8aa272f518d14ece17005ac1531e1efdb01e1c9d4426b500825863a9733e1f7e16965858710d57247b8c15cc1c608c7b99c9cd58b3de8c7593642cb8bc5d174a19ef53df14317e4dc918b5f18795faabf2d6d97c49df3e993e44630ec7964788b46692b12ebcda94ea251920fbe4e82472bf3936850499b0c5641bb6981c8d034a83e1e65bb300b0bac7b2982b225e0e6fa3b32d6c723578472ed9ed792c812e923ade6560b16f2aab9e204ed62342a52db1d61905434f1a1391d224f170fde9ae4448226e26a571ece5ce165b826b7430a4b71a6329534b4c90a4b9f87281c7597ca5a4716aa71a5d6f5ec0131b00cbcd58ab60d690b1e83f7af804600597c4ea5c7b126b1dbaa3eb956cb87e301501160e1a6695dbb84907be7e9ff35312b368b0b5d60344f81f2f385b2dbed2be533b2e6a9c2a45315dba23306b9703160a4b26aa2bf232990911186202949df9032cdbedf2c080455f774f5d92554d96f0dc0788aaa1dcbe8b3c6c6c872ba061159fffde4b3e1ede1f5e293816d7da1f076b3f364783359bae205f339030fead0ad6579ce5ea5c2ce2bffcede5db1ae8b0d8c79ba8dc14d6e08a464aa10463c1aa835585e0aa5a6f481a66989e515257fee233e651dddcd32a64ec0dc37157665ae1959b49f54bb92104801816f243a371872692785d895e8bbde03732ebfe4a6b04bc466d0ea72c2681cfa47dfb24bddf08fb100d705a224f2f64512b225d73df73b645f85ca947824a9deedc10f6a10247d8605458230040e9a92cf30ac793ca7aa49979a8c18d23ac808526832945401329853bab94206305cd9b08abc4c96cc9dbfec537200ce965dadf627d3bd8aa79081227f3e63c22c36583dbfd515fbe101074454500cc6a37e7ffbd97ff1fbd0460bd5012eb05cc73365477f4d2a1b4722bd7c358de982533e647d5fcf69d929ffcbaf8c7ef1433492bc8b4164018f5fa55e34bcd3bb563a286c9d28629143b05b376396009ec390db3bc532b32fb5db5ebaeca714b61b9a93875492a1f0cb45df30758338faba856a320496bf6690d9056fd647eef59b2021ad7e59096b43e2dfd15e3c59cb6d8e28837cb5bfe50a663e6de4afb424e2ee43bae0b2d97b9b0d6623f35edd05ed3fe2ac1ef4ff4cd5f969bc21b5c31a8bb7336f5e44266e742dea1d9828a5196e60308a12377e17b32e9883288449d1c2cea80cb309a4039c03ddd4bb952ef2193f74708ad193073e813a958f43bf4918c89fe9c250586582e0158876cd15876fff84c0a7c4896b32de2600b9ef2db7e853735608344afeca6aae83ca92c828ce19eeabd401e9802600993dee6c5fd9201583878e674a2733650630a6b6e7be78525ab68ffaf0495bf91eb43087dbb70c07aa42c4db88c7b4486c7e245f6bdc78857f06d00559944ac825965b69ce73afe7ff60908c0da2549ac73ade9005838fc61964497135af1c9af8b7e0c98e597b4fca7b5bc726001e34fea5fd78c0aeb27240d10c0583b07b376276009ed39f5d31cfd55f9dcf7cc9338779b5e5deba2c8df8fb302965c9f86eb607071a8a7d9fb7105eef746ad3aee96eff967a86187a2318891bb72fd7241ef5964210c8b31d5d20f7f8fb42e1f6af0b961db92c8a3e41efa4671d22f3925ef9539523ae7f34e2de6f7af704c974ae01d7a96726095853506f8a0c6b5e777b17af04c6902439c501721ec0b47ffd545c11fc59664893d5d68cba22a7c4b07f26008745715a69baa9e2bf2c6591e95833c65cd81918541072cc62d081ed225ce73817e1a5db1e29e6f648670615f04d23d21ce7158010b852553604c80cfe3756cdd1bc6b3a0c3299806dc9c5f97eb50992096dda7ceb60e8ec41d1e230fb6da265f6a6b970d1a3baf2a3a9cca6a198e3b3695d4359786bb0a0034819295441aa672a264e416996cb64e7195459f3000cbf3ce9674df2120621f6f8768bbaf1ee62cae219da74f12f6b237fd1005a9ecd7e7950d1eda9c67e25815b3568c5ca02b12b06849acbf6f6d126b63251be6da3328c00a8c59f91d091f70ff0561169db402a7b588dc157ef1aaf17be55bd523c2fa71098a09c9cec2ac5d0558027b4ecd44c189f3bc4142d908db0b328ee1688c555b315eccfa3eac805537908dab415177f75da2bb9b288219bda718bd4fb6e7e07a645c92cc4a63ce1ba253f3998047b8fc199667fb35d43a8e9593a6be53d74e95f85ae5c0ddde7ba1844c592da09a77585a0e8dc6c1a2ab22ac7f779fcac6d68762a8c0705de99b9b1cb8a7c13d9efcdc0f86ae955287b3a695124ccca716323b67538f4eed07ee811119b9af02ac87b73ab42084f7e406002c77f0cce9a8edd418cf47b25bee75dd92cd3914cd690ee777b024baf0c196d2102a37c56cfba5db8210d2e409680da1083ad5e688725378ad335aee4460aa192b9af73ecc5d785ad3eeb6fb3c7a4e0cffbaf0ac16feebbaa7813f920dbce60cbe71bf401f2bd045026ff1fbd93559767a20d13b439cc8a7f507b61cdbfed95eaae023b4caa0182b006659cc45ffa91362c0facfdeb527b1d6d14eb825e63913c732cbac1c0663f9c32c892ef7f3d2b77e5df8935f17fd8424add5d25a9e97058cf7b83f2db317d68d89ebc621243b0eb3760960891dd9cd53b9fa65a4146abbc647a54eb7a5f80c0e19a13cad643dd4c3354fbec10a5887c773c95eeeab7cdcce6dbf4e74741305c8b806199721e34a647f3466b858787c06699c9e5eccc2ca49543fbfe1b288e7c78bb0d499dd71864c59350ec6682d11529da7ae886fdc4b62ad3f4a07f24e2c8b671ef965f1d1ef2ac4cedce2e4b7ea6abe823980bb3bbb97b24fcca7e311691a8aadb445c8f568ddaa73ed5fc27e388f2b8098f55724d2de94c080b56af02cb02ec6b3b66be0f3c45720b2f8e4a15e08fc17499f18636969bf7d7c530a97d8620ddfd7b0deecbaab8af29122dfbf3ff37d4dcbbc60bbbfdd5607cf942cd445516accafcc2c0aeee2d8b2f8f60c3e02ac8cc098d564cdfd9b5e8400cbcd586c492cce8b26b1dab721896539910380852318cc529a8a7e23faf9db053f791b300b877fd2823fc2cb8289fcceb8da51310462ac9700b33c8c151c66ed06c0d20e657411bcd27b0e18abc04b539b507a8475ce5f2a8bb5188b15b08ecf6693dd3744b931ae38c645c79ebae3150e96d5c14dd15e34768da4b19e7305b01eb74f2450fdfcf8dcf0e4d92289939039f563f62cb667563862554696c211785c6efb28ecc41039720ecf153b890c2276b9c1be84be3d9ef63be525a9bf2a0a7be3d0e9282c9c716c3ae9f0583c914109977817d18f12e94c987bf81851bf5cc24bf8e58b00161530d0029d572e67b7e65a8209426d2e8a6f4ca0d27ec796f8388b3cf5508d149e9e54cc3dad02d8c5c865baa15a788e0eeee15130f77d15ecbb60acb19efee94b926dff3adb10962c9e396defe9e11d245d51e10fb3e4f6ecc706c17f7a03d61a93586b77275c7f126b6d8c75a2279f02ac20314bdc9bfd7ef1bf22c6c2e1212d266c795e1330422b3ea9191161c0daa198b5e301abcc91dc369ec022f348a4b2e8e5e43895c5583b8ffb74e373d900ab38e24d6038dc71834b8c7195312e34c6b5c6584707208f94d271d318d636c41dd1104dc3fbe57ad465d6e08a8615fad854d2f1d9d4dab14caa19900e58c5e16f564abfa89de6cadc671c3c4b06aca9e82c431f434898c6ed926adc2d0fd5604ef7d902c654c12571a4cbcdf755f45c48f3c1482c64a5a9fafc802bb6da1ea934b2a494b4d618781fc70d2110362e98835961bec4997f5abdf0b4666051d4e5cc538fbe98131cf2914c86a127ecad764ba9d00b47f9701edec6a082f75b287f0ca309dc8c0714906bf89e6aecbe12fe061e08f04f40c074257de5d02e6fc6dc8b608287a02a9d8855306bc1c4f98741fc0f00ac609258a7d6ab89b54d9558cd86420660058359198723dfceff091934d2a2a7b5de2ef8f1aff27e4246bedff890f7bf350e0e00168e1d8a593b1bb0f8e634b539bcd61945290f9da05259442db9e50ad793ca72dbc3d15359c6eb2adfb765cd601d184635c5b8dbd92399339d8c557350dbf36c2a963124bbbdfcd058b939822aa3519bc2358e781143e6940658c73a12e90d89965b652df3825747bf7bf342e6cca4889cb2b881d962bf2ec0521a249413cd07f3cfd084b19ee17bf44223df94347c5e658bd45a22d5e6889a81f83a5762d348f2b1d92c0b70d54a09bc21722f212adf6186c084997d8c849a669f54c0db0ede91568cedc90e6d701c9bcb852d0d5c792cec64b9ccc52a62f8f81e28ca764d007f03e00b030d546d5e4132fa9486be6664efb67ad58367cbe4d9d37104c6ac6e4b01a2ab4080b58393587fae4b545b4a5456146bc2ac720bf713decf2878629216015bbfcaf51f799e283eb1bf7a58548363c762d6ce062ceccca5348656da221b07635a712a6bd6bd709ecf23f3136e6584917b72c63190f96699efdbb20216ef4482da1a0dbfa8ca8e5aba80eaea06a21b5ca8b1ab6928b67918753b1f241a9e5bc7e2dbc6137093979780214163d47192b02f8c35394f072cdb0ccff75873e179ad758fb45e2c00890e116694b81e8e2ebc4e4d180697eb460ae9f381affab4da1e09030df3adef42a1ed1a1f7ed070b110661d559e052c0eb302a64ab929ece86c36cc3d7843e74d11acf186e522d5e09e48ec8605df960d9b1cd8dbe02d0d4e2ac358a003fd8b08b960747acee5d105f4917afe02da0261f57c99732f17f86a07a2ab340ab0026056ad2de72f46f13f8c04601944ec8ce51fb036d79d70239258f79a93315d51113c66a51f8cf0a5254f5a2b1ffee9ff5d357e5ffaebaa2161350ad18ec6ac9d0d58421d990d9212d92094ca1af68868639d462a9565bf2e70dd94e07e3dea0ca87196e7fbb601bc08f9fd495453b784502994eaf6c909a142e03cac55a836876b2c48ae10d358b59bc6ea5dd10d83f195ae14ed408ac4e6d7e08226d3f06fb30f2a02886c21d2ba5d7e608ecf63936eda0bbf61c994ea4260c200283713f5701e2e5fccc6957ce49c217a3c71c384b6e22baff9a0febdd09424b6a5f36d593c5b76c73ce22a7807dc51786814956769cce1542f8254178a544caff080e1605ac22b0f4fa60aed397b1e701b12cae102d8ed1c188e3d3c160f4f00d8d2201ff759a4a589addc61740e8ca752d2f9b019833102fc85ad11ec91e0dedc3dba0c7bb19ec8e23ad2b808b0d2026396c696fdcc24fa875182628392587f7dc99258cb875355d66206630589593263c1db793f2538892d3515045d41704ea5540d0a51ec70ccdad9804557208400ca01ac6970c5e0da267a2a8b21f239720f95da98aecb5897375fc052147c6cbc249b7a5cb5f8bc6ef1cf75966ba5758349621f7df0008135a38fce6663369a7f567b7081bd7789022c49c6bbd87e8eee4087d5b6e6bff7e86cc1bb4d3cac3cb4206455c8dc0b96b06489dc6387e70cc0d0c151379a7b3b09c2b4b15ee51d9e2b0e60f62c19c8335c950199b58ec7c3f48337c41d855e52437dfbf4cb8518ade0b7c014adb647da6f949ef9bea6ff86b2654eb0377ceb0bb123a7e32c6ffc4159dde07eb8c56040019d616f03bb1a202740a83642c7bc7a388d6fcd909ba2b0683ebc926e9020d187374f65378da5a86db1a2de5024636688e35ab6ffdbedc51605d01515fe314b61cf7c6416fd577fe93ffa09c032b203d6aaa5ee6b48621dd98624d6c4d10ca5b55889186b3d98f507e97b3ecc44c1d6ea74f547d97b952e41954b4832d6ba316b62fb316b670316bf3fd9571fa8dc14e671dea5ad979e54169196e8b928f467e4c7002cadf8f74b3e3629a828ea49957145d8329626d5fbb53b6484e1129ffaf1f967350ad61e4637605528bfa0441f90dcc31d42ee81d07a18bbaf1cfb96b4019ef88e7402365e936dfb88ec94406a40ded3a6cc1406c4d334441c34a3ce03524ae3d452ae96a8cef107588d3325c3f755b34f2a60406dd7254766b2b5d618c6b8cbf4a1ad132974b4c204563f9884c54bc71fa84e2f0bf7b2596b0db10306281f6e6ab84decd7c57203b3c756a60b511943cb74e1ee04551663e871b44da6eb970b60c4e1b921e9dbe7563fd9bfed5f702fb62038f674ae23d51d7e314b62cfb86b16fe97a9940958c196ba07293abaf624d6c13509bbafce58e613d918b0d6875929074283cc54b106ef745ae58000186b1760d6ce062c085fd13c5a2a0bb5e9a13a9bd9147a3973cf85e2bac9029e0d19ccd54c951c5a10765d949e5a911dbf20d112d2a30cc09af46f41b8f0ac66ee69d5d4234dff0abf692455d4b70a690dddf5720bee5c66eb61740356d3e150ca8a95148020d41f28e907ba041746b1ea89176b4f7b954248f3a4a302db0862c3e6b689fd9543e95477a72f602907f347ee979f795a057435fb583b4368fae3168a99c79563df960fde55963ab27827e29b4f8433d00a87d21801ac8cba0e0951f896e9bd46b6350430d381d144d841f59ecb857b0409c05e13696d4cba159dfe9ad31ce2f5b3642b6e94481f553798dc31970bf70edc62f08880c785c612ee96c0d8fd2af97bc1b565701ca938026096d09e71d522f82fb314031662ac80a784eb111d0d94c4cad9ca2456574f2e1db0d68a59125deebae9ea4bc507154e410500168e1d8e593b1eb0f8c678569491e09c8423aa19a7b2a6933b67d30e4e65698691477afb59f1f0b75a5666325c53726980c58df9058b0afc9f6b979ed72e3caf99c3e9876f552377e5b04cf65de2f3cd694a7334109eef4792e9c326bf2b3ff3c4a37a3af9a8d2f71b5180d5d21b49b9ce51c673a412c479d200186b40508a5cbbdef77723c392e9cf8d4ed21b526a4ee07b17e530008b5ff58df5ba90ad30ae061fe0e23f769c97703a138bc2de90697f2b3df6a5f7a9f1be8e33d900ca4814fe42018c6fd75cbac8be5709146cf0cc69aafeb09661e48c0e570fe63f70ead06d59fb7496c82da1293cf95549f6dbfeac72da97442897fc7d35602e0c04dc539d67521b074944e39933b6fd3beec5e6862d93e348212235006601609db3f2fecb2c23004bca96c40abad47d434447db7c016b23dd091b0df90a6b9112c53a31ebb7a25fad0fb0f8a7d32b9c7cc458bb02b3763c6071fda422c884843e446389d43812154e32152176e65a6e2971e3bdbf681d2bf6aca3096fd1f3558b3e12942888f6fb917b0aeb159e7a28536d462ec26d130987c6120f8c24d6bbe22bed31f5ae84de7385c377644063c064945484ef31250558a5bc0f504fa2bb21d1d38d3843baff625508ba01f0aef7fddde0b06432caf844bd2102432ccfc2b2b232004b55f7c7e1bbb200b36891e84270de5597f6a47af41d627ec6517fd17ea640b75c6cbacc0126c03e86308e30bec00a72eb5ed624d8e0111502325d08dc6e705f9c5ec882cd86ed2abfe7a280db105a52f08e58f471a73945b798df359bd1309c20d24709dc0691388cd7c98cf2d443b5eb96048603c602eeb5b2feb03d71f35720b24a1c2925246005c2ac691bf7bf2d323f80b561a5eec1e935ac218985006bed49ac3fd72596598a00b070ac0fb3121abe5e075d7dadfa48ebe0e3d81d98b51b008b6bc9e21b13186785c2de50583bf9fdc97425469e35bb6f4534fe00d914ce3cd6faea8ee2b05c91d397d2996f9142292e330fb0a0126555d5fa8b7c7c4659ed883a341a0fcf7d0020d85eeb2f14985738b04b46c2a7f715f001d07b3ea9f62d6da6cb34f0841fca4e7dad3486c2131fb84d6b89a8b446609d08422422a66930e6c0702c968768197b7545bdd717caa1c2b62551cf6559f7b2f0d47941d73961cd14c7df8b198055aafd6cf2a11a3b79079e15405a83e7c4071ac24b227f8695dccb87f3f484501630f1f159d2fe48630e4765d77bb6bb4107cf924eddef70bbc165846dc6913379025b764975082feeada115e9c83db9e50a176e40f85715210c2bec0ba518abff06095870338ede53009cf59dcb8311d13ae3f72adc777d94d853306005c62c97adf8bfad7204581602b03063f5fb24b136a1d47d5b9258779a9328ba5a376689fab2d7015882ee4c8d9dafb5f3b70bb31a371ab37605609191c5b364f04ca93c530a7d934a8fea8902e74dd445387c97b4466125ade13b6afa526a9de3c02bc7ee2bcf3ca9f4bb88122786c885e359f5c9a522313a66da073cd434840e283b6753617bdd773e0fb6c8d6ab3ce4ee7c5706ef797881cff239fb520b637fe1c979e47e08f8c8ea43479e3411e7a1525d48a9317abb876067846a38ffe892c075b79c958d8c3794ac3fc5002c49d5e740ea74636fd2d51b15632193167acb273e349cba57ded1952854fd09dead7238b3631a5565d53aa318f6475ccbde2961b021a42520cbadd10ac2ef190200abf550348ceff8b72ad8d5c0add731935c692353dd02439c7b2614f45e918f7e5739f9a8d27c5dd6759ed7349527716cfff7da8bcd8e127b5ab123b9840cbf9865b01722baf200568053c27595babf985ec32a492c0f60a510801554126bb63d4d6e2d847841ccfa83ccb7973050ec2bfb045b470363ed1accda4d80b57ab4cf15982f730071b060b73fd21ab851465f4abbfa53e195f0fa59e205c8bf0c1535230bb399475a24a3f050033f0e81d75a78b7e69114fc28874d33aca0ade3f1f07c87ed75cfd91ce4ee7c9963bf2e3c3cef3759c21ac08e02436c00d21218f62c9f03857420a765b6c0b0c277dd928cdc4592b3f4b35a7a1c6473ff650056e5b170468701e5f04df67bde45fd9e30bbc6086b42b2e5f341d9c055a9cc854ae5a4b6e4524384f720ee13e863b6fd42edace01be2f88678bec9eb681500cb3ecbc3677f304070d3759d496b7491c555425dc4b67fecbdd8c6e0d8d281aea8f087595df6bcffb229dc8025dffc53c20dd06bf83f1ec05a6712cb78324b6e2bc48cf5229895d11a153c5dbd9df753514fb6da465a47ef1acc7ab500ab739e10772664240390967e59ec659273389c70d8e0c21a39f6add26367764f8e1dcdb0a919ddd7cc749947ad9a52ddbe0a6bc481e1d8a353fbe1297f7a31abfd4c9e7c30581176a123a76e9a7b7041a01d2bc66dfc3c3390569c2f69f1f74c5bfd84c0967d6012a97beb2ee4e3242280d1d06d29969c055c669c148f3cd0fabe0903b01afb13e9ed05a4dbf7654fb327b6faf6f87cdf10621a83e8bb2ca999e24806888e04d4d196c437ed4788e027f3ba178ce0db721a6678dd9765a75664b56ca7ba0058b8f91736427063c2d09c5ac83c3c165f4a4830ec01d6ab1c2588ae92dce117b33a1c79ffb02bfe1b0196c20358c19f12aeaeeabe097a0d41888eae9ac46ad1e722c0c2f10298253715be5bf8af41025664e5e774dfe85d8359af16601d9b493d318fc48d481b0d3fa475628e435f4acb249f110667257875c4790bb4645e17e2e5d3768d8f08ec2a0fdb9c592e23a733860c69b929acca19a776a509d7d226a6182a987854452dfc334faa7b2ecb35a345f85f79e6347eff7e94d6d24512998fbda32596e05b331b4712806e3bcfa4c22adb7b2e974c2212726830dcc0cdd38f34734fabe88c553151cc781f06601d74eec776930cafc99e25d2f69be1f98d0cbf0920832937fd488d6bb3ec77ca5be60522c79ee551b0513a907bf4ac70f291573564c77909e365005858bb6efefbea51a2fb040605e64099099dc60af47b87e9af68005d1539927004c0ac3e47e17fdb95ff635722c0f224b136e094700da5ee9ba4d7103089f57dfd7e85b540662b90a37851cc0ad3fe3618ba7aa7e05fa4867ca675f4aec0ac5708b078d6acd6b1f8a393fb9187c6192fd2c206b198b4009b5ac7f3e94b6951f89b5d93a97de7f3611f8cdd61298358bc6a02a8c10a0aeb28aca6f06eb0b2f69ccb15eba3847da1c29e1001d08f3181674e5fc767eebb22672d9a365c530aec7bab72502132466b2d118dae98f689046c078e5259844a3bf602476d07f7142895f5d893caf23d2564761176861f1a8d3b4cf39d84f51b757afa588023ffefb934baf937a38975fe596dff0d55fd0c774fcc3d40943ab38f2e16396e88808961b0e6beafa25f4091b72f2700d6dc43f205130fca609461c46144aaeda80c8b6f4cd8f6afb3175b1f25b6b422c77e2292026096cd51fc3f0ed5ffb000d6a69c126e40a9bb6f126bf55277f624d6a54329405754bc2066159d480e06b0121abe66b58ede0598f54a0156262cb4b54e643fd74a089062d2c2566574d26a706630ac7254b24f6181ec3d9b4b99c5762f22bfd8d30b1ecb58ec1a8b8d63dba7fd5a0dae29c61f22d12c543bff7d35ac28734faba80a30fd15e9b65fd21d116e49cf50585c5b86e3502a8bf050c2e2fed84009a5b208050ddcdd09d7bc7a9279f0e42b342ab5a59659a2718f67b9294c83db3cdd76e075cee8fa01d20b9cecf41c4546e09d67d2fcb54acc3eadee5a2eddf3f0f60d8533a36b2e03b62ea64b25f6eb82a13b52c0267ad349f39c57bf080056af85b4a59a7ea871dd92004fc3bdd93414b32770f56a06d055a1637f210958ec9855e2481a7372115dad0a58be8aa3c19f1276072f88b511a5ee6b111d1dea48a703d68b63d627fc9f07a6ab8fb86f2a4c45feaca3773a66bd4a80654e1311a6282a23d27927496b9c85b4143d49be66cfd576d40c787c3605f6c1f0fa8ee9e463d348950ae72d8e4c265226b287c7e2ab063740cd48ecc8855504d747a3c22f5ad517aef72a1fc9dff6abfaf287d07d562be9dda7368703f4c0a0c3c0e17a3858b3512aeb32e1057e4b025718ae79ff75b9effbd001ab28ec8deec1fc85e7b5e898ef7a69c35092d8bf7c3f6e2995eaf6c90853f0c31369b8f790de7888bb0e01a001a3a71f57b62f89b6fdbabd3c015ba3fa0154c2883739305eb66b7c98ff705f50ca29bd57bc860cc934c4bf35b0887444e1da023d9b573830dc707b8afaf70c705eb928b1a7153a1351108cc58a59258ee40527ff7f9c65246039946c8ce55d8615bce2e81a4e090396ba6fbc5e83176375f664496df932141b8359098d8104b17e9df7bf4a4ea404b08edee998b5cb018b6fcb560ee537cc708e5f109f5a16d0973d445afd61405a75cee8e66120ad044c5aed33695c1fb367084e6742c350c281e1d8a6a1d8c6c1980617ca4f00a5d538a2aaed9195b648782bad2542630e2f37858bcd1b00589a917c5cec452ff3a26abc4c2b2535e37b80b57a08f45ede297243080c5633219f01ac8c52594b39f4e2f7ee8b4201db511d055845616fda66788ce4d3f4e30add455ef3684ae96a7649c766b35019df4db2fd10351ede461d1274a34940879a496611d82b1b7c6322b029dc6b306480c5dd4bd986e542182cb87a70ad661e69179fd7f65d51d07f04008b1bfbcb3e6bcee865b96d96dfb7c03db658dc32952377eeb511bc72516c4f2dc07445850f66f11cc92b4ed13f81ae50a8fc27b164fe4f09572dc37a9153c2174d6205293a5a69ca05c0c2b1219825d6e77ca5fae89d827f6105ace40321ab5a476f0f668d6d0c66ed42c012d9b32b4773dbe70afa96b9ce9b62dc900f3bdde94715ac0b9e944e5a43b1524706871db012059674b9315cae0f91eaf6019f497afd2ea23c73ea8b7f91aad15c7a6957efb95c7c46090b0c2ea9560fef55b5af1e3016be0354660a83051b29c14e25613b70b8bc9d8bf9dad1bcb2e1c276a43e2ab7de2a1bbcaf71dc51b72d89f8f69c623760d5a9bff23dddc3ae94338f916d73df7289dc9c20ec65f7e1e99acfc435efb8e09df49abccc016e267b0f09a3c9ceb36b53f1d8c5c137c4e30464952db2753cfef86c0a4c7eb886b0d9004805249d7ea86998e1d17f0400ab46f527efe3d79ad32bb2f291a26dff3a7bb19541d0550200160e56cc1239926f0d48fe3950fecf8155016b3d65586b38250c5a106b2da5eec1ea35dc6f4aa2e86a63314b6e2ecc391a1ba6fdec33e15b1f71de7cafe8ff43baed651f07631dbda3316b570116df9a553b820a8a71433e2aafb9c6c7e73eb81b9f92a7628d527da89000237f80c545ab754600671e5265a76f63c4b8558399b0f6779ef19c4ba243c9a9247c22d93e912076ec6dc7830aa61f0e11325d88d61ad13818d33c9a5431942e7120f36f9b1f636ffd350537ed5778261c6a89a20bccd25f068c05336df076a9f90a9f6f83d992ce3726f04f47085abe109df88a68260def9c4da197bdfb7a4df69d43bd870d937b955864f04c9edb566b8938381207f7025c37b84a00a6ce1ba293cb029ef78f00601d3912cf3a94ae7b9a830b025f8baabdd87d51644fcd477445050b66491da9df0dc8fee92aa70156191b60f9116bd8ea53c24dd46b986b4f2db5e549516c0a66d183732a55d65f108c75f48ec6acdd03587c4b46a523e6f0587cc734ea14eb59ca21dd69ae7bdc6926bf53370c27b320516f98c018cf753bd005002c1c3c731a3a78f236e7a1b422199a872f12b5aeb87a57749d33bac61155459c426a2ce808b2ac3f4c69dcf354093eb2088d56ba70c63e0065be3191ef969e1239721cb7e5304900c459d54725451fe29950aff97ae1590dee36f057ae0eef7360863ce38399431a1fe5fcbac6eef638c295efa371ad63f12c5e93b3292ad71e3d93c1b366897a3cf75ab929ac7928162e14d1a990d73895cfb3317f0400abdb9c39fbd853d936ff0c89e9d37cd6ab9acef036fca3eec54b1359858e24a02b2a5831abcc99f66c50f14f979a02ac7ffa00d6868a35acef9470734add7d9258c61319005838b606b382b48edeb998f55a86331a22d3190391e58ccd72c6653b20e2731c0910b98e44883cfbfe3c7b523e8ae4027b0a44a13db5c89606516c4b8728b16594d8323956886d3ab4b26409fb1076c0ead5369ec0904dc7adf863f795b0ecc1d376e8aeca7445a4bfc4b75e97d86ec8793ece24ab021615a4e6a72e52d41b8a284d1fbd3e3906ffdf2b43e8a7a6674f2c71ed17330bc818868c1823e6a0b7cd170fdc140fdd918ede5360b74a589e81b4a82559adf83d9e09f2828ffc5927616b42ec9834fba4b27ab204de9973d2d333519cf80b7edb9754f17b69df3e990e55beab8ca1b80fb1c2ed3529b0ed019627f88638fae487dd45cd409c66308defc7dd1c004b3f994f0aebe3e236b7a4bea7c3e091a66b59bced5f6d2f363c38b6cc7c4762be33de1dec98d53290fdd7c1b27f0eaa698055ee05587eeadcd7734ae8cf97d0ff2921d3fb79cdaaee6bd66ba833665380b587591b8259afc50efd6133226ee88f10f1837f8a1ffc3201c55789835f43ec1ffc66bfeb9b24d7be245748328ad0145758ca4058ea403844da4044da40643a8aa835915fb129163f79d5e6f006570caa5f9e4dc1853558ee082977df916249497a7e62f27115cbfd1934606d4964098cbe053dfbf674db37367ace15982e95c054c102a443b7914f30166ec0a425177c4ace84e89fbb6e491c3784c85e89f04aa28c92b0190ed5f839705b26248ea24a6a438a557f822829fb92d39d42644063fd644089e80dd9f60bf27285053196b02f4c844cdca31826eebec1a909d19f2bf0d4b75de152c56db0ddf2181cdd2e9512b6457bb16ba2c4969ee78ca7c21f66195d45ff33a4f9bf831a3760a9bd006bdd655874b1868d3e255c8f2056d0a5eef79a9324b65c8852147b98b53198b55980b5c591dfff95c8dd8a4f582cc7608b65602cdc878f1ac46e8ab0c5f2cc632da52739f4b0dc97fcd2bafee00b5819a7be5e07f9151039bfc28dc8f9a155d9182fd047c3dacc376d4011fd5e5021b0659f9ccfe85eca86d982b5d07c494b90fb1e3519fa6673e135c81fe9b6149b23415042ffc05ea8f7f33a52f9af1e2ff0ff7bb3809289fab07d7be9c98d0d615318bdc48dac6f3b47d6b7d19b0cc48ebd62acdd13f0a4cd73c6d18205b34a9c89f383c2ff3ba4fdbf0cc0f22ac30a0eb0d65386b549a7842f5aea3e762c0d03d61e666d2066fdff2dafb972064b2c000000000049454e44ae426082'); INSERT INTO film_desc (film_id, description, last_update, image) VALUES (1, '

A Epic Drama of a Feminist and a Mad Scientist who must Battle a Teacher in The Canadian Rockies.

see Canadian Rockies

', '2018-12-06 17:21:10.298', '\xffd8ffe000104a46494600010100000100010000ffdb004300080605080c141a1f0606070a0d1d1e1c0707080c141d231c07090b0f1a2c281f090b131c223734270c121c202934392e1920272c343d3c33242e303138323432ffdb00430109090c1832323232090b0d21323232320c0d1c323232323218213232323232323232323232323232323232323232323232323232323232323232323232323232ffc0001108027003ac03012200021101031101ffc4001f0000010501010101010100000000000000000102030405060708090a0bffc4001f0100030101010101010101010000000000000102030405060708090a0bffc400b5100002010303020403050504040000017d01020300041105122131410613516107227114328191a1082342b1c11552d1f02433627282090a161718191a25262728292a3435363738393a434445464748494a535455565758595a636465666768696a737475767778797a838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae1e2e3e4e5e6e7e8e9eaf1f2f3f4f5f6f7f8f9faffc400b51100020102040403040705040400010277000102031104052131061241510761711322328108144291a1b1c109233352f0156272d10a162434e125f11718191a262728292a35363738393a434445464748494a535455565758595a636465666768696a737475767778797a82838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae2e3e4e5e6e7e8e9eaf2f3f4f5f6f7f8f9faffda000c03010002110311003f00ecc2d2815992f8ab4d4eb725fa15f2d49ddfee5545f1c58e4e61ba047ddc28c3afaa73fa577f32ead1c767d133a119a7a9aa165aed8ce09b7b867c0333a85395dbd9bd0d163af58ce018ae5149ff00962e46e56f4dbfe152a6ba4979f914e0fac5ebf0f99a20d045007a514da0b91b27b546508a9cd2114808978a7a9a6914ddf8a604bd29438ef512ca3bd2919e940166371d8d5846acbc91d2a78ae88eb50d169975d3daa1298a912707bd0cd9a48722352454ab21a8f8a728aa6884c7331aab2a9abaaa3bd35edc7ad4168cc2b4dd9569e122a3d941443b68db8a98a5348c501722229a453c8a4c50171bcd39588a5028db4013c72fa9ab0ae3d6a8038eb522bfa1a4d0265d322d44ec0d425bde95727bd2b1498d643da85461562341dc54c201da8b858aea48eb4ec0ed5298c0ea29be5e7a5522588a29fe58a45523ad4f1e3bd01620fb39ec297c961d8d5d52bdc0a7fcb53cde40a3e650008eb4b83571e35ed4cf23d29a909c4a856a19055d6888aab2a91da989145d88a8fccc54ce86a2311a0ab0e597d6a650a7a1aaa63229559874340ec5bf2690c58a48e73fc553502b10e08eb4849a98ad4663a2e16216c1eb503a7a55a31d30c740d1582e3ad056a731530a1a00888a2a4319a698cd00373406a5286936e2801c1a9cafef51e28a0762cac94f0deb5541a903d02b7626269334ddd485a81d8766943545ba8df4ae2b130614a48a83752efa2e161cf50934f2d4c345c69086814b499a1031c0d2834dcd216a6049ba8df51669375016262f407a87751ba8b8ac595969c24aa9ba9c1e8b858bab31f5a789aa8abd4ab2502b16c4b4be61f5aac1e9e1fde80b138948ef4e59aab17142c98a0562e09682d55449e86a4496815857a888a9d8ad57638aa1a1ac2a1615233530d48d103122a226ac3a540c28290d229b8a7814a568b086034e0298462941aa4264a129845488d4f1166a8442b5328f5a7adb9f4a9044475140995ca914203533474a91d3112c3103d2adc4a56a18108ab6052b9361ead5263348a82a65514ae2202314102a56415137140113a54640a9c9151b28ed4c63428a1a3a72f1416a00acc94cd953b11519a434798bd8c9163cce01f9d401caab77dbfedd105a65b0eb907ee9feeb5778d1d8f1e70b5e3e44071f2fb559862b45c7951db8eea001f3561c8cdf9e3dce3ed7449c122de39633c23f38ddd7ef53e7d3d2c31e692b29ced997fe5947fef76f9b8cd68f88fc40d08c5b3461cfca5d8f112ffbbdcd7253eb21b1f6896e265e3bff00ab5f45634382ea4aaafec7a5ce9347bfbd848f291ee2dcfef9c1e5a05c6498bd7d715d1c1ab5a4a408ae1771f9d626e0ff00df26b8fb3f15e9b0802da3be503b103e56fceab6abe29b7b9ff8f6d38c6dd4cccdcb7bed1dfdf756916fab4673b7d952fb8f416651f79801ee6820d7954d777332ff00a45d4d2631b0331c7cbc5761e13d5e378c2cb7ad24c373f94e798e25231b1bd39ef56a4ba5c9e47d797c8e8594f6a8883dc5580e0d2155ed4c5f22ae29eac4538c74dda681932953d697ca1daa11c54a8e475a007aa11d2a65cd315853c362801c0538520714e045201c29771a68a5a9b0d318e2a131d5834d2b45877202951b25582b8a8db8ed48772b329a662ac30a614f6aa0b8d54f4a76c22942914f0c475a43212b4cc559201ed4c31d00462a446c75a36501690cb7162ad28aa31923a55b8dbd6a1aec5290f2a29be58a715f4a4008a018d298a686c54b4c6414d3109e68a69988e86985690a53b00e174c3bd4b1dd7ad56d94f117a52b0171581a8e58bda9b1061d6a634ae3b19d2458a88ae2ae4a0d57319ef45c6910b28a81971568c669ad6e7b0a77158815b15663917d6ab342476342e4530b178e3b53491502b9ef4a5e905890e29081509908a6194d302720534aad40653eb47987d68026dab48505461cd2834860631da985714fc9a3af5a68084ad211536ca431d2021a506a431d218f14c040d46ea36d215a4004d2668c521a0106ea5dd4d34d2690d1216a6eea66ea4dd40ec49ba937547ba933405890bd26ea6668cd03b0fdd46ea66ea4dd45c2c499a3351eea5dd40587834e06a20d4e0d4ee2b12034f56a841a7034c45856a5dd500634e0d4136ec49ba90b114cdd46ea608904869cb362a1269a4d0162f09f34c26ab2c98a9164c502b0f20d20a787069cb1d0044466a164ab86134c6b727a500560948548a9c46c3a8a5f289ed4d30655f2f347958ab3e511d450569dc56191462ad2458ed5581c5588e7c75a2e22d205ee2828be94c0e29c188e95370b1198453a3b63522e0d4f1a1ed49c87ca352023b54a226ee2a441572345239a9732940a4a8453ce455cf294546d1e3b52e7172157348e053dc11daa22ad56992d111e29054a633de90c7544b444e3d2a226a76c8a8585171d88c9a6906a402a4083d28bf98ec790ea7abd8dc3663475638de180fbdeadeff4aab0dcc839b69a445fb8aca4fdeac667656fdd723dc7f1356cd9db304c4ddfe7c0fe16a8930847ba1cb1b49f7e42c7ef924f2dcd135b8c7c9d3a5591015c73b474e3fbd4d9493c2ed3fde208ceea84cd2dd919b1807ef6e03273c559588f7dd938da3fbb534708ff006477ff00ebb53d55464bcaa718cf145c6868b718e3fe0383515a4d2c2c0db4855c72a41ff3c3d4f1c8affeadf68f420d477169820c6e3763a63ef538b2648f47b0d4e0b85dd6b2647dc718398e4c6486cfd6adee35c3783ef245976ae0a30264527eec9182414fe55db9ad096876e3eb49499a3753b8ac0680f8a0b0a61228b8589965c54ab38ef54f34a18fad016f22f2ca0f7a7ab5670722a649d875a771345e5722a45715552606a40476341058e2984d47e6114865a18ec296a69229a5a8cd497602a29caa29bba80f40589046290c60534494a5e8b858695028c504d206a2e160c5285a030f4a910ad0008956106285db4f02800a28c5285a430a434fdb4d22900c2a0d3768a79069b8a603767b52a8229734a1a80b8f45a936546ad4ff00300a968a522192322a12b56c95350bc67b54168afb7152a20a6ed34e504531a11e01e955248715a2bef4d920cf4a49835d8cb2315196c55996261db8a80d5dc9222d4da794a157140119534a0558545a5310a0762151eb4ec62a5f2c8fa546cb8a0427069a69092280d400f5a7ad3169c0114c43f6d218e903114f127ad004250d308a98b0a61c5004645348a908a4c5004245308a9d9298c940d11629a454a5714c2290d0c3484d38d34d22c4cd19a31462800a28c51400518a29c05310829c28029680b80a72d20a5071544b1e0d19a66ea334123f3466999a33400fcd0690506800cd286c530d04d30b132c98e952c73e2aa06a7ab50268d15b8a992543d78ace8dbdea60a7b5022e1543d6a65b54ec45669761dcd3e3bb61df8a96bb31a7dd1a06d16a07b41da98b7a7b9a71b9f7a4931b6bb15a4b6c545822ae17cd4654534fb8ac2479ab31afa8a81462a7497d6931a2c244be95322e2ab2dc0a9566a87e6596947a53d770e9443b4d5950bed50d95608918f5a1e323a8a7ac98e9d2a29af5454af20016a0d489a78efc8aaa97c074356935551d4555d90d2246d39076ace9d5474ab173aca91fbb38ac796f58f7aa8dfadc1dbc85924155d9ea369aa3696b548cc984b8a904e3d6b3da51eb4df3cfad3b0ae78d5b46be610ca5bba82785f7ad895b8f91b0075aa16f026e24b9cfdd23fcfd2b52d2388fdf4ce483f37455ff006e931c4ad77b8c4acac73b8c7823965e69b1c60afce46ec02a1856a2b44c70e8b818db8ebbaa1d52c631868c11925083d7d8d201d0c5163e57c9e14e0714c52ab90b090d9ea7fbadfecd5ab65520650807f76481fc4a33552f95933e5f1921093d69142c3380398c39efc72cdde92e5988f9a0643d57038a86362b8284ef07695a91e42701d98f1b33fdde6815c8ed5e589d5ad9f6b8236e4f1eff00857a8bae2bcb8c4c077c56ce95e33b88881a83bcd1636eec7cd17fb8ddc7b1ad112df9799da11486a2b4d46da719b3b8490770a794ff00797a8a9cd21af219494e22999a062d149ba826801734e06a22690353116549ec6a6595877aa8b254aae28158b3e6fad04d421e9e280b0b9a5dd4d3484d00297a6992a3634c2d4995627f36944d55771a4de6a42c5d128a5dd54c49522c94d058b01a9caf50834d2c453158bab2e29de79ec6a8ac87bd4aafef45c2c5a172ddf06a45b83e955158548ad40ac5a137a8a7861daaaab54c8c28025a5d942914fc5311015a6918a99aa324521a1b9c519a50053d5454b634860cd3973de9fb569cb8a865a1be4e7b527d9dbd2a7491454cb2277a572922aac0c2868d855a3228ee298655f5153728cc9d4fa55092323b56e4a8a7a5509a25f4aa8b134669069554d4cd18ed4838abb8921a148a70cd395877a9015f4a4161148ef4d741da9e4ad30903bd00c85a2a8cc7567229ae055124038a52f8a63b53375004be6e28f305340a511d310b9f4a4c1a7ac75208a8022514ef2ea5586ac25b9a6896ca2632298c9eb5a46daa17b7c76a2c1733dd7150355f786ab3c26932e2cac69b9cd4e6223b530c78a92c8e8cd3f6521140c6e68cd0451400a29c0d328cd31343f346ea6034b9a02c3b7519a65145c2c3f3466999a5cd3b89a1f9a506980d2e69a62b0f0c282c2999a6934ae161fbe9375309a42d45c76ec484d207c5465a93753b8ac58597153c774477e2a806a7092992d1a62707ad282a6b3d65a9a397d68117367a51834d8e614e66a041e663ad3966a858fad4792281978351922a9ac8477a904c6a6c3459563522c84554135289a93406a437447434f37cdeb59427229e2e2a794773545f37ad4124f9ea6a979fef51bcf42885cb6f718aaed787d4d5669aa12f56a24b65b3747d6986e33deaa17a697a761161a6a89a63511734d2d4c2c3cc9ef4ddf4c269334058f2db5b8525b1f2838c8cfdde7a55c8ef76918031f7706b16cdbe61bba13c8ad4b8b520fdf551d579fbdcd04a356cefd15b2fb4647de6acdb9d4e795be7705413b081fc3551e42df70600ed5d1dbe8313203012e71bdce7f4a9652436de6611f2a480449c756e706a5b9899d7851ce1f93f779a92de0dc8429ed51473edfbec782368fc6a6dd8af52ac56ad9c8e47d7ef5583652ff0ed5c75193570ba9e8aaa382ac2ac4324647ce3fd9247f15170b194f6f20e8c3e99acd9a3653875db5bd245fde718fbb59da8443820ff00b39ad119b2a4134d13036d70c8df79594f3f4ffeb57a0687ad0bb4f9d42cab859d40e1b774295e791e71f3f4eaa7fbb5a7a1ea0d6f2a95618245b4ea470d1b1033f5ef40e3ff0000f422298454aca45308a45119a69a908a422802326929e5290a1a62105395e9a41140a009048453d27c753508a5da7b50162e2b8341155d09153ab520b0d2b4c64a94d3714994881948a43539151b2521a194e5069b8c54919f5a0099334f28284c53c8a2e222031da9c00a715f4a6f23ad200c1a7a923ad22b0a9028ec6800dd4ab291de9a63229bb08ed4058b91dc0ee6ac2cc0f7acc1914e12914ee2e5340914c22abadc1a789a8b8ac4983eb4658546653486522a4b489bcc347986a03351e6d4b29226f33de9eb291deab6f1467d0d229169a5cf5aaef291d0d34bb7ad44cd9a487624374477a6bcf9ef50b530d5058716a69614c248a63353421e65029a67c74a849a69a698ac4ff683479955b34e0d8a64d89c48452192a2df485a80b76158d029bb853830a621ea2a655350ab8152aca28112018a7a9a84c9ef4e59455213275602ac47301544c829e8e0f7a64b2f79eb4c91d4f4aaf83da819a043596a2688f6ab6aa3bd3c423d281dccd29ea2a178eb59edd7b5576b6f6a4d1499985314c2b5a0f6a476a81a023b54d8b4ca9b690a5583111da8117b503b95bcb349b0d5cf20fa51f66f6a0398a7b4d1b4d5b36c476a05b9f4a07cc55da69761ab5f673e9479268b13cdd8a9b3da976d59f269a62a760b95cad1533466985290d323cd349a90ad34ad228666909a52b484500349a33411498a602e68069b453448f0d4f57a8c528a6268b09291dea659cf7354c1a7ab502b16fcea378aae1a8ddef45c2c58dc2943557dd4a1fde95c2c580d4edd55c494edf45c2c4dbe8df50eea0350226f329acf4dcd21a000b5309a7114c228402134d34e22908a0069a434e2290d340369314ee293345c0f37b5d263909f2a650c3e7db8396a92f2d276c79684a8ce48fef7f9156ad6ead3783b5d38f9b6f46f4fa54b752c89cd9be7a19149e7e5a4fc8956ea416ba1b18f3246f1f211f2796ff717d3a5751696f6f1ae21271f74f3f776f666ae34ebb78ed96c9e0a2a8a962f12dc7468c7e06a6cfa95ccba23b08d601d1828c6cc0ff39ac6b9d38e589ce3f8091f7bdea0fed366195247b127fa5442e5dbefb13df1da8481b35acbca0b89803fdcff00769a64897396445eb193fc4de9541de403e5f978ce3fdea65cc7c0da49e9934d444d96a5b856ff0056eb8aaf728597f77c91c9c53190e3a01d3803dea67b356ff56b81cf4cfdefff006aad10cca95187f78afb0f6ffe2a889f8f95b9185cf75abd864fbebfe3503852c7cbc03c1ff79b9a6c0ef741f102dd8c4db566182eb9e275f58bfa8ad531d794895e3398d991860a90798dbd51abd4f48d412ee20d1823fe59480f5591783fe352d149818e9852af983da986dfda97c877298534c9e58a2526e245451c9663c5675ff8b6d21c8b6dd3c83e4c01f2ab67f8a4ff000ae5752d7eeee86272a141de9120e15bf99a2e4dff0097ef35af7c6aa0ff00a05b023fe7aca7ef7fb918feb58f77e23be9b869c46bd4ac4305bfe05d7ff1eaa4703a8c745c5239550738ebb738a57ec3e5ef736746f1434185bfdf22758e50398bae777aff003aed2265600c6eac080ea41fbcadd0d7978f9b18603bb822afd8ead716d9fb2ce573847181fc3f51ee684fb8fd0f429a58a319b895235fef31aa767af58ce716f740b7411b020b7fb99eb5c2bdf4b3b133ccf21ebb98f0bfe1518247dd62a47cf1b2f556ff0061a8bf90979b47a25deaf6907fc7cdd46a7aedcf3ff7c8e696cf51b7b819b498483ee1201f95bd194d79e5d5dbcac5ae0a973832151fc58c7f4a7e9ba8b432030bb28c8f307678f3c86ff80d00ae7a393499f5a0f1ef485a82c36d3d5714c0d4a24a40585c53b3500969eb28a4344a09a5233d6a3120a707a0634a7a5391c8eb4bb8527140893cc5ef4825c7bd4457d0d35411d68045ac834d64a44a71a431a38a70a6d286c5171d87648a37526fa4268f40b0a68149464d21a1f46699b8d19a5618e2d4d268269b9a918d269869e569854d31d86b530ad49b4d1e59a2e16202beb4c3564c669863f6a130b15c8a6918ab0d18a8d97d2aae2b10e4d19a71069b834ee4d837501a8d9405a7715850f4e0c7d69bb69304550ac482422943fbd478a500d320995c9a9549a8141a91734d09a2e46c6a74f71505b0ad15b7f6a640c545a99235f5a5582a4106682455b456e94d360476cd4a91b0e86a6490ff0010a4c0a0f680751501b15f4ad672a7a8a8cc43b74a2e17321ec0761509b223b56c346476e29368ee298ee64791ed4a211e95a6517d29a2dd4f41405ca02dc1ed4efb28ec2b416d6a416bed405ccdfb10ec2a36b123b56dc76d8a1ed87614ae17300da11da9a6d0fa56cb5b91da90423b8a63b984d6c476a81e0c76ade9e0515973803a5052667b475194ab2f511527b549699032e2a322ac1435114348ab911149b6a5119a5111f4a7615c836d2edab1e41f4a5f2280b95c2d2e2a631d26ca02e45466a5f2e90c7486341a5cd2f966936e291400d2e6928cd003c1a729a8b34e0d40130a502a257a9038a2e2b0ec52e29030a5dc29262b062936d2ef14d320a62b084535a8328a619050161a5a9a5a91985465e81dbc87eea3754264a6f9b40ec70cda65cc3ff2cc1c8daa41fef55fb7b29c0c5c4254e36e19867ead59f2ddac880e5811f2b807db9abeb2301f3bb93d5727eeaf18ad0e74539edbcb38552073b48fc2a2b5b066e52363fdd2c2b41dd5b9da491cafa7fdf35652ee4fe2b86518f9463ff40a008058b81cfca0fdd3fdeab50daa28fdf47827e55663f778fe05a805c28272f23b7f0827855a1ae598f2a08fbbc9a02e58530bf1bc31c0570a38555ef515c95ee3df351adc2c43e4c16f507eed44b75cfccbb87dd39a100f8f6ff03b1f5271fc3534723e464e3df155e34c93f2e7bae2a6c63051f23bfa5005990239e2239fbbf2f4dbfed2d5792c981f9548f5ab927c8331491a838ebd19b14ef3588fde229e8700d03b18f2c47f8c11f515d2782f5231161b9369c158589ff59dca7fc06b0aef8e40da71b76f6aa56b7440ca36d7fe134fd49f43d62ff529c27fc4b6cd6497fe79c8c0055f5dddeb82d563d654675492e3693f28dc30acddb683c74ad2d03c552b7cb7851cf1b187565ff63d6b6751d674e0845eaf98a70af030e5bfdca1c7b117fe6479c99429e3f126992c8c3191807eefad6a5cd95839274f59d14f2b1c9ff2cdbd13d7f1aa86dc337ce49eeb8fef564cdd2214576e899ce367fb2d52dcc523ae1e41bf214803fbb8a9e388a63865ff007bf8aa492e839c460003ae07dde7fbd40ca2b12aff00c7c39ff6557ad0f32f02189547762396a9f67cd83e9bd71d7766ac88829cb000e3e514c4565b7618db19fa91f79a97c86cfce78f6ab647197c28eec4d2ee8bbc8a3f1a2c22abda11f7940efc512463820631d80a7cd301feadf3f8d30383d5703b93d286868f45b76491418dd58100e54ff1629e61ae23c3facadb4983283031fdf6e23104bd8afb7aff00f5abbb2681dc84c58a614ab06984521916d34986a90d19a02e301614e0e69dc52151405c0494e12530a5348340ee4dbe8df50e48a0352196565a7092ab0229ca7de80272fe949e67ad460d04d161dc98383466a0c914a1cd2b05cb00d2822a10f4edd45868978a0015167de943114585725db46ca8c39a7abfad1615c42b8a4c54fb41a8da3c5271ec38cbb8ce28c52e31484567634b898a422826909a0644c9e9513466a72734c340c84a63b534ad4c4d30e29a622222929e6908aa4c4d0d14e02900a7018aa4c968409522a8a414f51e95466c9163a95621512b914f596aae4b45cb7451ed5a90bae2b112523a55b86e7fbc6a8cda350ed3d38a55502a92dd01de9c6fd477a5624bb81eb415f7acd6bef7a88df30fbae68b058d52ea3a9a68b841deb24df13f79a98d38fef530b1b42ee33e86985e33d0e2b144d8fe2a9e2ba53f78d160340c47b608a5538fbc2a049947dd93f0a249fd1b9a00bab228a70997d4565adc0ee71434c3d69580d713af7c51e729ee2b01e771d18e29f0cedfc4c68b01b8769f4aaee5455233baff00164546fa82ff00150905c967753d0d67cf10f5cd4925d467a1aaef28ec78a6522b98a9561a716a37d0500857b8a0da29e942b7a9a954fbd008885a0140b65f4a9b77bd26ef7a43186151486d876a9415f5a50c077a5702b359d446dc8ed57f78ee690a2fa8a43450f2290c5570a8a694148a453f2e90c5570c429a62a5729144c54d317a55d68c0a8ca8ec295c762af967d29a548ab583e94853d45171d8ab9a371a95e1c546571480048452f9d519a6134ee162633534cb5016a616a02c4e65a6192a12f49ba80b12192a32f4d2d4940852c6930680296981c4dadac273f78f4dbcf0def576628a32b24a7a2a8269b69a3dc264c9082a3e52d9e3fe054b770c800ca02091b829fe1fc2b539ac24650f527d793536030eb8c7ca98a8ad8a93f2a9cf7c8ab86038f9460738cd03b15a14c9f9b247ddab768aad9c2213f75493f757a676f7a8c44e3ee8c7ae7f8bde88f23186c75ddebb7340588de16518543d76a9fef5539ce0fca38f51d6b56489597e4755c65cee6e5b6ff733ddea09615dbf7811effc2d42158a11c8e3fd5b953f777375ab8246d84c8067d7bd5255c6376547f09fef55d7e07208f661f7a80236be2cb8f2d8e3eef34457257efe47f0e4ff000d3a38d7b007fbbcfdd6a617707af1ec6801d3dd83c3b023daa0b84503f749c1c7d55bfdaa594907257eb91cb52432483f8323aa934c09a3b5913051d94fa9e9ff007d55fd4ef85c2aecc79806f9028e36f19295952cac48024c0fbbb013f2fb6dadfd26cd5b3bd49214aaff00b51c9c1fc7ad0bc84d0d58576e121d8401d41ceec5558e09c30db1123825bb7d6a47b89a16c48d920ec3b873b735606aae7ee4098fbab93ed5834cd935e652bd67249dc081f2ed1fdee9f7aa011a83fba8f6f4de33f79bad686c50333b81dca81ef55c5fdbe4ed0a71c2963cfd768cd348005b2eec821411b793fc5c5133c4878393d4f3f76a3f2e593ee7ce4fdcc0fbabf8d27d8dc1c48a54f3b770a69798bd08a6919cf2588f403eed472e00f9777e5572df233d80fb87fbdc5320b496427278073feed55c5628a2973fbb2c4ffb239a95e174ff0059b9471d7fbd5a11e9971cfca1072ab93feb154f5a86e648871e68e3fe598031bbfdaffeb524c2c671c73c9e7eee45779e1bd7dae06cba004ca015603fd6c4b819faa715c72a29e8a0f5e957f45bd86de70d2ab2a1060918ff00cb3dc060ff00df54d823bf229a454aca47bd44722a4ab0d229bb4d4808a7a85a044414d3829a9d6314e10d00570b418fdaad0b7a7ac0075c01de8b825d8a061f6a618f1dab4a348dc7eee4471f7772918dd4d92d452b8ccc208a6f998ab12c2474aaac8c3b53b0264a25a7092ab618528634582e58de2977542ad4f5a2c03f71a50c69ca94f1153b0ae3039a7ab0a4298a68a120b93291522e2a15153460d3b08997152f939e9447103d6ad45081d28b1372835b9150b2115b4d6b9e95564b261daa5a2a32ee661a8db22b40d9b775a8ded40a9713453334b1146fa9a5831d2ab9422a794b520245309a520d3083458770dd46e14c20d260d017250452822a2e694669a1364d914a1c543cd491c6cc7e4524ff000802abd497e4480fa735663b0908fe11db06acdadb08bfd71504e17cc23ee7b54f12aa746c0c673d96bcdad8bff9f297a9d94f0ebfe5e5fc919ae8a87f792051dd8745e714a430c6d75607a60fdea80dfa12cb22124e6f6d8103fd4e4061efb3afe5e9523c3130f91b6e46f4c0e57b7ddac56327f6b959bfd561e6ba1323e7a1a6bc8c3a834cb5825c0de50b7f1edce3f5abab64cdf796bdaa734d5e2cf1ea41a769233ccc7d698653eb53dc5932f638aaa508ab24783ef4a4b7635017229566f7a007166a164614f56068317a5016268ee0f734e321ec6ab8461da9ea1bd2810ef3187526a459cf734c3ee29368a05624328f5a1243eb4c094f58fd2985898cc71d6a94a58f4ab4a57f8854f1c087a814812318961eb4076f7adb3a7c67a2d412e9cabda829332bcc229a663534b101d2abb0a0687898d48b70477aa84e293754948ba6e0d30ce6ab87a76e1480956e1877e2a4fb4555dc2941141562c1b83479edeb55ce69b92290245a1391de8f3cd56de7bd1ba81a45a17268fb41aadb851bea4a44c6426937d4064a4325229136fc77a7093d6aaf99ef479b8a009dd85404d34cb4d3252181a61a0b534b5170b0d229845484d37140588ca9a4da6a5c518a2e1622db46d352eda36d171d88829a5d86a50b4bb7da8b858c096390e361dbd3782463f5a74ee101f2db27f87763ef5671bfc91b18afb776ff0081530bab7df0e0f7c9e55ab5394b83780082beb951f75aa17966cfce59875c81f7a982eb681b70dfc3cd4c970d8e231eb9140c69e0f1211ed9fe1a6f9817fd59dbdf27ad00eefbe428ebc0fe2a698d7baeefee926900f7bb6206eda7bf5a24b91fc7103fc3b454732a103e44f7dbd56ab47295ebf37d6ac92f2c8001fb8c8237a524e6370378915b95cd32d6e49032548fbb8feef3523dc0e848c6726a2e3b096f1c847ca991f749ff006a9f2dbc8bcb2291d4e3aad5767507e562bf4e9baa4519c797237a939aa4c4d0d9640e39c81f75770fbb55e3dcb9dc9d3ae3a55a5bb6048c29279271cb6da63b2391ba13db791fc54ee2b0b716a400427b839adbf0edfa3ba8993393e4927f937e958e268bf891f1cf1fca8b573190d116382093fdd653914d08d6d5a1b7370c1e411aff007b1911c981f796b324ba318fddb8cffb23eefe7d6b7e39adae9ddef6d229102899410731b6318dc3191d3ad7351d8c4e4e47fbbe6371edd314984486532cbc962f9f94851c47fef53a189d71e627be3231ff00026a7b3a86c2ef638cf4c055ff0077fc69cb19723e527a9ffbe454a5dcbf4255ba9d47eef0bfde2a6a19e795013b4e3b8639dcb574421106f3807e53914cb9747046c2474e07dda2e16282dc4a4643607f0e0fdda9619e75e50c67ddbad578216006f381f74e2adadb2f79557fba0e72d54207b895fac87fd9da3eed24ba7ecfbe8d9c1e18f3f5ab11c407fab753d15f27f8aac12074933fc271fc4b5371d8c1129c7209fe15e4d4a66603960470b838f956a49eddd33f2e01c943fecd4524247f1291d5587f174aa24f44f0cebad78a45c796255c7dd18f363c75dbfef67f4ad9687d45795d9dedc5bb2b5a48a920e549fe25ee3dc5777e1ef162ce02dfb813659f79002b478c8f9bd53a62a24bb171977355a03d8530230ab71dcc2f9f227864c7cb204607cbff007b152f960f515372b429a93dea6473daa86ababc56fc4682593a98c1e225ff006bfc2b91d5b5bbbbbc7d9ddad939f2e35273f595853bf762ff000a3a3d43c650460fd84a4ee393c9daabebbbbfd057293f8bafee54adc4a9b41db945c6ef4ddfee5412698e3fe5b2918119e2990e90898deec7273ff02cd2ba0e5ee4ba6eb7716f936b7053ae548c86e7f896bd1b49bd6b98959c206232e17a2b2920ff002af3db6d2e200ef8ff00227eed6859dddcdb8c5a4f222ffaff002f3c3329ff00eb0a8bfa97cbe8772f067a8a6fd841ed55745d7d6ec7ce8b1ca3e77881e197d52b6e28c9ec68721a8994fa69ec2ab3d8915d21b46ec0d57974d7f43429f7070ec8c0fb2b0a7a415a4f6acbd41a6887daaf989e5218addbd335692d93f8db1f4eb4c94301f2384ff6bfbdc907fef8c5639f1015622ce22e46764f2630cca2bcdaf8a7b514bcd9df470cbeddfc91a690abe7691904c332e7fd5c98071ff7c906986cc8acdb3f18c6f232358b46dff1f334ab8c332c59cb77f9f000cfb56ad95f45728af0060ac37a061cafb357650ab7f896bd4e4ad4edb7c862c2474a996261daa5db4a0e2ba398c39474591d45585cfad4024a3cda2e2b1715d87534e339ee335504c7d68121f5a771729614e7f869b2dbeee808a7c53a8fbc2ac2cf1ff7b141266ff66b7a83513e97fecd6b0910fdd706a5da3bd170b9cf1d2cfa537fb1d8f635be557d6a39aea2887cecb9eaab9e5bfe035326bed35e65c6ff006179239d7d2597b53a3d299bf878ee7b2d5e6d4e5623314610f40073d0d37ed12bafcd9c9c7caa788bd2b8278c8ffcbb8b677430b2ff0097924521a3b9ff005586fa1a7ae86e7fe5a460f523fbbed5a10c8a383cb1f9d4669b23ecfe2407d87ddf415cef192e918f99b2c3aef2f2238f49b741fbe05f1c96e71ff7cd3249e25e210a838e9fddf5a6bcef820bb1feee7a35569514e4e57b715c93ab27f1499d74a925d1764327691d87952023b827868d87f3e9525bccb2a3625575c796857fbcbdff00e0155e49e304060c475000fe2edfcaa1f0d5cc6636dd16d01db63607ef5642493b7fde2456691acfc90e92095949b38f32fdc8240065558f279fe5de9fa7ab79ac9390b2f06d55bfe5aaf5257dba54eb72aa7f77db2ab4fbed49640309e5b72b1ccbd62e3194aa4fbfc8524feca2933c9b53fb3a410e1b7cc719cc7962c1bfe055d95b9471955e395c1eab5e5ba5f885addd9357076e77acca3eeb3752febbfae6bb9d3f5b5122aaaa344e0bc33a9fbb2a8ce3e8ea0f3eb5e8e12524ed37a3d60cf371914d5e0b55a4fd0d6bbb4461d00ae6ae6df69aeaa76c0ae72fb39e95eb44f2d196f1d46508ab041a6914cb08db1d6a7599455523140342132c9b91fddab30c88dfc38aa70a0ef5a5144b8f94734c81ff006507a0a84da367e5157ede651f7f8f7a89ee619722262783ca919957becf409eb5cf88ac92d7fedd5dcda8536fbff79f6285ca4c180826551c7ca00f9e453c86ab2b1237f18079c9038665eb553fb3ad08009b9e32af9c7cbb87f7a93ec16c858ee9950913228c67dcb7fbfe95e1431135aa9bf33da9d18bd1c7cb62fc76a0f4208fe120f15656d71d2abe94f120da9e695c9dacd8c47cff007ab5fc93e95ee61eb26b4f4923c6c45269ecfbc4a4a8c3a53268d88e45690b61f4a63c78ed9adee6163999ec9b3f2826aabd938ea08ae9dedf1d062abcb6c5bd298d339c368d4aba7b1e82b6fec807de148a36f4a2c3b988d62e3f84d47f6571fc26ba0258f550698b201d5011f4a2c3e6304c2c3a8342c66b75e488fde896abb4117f0f1ed4ac573198508eb4d22b484511ea7143e9cbfc0c08f6a2c099964525597b623a7350b44c3b54969919e29a5a94a9a69535250d269a5a9c54d30a9a45017a697a42b49b4d00297a697a52b48452284df46ea31462a4037519a3140143180a7014014a05218014e028c5281405800a5c518a5a068e0658987fcb3c77c1a8d6ed877c0f4c5599a72fd13078ff00817155502b0f4fee9c5752381b1b3dcb81d323dbaad4b0de923e5048f5269658648f053e53c1e71fbb65fe74ebbd41a6626509bce37ed50376d18ced1c50c04339f50bfdda699cff00789a88a93f7715325bae7e7600f5a9b14315867938f7a42a08f9891ffc4d5d3180a0c6c9d39209f9bf3159b708d9e718f5aa484cb9a7f94bfeb66c01f740e95666313926342071b1bfddaca8571c6f04ff0018feed5892dc8c6c738e7e5cd4d877259ca63e41d33ce79a58d194646ec77c7f76ab18f39f988f5e3eed4a92c898d8fb81c74a1a04c8e499c1f949feeffbbd2a48ee4e4e3dbfefaa8cef3cb0ff00679a14818fc73481161255eefb4fdd2314f4620feedf03f8d7fbdb79acf91ce7e53834e56603af3c669a0676565b82fc8e30e8d6ca08fbad8c8fe42b1ddd950f96eaa7abcac3fd5ab7f72b474cba574fbccacbf39873f79780767f9f4aa5e21d3191818e37656c187d17b9ab642ff8065da4841fdd0dc39df2b0fbdfef558898820cac3b9c2ffb54465154878dc370a70785a6f9fcf08abfddc0acee6962c3dc118dab9eea49e3fef9a63cd21ff593a807d07dda4c064cbc9b48f95067ef2b1aa85876c6290cb36e72483b5b9da848fbd56bcdc70634523e5c1fe1aa70c8808e08f5c568dcea51b85de8a18657cd551b9d7fe9ab77d98a2e3b10b4ac0fdc5fce9f1167e1e40bd36e0fdeaad3381caca0ff0009503eed496d34640e486e5cf1c373c52634891e251c39623eef5fe2aa53941d460e3e56fef539c4a0f249fe323fbb4c9606c647231b71fef538b264885e223a367a75fa539256c7cf149ef9c61aa08cb0e0b63b54a920cf2a41eeb9feed5b666917f4dd62e2d9b362c8ad8f2dc1030d1e41c73f4af434f14dbc90eeb62be6f119809e609587f17a8af306704600233dfbd4d697cf09cc6aa4e36aee1f779a9f4f915fd337aede40a4966de73bdbbb77358e974a0e4c8c4fa03f769d3eb931ff0058e8473f2e062a9ff6811f72de05fe0ced1428f70e6ede85a37624cffaccfdd53cfdeee78e95722d12edcfc8647da37bb0273f2f7acb17ce31b6624fdfc01f76a5b8d56eb6e5ae6427855c9fbbcd3e5ec1cddd1b71c4c83fe5a9e99dc3f8bfd86acd78e5c9dc242063d71ef4c5f105d3e3718ce32a46de1db914c9b5ab83d1803c1e9f76a394be62788c9190d6e59581de8549caed39c7f4af65b49a3c02ac08203a9ff65866bc59756b8947cd3051f7718fbdff0001ad5d2fc557568310b0963c82606070bb8f589ba8fe551281519f91ebff00694f514d6b95ec4561c170b2a86864ca901d707eefb3fbd3cb85fbf228fee82796acdc7bb4689ff2a3424656f4acbd4b514b6009453c85cb745ddc0ffc78d6643e255b90e2c6399080364e48fbd9e7675fb9c5569713637c4a430dee09e1b71072cbd3eee6b8f1157a41bfef33b30f4bacede44f73a8a12be612c589542bd17827e6ac7824549537ec546511a1c70d738e9d3fbbfd6b4b4c9677560e91c8c8e60867c712c4a720f4fee601f7cd3dda6e0bc110c1dea31fead97a6cfe55c36eebc99e827fcbea85d49592366b0b4512e024921518daa73ffd7ac3f09f886e37f9778232bf31b670395932491c751d48ae83549e79217f3e5316559631c0dcd8ff00d9eb90b2b059c06b1bb8e39972e4a823e65191bb9e3a1aedc14924f9bfc373831516f66bba573d0bcc0293cf03b563e83ac7da100b9951e619df8182cbd8edad611c5cefb945c601183f79abb5d687da9a5dce3f652e9114cded8a3cea6bc241e0e47507b32faad342b1e8335ac269fc12465283fb517e44a1e943fbd4414e700ae40dee323e55ff006bf2accd47c436f6c407cc8ffc7121198d7d5bd3e9549ae8d1128bea99bb1c83bd58665038ae76dbc4b60ea09bb8e3cfca6273cc6dfed2ff005accbbf1bb7fcba8c0ce50e3996353ff00b3fa554e7e4fb1308dfaa475c770ea40fa9a64dad2c206e955b9d8a33c7fdf55c05df8a2ee5c6c7751c741faeeaab772cac079d23007e7258ff7ab91ca7fdd475a843b499e8bfdb6d20ff47923e7e40f8e7e9514719c8f3e4691c7cfbcff00b591f37eb5c358ea72443e49148e36827f8ba66af5d78c2e0280823dc7e4ddfecaff0073fc6b8aad19bde6df63b29d482f8629773aa966001385000278eaabd2a3b38ee0a92cd167ef938fbad5c69d5f5060373a2e72b90396e6a78b5ad4117e79c0e79007dd5acfead2ef134f6f1e89f91dca79d8500000fdf603955c73ff007db54128cf20a91d36e395e7ab5655b789e1451f6aba519ebb8fb606d5aab7fe388d136e971a492124c9311c451f61f57ebed59c6849ed17ea0eaa5d57a1a97b7b1423f7b2280464ff00b6dfec5579dc226e5b88e4639912dd4fccb1e383b47f7d79ae0b51d5a6979bc95dbb201fc3bbb2553b7bd208f2cb29fbaac2bae3845f6a462f14fa2f53d0a1907fcb632480832203d5645e9fd6a7b38bca5c26de705f07eeb3124d79f43a9dc42e0b4ae5491bc13c7bd7696730972c970e7a22c58feef1fd6b96bd16ba9d942aa7b2f917a1872e7e67c0ce41ebf37ffaeabcb02ed52e5d0804a83fed01490a38726390e082e463f8b8e6acbceed8174ecdd0a301cb7b35735ce8b1caeb0b1488498b2dd4b778d94804bfb75ac7b7d4e54005bdc32e0874e7fd5b29ce53d2bb3bb55490610057dcb21c71b97a7fdf79c571fafd82dbcc440bb50813463f3cff00e3c2bd3c1cd6cd7f7e279b8d8755fe0923d82cf545b88959248dc903cc2a78f3303354a65918f099af2ab7babb008b79a70b8f327546c7caa7af5e9b8f6af60d16f6daee356826476c0f3d54f314b8e432f6af560ffe09e34976f915a3d319bef2e29afa2b0e878ae8562514a6307b555c4731fd96ddc557974d75e8a6bae5b75f4a536c87aa8345c0e421b5907f09ad78adca2e58647a545a95f342dfe8ca081cb478cefe6b94b2f1a6a12ce12fa3104673118f6fdd75c9ca375c3d7154c4ad7d9ad8ed8619e9ed2d6dcbafadfdb032da79901526cee9b03fd663aa7b6e158715b496f70164bc9266da5c3b0e59647539661c7603eb533c8b6976e2080796e532ca0feea4937e0fa7de06b5e62e8e8d0e770ca3f4f9a39132473fed28af2ab5477f7deeaf13d6a50497b8968f5f3d48e5879e70838f2c67daabde8709fdece6123fbbe6715b30aef244ae074f2548185ddfdc6aa56d716f2c8eaeaeae98492361fc4a7394f67ed5cd15d979b37735d7d0ada5c371b14ca8bbc806656ce23931cf7fef56926a37107faa999738421470ad8f7a7473c7d3603cf9736471d339f7151dd4cac1b00f00ba903ef375cad3527f65b40d2fb514cdeb2d709c0bf5084f0b201c6ef46f4ad52d1ff7857231caccbf38247dfdd56a19dc902367451f2f07eeb7a57a14718ffe5ec5beccf36b60d7fcbb697746f3b2766151131773545657ff0096e338eac3ad28b883b5c47fddc13ceeff0076bd0a5888bda56ee8e0a98792e97e9745a2887a544d6f18a48e5523f76c08fe1229ece31cd7427d99ced774559768e86aabb8a9e5c7ad55722ac43188a898fbd1237a557672282912671de9fe69f5aaa64229866348a2dee1eb4bf2f7c1aa7e75027f7a570b170c487a8149f668fd05561707d6a45b834ae525ea39ecd7b55492db156bcfa6330340ca4d17b546531571a31d8d46d1629586a4552298455931d0b066958ae62ae292ae9b122a336f8a4e21ce8ad4b9a9fecf4d301ed4b946a488c52834ef288a361a4d14a4029450b19a93cb0065d82a8f99d98f0abeb4ac34c685a53b07df92353e8c4573da878b8038d35548c732b0fef0fe05ae6ddd98e656773dd98f5a6a244aa2e84ebb71fc555c71daa26bac637371eb41b853f7be5faff15745ce42d34d2606c207e02acc696e50fda2263370f6d32f48fd772f7f97f5aa2a3238e9eb9a8dd9d41d8c483839cfdda604cab8fbc467f878ab56eca377da320e02c20f47e4e7fa554b790e7f7c723dfac6dea9410c189724ff000ab1a562ae69a4898e047fdd5e955a4b757f61cae38fbb4c23239da7bad316461f75b07d08a64dcaf631b0639c1c7cb93579119f3b9718f5c66a8195836542e4f5f46ab10cec01dc339c6dc7f7690d0ad111f74ffb27d2956d0803193d4906a2e9d47eb572da7e0862063254e7ef2fa50c110c8ad8f914e3d7bb539ed1703cb6078cf5fbade941743cb3703071fdea719e339e7683dbfbb424365358989c383f5fef512860300f1c678fe1abc3cbe36ce0f5550d492ac7918c63dba2d26032c350689c1c8232177638dbdebbdb58e29e361e6c7291fe93851c7cdd3afd0d7116f16c53b5108272ac40cc6cbd91bf1ad6f0fea5e4b8fb413b4e6da6ddff003ce4c6372fa230cfe74c5622d52ca3878498337df207455aca2b9e84e6b6f5cb709232cce17076ab13f7a3ea2b0a47b75fbf348ff4a8b1698c27fbedc7dd514b903fd5af1ee29aacae7f71137ae7342873db81f2b53026405bae055cdf8521a256ce36b12731b29ea9fa8aa51b301c7d48feed0677e3cc391d76e7ef52b05cb5ba40b99122039589b032deb5592e981ce47bf1f7692490391b86d1fc2a0714c7550785ebf77229d82fd89cdcb31f9189fe1e07fecd5149330fbecc471f2e6a78011d17681d4814dbab624661049e075e5a8484d904d01c0309c83d4775f6a8a17c766cf39e39abb0140877a066236a0cff00ab6f5acd95883cb138ec2802759403f3364ff0815319d718d833d70dfc554a20c7ae4fd3f86a554c7defd6934172678f7fdc0147f08feeb510d81cfef587af07f8bb522c78eadeeb52248c4e0123deaae4d858ed5b3fbbc1352cd6cc3efaf1d719a9ed7ca1feb1b07bf3f7bfe034b3dd41fc71aa8fbbd68194c44547ca001f7714a1327e703d7ad4d24f00eb1003ef919348af130fddc448fe1e4e7e5eb45806ac617193818da403fc54e8c11f739ce3ff001da90792065c7aaa8dd422c64fcaf27fbb9ff0a9291a7a66a92db3ee8d99803cc793895593a4bff02a967f11ddca4ef9a38c9f97f7639db83fc5ff00eaaca9422eddb193cfef383955e796f5a726d279511f5da08e7a7f76b3705f697a1a29bfb2fc99258ea92db7fc7b3aa920c6e703eeff008d35f557603cd9e638fdcaaa938f2d7a7ca2aac48ca727057aae71fc556d519d78c63dfa373ffd7a6e0bf9512a6ff99f90e82ed8022162ac085455073b58673c55e8757be04627b9047663f75b1ef51269d32939dabd09e7f8697728e4907fbb8fef52715d628a8c9f46c86eefa69491712171f755d98e164607d6b3a1824048c9c71920ff007bf9d58be53b7207539c8fef53638982ee7c11dd73cd5452e8912df993d8ea33c04f95232ff01704676e7ffad5627beb9dc0fdb2e4e4797c31fe1acd8ef101f9a007f8540e9baad5bb657e740a39e73f77a567282fe55d8d2337fcccd0b3d7af21ce2469411f76524ed6f54a896eeecb033de4ca7858ceeffd96ab35e85ff50ac71f2293fe79aa82ea5dd870b807f1f5f9aa634d748af329d47d64fc8b32cb73b8e2ea624e5243b8e5d73d1aa095581f98e0f5f76f7a7cf3beec47b578e481cb71555c0dcbc93d54926ae2bc910d9399523197249e7b7dda9613e663cb704f5638e16aa4ac40e4023bfab558378d092210181c18a4ecb1b73f27e74daec2b963c8918f3923d074a2f548e0b1e8381fc34b0ea8aaa0b202dfed1fbdff0001ff006ea85c6a534b9dcc47d2a5229b2e5aa4633be3c9c7de247ad323bdb70712af998fb800e5bffad54d580c7de39f9dc13f9502239c93807e55ff0080d3b05fb1767d443e36a95ff966a303dfd2a99b9249d846384febf7a9fe5103ef03fdddd4c51b71c6e3c7c83f8a8b05c680dff2d6303a3e58fdea718e6c7002a9f94926acbab38180a3344b70ca404208fb8fc7f7714bd00ac96cedd76851d79fd69b1daa8c1249ce4a802ad26d7041d807f07fb3db3515bc7b87eed7a7dd3dfd3fc29af317a10ba29fbccc07ddedf35741e1ab820e1a42463cc55c7d7ef37e15cf1c8fbfb4f3dba2fb56869f3c88418d727f8f8fe1acabc2eb6f436a13b3d7e676314bf28d838c84231cf96dd7fa5683d9c608dc723af43e959565aac2ca3e721b072187e23f90ad492f140ff8fa76c61117b37a0ffbe715e34e9bea8f5e33bfc2ca5ade9eed1036e00db2079f763fd5f71ff7cd733e26b496578c5ac6242541876e30cac49ceefc0d7672832c0e236ce41539ebbf1595f635410f98c4c89e5c309fef3370437e66b5a32b6de88caa45bbdfd59c12ef5c868d8758c83d57fce2b7fc23e253632feff7790d886eb8fbbb73829fee7f2cd5af155ac276b471ac726e78662a3fd6ac640cb57272a95fb8c40e76ff00bcb5ebd09dd5ede4cf23114eda5fcd1efb6ba8dbcd8fb35c46f91bd429e76faedab39c7d2bc22c7c4177181e4ddba11f2a3a81955f466ee2b427f195fcabfbdba77e88a727fc71ff008ed6f7399459ebf73a9dbc4b96915fa848d4f2ed5cceabadde3e7cb95a307e548947fe84dd6a869570d346a60f2906363c60f29228e46eab12f98579da4f3b7fdadb5e0e231326ecaeba58f7b0b868adecfadfb19d652dc79a0ce49420e554fdd914f54febf8569bc70cb8325bc6f8276161ca7fb8dd45552597991828e36f1f777718dd45acc5c9da700108871c3700fc9ff02ae56df45e47672a216892524bee56c8de0755652d81bbfd86e6ad45246cc3cc23183c1fef74ff001a45b6704ec2c4f2ee31edc52476c723cb6241076103fbb49bff0022925dcbe8bf3296560a407c81fc4b8acab8b275bcde883ca6530c9267efcabcfddfcab5d249768099900e50e3ee7b362a19e28e642b730145382319ca4abd0a37e00d38bffe459835ff0000a93cee87257fd8ce3de9cb391c172339071d5aa0b0bb59e3cdd2b2b2b1824c9e1da3efff0003cd5ffb35b83f2ab3743b8ff0ae3a50d77f43552f22947792a0fbec47f0af6ab16892b9f9f2b9ee09a99dad87de5c7a63f869df6a503f741483d493cb5207e4890da3ab1126e3ce54ff00b3eb515bdb053fbde0e76640a06a52b13b06d2000db47e55527ba9549cb166fbfd3da8b1293eb635ad6e7c9e244ca13f2b28fbacc7ad68dc4440cc6438eb95fe1ff7ab954ba91c64bb11c95f4a92d3559a3605a576008f958f0d1f715dd87c4b5a348e4c4e153d62f5ebe6698b853f7b8a6ba2f6c62a3bff00185911b20b292394e5e39b8f97cb20e770e7bff3aa30eab205da6ce299b3ba194920aaf7dcddfdabbd62e3d579dce0584974f4b16dd055678fd2996faa823f7f698e4a1209fc2ac42f14832922ae31946232bbba56d4f1317f0b665530d35f145762a32e2a222afb4487ee49193e808a8004cf383fdd39e2aead68af8e5e485468c9fc31f3655229a580eb9fc054f2c320c60019fbb815992dcdca67f724b0e71b7ef5724f16bfe5d27d91d94f06ff00e5eb5e763522beb54237412bf23cc2dd76ff00bb532789197fd4d8da9feeef5c9dd9ac59fce0332f9d239fba40c976ff006b9aafa2d9dc73e787d9d5771e77363f847d3bd79ce6f7737e47a0a9adb90dad4fc4b248a3cf58a3e42ab4607cdb8630dff02aade6bf1b5863df155fc47104881dd81b93e5c7de6f3054d6f6ecf9fba3a321c1fddafa7fdf428551eea72ec3f651db923dc91e5c1c67dd47f797fd8a5131ef53c96d2b105e5ce3ee803efab0c1aaf736e531b4e54fdd27aafb57a583ae9e936afd3ccf331987b6b05a75f21c1c77a72903a554de68f348af411e717fcc27a9e290463d6a9898d48b39f5a7615fb16960152a5aa9ee2a95bdfabe7cb39c131bff00bd5656e08a7625bf31ef678f7150ac19e82a496fe3419b891517eeee6e9bab98d47c6c08c69ca54f7948a4d2ea3522eea5e23b5b71fb831cef9f25a353c46d8cfcedf9572177aa5cdc3667918646c31a938dbe9b6a028dfc5cf727fbcd4c0e01f981ec73593636c4db81d29db4ff000d3cab7e1ed4d2a681145dc8efc545b893c8e3eee3353796c7a63f1a6ba2f66aa28559197fd5b123b81fc352acfbbf888350ab63a124fddcff007a91989e8b421589d4e3a927f1a94dc338e570060ffbd54d4b7739a99430f55f6fef552116d26c8f94fe94d3260e460faf1515ba1f5e3e94f65f4c9fa0a60417791ca631dc0fe1a229060751fca9b730923a67bffbd4fb58d9d311005bfbbdfdfe6a0113173c61b8f714a1c01f7fde9a63c718ff0067afdd6a6ec6e89d3a918a0091594f2ad8f6a52707e6c7bd323561d40f7a6153fc23140124617f879cfbd4c180184538cefe6a1b74200edd6915bfbc7fdde690ee6dd94067c7d9762c831e5c1819b9e4e46e3c13d31eb5a1a942b6afb5e2f9bae1870cb9c7ddff000ae691b03e538390aa2a79f5099c837133c84010a163cac6bdbe94581bec754b62ba8c40c215e74fdc4e08e658fb1e7bede2b9bb9d00467f7ac48ea71d57fdeed57bc37aab412663e9f7648fbcb1f709ee9d456b788f4a907cf6fbe546fde6f04623ddcfcdfeff00ad4bf21a30ad2de307f75c8e13767fcfad51bdc20f90bf52bf37f9fe3cd3dee990e7e4f70bfc5ef4c9eefcf077a9e02edc7f0b64ff008d09036471cc0f4000e391524b70a07c80e7f86a2b740bc96ce7e6e3f869c515beef41ed56024127a8cfb934aaf97f9b803e5e94ef900e4e0fd2916751f7501ffd9a9012fda5b002b638d840ebd6981893f36e3ef46e6eca07fecb4000756e280268dc81f20e3b8eeb5032263b7b9aaeaec3bb15fbb8a93cc4038049fbbcff000ad3122159231d198fff0013532ba9fb9cff0076aac8501f7f4a9a07c74e475e952c6580a47de02916623d17fbbc7dea489c91c30fa1a66e627819f5a2c05fb1bcb5cffa6a30ea5195721bfdee6a5bb9ecb1fb9906eea4e3856c5653f1d38a6ac8abd5b3ee2840688b9561fea63e814be3ef6da56907f046aa3d85518ee54f419fc6acc732ff001671ef4ee2b1a3084da0bb2775552396ff0080d5d845b803e519c74038dd58cfa8260055200f4fef5356fa51d1f8f561cad4345a7e46a1280fced91ebf8d239889ea48fbaa7159c9a8ca3ef804739c0e7deb5a51f2aecdbb4e1d1c1e1a931a295dc678f224871c7ca4f2dc5323bc45041233c0503f85a9f7b19db95233c6d1fde5cd658e3a82791b463ef55a44366b1d48bf0ef1a0c05c9c9dcca2aa978d7992e89cfcaaaa3f87f2aa7385703cb424e0abe3fbd9ab90da3601278fbbb4f45a561dc864b856e1b7a9eb1ae785a6ade4a063cf007fb5d2adad8ae7330247f0e0fddf6acfbb8149e383c9c67eed3561161179004c849e4e2a7321070c411cae54550841e37061c7ca6b4e1b662a321b07e7ce3f0150ca88884af207a9c1eab542ce095df2c79fe13ddaaf9b69c744ff006492462b4ad6d6284667c16c6630b9fbdeafc526fb156ee67dcda1520bcb9233b07fbc3ab55750dfc1939ff3f255c9e60ed97cb1cfcbbbf9276a6c692310003fddc52b770bf6206b763db1fddc9a7dbd9c807ce8e402137e385f6dd562e018ce37738e48c55786f24e42c9c1c3f39ff59cf3fca8b0ee599ad5d70658d027dd523a7cbfd6a18915f98e2ff80a8e2ad202c06f91d5beebf3f7b9ff00e26ae2496e7fd779417eeac63aff00df553f22ae654966a49dab1ab0e5f27eeedfef53d6c1f8df212bf757afddfc715a4f25b27fabb746271c9fe1aacf393c463ae5ced27e6db8a2cc2e88c5a0230db71c15247dda2e74f098ccf9fe1f2547dd6ff6bda84b6b87388c9500799bc8388dbb6eab0b1007e4fde67b91ceeff633425e617f221481917fd58de7e5cb0e638fd13fdffe5501b3ddf79ce3eef1575e5507e67de7ee63070bf95538cb63019940fb840fbcd54909962dec140c4601e85fd76b56614647c29c03cf5f6cd5b592e2320c6327ee61b3f32d595b05719752bfc1c75dcb52fcc6bc8cc781467208c1da7fd9ab16f3aa6420f9c8f94f7db45cdaca33e5386ee78f7e94476771275b40bc0f9980017fe054d8be45a8990c6779db28cae58f3f29c829ebf2d5ed1b51465ff48ba45e998d8f2ad586ba5cc47cec8a7eeaa93cad3574d74fbf2c64757453cd673a69eecd69d46b65e47a05b6a6aa842bc45792eca3ef73c7cd4b344644ce43918923e3fe5a76d8deb5c55ab3c7f766902ff1c60f0d5dad8ea82441f3c48a06dc31196db5e755a2d7c2cf468d64fa25dcc6d76c5ee06e8e44551ba47763c6e61c8dbd8a30ae31e277fe20bd79fef6eed5db6977303bcaaec8e0925707878db3efef5cf6b7a5496927ee76b44d97879e62f2f190df9d7661ddb497ac4e4c4c7ac7fc3231a08da36c8ce3a903aeda9a0653d4e01fb81bab7fbd4d37996c31ebca8ff78f4a94ba83feac5763f3389791d3f876f0890ac71a2291e72a93cb34647f17fba4d74a8c40f9067249db8fbdc62bcdadef9d5c79726dc731927eeb7fb15dee9d74d2c41a7112b1ceedbd3e5c8cd78b8da56775e8cf5f05513d1faa2f7d919dbe62a1781b7fbab9c93ff7d5496b3b2162bb00ced538e76a81fc3490b4593fbd03aa67b36d3c7fe3a6ab3b465bf713238c8c903856c57158ebf52e79b186ff005649e4bb7ad456517960feece7719b24ff00789384f6f6a716404f209c11b80e1a84b8471972c08ec07def4a06d79314cc01fdde47f741fe256aababc334b13081a447e258194f2b2a9c8f9b3524734637172c4e4141c61571ff00d6abe2489b0523723d4f4a1797a8a5e717d99e7ba76bf776e593548d14e449bdfac6f8182f8e087c0e6babb73195dcd2c4148f9981e3a726b07c57e1f91c96b6864661fbb9157af97c907fe01935ccd9ea37507faa98aa64192360086f5ebfecd77ca9292bd3693fb48e4551a769ddade2cf478eed40fddc51b6072704ee6fe542ea772f8f963503e45daa3ffaf59777753c6c06c592261fe8d329e7cdf4f4f9d0f1f8d5c8c4bde1c720738c2af39dcd5c0d3f2ee77a4bfc895ae242f82cc46089096e3e5c6367e7556e15d1b95ca91b5304e59b9cff004abb243860cf1aaf0179071b5a9973bd800a1323f881e5769a49ff00c1048a76724bb0030ae79ee73f313516a0d280361dbf32a1f97efaf7d9fe356ade370dc48e3a483e5e7a9ff0a2ea1cab6e370fb49db1e3fe5a2f74e3fbbcd34c6fd4aca8ae72ceec4931a8c0f9557008ddfef0ab876478deea413b5c7f77d3f0a4d32dd3196b7207facc1271b9ba9dbd3357278d197f7585e464e3dcd27ff0013f532a65b78799246d8c447cf48a463c0e3b3b77a98c28483e6051d4851f955b511ca9b6767208c1c28fbdd8f3dd0814b72f29036028c305e3033bfb67fe07834fe7ea4a97919d33a6e1ce7ae463eed4d6e46061883d718fbbdc541bdb780f213d721bfbcb903a7d456844f263e627f007f0a1a2ee2c72b37fac5724f0bb871f37f72a07457ce50ffcf3258ff155859483c6e07b9a8a22642416cf478c139a90f914e39958858ca920edc29fe2ff0026afc56bb470caa39fba3f898ff15413e923766331027048e7ef7aedce2afc7015fe3241c1500714df909b337c496f12c1960cec0abc69dd5bcc18f96a7fb3f4f28cafea140fddd5db8b75994acd1e54fa7e959c2e1c122318c1f26404ff00abe3ab7fc04834efd898f9b2631aaffac47cff000927f869f1c3130c3a4654e7f88e76d336bb005a3271c923f51f4a64567287061662841c838c2d117fcadf745497f37a32adce9ad1fdd60ebfc247f0fb3541e51f4ad2bdbffb285f3d11833084063fde3cf41565ece2c662f997ee9c7f0d7b984c4df4a9bf4f33c3c5e1edad3db77e462797ea2830b0fe1623eefcbd6b6d34c0df707e755b51961b35cddb2a67290920e1a4c67b038af4133cff00439ed212505f7b1650c52305865a4c0386ff00717924d26a1e28b78b1f652929ea483c2fb573773accc646fb338239cca09fdeb3478279fc6a846bcfcdc77a9e7ec2b1a1a86b335c81f6873804c8aa3a7cc781ff00005acdb77524f20d05d73d71d7fef9aaf148aac7664ff746385f7ac9cbb9497634381d48aa333007e425bf1e2a66938e7eb55dd71f73247722a24c122e452ffb2477c1a339e8a6a38f6a1fe32319c0fe2a85ae9ff843534fb8add8859b1f7791ed52c6ebfc5b73fc39aae47a10077e694003ef9adac17259197bed3fdd23f86a3c8f6c7d68551d973ef4a131db8a760055fee918a9566638c9fcea109fecd2a923b107e94d089db703f29c8ee3fbb52465bdbf13512329ea36f4dbcff0d3dd973f20191de801f3c0549c3a1fee73f768b3b8084e23c71d547f17fbb48a49fbe49a6a20e4f9bb48c148f1c3fafcdda98cb7a8855394217386207f7b1cd508ee581f90f34798cfcc8c4f7a5b401b3f82af14087f03a647be691777a803eef5a99d140e39a600b8e99f5a0072c6cdf7580f5a6155fe1627df14e864c1c841dd48fef2d0f005fb8411d7ad21a26f2b00157461ea3f878e8d4d080fbff76b4f4e863914831a918f9c023ef7ad509eda58ff00e58328fe1e7ff66a131b0b784b93b19571cf27f8abb4f0b6aca50c7a8c91e07cb06e3c32b76fa570b112b9e0e4fa8ab30de4b1b02a41c60aa9e9ee1bd9e9891b5e27f0f1b7e624263276e7fe7937a37f435ccdbc8cb9da719fddff00bd5ea5657515da05ba4570c0184b72255c72adef0fea39ed5ca6bde096894b69a24741fbc92239cc4bea9ea3f5fad203063971d801dc52473aff001b375dbe58e9b7d6976023e5e4fa91f76abb155fbc0f7e47f0d301e263b8e36c83eec67151acd273b62c7f0e29919652376ec13dfaaad5c191e9f9521a2187ccc7efb000ed9a7798bfddc8fbaa6a41b41f9fa77a86db70e8a40c92a3fd9a00980f6ff66a168c8fe2c7b5583ec99ee450541fe01f5a684ca299270c33f5fe1ab68428e00cd4480b751b7fba453d5187de463f4a40817691f2b1c7a8fe16a923b62a331b96f51de93cb61cecda3eea86fe2a48cc847cc8abcfcbcd2b8c8e443fc4cdf4269d0c4a7ee727ab0039db56da12b8dd186cf2effdd5a69555ff0056c14faf7a57021b7201fbaabdd49e94e9e3907df463ef4d0e4638523f84e2a579cb919e380bfef3629810ed27a0029ca54759140a83ca19f99c91e940910745c9a5602c79e3b74fe138a92d354206d742533946cf2aaddaaa3b3646c434e500ff00063bae68036d608b8cc848e55893c2d54b98da2eb82bd4e00fbbf85416fa9b28c3c2ac3f86a582f5836658c14e54a607dd61d29a60565756e8e07ba8ab311638dacfb7d47eb4a9736e8488ed815243a48c06638fd2ba3d18effbb875e7aff771437e434bccc28dcb705252339e01cd54bc876b7cd032fb1073f4aeb6646507ecedb7049420fbf4dd5982cde77067b80809f9cb0e55b181537ee905bb36528e2207cf0e3a0c37ff001353c32a9c6d2781939e8edd715a30476e9bbcd769864c6a5870db4e33b7fdba8de5b719f2a08c8fbb923eead2f915f32aa48ae46fcf5caffbabcff4a4966671955c0f41534310ff00967853ca703eeeeedff7cd4a24017048028f417a99eb6d236362923927fd9e6a684cf11f90c5fdf20f46ff007a9e6520e5071e9fecd5547909fde1041cf00d310e9c9624b84391e9f76a38563c757670067d3d4ec5fcaa6699548df0ee1f74f4a9c22e58c302af42c58fdd5c745a18d0f8131cede31f78556960958911ab7236c3823e66fc4d588d243f75c95eb85e94af2440e218119f032ec4931ffc07a7f3a845b44568ac7896dde423efed3c47dbf1ab388931e4bc608054b1e4aeeebd2ab3cd201879a424fde51d36fe1c7af153db80832d1e40c2e3033430249240bcb3ee03e72707e5dbf8d4b98d47eed0163cee6fe15ff17aaaf22c80848828c1524827fefaa8e5797fe59741f229c6074a2c17177039e807b0a74046d3f3faf19aaab68c3f898f424e0fcdc5385ab01f3b3819233814ec22572a48f980ebdfef50f7ce88db18107e55e3e9f72a38a2563feac93f779a6952090d000060b8c7dddc293434fb0457408388c1cf277745ed56e395997e70a070bbb231b7bf7ac7b496304ef8c1e4e739f97935a572b12b2f956f1303f2ab11f75b02868131679557ef3a3f4da548fbb8151416fd84a0673c9fe15a9dc293fbd29db39ebf2f6ffbe69b952731c9b4754523ef52f42ac49b2d80fdf4e9bbeeaa2b72cd9c7ddab6f15ba00043267197249fcfa7f1d64421da425a2048c4dbb2711eee83d3b549737ac846d507a6dc74f422a6c32be6589f30823fbb823eeffb553cb7171211f6805ffba323f8aabdd48a71b5707857f4f98fff005eaccd214236a83c85e3f896aade48577dd99d736b1023cc8cab0e739e36ff00bd4aea1f1e51e7ae01fbded576e3749f7d548f4cd564b5db8c2e7be722a9321a2b3fd9c30f311f77719fbdcd76fa25d5bc91aac6db5865248c9e57a9ca7b57351dda8204d0467afcd818dbfed54d1de2c6e1a0c21183f374ae6c453bafc51d387a967a7a33af8a15dd8591863e53c73f37ff00aaae43042870776787e7eb54a1f12c0704ca801e133fc5ce2a2bbd4a2620f9ca003f3007efc7dc71fecd790e9bfe57d8f5f9d77468cc222485dc87217ad2471ab1f907fb39fef565c3acc321ff004664c021f767f871fc5f955c8f5051f7645ff66a5c1f5895192fb325e43e62880ef00fb7f7769fff005d58b57509f7f83ce3fbb58f737b1b1f9e750a7ae3afeb53c7a9dbb0c46d803e52b91fc34723fe563e65d65e66a4b292785dd8c6735c2f8ab45685b744494727803eecbfe0fd6bb286fa1e36329feef3f7a92e5ed27522e52364fe246e9ff01aba3269ecfb4919d5826acbe4ce47c3af1ca8d1dd4a01244d060f3bbfd8f74619ae8b4d950922f1c1950f9370a3a3b7507e8ebcfe75c76aba7c36f27fa3b48071242c4f31affbdeb5d5e9f3adca878f6abe0c372b8189597fbcc79f715ae260b78decf5f47ff04cb0d27b4ba68bcd17e54047df39fbe8187dcf6fd6a18655214bae7203e31fc5c5320b9694661c00731c6bdfcce9f3affb0d578a2ed196507ba83c47ed5c6d1da9f98a646047968a7a2927a2ad433f988d947250828f18e8d231183fa115314738d9b40e3fe0344ead8fba7e80548ade83a04007009cfcc0f75ddda910e0956276fdfcf75dd44729206ce08ca3e47f17ff00b26916de590fcbb4fae4fdea03d5a2b8255b08e07547f5f5ff00d079a99d813fbb9155bd40e65db9206eff0078d43756ee84111f2724b11fead94601ff00be78a9608c9c6e083ff8aa0a76ee8cb780677aef278324607de5623f87fd8c56a08d73f3333e46fe08f957d69a77c5f782923af1c7cddffe0751aceb11e70a9d03b1e22ddd07b0ed45fbdfb2135dac4d05aaee3e76147dd5c9a7ac68a7f7783d8b0e95148ec0f0dc606ce3eed31646fe2c9eff00ef521dbccbf13443ef28239c8351073fc2e7a92a07f0a565bdc485be60a0fd7eead59b76918fcab9effeed30e4eecd417841c430e00e4b7fbd5823e5ba6324a14326e1191f79a1c0cffdf26b5e29d14f3770e4604c8a3ee6ee9bb3597ad2c61e331499c936bb875fde0ffe280ab8ff00c03049745e772c4777b9b6bb93c79c9cff000e71541ef9a1915597208691c82331f97fecf5c53a3589640c6f222a10c0e849cee8df07e5ff007ab8fd535c22e030bbba8d4a1da140f91a41803bf1bbbf5f41554e9df6f52e7512edd8d7f156a88446ad375652593aa7233b97b7d45745a55dec4db14e24200917039dadd3f9579deb77eacf16c99a4da14cca5703a03f53d3a9a96e3c4b39958d9bb2020431b1ebe573edfed1e98aea541d972dfb9c73c42bfbc974491dbeabe3d8e0e2055925e24de070b1b1191f5db9ae27c43e25babb3fe9129f2f71920b7ed02ffb1ff01acf575c7279fba6a9de31c8da5bd7ad7a94ee959cdbe973c9ab24dde314bc86c72212705bfbabd7e6a9a218396240fbab54e12327951ec7a55d4c6d1d0e329d7d853312260ca7254e0f726a9aca09e326aca4b927f784ff000e0e3ff1ea80aa86f4ef82690d174f4f91f9fba56abba37fecb906a559548f97701f74ff00b54c74ddf74923eef239a432550ddd940c0cfad67c97233f36efcead46dc63271ef5519907dd294099349950381cfad35de403923e9deac5cdb648defc7278a6c6b171b9812725326bac9410b1c7cdb7d4e69cd211f7538aad1a48a5833e7dc0a1e4603ef64e7a11f796804582c47f067d69ad201d463be2a42081f360753ff7c8aaab71bb3b94ff00b38a604a8ea7d87bd3b7313d093f7f00f155bcee3900fd6ac26d18c8da7a75a0449131ec38a47c9e80d3c83fc27f21407c638e3853480823dd839523fbb4b68241d4601c9ff80d5a90b391f2c68785273f7bb6693cb553f2313fc2a453015d1874c9c6379a8c647506a48ced1cf3de91987f171400c50d9f9455db3b0797872108e573fc6bdc5258ae7264055477c7de6a9adff7c7308955802b851cb2e3af1f8e6a59489bfb422b7c8817e63f249c7e9baa84ba94ac7e5c807ef82786a8658993ef871fddcf5db506e23ef8c7b50909b2d4934ae7e79013f77e63522311d5b3512807a67de9551bb74fbb9aa423a4f0cea655f64b21087e78cffcf09579053d3fc6bb4bfd6238a33bdf64b828a147de931c14cf6fff0055717e19d26f0c8ad6f0b6ce527661c7978e7e6eff00e35da4b02303f6940460a1c7568dba8febf5a9655bb9e792daa393e4158c9e4920e1aa9c9a4ca3189e33ed8fbd5d4def85ae1187f664ef2a303224e546235c13895ba03c56126e5ff593a16fe107ad4dc691993d8ce399d97039e3ff0064a8e29813c12075c55fbb657e13763bfa3566ae9f283d38eab549f713f22c104fb7bd3e38d89fbc49fbab9a8e38a407e7c7fb209a963033f3ba8f7ed4300727f85b9ef5192d81f789f4cd5870a0679273b54af465f47e6a3caf7cd34263429006091eb4e86660406571fc2a71484838c291dc9a98a3c6465411fc38a18c9cab63e739eea71fc357610bb70cb11507ce2d819e9d377a7b5589f4b54896492ee128d98fca5073132e73bbf2ac6b8d41718b7c28eae71cb54587716e2ed9cf20e3eea9aaa73fdd27eb53c37200c3a06071b09ff966d51970c7ab0fe15c74db4ec031812000303f879a568401cb83fddc539a3c74c9151f6e41fefd508692bfc2a7fbbcd46c31d463f87a54fe4fa37e19a81f783cf3dffdea009948e3009fe1a963b676e4838fbab9aad19c724647dd5ff7aa59b5094afeeced03af1f7a93014c2c3ee803dc9a72a83f7e453fdd02b3a496503e73907eef4cd59585c01e612b904a03fdea5602c617db1eb4f86ede23fbb7643eaa7ef5556493036ed27f8f27eed3d4af1bd867d8516035a1f10480e2ea4da87ab20e55bafcdea2ae304900f26766c8db85ff00e2457333b67a13dcd2c52327fab9597dd4d3b0d1d39768d461154e448770e597a8a9166925ff0057031500a950000cb8ac4b7d564e92969323cbdcdd557fdeadbd1a366c88d54e73cb74a9b771dfb13dbbcea0ec58e303e4c6796f5dcb54ae22607e5191fc23b56bdcd93a01b0e07523233bbfdea8ae2d0205cb027ba91f77927fad25e4876eeccb3063ef05fc692de203a640f61f76b42e658df1bf1ff01feeff00b55523654e11b00e0927f8a9a10e823407f7a148e090c7ef54d3bca186601b413b171c7a034cb4d410903f8892bd7eeedab33cac5be7f3493f2c2cb8c2b527e634bb15adcdc2ff00ac8a32c7a9623e6ff808fee55636aa1bef12dc23e08f9557fd9156afec76ae5e4653905d8f5f9b8f96abc13444958db713ca601ceece315255879c0c03bc7ae081bbdf8150b5fa0388e38ce3efb1ce7f5abb35a48cc01462f808e547b71ffeba62e951264ecc93f29cf5f33fc29dc2dd87dbcf1151bddc672af81f914a6c7381c0181c32b6396ab71e9448cc922060094518fbd8e2b1678590fcbc77607f869219696e549c872a32550679dbc8cffdf3515ccca07cacc472efc7de6fc69ab6c81012fcf75fef7bd36368b077ab13908873c6d61ceea2c171ab7c108f20393cf3c65b8e8956c5d280c55433363f76c7eeae2a9bac3b018d79fba723eef6f5a442a9d4293d793f75686848ad0edf31b78db9e5476565ee9f955d4667202a8619e847f0d409ba47fdd94cfa81c2d4a6e021c33027eefca68045aba494e76a65b1bd1557fbbf87f76a28d2e1b01636cf7047dda8d6e4a60891c9c6542f3bd5bb335496d7724cdf212bddf8e157f015362ee5873384c48c1413bf04fde5f5aa1776ae31b828ea48eff5a9ae2f1d81c267f8307fe59c6bc7ddfc6a18a66da7cff9f808a5bac7e94d213631ecdb6fca3a60b907f87b548edbf01f0b8f9549ebbaa379a503e4f994fc9c7f0b52324e48dd18feea803ef536849f62596d4823732e3ae706991b007f764775c1a9a58a6c02fb1783bf77f173ef55d227ce5e455180ea71f7f9e425090db1ae9dbe60df7578a6cf13a93bbd9720f1bab416352a099f273b0e14e63ebcfb8e2ac5c92c482f1caa70a4a8c0655ff67b1a0464c0cdc70c7185c0feee7ffaf56257504f96ac077c93f3354e2d9636f901c7f092c30adeb50cb260fca549ee41fbcd536293f31ba64f2233625dbc72187bd5d86f677cf9929e382540f99bd6ab2eddc4c89b4101485fe16a9616500f97b8b1ea5870ab5328ff007515193fe6655bb0cdf72473d76a53619e51d2e197193c9fbedb318dbf85599e2603e47dbd7a9186aaaa8a7fd61da782a41186a7cbe4857f3648f793a11ba4900e0ad4bf6e9723336472ae73fdea8a5b58ff00865c745f989fe8291594101e23d49239cbf1c7d3ae6a5c17f2a2d547fccc927b876fbf2965fba6323ff65a769779e430f29caa1c2c8add36e79f94d2c6cc8731a4633f2658f0bff01aaaee091b5155b92581e1bfe038a4e1d2c1cef7bb3b7b1bab70e3ece213192d23ba9ff96fc60ffc0ff9d4f77aa5ba0390b1b719538cff00c0ab828ee6553fba6653d4e3f9d5d9aca595033976073bd89388e45ea1ab8a5855d64764713fddf437a0f14a648dc49ff584eeff00eb539bc48ae4ec70df435c71b5dbf74927250aff00b356adecc0ff0053248bfc2e08e69bc347a3638e25ff00223b1b7bf565cab2282738feeb607f85591aa151fb991d94fceaebd36b63eed70ba9ea6f691e21ddf366232b1fbab83f73f4a8f4dd791238d7e693a5b2b63eeb633f27fb9d2b07867f659aac4c7edc7cd9e812dde71ba2423ee166272cb4a2fa351fe91105233963d3cb5ef5cb4ba9ce0a83819c9556fe2db8c9fd6a96b3ac5dc207ef245ea9b94fde6c71d692c34bab437888744cd25f14335d37ef3f70176ec006119724b74cfb75add89a2b851e646862600e1870cadfecd798bf88a425b7bf057c98d5470b2a8201651c7735b9e15d6e53b97690a146dc7f0ed2467eaf9a73c3bfb2286263dfcbd0e9f58bd9ad541f2fccce23b58f9c6eff000ab1010e01014138dca083b1b192377e55cf788b530f0b2dbcb2875c2dc0038ec406efe9cfaf1597a3f8a7c8186918aaa6c8f39c34b82728bfedb753597b076d1791b3ae96f247771daee38dc031c640159d7dabda5ab309ddc0004fb97197dcf823fad73169e330252f3464c85442c14e075383fad55f116b6b71b76bb13809390302593827e5ff007b3550c3bfb517e644f12beccfcd234c6a4905c3795702589b6df4f386002aaf666f4dbc63ad51d53c46ca00b5995c6f37a5c7fbf90173dab9d32b7aa91809f375f97a52b95fe204f7201e6bb614175f438278a7f64bf1eb738624ca85c829d07caace09d8bfef566dddc333e57cc07fbc052820918529fed13cb51730038f2ce589dab81f76b78c1744bb1c92a92fb527dc70677fbeeced8daccc7f2155d25c37ef1987b67ef53e4531e3e70c7ae40fbd4c72cdcb151d3b72dfe156665856e3e5271d7ad4139cf439ff007aa4451fc5c0ea7fdda6dcc8091b547f77af0abfed2d02208a4cfdc7523be3ff00d5561255db81b08049da3a2d538a26c9f9891d71c7cdff0002ab30950bf3100e49ce3d863fad5888a175cf2eca7ae08e28656dd976201fba723eeffb0a3a5492a3000ef2b9ce588f7aace55587ef14af72a398d6802fc52c407c91823b96a43703fe59afe438a76602bfbbde4ff0f5cedfe95118f1fc2e7f0a81a1d3ca831bb23382b9fe2aad2273f2818ebc0a99c17c0c0380117fdaeb561ec4bfdd44e3f77ff7cd315ca176cf9f999881edf76a132018d8bb470ea1850f393d59883c9cff00b3d292760d8f2f246075aeb20baac48cb1018e7b71b6a06901231cff000906a48e4e007cfaa83fc2b8a4f94f5420f057f3a48a2c4aac073b4e7ae09f9698b02ae3ca57e7d4fdda95594e33c63aff00b4d42cc07036e07149099456300fcc7683f2a93fdeff006aadfd8f8e59081cee53f79aa12c33c60e33dfff0042abd6f18230ecaad9fbc3a6dc50c686c3b80f98eefee9146d8cfde27f0fef52c2aac39ce012871f5a76c55ed9a6030a13f771fddeb565ad5e1389c2e7aab29e197b146f4f7ad6f0ff008716f03831c8180df6d2e7e55933d256c1fbfed542fb48bbb638b9b7914fb8e3fe01eb45c3fe1ccf2093f28fad585b788ffad3b7d706963b19872e842f5538fbd509623b11f5a3d0491667495388631b3f848356f4282712068ee92db00e64707e7e0e46defbfa54167216e1c1ff00639fe1ada582dc202ad21939f3148e235edb3d6a6e3b1897b12e7927fb8b83518b246fe00c07aff154d731073cb93f4e94aa08fb98005080ad30f2f1b7a11bd463eeeea891dbd78efc7157f7ac83e74cb8195e3ef2d43e533e30a114e15467f8a9a158ec7c3fe328c009aa4ceb8f921b86cfccbe92b76fad7472281db8fb873d2bc98c6e3efa9c7ddaf4ad2f515b884185b2c0086e633ff2ce55183ff7de286811324af070ebe64449492303eec6ddd31f5acfd47c0f0b8074711ab7531cac70ebdbca6ed5a4e187dd048e15369e77536caf0c0c44be694fbe807f0ffbb5257a1c04f646262255cc80947c74dcbc1d8d559925182cca012551735d06a76b6eacc6d629554e76076c9fad63edf5507fbb91f768028b4848f9c027d475db51e1bb8c8f7ab9220c7c8a17e95104e3a13ebfecd3b08863881ce0ff00b2b4e923618cab81fde1fdda61dc3a74a7a3330c31ddfdde7955aa4029dbc73f519e6ae413a48007ca9fba87fbd596a847f78fd6a78dd9482074e48fef500684a25dbb5e490464efda09c6ef5db544593a9f970d8fbb9fe2ae8022be3baf5c1feed579ec197ee1caff0009eeb5371d8c536f2019c71e9447b7f89b07f8462b6218dba607e3542eed554fdd391d4d170640acbdf8f4cd248bb4657a7dda43b00e5b9feeff0079689662e301b23f8463eed50892384e32a41ee477a8255c1e071d4e3fbd53db8031b65c1feeb746a7f0bf79011480a7b246fb8491ed4862c7de23dd4d5f1228e635551fc3fe148e55cff747527fbb45c0aa8abd9138fbbc7ddab0acc7a907f0a80a907e56c8f5a7ae3d7029301b7716ce6319e9bf27eed32dedae1b8d983c3107f856ae2c48ca7e641c95507ab568699751042268b27a920f2fb78f4a2e3b18d3c6002147aa647d6988b8efc55ad41719d8a547a134c82d1d80e9ebf31a62237007dddc4f735d0e93a9330e72a47523f8bd0f15893db6d0777ca7aa815674b908dc0103207fc09b78a919d24f3336d01c1073c9faf5a5bf645209b952dc1c7756c5538e295ca8042e4fc873f756abdc2c45ced973c9f980fe1cd2b14872b20e64970326323fdaa433db0e007c77207deff7295248b1804b8e325aa1778f931c4a7a8c73f2d161dcb9617f0a28fb3d929e7623b75ddfed5493de4cee374bb40199369e377709540bccaa01f940e57fdeaa9f6a61d46ef63d3fe05458572fdcca7f85c907a8cfdea86d4c08d9c027f86363fc3dc7ad57452e724951fdd078a7bc08dfead1891f2f5fbbc9a2c3b975b5628c44476939cb11fc3e9b8d24219bef4ce47550a0fdeacc8662071b54fdce3fd9fafe3566de5272cfb88183c9fbcd9e053e526fe46b14751f33b1fef1c711ff00bdef55ae638dff008d8707b71d3e959e6f98e76165eee7f9d35ef2e180f39948e429c0cd2e52b98569a765c6fc01843b472cadda92ca1463fbf62a064f23ef6dc71fcea06ddd1982f4ea7ff66ad2b6bc455c2aed382e930ce7763fbdfedd535e445ca91db4619816f973bd0914e8763fde048e5cfebeb485a4de76fcd9036e4f2cdd29c8acbf7d429feeff00776d161a202149f9176f7e7f856ac2c99650abc60a1c0fe2e47e5552271b8976206022fad4a31918624ffe8ba76122edbcc0637043fc2aa47df6eb4eb69562504a479c94418fbccc3fbb54e2da3ef2b1fe3ff81763fad08ea3ee807f8d770e7777a9b7914a4581745ba0dbd5723fbd489133fdcc9e369e3f1fbd5592e8ee231fed9c01f2eea70bf6276a16f57e7eed16ec85cddc6cb36c4ea4608d87fbdbaa6b7ba62433ee23ef385cfe3b2a1bbf9979c0e43a9ff74f4fd69d1c80f0ad91df8aab1373a4b45b79936b7cd9ca23b0e7e61c7cdfec573f3e9f731362ed0e06514e389557fb94c59d81fdd42770f977ae7e5ad84d404a36de162c30525cf3b6a522ee73c6e541caa003eef4a7fda94118031cbae47fecb434386218640caffc079a6346aa14903ba2ff00c0bffd5569105d37d91f21e470d81c37ad5663239f91580c82e40e29d0dc1cf43820ae3bd3a7bac018dd9fbbc91f7a95bb20b8f25ff81338e4863f7bfdcab293ab0e5467f84739aa092038dc73eb926a546d84797f5247d69345264f2ee1f791f1fc071fc3fef533ca90748a50bc296c568a4e5c8f2e40e3ee98f1fc5f8d3a4bdb84e1e34cf1ce795dc3f2a9f4457cd9945663cc68e47dd52452c71cb9e63908c6de9f75ab4e596793198e3c7dd4c7f7bf1a820bc907de6553f776aa8ffc7a8f921dfcd95658803d33c0e5ba2b77a89432b1f99547250e78db5a339671990229ebc015956971ba3cb6de141393f755463fa50909b2732ba1197241caae07f7ab62c6e9547fa40f310f3e56796e704c5e8539fad629b857fbc4b7dd4523a6e93a7f3a8ec3506790ab37ddf915dba2ed201fa77a528fa0465dceff004fd06c641ba094ca0e0c6c7198f6f512ae3ad61dddac864616c8cd8210851c2b3123e6fcaac5a6b105b3116df344d9548b772aca339dc7f9d72b73ae61b7db4b905977ab1196f2c1ceec7f3ac797c8d79bbb451f13deacd2011aee0a0a6ec9c3b375dde9b2abdbdf3958d582aa29ca439c0977752cdd7e7fe5c566cb231277b9507e7241e7e942dc73c2907f8739ceda2c64e5fe476face22b880481492a7cfd878569bba7e59ac6f134acf210e5f0bfbb42460edff76a95fea4d2c88595b2aaa8a18ff147df9ff6b9c51785a5c9620b1cbf1fc4cc724d037233150af4607d88ad1d2efe5b770d0c9cf1d3a32b750deb592646fe3207f74e2ac4126701793ed412d97aff0050958b9595d376548524065f4651d45451b1503903d77535a10c384073f773f5e690a150046aa3d431cd0171e40046dc0f622895d4e32c57e94d91c71bcaaf7e9cd1227af03d4d0171d0a8ef20e3a8fef2d32e7703c741e829a9d3e40a7f85493c7fc0a99386cf12a91f748cf34843549cfef1dc81cf5e7e6edbaa542c8460fe27f856a049147fac383eb9fbb4e8ee24ed2301d5393f35301d772e00dc54f3d73f7698ae187eee5553efd1a87c6d3f6851eabb7ad4513295fdd4611bd1cd004d0cae40c0047dd724ff00ecd4be6be0fdd27d08e556a28436df990e7ee923a7d69eb91f74e7b155ebff0002f5a60558a1009f39d57fbe01396a9126471f3371f75463eed2cf1c99f99063f84b8fbbfee53ad2427885232782a5b1f9edaa622d4903951c0207cdd3f86aac6a1987920a9ef93fc356fed922b1de5c9f61f7969f1a28e432a01f2619796ff8154dc4299d97a42aa0fcb86c63fef9cd2dccca307071f77007150c85370df2e07f0a814e95c2a9de33c71481109994f446c7f9f4abd15e24630001fc78c1fe2aa66e9c28f2f287fbc31ffa0d3d5d506264776ea5bd680339d718c8da3eb4c2848196e3f84d4cf03e738cafbe6a57833f770a38e9fdeaec2460765c60639db9cff0d3cc872072471ff6ce94daa9036b31fc3eeb50b0b03f30247526901220931d5881f2f2291edd7828720f519a544954908095fe2e7fbc2a58f71ea338c2e71f769328aaaa7e6fdde0633c7f7aac5b86eb191cf3b5bf8aa1bb2cac761c64722a6757c2ed5ce0f271c350069e8f692cc1fecd6cd260f9922a8ced563fdda7bd99ce1e2f2fd55860ad3fc23abc76f3032e151b3039cf11eec107dfe615e9136956578019a249bf852653cedff7875fa53b76137e471fa1eb92d913e5c48e871e646c396dbfdc6edd6ac6b1ad8bc61b6231a005523279dcdd4b541ab690f6af8625d0f30cc47de5f46f7acd57e7ae29013348738038feed4173a7af718eea6a66419c8e0ff09a533bb603738e30693451159dbc6a7ee8cfae2a9ea7ab4a322d976aff001b6396ff00eb56cdbaaf71fef0acebdd35ddb36e413dd4d207e4627da98e396fce9cb373d5a98f032be1d42ff0e3fbbde976ed249627f87247f155904ab2e3ee161ee0d4ab7640e4b13fc1fecd5456c756fc6a63192bf7b2339ce281a2437129fbce7f2ad4d1b5d92d8f0d98cfc972083f3aa9fe699358c51b036ab11eb579edc88d76393d4ba81fc4dffeaa571a47a85b98dd41824dc8798c8fd2b335bbfb7b7e6475de7eec2a797f7f6acdd0e79d22db233024efe3f863c7e87e95ce6a667925632ee61f7549071e5f6f9aa46fc865e6b572e72ce1475551fc351195f1f3cf19f61d5aabcb06eea5477ff76956261dc1f7a6048f77fdd563ebe94d5b953f7fe5effeed39e2c7dd9013d39a625c3f49e24ff648eb4201fb73fea9811f74f1424409c4670deffc55224d10ff0056303b9ed5217008c1033f74ff007a8b88aef0b2fdec0a42bb88da0127e52055e9e25900c86feee56a28ed4865f2d5cf21480395a43b1b30da140379e78271fc357446ac3e651e87fdaa65c15c8e4631cd2c728efd3f868432b3d9ed3d78fe06ff00e2ab3b51b77c663dc7d557f9d745c3760455696d40fb8463de8038f8519b90557af0c796ff0080d355579c727af06b72eec1867cb0149ea31f7bfe055942358d4f98b83f77de9dc562bc6769fbe8deacb9f97da9c246ee323d4d5a4b4523eefe67956a963464fbeaa3b60ff3a2e16228e35c1170bb7a6c957f864f4a8d4321c30cff000be2a530b939561cfae7e7f5fc6a67b37c64c80818e4f5a4042ab183fbd047b62a275c1f97a7f09c7de5ed5a41637505dd33f7083fc5b6abb9b7eec0ff00773fc3ed4ee162152c3a61477a6dbca1b386c9f414d90a83f22a9f6a8ac65da795c1eed8a2c24cb32e08c679eb900d3617200ce49f4153b3b0e483f80e2a1843ff005e9cd2289a46661f38e3ee100d47030858170c47ddc679f9ba52ba9fe218f5e69b3ab38e003c74cff0d01634ed750672a5b1181fbb43ddb71ffe2aa19720fce79c9c81f5a8b4db391f0531804efce72db79f92b4e5d1eedc6e8ede5d9f7cb0c7fe3f542288902f45e3a90c0e69f0c98fb8cc71972302afd9e948dc5c4cb1e41c96270dfef639ff00c7a88f48863e6e2e200c7e558f3c2aafd4f5a2fe4163327bf666f99777f772492bc71d6a0f31cffab031eb536a73db9e2d55c8192ee3186f4d8be954e0b49651fbb0c4f3b327eeedc647eb4d7a137ec59575c7cce17ea69f1b8fe1605b857205457ba3cf181e6ccb8393b554e57be1b1514124431e5bb7af2786a02e5af2148e6545e7241fe2ff0072894c4000b33e32490a3ef37fb54473a0fbe148f42386a0a876cb08940c292c3eff00bedef4582e44b246b80a9bbb124fdeab0f17401541eb8feeeda6c76ecedfe8eb91c22e463e6f4abf2584a186d57279e48e15a8608a2d12fb3360fde1f79b8aa8ed20fbccabf4abf716acaca1b2cc7f787d377f8d365b6da41718efe5f77dd9ff00d0314c08e291801b0b03c723ad4df37f1e09c74ff6568489472ead8eb8079fa505587fabe011f3f4fcb77e34868ab1ed03e603a9271fc4b9e2ad18140ca9ebc91fdddb51da5a3301b41c75931fdeefba95a27e3329c7f740ff00d9a8043e5250022dc339c796dff3ce35cfdcedf3b1eb50c3e6ff001a607dd26a4bb8946332ca718e4b555dacc7e47273db3f768064ab10dcd82a3a2f279a6ac043e430f718f6a7c2235dc18679f95f3fe7356230bedd33d299255db9fbe01072ab83ceeeb4a63653c2ed1fc25a9f14a0fdf50475535334aea30493fc2bfeef6aa01b771c630621b4100e003f37e9513b4c4feef29ef8fe1a9659a7da3e7638278cfdd5ff0061bb557201c6c958f57e4fdeff007a958772c8b67c9224dc4e3248fa0cd4b6368648d8f394237800fcb1e7af1fed0c5396690e32c833f2903f8969da4ddb412e262046dfb99f27878a4382377aff005a4c07c7a6c4586f5651fc440e1b752cf696f8c450499cff00adff00e2ab7754f0b8196b4ba6982fcb342c7989719fbc3afca45733633db4c8cd712c8a4128ec3a2f3c1ffbe71509f9b2add9219f62519f2d91c8ce79e576e33f2fe3526d8c2fcf222f57c1072cabd7f9573a754657cc64b2862ebb8fdeff007b1f4a9ef75959147960a9c143feeb01f73f5a5ce856379ef6d9109491bcc015f18187dce06133fec9a641acc6640238bcd077a9ddd5b6f4ff00c7735c84b7ad839e471f2f66da73f76a5b4ba2086f4c9503fbcd51cc3b9d25ceb51624dbb63604c3015271e64699f93f2fce99a8ea71470a9b607cc704b9c7112e30767fc08ff3ae559db69cb1ea4f5fef54ceee54067240f9101fe15639c52e619d4e9fab8b8f3438755203c3b48fddb2c78c6e23037b026b994b8957211b82046e07f77d29b0b329f9599473d0fdea821049e091eb52d813a5ebed218be49574393f2f964e3f9d58d23506b762caa921c18fe61c2eeef54d517bb01fdda48ce3a67b9c93480d9bcd59e5c1754523a8518ec4565c6401f31e3f845219491f3707d735096c03b1c9feef1430233b41fe063e94e8a45cfcdbb3e9d96abed5fe3f333d723f92d491b2fb1f5ebf2d080b872d82a4123e438fe15a9cf006d079ea7fbb54ad65193ce7bae6ac3bb0e54823d05005191197ae147b9a9adce3a4721fee8145c1079283031b49aaf15d163fc58ef8a4069bc84753f506a390b71e5a823af279a8e5988fb8aa3a6d0dfc5492b16e5914f4c67396a00b0e5782f260ff007540a85d99871f28feee796a61503ac7b49c2b9cd2bee18c283fdd1400b133aa9dfce7e5504fdda89dd471b909f500fcb4f692323ee2e7f876d5757663c657df8f9a8011632b906261fdc249c75a9ade36fe3dc7fba33c547086c7ef248d4ff0a93fc5e94f8cca3846551d5dc0e280262f1af2ab9ef907856f46a85a5b73feabcc3d7796fe1ff8153a6817237c80f1c851cb35549502365b6c60e0919e76d30459591c2f202a8e54b0196ddfd2a157000255b3ff003d41fe2a999d3b9651d7ccc8a81ee17807e65fef11c753cf14d010ce1998664257ef971d76fa55db27c13be11803e5507ef555965890811ac3bbaa951cff00c0aafda4ac883cf25d8e55432d12247438272b0491ff001e5b07ff001d1cd4adcfdec11ea4f2abfeed53b724b66e309fddff00f6455a2621c1c9eea726b302190444fcf23e3d0523baa8f9a3201f95491cb2ff00b14cb9565fbc8beb1e0f3ff7cd261987cd3aa0c74c72cd543228e5007eef69f50dfddab0de63721b77707fc9a8e1ba8870ca4faee1cb52acc7fe59e10740b9e94089e40dc67a7f0814c92461d55b1c1c0a9a2955f1b483c6714f7cf71fa5759243e730c602e3da9bc827e76c7522a556007563eb4d91b23e5661f4fef5000b20fe12d8352237e551dbab7756ff003dea747fef7bad161dcad72d93f7b8e554834b0be410feca953c8836fdd048c9e69b0c6af82cbe5fb50086db8da3820f7506bba8efbca8d65d1e73086c473db672164e84a67fda18ae0658986767fc07fdaa9f4cd625b5605d43a72af0b0cacaadd432d3b92cee27f13b4f1ecbfb6494707ce56c3798bddb8209ff00808ac4db8fa7f0d5d8469f799fec894c337dff00b0cac36cbebe4487f9554747538951a361f298d872ad4027d87039e94f53512e47a8a79f6a4ca45913a81f28e4f5a80c841f938a611c7cb519635362ae4b71671ca3e65f987391d56b2e6d3703e5e4fa569aca4636e41a73c7bb98c7fbeb408e79ac67073e50dbe991f2d6959db304fde2800f2aa7aafe953904fd3d2abdddfb2103cb3fec93d2980932edc6e249f41fc35b5e1fd36dae01375e6a8037abc67966c8fe135cc9ba91baf5f6eb5d8e836ea91e4bb9ea5d987e89ed4ac3b9a1e5a45d0b63eea03d6b2354d399d7306491ced03ef56b3cc3aba9c0cedff76b153c4f0f436ec83fd9fe15f5a6d08c20573f3b8c77c9a0db29ff0056e083ce33f76b6ef6c62946eb50aedf7be43feb1bfc6b1cbb20f9a02bfc24e3f4a9b0c7ac8b1818f2c9ee40e5aa07d8c38902b725171fa7b530ca09e41c7dd3fecd2039fbac71ea6958771ab1923e52463b7f7aa48e6571890820f287fbadda91a05c7cac49eb907ef542b0330f93e5fef531334ed6e00c067e7a8cff0016dad9d3d773121428002ffc09ab98818ef0047c646d7cfdd6ae9f77969f263279e290d034cacc79e296338fbd8ffe26aa43228fbe7f335657f4a2c05b8e52bd3f5ab0a011fba248eea7ac7fe22a94720e8dc9a911d87434c0965815ba723f84775ff73fc2b0751b3c7df538fef0adef33e8290a07e265523f84e3f4a00c384c447eeff15a86ee35c7cd9ff64e6a4bfd1de3f9acdd8aff00b2798ffc45501a8ab7170b8feeb8e8ad409976de7870048481fc2d9388daa75955722424e7e5383c7f3ac858a43fead43775c7f1535e5603e789838f948c1fbb55602dc9128cf94f9039504f354dce7bd384cbc14b7c9fe3ce70d55fcecfde52bed4d0872aff00b5c54f6edb4f3b48e4e4f5aae6551f747ad11c87f890fd68b091b02e8b2fde400f523ff8934b6f6abc6f72a33c83d7ad6542c4e796c7f073576ddf0393cfa9fe2a871ec68a5dc92748973863fdd51555541eacc29f395279c63be290a60fca0fd0d2481b36fc39ac8b70ca55a424878c633b64e87e5fcb8abf7fe21ba909021f288fbe071b5bfcf6ac2d0ecbce9914cef16495475cfcb228c81b7f0aebe4f04283994bcdfed64e3fe04b54bd083060be61ff001f174919ff0096719c12edcf3d2b3355dac72bce3e5763fc5ff01aedf4fb2b642375940a31b33b46597d39e6adea1e16d3a6ff0057fe8e4f3f2630ff00f6ccff004c517f21fccf2d9253fc1851dc638ae8b4db58954166524f5dbfc3df1fa564dfd8ac4e7f791baff0143c3ad5759dc2e12e190025d47e39abf420d197509412d35d46146116d973f376ee0565cb226e2638b603cac6a7855614b7133ca3f788a5bee96527eeaf41b6a7b5b00e7e7b844ce1572785ff001fa50040a338f95aacc71b37555f54cd5e6d0543612f1181ff0057b4fbff003a786b542c9046c5c01994b0f9b7751b69363488f4ddc398eed57d5429f97fe05daa2bab998b7eee69981f53f79bbd5b9fc3d242159ca488c03a143c7ef0120367a1e0d54b76557fdea9c0eb19fef76a77ec02c6afd672d9fbabeab4d8d9bae036395cd47aaea26151b101663b1037f0af735a31e1f1e4aa018dbc0c76a5719148255236a85273c2fe551dc4128c80b93c21ff00699b9feb4f177b59566dc08cc6b9fe2e723fa529560df331c03e627a3374cfe86801526310dbd720b9eb85dc47f0d29400fcb230c609cd5ab1742ec6e32df2b6d6c7dd6e80d41678da4ec079085f3c47d0814022b2428ce77ae700be4ffb22996c850e638f239551fef53757d47cacf96a0027692bfc6bdf752c7371cbc4a3875183976f4a6891b18553fe9099dc762907eb56a38d94708d8e5149358dadbbaed1190b821f00f3bb26ba0b7b826125a40576fda4a93cafce41d8bebba95c667452807f769c0c2e09e6af7d9f78c9201fe1c74ac3d2e6dd230249273b0f3fc3d365680d7d155f805d4845ddff002d598919fd29a92fd044e52308773e4f7a92d34e8894df73002d9c4648fbadf4ef5ccddea24ef11b36d3858ffeb9affb3f95334fbf2841772782b1fe471ff8f54ba9d82c74f7720b7dde610eea577804636c9d0a7fc06b9bbbd519db2030018cc80ff0af1c7e9557ed1236e2ec4838fbc7fba38a80eeee7fd9e7f8ab294cab1dd7847c4b74e640d0cf72ee0cc70c32aca00ced7ebf2e3f8ab9c5d49923955860b307c11fc3bc93f43d2b3e29593fd5b153df151cae40e0aff779a86c17fc11149e7038272b4b21233b79f6a89f7003736d1d7b53c38c7054ff000eefef548d8a23feff004f4352c2a147395ea5734d7240e3f952bcd8c6463f8491405815011f311cfccb8a7b76e33cf6a1d580fdd8071ce5a9eac0e3773c6781f79bd68191b301d08ff78755aaf11507ef291ea7aeeab0481df03dc72d4c94a06f972a3fbd8e2801c36a9f9db07aa83d1aa2c92dd723eef14f918b118618e39c7dea4652ac70d95fe0a05724794107903dce2a27200fbdfef64d31a4c0ebc75a64d2903e54cfb934d20b8d2c4ffab2800fbd91f7a911a30720b28fa70cd410001e7be09e4007ff0040c546235046de57bf3c7eb5482e5eb711e32b229eabcff77fdda573fed63b2d2c7e581c8423eee31c530e3fe59a1c7f086fe1a96080a820067cf7c13512daa2b1fde28ee83fbd4af3a82037e9fc34c7520820b11ef4d202cb4c41e5b9ea700535de5ff966c47a8c0a4c231f996427ae3231ff0002a91e723f8641fc2aaa4548c8b2e7ef8627eea90698b1ae7e66c8e72493ff00a0d4867703e58d80ee48e76fad57432b1fdd2023fbc6802e436e841f9940fbb83d19aa116a887f792201cf03f878a6c70ca57b1393b403cad44e88a3f7bb8f5ced624eea0095b6765329fe05c71ff7cd441d9f81e628fe15fc6a28e4894e6199fa6df2ff00bbff0002ab4a6e07fae7c8fe15e3340091dd0438576cfdc527f87fdca26951befc4a7af523e6f7f6a52039cb024ff0a91c7fc0aa20587dfb74039f9d4731fbd3448df9157e6f2f68ff00539cfccdfd690de6e037c6857d429056a496d8100cce4a8fba303f2fa5352f0363cbb74c72aaddba552191b48720c56a233f77cd03ef6ee31bab40dc451a8f35db7606f39fe2ff00618d654179333e154e79fdd83c2fbf35a93edec14ffb4c29484429342fc041237f01eeaddbe6cf3524314e3a8da3ae00ff001aa26ce70728e883ae41a9527957fe5b67fb9ead523b13cbe613968df1f73afddff7aa3896207e5f31dbfe799230b4c62e7990aaf7f7a452c8330b33e7e5e00f97ff00af4000b76524cd6e9ce76460f2cd8ebc1c9abd0a59a81be07cf53b80aad14ce17373183c8440dd556ab4b34593bd65cfd68113c5950081c7f162acc7a813f7d723eef359d6f76d1f19cf54e7fbb563ce56fbd815d06772cadd0efc7f7453c93df91d549aac021ed91ed4f31a8ff572b0c7dd04d31dcb21f1f7401c6ce47142be3be6a1f3a503e6c11c678a55756fbbc77c53b8ee5856fef8183491153f875a85727a13f5cd2927b1fa9a6806bdc7cdc7b77a6cd803af1f7bfdd6a6c91720fe78a24c6391feed026320b96439438eff00f02adfb1d504dfeb09dddc9fe2f7ae5c6e1d411534374c87e4e9f748fef504a67600e3d48fe1a7a38ee2b3ecf504900dbd71923fddabaa7d0714cb261c7419a8d80ed4e527e9f5a7103bd034c8189a92de53d18f3ebfdea465350ba9078c8f714865a31abf4f94faf66a825b32dc3c791fc27fbb4f12fb63daae5b927de802c5ae8f628414b4e7f855989fe7c55f3216ea368fe115047c74e94a1fd69899316acdbad16097951b1fa92a3ef7fc06ae16c534487b6452608cbb1d3eee16c208cc679724fdeff73be6aedf698930e58a9fef2ffecd5643e3ad3c32e3a81fdda490db391bdd39a1e1f760fdc23f8aa04655eb16e3df23f5aed2485587cea08ee08e1ab2ef749c8cdb2ae7a6d349a1a67386523ee861fddc55db3ccbc32107f85fb37b35323d3e527e752a0750456adbc2a9f723dbef4022ac166aa72e8a08ef9fe15a5bbbe6620210aa3851ddaa5b82477e3be3f8ab2df19e7803b54945c8a53fdeee38ad20ff00fd7ac488fe5d6afc32b3761d334211755bbf515614fad66dbdc7f788ab61beb45c691655f14f120f5fc2b3de761ed4a67f56db45c46a2c8bdeb2352f0e2c9cd9ed56ea63ecff00e14ad703fe5a1271f3a37f75aad437c3f8b03fdaecd4ee268e415e7b76c488ea475561caff00f5aba1b7bcb79b975491bef9c8e63edf7aafdd595bdc8fdfaa86ff00966e0f2bff0002ae6aef49bbb43984923f85d470cbe8d408d8974e423f7391dd707ef561dd44cad8752add579abd63ae2b7137cad9dbecd5a6d6f0cbfeb1149fbbbb1cff00df54d30f43940083f30ab4ac0819e0770054b7da6344739254fcaadfd1aa3b340d90e768e7fefaab24b3a7c31b9c3b601fb87fbad5626d2258faae07f09ecd4cb5b765c679cf2481f76b72d6f063130dc3f873fc350fc8b4bb9cdb820fcc07d2992cbb8e47d54d6f5f6841c66cce7bf959fbdfee37f4ac368d8643a15c76c72bfef508021b828415c820893703ef5d2dbeb53a1fdc5f3ff7f01882bff01ae714a81d39394cff007696d4b609941280124e395ff72a89675ebe249491f6d224e72a18005f6f51e601cd6fc7aad8dc01b2ecc2dd515c7ddfe845791cdab481948600027907f858e7ff0041ae80df30899e2301c655304fae016fe7509a19a1af68ca72d692a3e07ef238ce7b754f6fe55c95ac6f281b48393e581f8d690d6248edd0cec0972e84e795e0f298e877114be1cbeb5863669ad91dd795249f99b3c743effdda39bb0addc8e5b7316433e703e7e785aad0dea380007e419a3c74edf7a9b0ead13acbf69121620adb61862366933f367a8accb5bb08ca41040f939e9d28e70b1baac50032310a7084e3fbdfed76a7f86208e5ba02f098d0e4a8eefdc7cdd871d6a3bbd66d5a00017f3405750070b2ac87db9f9307d2a8a6b19b98d9db701b788f3fbbe8404e9f71b8fce94a435e474fe21d6161987d84c0220a6e60880fbbf23801b3fdf63fcab3542cd6eeead9914c71bffb2bc7af7e0fe958faadff009ce493903f768d8e5a35e016f7db54e3d41c230c8da70efebf2e463e9cd427ff00000bface4ba066caf1229cf1f377ae8ad752b66889de41188fe61f7d98e3e4e7dab96d5759fb498cec552aa21760065f6ff7bfdc5e2aa3ccc7ee9207dd5069f30cd8d7ccb1ca3729c70ea4746da067f9d3e5d73cd04440af1b107755e493ff007ce2b3759d6e5b8652e3680046b1a8e3728e4fd5eaaab0c7d78e68e6ec23a8b0bfde557382509565fe25538c352c7abc0824f2ce172301873e646840f97fde15cbd9ea5244ea51f18ca75fbcadd4535e6c0201c0ebc1a1c811a3aeea2b291e59e07a1e1b701fc3fef66abaea0ca83733638dac3aaf23ee7e554890c467a75c7f7a92527185c119d9d695c2c5eb9d41e5c6f766fbcea4f56dc73f35225f4a8a54487070a40e9b739c7fdf42a9af18c93da867ebe9c2d2f98ec59b6bc68dc188e0e0f3fddf7a89e62727775e4ffb5cd5595ce7e5cffb27353203c647bd2608b0aa39dffee9a815941186c755a959f681ce73ff008f55696400fcc304f2bfecd2432cab11d0e477cd31f20f1d3ad4713123af7dabfed5582c08f9860f5538a0561b1b71cffbb8a49541038cff0074e7eed22230519c9cfcbff01a2607f87207dddbc6290d0c6c1e0b051fc27b35213803e63f81e1aa20581e1b777248fd29eafcf2b8f5f4dd4d202c2a97c00f8fa8e2a75036f183dfe51fdda8619b15248d8fbc64fa8a0064933ff7081eb48b20246d538fb8a3351215072cecc3eee31cb512ca0630bef8cd005820e78c2e3be796a8e76248df9c7ddcff0077fe054cb7da4e7760e0fcb8e2a4b89805fbb9f6c7f7a810e848246f033dc83f797f0a6ca33c8c91f756996f1ede523671f75429fbb523f23ab1ff007450c440c300175c83f7477a85dc38fdda81d1f27a55894b05e307d41355df6ff1ede80e3b2fbd526021b9ed9797fbf8031bbd376689625ef1173fdd0c714b6cbbf25a3423ee46703ef7fbbde983de6119fbb92000bff01aa02cc7c01fb864fe121c9cb7fb8de94f738ee47b91f77d92a28c742d701f1fc6d9c36dff0064539e53dd901f5ffec4d4318c9d8f5120c7a1fe2ff81535652719208fe1f4a491d7a3cbc7f082386a6c2eec79e9fc200e1684225f3883f3cb81ebb47e48b4f8ca67e49f8f4618ddff0002ab7f64882822dd1e4e0e483f36e355ca4a4fef4c2a39da0633d3a548d1135d320e1381f2aed27e65fe555adee5d8fcfb94727a55994baaeddc84f1c8e9b7f0e33505ab846f9be76fe153ff002ce98cb1b58e3cb5503f8770fbdf952a5aca0fef0c6abfc6413f2f14a2e87f14718fee8538a8e52c71e54aaa7f8d01ff00d0334800dba0c948118f5794e7eefe351c3206e43b275c863ffa05456e8d93e6a311f74b16ff00d94f5ab5140bfc56d81f777313f32ffba281311430e50ae3d58d4c0b01d55bdf1c7fdf34d7894636bc4a3f873d7f5a699e343f3c808fbb803ef5021d70d94c3f03eff4fbd548cd238e76803e5ca8036d5bb99d73c004119519e5aa9a827ae140ce76819fff005d5202582d449c82878fde48c3855ff78753533dd007116463efb7ff00ae9962b113cb18c0eecdc3376f968b9687f823dd9e4ca781498104b248c7fd1d5a7fef90388dbd3da9144807efd1e327eeee07e6a642eca0f95f28e10ed3c6ea537ad27124ee07b5162890400e7e743c6d538fbbfad59b7055705d17b92839a823b68d4732091719c370684ba53c79af267e45e788d57bb51624494b31c8bac01fc2c3ef2d44253fdfff003f954cf2c04fce8a71f2963d6aca476ac3fd6a2ffb3c71480c7de7bd4cb21f5a8828c50a6ba8ccb11ce41e7a5595b8522b3c1a7ab629584688b8208c30fa5485b272871fec8acb329a9a3b8f7a2c05b33baf51c7b50b7430727151aca0fdee698f1ff7681938b9f7e3de9a2e07f1722a0240ebcd19aa15c9081eb9a667d681c7f3a4c01d69889e29990e6338fe1e2ba6b3bb12a82a36fb5726ad9ea715afa4dce38fc57fd9a115166f2c8c3ae0d4ca47afe1552390ff001ffc04d4cade868289b1e829853d39a58e656f507de9f4010a81dff1ab907b74a80a5491607438a451a2ac3b9a52ff0095570fee6a555229887e4f634d0e3fc696a3718e83ebc5218e2c0f43c53964f5e9daa127d0914aa4f7a092c8724714b9cf7a855b1df02a6e3f87140114aa3f880ff66aa371d2afb01dc7154e6888eb49a29332efa723f9d65b3e6b5aeed0b74359925b329e473fc3cd40ee2abe3f1ffd06af4132a9f9813c6c7cff000d505439e3a0f956afa2f037f3ebc53482e402520fc8715af1918fbc0f7ac47e0f1d3f86af5bcd9fe21fddc1a432e5c0e38ebe83f8aa899c91cb13f5abc0ee1cff00fb55567b6c72bf8d161912cb8a55988fba78f4a8cc78fbbcd2aae2901663bc23ef74f4abf15f8618900917ee953d557fad64800d2aab0fb873ed40892ffc3f14b9362429fee9e8d59f05fdc4071771b11f77dd7fc6b5a2bb6ee483f7723aff00c0bd6a4b996ddd7fd36346e422baff00b4714ee2b76086f63907cd875fef0fe1f665a8ce9d1020c6001c92a3a35519f45b887e6d3dcc8bdc0eabff0001ef4fb5d5892018f6139cc6c7866ff629dc3d4b9330006cc678fddffb350cd7bb149230402573fdeed503de2f9e416daa13255bfbd9cffe8359f7770f2425beea93e5ed1f5ffe26936173a4b4d49b00a9ca901cad4daacd0bc4cca8a5f1b236eeb5cb58eb188d4301907667fd9523ff0065aa97faa348484242f25076e9d7eb53cc172ddd4aca9946520379391fded99f996a17bbc4272472471dfa5663c8d8e18e38739fe26c524f30dabf77be70396e68e6ff00226c21738e80fd2ad0bd71161652413978fb2fbd67c6c3b11eb4190f4c93df02a5144ed752b6d0cc48192809fbbbaa513601da7eb8aae91938c104f539fe15a9162cf7c7a9152c06c67ae4f1c76a43c6369e948ac00e9f5a7939078fce810ad264704ff77155f730718c1e9d3ad31253ea71f770696104b8c1fd6aac05f9988ea6ab1c91c293d573535c3800f520fddc0fbb44790382bc738c54a40560cd8ffd07fdaa9d49c723dcd56c8c9dc78fe1c54e87a6de7eb5400c727e6e3fbb83521e7181f89aafbc67afd41ab122e00c293dcfa6ea4c0acbb830e07e3534e09cf07a1381fc550db925c67a75ab891ffb279f97a70cb431952ddc9e833f5fe1a977648ec3af4fbd50c68573943d72b923eed4918663d7031cd301caa7076eccf5e45401d7b63f3ab1021f9b27d4f1fddaaf1c0496dff2e31f29fe2a101134b83c80c3eb5662cf6423aaf3d56a9aa339e1157fba5bfbb566d8004720fd7f869b04599c018dd81f4a86e828c7c8c0f2bd38ff008154d20420739f538a278d9be9fc3e95032188818c9551d791ff00b35595931dcf7e0ff1556740b8c727daa440401bf9ebc62815c9893d0671ec687b55651f74b753bbf896991ca33c10a3eb561ce48e411d690cca26407a15c7619fbb5342c7f8d7150de4aca728300fdd603eeffb99a92161df77b92786ab132c46cb9e847b81cd3e7da3eea9f5c8e8bfef5436ec41e4e3a2e09a7ceae4fcace07b9e2a44578d47567c8fe12a29b2c8a0fc809f524d468ec061c03ce722899540e1d718da79e5a9945cb71101913267fe79807e6a92691803b58af1f2b60e16a0b18b0016048fe1e69d29500ec233d5493c7fdf5485616d1f72fcee01f5c9c36da9b7e3ef4b91fc2454104eeca368da0f6c0c7eb4fdc7fbe7d718a402ca8adc17e3eef5e6ab4f18ce5411fc24638a9d4163f232a8fe33ff00d8d25d499ff561883e83fd5d34035379030f1e3eea6d07e6a7c560a08debb87264c0fe16e9ba9675508070303a01442ca00f2d9cf1b39fe7542152d9149c431a81f3ff00bcb485a31feae304f72053ced5cee5241f9492796aaf294ff964b8fa13f2d4810ddae41dbb7d7e63f76a3b2b8e46400383f29e68ba995739db21f451fa351a791210562c0190fb7f857b5319b66e5867cb7207dd52a3956aa5319571be4539e4ee00ff00df5568127a7cbfed1fe1f7aa93da36fdc64880f427f87d6a50ca7f20ff0057704fb30fe2a65bdb31237bb0cfca5bb54c34f38fddcb19079e7f8aa0b75653f3ca8a3955523ef355925e9338f9638987dc50c4676afd4d53692107ee64f7da7eed69db46f2237c8841f963661f7bdbe9557cd5438f2222df70b2f4ddfa541486c6148dd01703fd5f53f2ff00c0a9b1a28397df27b64e377fb75a86328a3289c8df8078556ac59354763c4a140f97691f7a988b0f6c180f2b728ce7047f0ff3a916c141fbdc1c718fd371aab24b281f2b2b7b01f7bf2ab9a64571230ced8cff000b32f3fc8d16104e8d1b01b508e36856e7fe05fe154e49573fbc5007255547ddf6abdab45323e67955ff0085655fe25f5e2a38d5739951a61df9fe1ff629a1a2bc16f1bae5d630bfdd941cff00c029cd6caf8dccaa83eef1c55b36d6f9fdc2c807540c6992841feb082bf7739fbb498229b2285385c2e41045515b65e769391d79fbb5abe55baab796831c64eee6aaac2b82630dd36286eaccdd0534322b48e424891485c1e7b7fdf55620654e087c673e6e4617db75558ee2543864933ce4678a9cb4083891d81c3f96072adfed50262c96ab2b128ea83f8547f17bb7347d865fe0ba840ec326a499df6fdcca1fbbb8ff00abff00717355e2b7b8619fb4ed1fc23d05262030311c63fd91fecd56e47b54d1cec3ef1cfae69678d472878e0e3fbb5d266c891a9e4d464607148af8eb408982fbd19c7414071da9c47af4eb4c43e37f7a98483d6ab631d38a3918e68b0cb5c1e8682b8e9c8a8565c7d2a68dd7b9a04031ff00b2d007f7a9c547634dc7ad3010823a74a9ed67652361c7f0e6a22bef81429c1181c7ad008e9ede56206e18156830359f6ee481c9f5ab6ac68342cf07ae7fd9229f1bff007f9fee9a81243fc54b923eef4a00b8323dfe94abb7bf150472b0ebd2a5e0f4a00b519dbd791ef53abaff000fe22a92498f5c548adfdda00b679e9c8a6331fad0937a8fc334e201e87f0a0080b107db8a7a823be7dcf56a1a023a1c8fe114e08474247b134000c53d58f618a41b7bf148ac01c1cffb271401302291d54d465580e71ea71d298d37ad0043382bf7b91fc3c5549029fbdc8357259011cd5574a5629154c083f87228240ec4d3e418a865b844199180fee8eed4088cc0c4f233deac436d82383eff00ecd511adc43d4fd07deff3cd48fadc58fddfd79fc3ff00af5364099aa8a474a748077fc6b14f89141fb9c72b8aad77e2095ffd49dabfc38eb487cc6e0110fbc703eb486388ff00ab9067eb5ca34f237de727f1a48e794746607a7069fc85cde47606dd08e3e53eb4d3030f7fa7f76b998f539c74761c6cfd734ffed3b8ff009eac0707aff7690f98e80903ef83fd56aa6a6d851939f982f5fc6b30ea32b1cbbe7a3aff00b3b4d4377a9338e00c6449cff0b62948133a96bb30e0ab95c909c9e1783fe158bac5e0f3d77a2a707247466c1c1db54f50d59a454e49c0cc9fed499c7fe822a9ea1785d973d0011d4b7d86c25bc6f3092c4f05377e18a16f49876ffb5bd7f2c55194f3c7fbb515bcbc7009e79c52116d65db8c31feff0014919627e5ff0077ad44ec09f978a92d811d8e7d693025dc40e79eb503b30f423bd49231ff00eb66abb31cf0c48ef9a100b037ad21ebc114c85c0ebc9f4ed4aad193f293cf614c0b4aca071927d7152c4d90719feee4d231f4c0fe1cff0076923c01c123fba08fbd50046e483f39e064aa8fe2a79240e720f538fe1a85dc67e56ff655b1f77fe034bdb9663ea73f7aa90d101931d576ff007401525ab82dc6075ed55e4719f9189f5353d8bb063b393e9fdda622dc8cc07eec6f3ced247dda58fa73907ee9c5452838fde48bfddc927e66a518006c5cfab0a802bcb2a86e157fba4b1fe2abf185239c9e9d3a567989998e0af4cf22af2e001b981f51fdeaa60560c41fb981f7707aedab6e4e06d078fbb81f76ab06248ca03ea01a7c8cdfc27078e868603216f9fe639e0e455a0aa07539fd2a089181c8c9272bc0fbb520603ef8cff747f76a58c89f3fc3c0a92d7693d0f4db503ba8c6dc81d483d1aa4b79405f5fa55201e8c1738ef4b1cb8cee0483f77fdae2a194e3af27eb52c276e33eff00f7d52622b5b46016c82318d993fc3562de31d9723f8734a1412c761038279e1b6d2db903ef9c7b0fe1a18010dfc436fd2a505b3df14c2cd9e093ec4fdda68273c93f4a92864af823cbc7e54e2d91ce4118db9a899b0c32323d0fd291dc0ea5b1f4a009832e3fd6ae7a1c83ff008e54ad28c0cb83f5fe2a815c11c2123eef3fc54e768f6fcdfbbfe156c70b4d010797b8e646240cae0ffecab4d01549dad93f4a798195479873fee9fe2aacd807e4520e32bb4d5324d2b619c6ed83193c1e7e5ff66a1b83b8fcf9f5e9cffc029aa7601bd0b9276afad2dc3b29f9dd8e40750a7eed40c81f70c7cfb979da4f5db4d42cc3f769b7f88b63ff0066a91e588272c477523fbde9551a6723e53c7dd5f4dd56819a91b70035c16f55079a648cca3f750eec7cbb09a8ed94201e5c8d93cb824617f99ffc7a9b2ccca0fcc3fdec7ddff80d40224b79188cf9213fba33f77d9a8691f3ff002c8fe1cd436d71b87cec0ffb4072dff01a46753d5597de81971240b9fdc296fba403c353a27638df0aaf4273ff00b2557b79480705474e58516f2a83f349b4772a0fccd408b92bf27a1fee8a849c70bc0e3bff000fa530cb10fe263fddddd777fbbe94c9a51e99a6844cef81fae09a40c3fe59a29ee76f5dbfeed5469091f2ef038ce4d3cc7391f71147f0e3ab50017db88255107721bab545a5a9073185e3e531a9e7e6ee9eb4e9ed5bf8a465e9dc7de6ec9535b5b5abf292344c3e53c8c37bd0345d2ca4fccc48fe118fbb5564b13925a5909e0e474ffbe4d5840a702225bd4b7f135325728a728f231caab64fcb486365be1b704c7d911c8395ff00717359c5d770fb49dc3f8580fe1abd25a388b73b4720ea6361cc6bfec7b56659cad238c439518c85fe15cd5211d1c4580016573fdd55e8b549edd50fceac809f9589fbcdf9d599580fb876fd7ab50199c1cc791fc2c47deff716a1090ac549f9d9d47f19cd665d69b6c0e629d89fbeb91c55878df3feb323f8c0ff00e2a9658d1befa2b7f7193ab2ff00b59aa195170a3f7b1291fc24f4fd2ae697aa6c6cc6e8a3f85549f9bfdea6b796c30cd2e3f8c03c2fb52e9b65144f9f21665e3c9566fe36fef50842df889ce6391598e32a09f99b273d691206c8dd2f6f9f1f5a7dfd81f307976862ce642b9e1557a946e73f853e2b472c37b32a7392c31bb6ff003a076257dcdc42a19b8da0900b2ffb19aab2d9ca48fb446c83eeed55e197f0ab72da173f29c91cfbff00c02a998181ccdb8f4db8273fad0c10c60ebbb6db003855503ef7e7594f7f2b713ac6a3fba07ddab26e650498d58f731b746e6a09173c94da4f3ba843123db91b1dc77c11f7bfe055a3b26c729b5b1cb151f77fd8aca8433b7ef2304faab6372d58134b11252de718ea5d8e63fe95422f472328396917f857cc1cff00df354d6795beed8330e9bb69e6a286fd97fd53027a9dc39a9c4771272d74a3db07fa54b1150fb54a2518c1c93f7569e6c5d39eabeb5093cf4e2ba2e40d0d9ebc537693df8eb41c8eb4e0de9fee9a04303115611b34cf2d4ff8d2a211d4f14012d0ab51ab907da9e1a9a10ac314bd3a1a3afdea0fb5310f1211dea559477aad4eff00f5d005a53e869635fef74ef554391d2a659b1f78d03372d67c003fe02b8abc38eb9ae76def594f078ad3b6d497077be0fdf507f9508ab9a40e2a64f7aa6b3a77703aae7fdaab2b91d31f9d31930c7e1d71fed53d58fa62a3c8fa8a51f8e280260feb4f47c77a80822955b1de802d893ffd752799e95595e8c914016e3b83fc5fa54aac0f7fc2a82b53c48c3ee9c5005e5007d3de9c369ea01155e39f3d4530dc30ec07b9a00b6180fa7f0d46e14f4a845c9ef4c79c50012c4ddba771558827a8229ed744773f8d549af42824e703249ff668043df8e833fdd19ac0bbf2db996e49639fdda8e157b0dd4dbdd59dce212557eef1fc559c33dc9a86c4d92023bd29f6e9510f7a72e7f0a421e483d46452e16999c77a53f5a0071527a1a5dac29a0e29dbe800c11d691d88ebd385a719318aad73263a1c526c69132cd8ebef551a60475fc0d0d371c9f5a6487038fad4365a43f793514acc7ee73d3fe0348ac48f98fb74fe2a923438f989fca900e0a78f4eb93f5a819769e76a8eaa17eb56b838c8e9508552df74671d6801a5b9e49fcf8ab51800739c7dd5aa6c541f98e7f87a55b53f80a4c063f2471c7d2a09c85ce56a6775ddce4ff773552e64507b8aa4016a7839241f6eb4e8d8071b813fc3f37f0d430bae3e77c0f45ce5bfdeab16803364824004aee3fc5da98124d2301d491fc2bfdda96d5be5eac0f5dc6a291980e1b03eef039a9ad036dc9de47dd5dfff00c4d43191ce0023e523d406e199aa795401f20031f77155a70015fbaa3b05fad4b2123b91f8fddf7a48194aed361e7049c3902a5b07624efcf03a28ff0038a8f502d9187c8f5cf2d4ba7edc90439ce320746ff7aa988bb2ecee49c1f962ecad8fef5246847df5cf5fba7fc69b3138fdde31d5f3ff00b25242e707cc2a00ced51d6a50043b839f306de9b47fb353640ff5680fa9cfdea8610a4e637c8e117269f2483f8432f455e453191bb90c30dc7dde6a599491f293ebc55476e793dea7bc0b81b5d9781d3a3734c09636040dcfc7b1396a7ef1db91c679fbb50c440fbc7803ae7eed39028ce18b7aff00bd50220ba761d3803e539fad3e26000da3b763505db0cf3c528dbe84fb8356809060e33ef560380bd7d16aa5bc4cd9392a072a0f56ab119f97907a9e949813db96c1c01f5cd451be09ddecbcd2c726d1dfe9fdda644ca7a74e17fdea404abb7bf03eef14aa3fbb9e33ff0002a8d3afcd81fc2807f17bd4a5d8fde00f5a6515656208c83f9fdda73363eeb7ebfe3514e17772a7e952ba827e58987ab134981200f8fbca0f7007fabe3a5355940f9cf1ef4e0081f2647b93f79bfad36363c878863de8404225381b589fee834e678c63cf048fba714c703236f23d4545367b0cf39e4d53034bed6bc796807a0c0ffd0aa39a724fcc133ea4fe8950c2a4b64b703eee0f151ca37745ca8efdaa4436755703765464f5eabc542aa0600271f7568be650a31d33b48fc2a4b31b539039c95aa02d996318dee547f75547cdff0002eb4d9e7848f98051efd5aa386551d7cb279dab8e777fb4c689225603ccc9cf5603eed4086db4f6edfea90a9fbd939a4f317b17352c08b10214673cab1155d8b13f2b7e00714ca2e47292bc6d51dc81491aa9382bef927ef535433a8c9ff77918ff00be688832924c91367e5f98f2bfee5048e976e463716fe10c78fa544ed1e46e0a71c920d484ae3e675e79c291f32d43295eafe663eeaed030ab420125766fb8428fa54d18971f7820ee58fdeff72aab3ab9190f8fbabb4f2df9d5a6895bfe59b377c3745a00ad7aa48ea8bd1bdf77fb1572c6c44699bd8c03fc008fbbbbfdaa624aaa3f7d6db938f95871bbb7cd571ee38c7d9d71cedc1e17df6d228679f183fbb887d33cb5364756c798eca83052353cbb7fb551adf2ff001228fe1e07dddbfecd4ccef2a8d9e5ff00bcd8ff00d06800bb9d9d4f9a1c67e45da7f87d1bdaa0d2a0039dbfee32e70cbdc35486cae3183121f5da461bfc29d66acb9c5bb427ab8238ff0080504934eec7a06dbfdeecade94dc4a7ee393fed31e23ff0a8a4b9941184c0fbbf2ff12ffbb5234a8c387c0fe1527f8a843b081c0380493dce385ff1a268e63feabcc51f754923e6ff007b151bba8ff571203fdf2396a7959541223247b1e1ff00e03400ac8a171703693d4823e56c7b54304083a5c161e99ffd9aa28ef99beec6bee0815623b720673b7bf1401a8274207962e07fcb1566c9ff00be1bd2965558f06425cf2b87feeffbb546476987caec40c648e0af1f4a6bca1170fe5b36390a7ef2ff00b58a0636eef803f280bfddda78aaafa8ba7facd920ef1a9e36ff002a853cb62378957f85579c37b5597d3901ff0056a7be54925f6d022a2eb32393b6240bc298f03eed47387ce2d94b03ca002a78e00776f8953f839fe1aa9e64aa082aca460c6dfed29ffe26a92193c36722f2cd146dced049cafe54863954fcd3338206f6c1c2d4306ab703ef2823a96c0cb2d5c92f244e45bc58f52413f5f634c4465add88f9a2cfd4e55bd1178e6b4629863e68e28fb6d661fd3d6a82ea56e3a2293d57e5c0ddfed7ad35ee223feb67c9ee13a2fd3e9484cb0b28030e4153ce09fe2f5acf32827e51815b2fa4c4461b701fc254f2b550e8a54e639032fa356c4b455650c381ef8a88c6c2afb69d216fddb6d07b93f75bd29cf6ecbfebd770eee3f86826c50571d8d018ff00153dedb1f73e61ea29850fbff76801c3f4a456a453ed4e4c7fecb4c0707a72fbd46a314e573de9a10e51f953c914c031466801c571d3a518c50588a5069dc4394e3a5481c8a8bfcad3c2d21a265b86ecff00edff00c0aafc3abc9cefc649073fdd5cd6585fc29771141474d2ea3104251c13ca28079ddda963d5a127894018c93fed71c573624623af1d714cce3e94ee173b65978f988c70d9a518edf5ae396f251ff2d188f4cd5983589548dec481f2633fc38c5170b9d52b0fe16cff0009152835ccc3af303db0493ff01e2afdbeb5b9c83c2805fddb6d0336003db8a783eab553ed602827b82fff007ca66a5f3d70371c743feed3025170bfc0c33dc03cd21607a9aab2ea102fde910f45205528f5b88b1cb00305547fba68034d9c2f5381d2a9cfac42a39901e76e01aa3abea5195c46f9390783c3715ceb4c7d695fb09b3a29b5d8bfe59827dab2ae2f5e43f3b1c745154965f5e6876f7a42263201d0526fa88b0a5524fb0a5602432629ab2b1e9436d14ddf8e98c5202505b3ed4f04f7e950a49ea78a1655a604c08143b542d281effdda1e4e38a4c687b4838f4aaf2367a918a6194f151bb8c1e38f5accb401b27daa59580e80631d6aa427d3a7156263c52016df18e00f5c63eed4ccf8e9c74a8630a00dbd3d4d212770c74cf340cb5bf9e391559db91dbdc7f0d3c707a1fa5569646cfcc31fddff0069692106f24fcb8eb57237f43c773fddaa66303a76f956ae5bf00631dce6860185ee413d57354f540c31f201d7e61d2ae472a7f1825be9fc3516a30b3a663e48e48cff00cb3aa4050b5271c1ea42a8ab96a0ab30ce78c71d3af5aa76193ebebc568a719dabe9dbef50c0648c02f407d89a7405428de1371fbb1a9fe1a6de00073c71d31496eb1a602fcefd4fa2f1d3754813cead95283007ca46692527b039e36e2992b36e18cff74e280c73fc43a74a11441a9b30c6318fbb9cf34fd35472464ff09c9a2fd723f2a5b58d917938cf271fc34c91f3cac3f85b1f7500e9f5a2dc657e627be4b7d2a39e46ec09e831deac5b03b7a03c1a43196ec0023031dc8fe1a572dced52c383bbfbdfee516a3a9c6727b8e17fdea2538fe25e9f2ad022bbb92c3713f88ab777f746d39e3f1eb546199b764ee3d15702b426238c9ff67069b1a190063d037fc047ddfce951b07afd4e2a3859b9e847ddc13f7a80307a647a0a80b11deaf4cc781c72697c927ae47195c536e194e30587f0ed63c2f356d597bffbb9ab4226455030067a2122a129b780c71eb5345263af355e6979e84f7c9a81d81f200dc47fb23140638e55690be7fe5993fed52a9e06e3c7d69a1a1d085ea4e4f3b17352173cf257a751550ca54831a83d571fdddd52a1dc4ef07f01cd55c06f94a5c6e638e55fd7a53e61fdd2ca3d5bf9228a88a0f330aa4f73fecf19a9656ce366f23d063e6a96048a848e4b377f75aae55411bb77aa7352c6323e6dc071f78fdda61551fc600f5c508095e31c10ff00507f8aab3ae4fcfc0eb567ca0319c3639dc3f87fe05512e0fde3b7f871fdea6c07425307e6551c125bf8aabbb13feac2fb920e5bfdce6ac2a3007cb2ff0055fe4954dc337df723fbc6921584b98d8afca8ac73923fd9a982955185c8fb9cd2240ee3f76e303920ff001d4d39545017040c6ddc79ff00812d3b8808c81fe8c02fa0c61bf3e691e4e461c2afa1a85ede5720cbb08e36a83cb2fe1534be48ff0059b00fbaabfdd5ff006aa4089ae58ffab8c1fe1dd501f3075047d2a757560764698fe122a178246fb9d3d474a6868b31c2e57e566c724a8a22864278b34651f2ee627ef7e7521c80079f19c7cbd38a6db3b739391d558e7ff41148412b95ff005912c63eeaaa93f37fc06ab975c72c839f9700656ade507facf2dcff0002a8ff00d0bffaf5018d9bfd65b3201ce0118fd29a02033b6782c4f524f45ff731560311ff002d01fe32141cad5697d22e3f872c7fc2a78a1641c5d64f55007dd6ff007a802e59a2b9cb48a147ca6361cb7fc06a62d820b2961dc2ff0077b5518fcf038962c9ea58f3ff00d6a954320f9b39eb9519dad48a096f13f8ed62ff00658755ff007a9b0a29e6dc4808ec0ff15470ac43fd760e72b8e7e6a98b4631e5607d09fbbfeed003e18ee33f3472a8e72491f37fb94e775ed231f62695258d8fcd2b67eefcc3ff0040aa8444c7e48d89eb907eed0058dc472ac00e7922a17da399941ecbb48f9a9c910e3745363d0f4a90db47ff002d0803f0ff001a008cce1b88c01df914e32c808fdd03f45e7f51489147ff002cd540ee58f3ff007cd3ccca388d5b3f7770271ff7ce2801574f007faa603efab83fc54f3752a0c42323ee918a69924e3748571f2b20fe26a6ca5475703fbb93cd04949d8ae30c9bb3b7691f77fde5a788c01f2b2873f2ae08ff00d045492cb12e0b228e85403c37fbd4f5da002232c3fbcabcb5032849f6907e490301f75b3f76a4b586e1572d2819eb93c2fbeeab06e587de82451f7718fbdf9d39be71932aa81c9047ddff00717b9a011456dbef66467c0272bd37534cea10654bf39cff00b3e95a16ea006f9368eab9eb54a4b3808f96fd235fbf861cfd3835486546d425e8a8817d368a5b77b93931467be580fbd56e39a2fe07339fe150b82d4f3e581fe9064b71caa8ce4ffc014743408cff0022e07dfb59147dd20746a93ec9276b7887b135347f60fe1b9bcff7b20535b484939b7bc555fe1566e9401d0c92b2f5047e14cf333d47e556dd1c7dc40ebd769230b500b524e563d87ae18f0fff0002ed5ba248893fc2323e946f03efb1feeaff00bd4e30480e1bcb5eea33c2d35e138c3bc6475c034242217b1079418f52bffc4d557b590744cff771fc557c447fe7a2fd2ac476a871bee5573fc44711ff00c068b0ac6134647de5c7ae7f86a2231d2ba17b18493bee23c7dd3281c7d76d516b4b71ff002dc1fee9c502b19b861f781149cfa57410c11151bf6b0fe1dc293ecf6c318da0fdde07de5ff6a927e455bccccd3ed7cd241cfaae05325b5743cf2b929b874dcb5aeb1c20fee9981edb40a92268021f3395c9c86fe26aa44b313667a52885875156d4dbeefdda381e8c69fba207e5040f4cd008a6206f434f589b3c8e3d6b4639a000e533fdde6a332459e22e3d32690ca7e51f4a6ba1038435a11cf08ff96400fa9a7bde400730293fde340cc83b875ce29ca371e38ab66e621ff2c54fb64ff8d3239532310a0f7e7fc6992c60b57a8daddfd2af24ea3b0f5c529be51ff2cd0ff0e08e2920335a37ec0d5bb26646266de782171fc4cd521bf1ff003c21ff00be453ede72c7e5441c1380063e5a6fd048927d5a52008d7680362e4f2dc63e6a825d5667003bf1c0c01c7cb5664571fc0b83cfdd151b2b0ea9efc0140ca466f534c56356c903f81bf21fe142ce3fb8df90ff000a432116d2bfdd427eb4c3a65c774007ae6b43edd81ca37e3ffeaa61d4d87dd0714d0994becec3a8c7f0d37ca6ee39ab7f6c6f43eb4d376deff950040206ed41461d054e6f1fb93fecd06f64eec6804ca8e8c3a834d28dfdd6fcaadb5ec83eeb30a68bd9074661eb40ae42b1b9fbaac477e298236ecad8fa55b4bf94749187d2b52decee1f1ff135b55046f501ce57fdec0c7fe3d431af24606c7fee37e544808ed8f6ae9e0d3a67fbfaac67009da09fbdf8d403419db3bdedc93f71c38f957fddc5449f62e29f6398390475f7e29aedef5d29f0a5c28c911b93ce037f0faf4ffd9aa08fc2374ffeb91225fbaad919ff00be7350558e7a10d9e39eff00a54cf1b1fba3deba4ff844190130b191be83e55fcf9ac97b565c6013ce4ae3f4a9b858a4e483f35080eef4ad26b16979304ecdfc2554fcb4c5d06f73fbbb6989ff0069681d8a4dd47381ed511059be63d3eef1fc35a0fa1df13cd9cfc75c29a53a64f07faf85813fecfdd5a056f23365dde8deb56d06146ef4cf5e7e6a94e9f7727fa9b4948fbabb47f0d367d3ae9081f63bb2785e54d0c2c56561b865b03dcff9e69d772b04217dea57b0b8270607078dd907e5ab1268ce47cf0cb20ea4aa363f95170b1976f16c236a90368249fef62adc6091c0cf7cd5a4d34c9d23b8247dd5553fe14efecc993216dae147fb4a7ff1ce29361632f51720741fddf7a2dae223c46840c752396dbd6b557488a41fe971cabfdd0a0e5bf4ab87c2211336914c4fdd2194e635a771d8c790903e6e9d69bb36919e879c62b48e837526025bc8a7bee538fe5523e872eec3b1561fc2aa7e6ff811c5243b197205fe207fa53e3507195ad71e1c9b1fbc8273dfe5229ada64883e78cc58c2fcea7e65ff007a864d8ca8ad51b76f45009186cf2b52140a0ede9c2ad587b56cfdf8f1e8b9f9aa1f2d89f9d368faf2d482c416ca09388c91f7f3dba5477042fa918f4e2b43ca200f9580fe12c0fcdbbfb94906912cc48442a719f9b3f32faa530b1970c7181f32f39ce0559993a71c7b56b2f87360fdedcdb607240ce5bf302a9ccb83c0040e6863b19d6e724e0023ae31f769e073f21e7b9ab0c91af3c29fee91cd3608c3728091dca838a405368599864023eff07fbb52827771ee715b36fa35db8ff428247cf3b829fbbfd29b36912c5c49036e3f2a961ffa07eb4ee3b7914634f7f7aaef1303f31c0fbd5a65147ddc7f749a90e9f29fbd6f744f550a87fc2908cd6099f53fc29fdda915071942a339c639ad216047fcb1653d5ced3f2ffbde94c8e26278d9fec8feeffbcdda8b8ec523a6c8c498a195d739dc14e157fda6a49a393911470ae7f8d7affdf55b6d15c228566ce4efdaa79f97229834790025e3c01f2e189cb37e347c82c671b688c85bcc2a31b36f18fb98cd5692203a0ce3e5caf4ff0080568b5b95ebc2d21b6de3964dbf754e681198db71c024f7519aaedb47f095f7e6b664d39dbfd43851d4b91f7a9b6fa72cad867f3b1c938e3f4a68762ce9fa0bcc331cf081d5f9395fcc62ab2d8a23379934600caa85eafb4f456ad4bbbf68405b746238de5578fd2b21e17ff9691c83392a3140329ce0b7fabf957d33552531af4962c77ce73571958741b7ae491555e295f195247ddc9a42258a70a3e57eb8555c73f5a8ae1d40c9673fc2a01a905ab0ff0056a48fe13497101039ff008150054b59ee09c4473fdddc785ab5709c0df873ce4f6ff0a6c36983f34a54772072ab524b0a00373120fdce7ff42a62b1044a817924fe585ff72a1765fe190fbedab2d1ae3e7601467a7f7aa058c1fb8013e8dfc2b4211a065880f91508fbb9907fe80a2a386573f7e28c9fe18d7006dff6f34be620037c449c7ca1cfddff00808aa9712938fb347b5bab607f8f5a068b938623843db39036afb271549e303fd59543df6b67ff001ded4d844b247212cdb815da7fbbb8906ad5ad932c4cd38566dc0e01e55707f5a6162a195948cb193fb99e95a2901c7cd1c1d338cf3bbfc2b28c5286ca103a95dc7fc6a4b3b49487cb367692bd7e6e450d058b8f69231e626c7dcc28fbbef5a5e585500057fe12c41154ac52e046bb0939255c13fc3cd4d731480011b123a704fcbeed5250d7b2e9808a7b92dffa05565b6607e56231f2e3ff00b2ab703b27fc7c246e3f5ff81375a6b5caff00cbb4633e99e290040c7fe5aa8fc451e63927fd1c8039dca0636ffb4d5245772ff1aaafb0fe1ad4b6d41467ed1145203d4b8fbcabd9314c46434ae400813ae79c657dfa546eb20c168c1fe0c83fc5feed477375148e3ecd108867e5e79ffbeaaedbc0d267648878c9dedcaff8d3b0ac665cdca861be305beee4ff00cb3fcab4ede3dc716aeaa78dc5db96ff00714d173a4344c0c4d0b023cc5997a6d5383b94f4fc6b48da45291e659147e0ed80f3f548c8fe3ebf7e8195a4b0600ef75ce761da3956acebb894601396fbaac33f79bfd935d05dd9428984330cf3fbc500ee5fef2f5ac811c61b31ccf191f329cfddff008175a18990b416ca0799121f73d59a916e377fa868d47dd51d9689a0463fbc918fb283ff008fb530f9518fe0dc72bf28e690846de47ef4a903e5ce3ef37fb0b4d31443a3649e7008f97fdfab9158bba065ed9755feff00eb4cb9999ffe3e2250c3be29d868a50c8c3764b11c707f95451d8c3d6f26007548e33cff005a9e2190770da0fcaa0f56db5463370a495b70460ba961fead57a94fcc55145f7b8963c0b385d53b975186fd05559a49327ceb749578398c0c2fa8dc01a9eff4dbe54cb3a80704c2a47dd6ef5456e6fa31f34d205feee4615695848955237c98ce9aa0f2b131398ff4a58ed540ff008ffb71ed835582339cc5201eae7186f6e6a00ec3a90dfed7ad303b792523ee6d51f4150adc30ead9fe1c1e951b4e2ab9b8ae848c1b26762c7e739f7a6301db8a88cd48d3d1615c90b81d85466e88e950b39a61cd325c87c972c7a9e2a12c7d68da68086958571e666239638a6e4fa9a508694466985c92de62a7e5348f231ea78e4d22a1a528680b8da5dd46ca508680b8e53522e3b91f9d356027b8a996d4ff007968290d017b91f9d3c247dc8fce9c2d0f765a956cc7f785031be4418e8bfad0b141e8bfad5b36631d685b21eb4011ac36ff00dc5fcaa4486df23f74a7f0ab0b6a2a44b7008e28b79015d21b7ff9e2bf955a862881f96251d7b54896e3d2a748c03d29dbc82e2145c0fdd8c7d3da9db1703f7631c76a902f14f55e28b0158aaffcf25fcaa152b9e221f955f118a8fc900d161dca7752851cc631f4ace7be51ff002cab6ee2dc30e4567c9a78f4a2c2b940ea0bff003cff004a89efbfd8ab8fa78ec2ab4ba7b761480aad74c7b530c86a46b371fc34d30b0ea2826e464d27e1527967d28119f4a02e300f6a72e474a788cfa52ec23b52b05c62923a5324723eef1f4a982fb53258e93434c852f245fbaec29e9aa4cbff002d18fd4d44623c714c78ea6de43e6eccd4875e971f7cfe355a5b8638c31cff0011aa71a906a5391438873f765e5d4e68fa4cff004cd3575cb907890d537e7ad342f3472f90f9df766aaf8a6f475933f5148de21ba7ff005726c3ca9c63e6acd65a6af068e5f2173bee6926bd769d24047b8a0f88af87faa9828ea462b3ce6a455e051cbe43537dd9a2be2cbf523320eddaa76f165c753b4fa924fdefceb10ad13271472f907b47dcdb8bc53743efb211e801ff001a90f8b2e33f2a26072bc9ff001ae795b38a950629727902a8fbb37a1f14dc1fbf284fee8dc70dfad5c6f134417259d9bd158ffe855c8dcafa5361523bf147221fb567551f8a4039759403e8e6a73e32c1f9628f6ff096272d5cac838148dce28e50f68fb9d71f16ab8f99029fe12a6992f88770f9630471feb0e7ff001dae50e454d1c871c9a3943da336cf88641f762847fbb9ff00c71a98de2898f48ff1663ff8e5642b67ad2b01da972873bee6faf8b64006e8e71fc24ac981fcaa48fc5caedfbd8de351cee2dcb36318e82b9a8dfd7a54528f4a7ca1ed1f73ac1aec607eed90ff00739a85bc5ccbc1824faab8f9bff1dae66363eb52b9a5ca35519d1af8d00fbda706fe1e5865bfdec2d49178e6303fe3ce78cfdd531b8f97f315ca231cf342f069dbc84aa3ee75d0f882127335c5c479ea0f46ff007aa497c4f08e126b8c719750bfbbfcc62b8e59467e6e94ab211f4a5ca57b47e474e7c4906ef9ad58afbaa67ebbb6d5b3e21b7246f9dd87552c0e57fe0238ae4c3fad234f8e94728fda3f23b4835db519dd215ea548070fefc7f7ea01ad59371144ab8cf05065973d3777ae4d6e587d29eb2a8ef4ac1ce766b7f6a0ae7ca5e479648e63e39f9bb536f66b4249b88d5cfddde727e6ff007ab96f3976fccdc8236d356f586416383d4516f22b9fc8db87fb21986e862278ff005ac40ddfcbf3cd25fda69223cdb43086de11cac84855ee36823f3db5885f3d69a1940ed8eb4ade42e63ad16762e9868211171b2504663e3908d9c1f9aa08349d3c018958838cbab282dfef60e2b9a7bd2061791e86996f78aa7e71907aab52e52b9fc8ea2e744b15e51ef7b6d0ae31f5e074a9e3d02c645cb9b8503fbae4966f5da57a57393dba9c184023ff0041aae2f655fbb2c8a47cb9563425e40e5e47492f85ac5d7e496e00e4e48fe1cf1d6ab45e18b252448f7c4e3f772a1076fe7ffc55629d5aef185be9147f0e58d6be8e2e2442c9a8c8a72637db186ddc03f7bf1a9934be2f434a516f4a71f31ebe15b41feb2fae474da150676b7fb409ff00d069b1f85ac54fcf732123e54f373876cff7863f5acf97c45711fdeb999bf870c808fd4516fe23908ccb04720ced248c15f745e95b3a4faa3155225f5f0c42e4fcdb413f78372cbebb7000fc58d539fc26aa405bcf2579f99886665ff80640ff00beaa6b7f12c323012dac8a4911a95c61771c6771c9ff00c76acbdada82c70e8c497568d8e17fed99522a172ffcbd6d75368d393fe0c13e86049e102388ae90ae7977382defb467fa52daf841831f36fad2303e5cb163bd7b7ca17f9b55abad55d41def2b0fb8aca06578fe25c83f8d456ba8c431beeae540c2bc7b47ccaa7a799fd6ba7969fd9f696eaffa473352d799c13d922e43e1195f85bfd3d7f863c93f37fc0768ff00d0aa2bdf04dc267cfbcb23c79995c811af41f373fc54b2e96b2b07b5bb9511b0e91b38276ffbc793d3a54eb7c80b0fb549328023d8c06d8f68c0f2bdd16b26a3b51573a611b6b8a525d9aea67db787191583bc0c0e3211c65d9493845383ff008ed6fe9fe06b4753bef1dd7237c518c796ca3a331cfad2c7ad4768b9934e52e4fee65b824165e33b3a7294fb6d4aeddcfd956dd73fbf98444fcbbbfbcdbb8acacbfccba90ff9f69db74537d134e51f2d883ead23927fa0151dbf84ae1b2635854124a3b11feafb7cdcd5e9344bb93fd5cb6d9fe0c90777ba60fe956edb47994a8935558c1f94aa20f9bdf7608143f43248cd97c3714407da2fa35ef2380488bfdc50393f56158b7cf6a38b6966949f954c9851ff007ce49cd77573e1240a41d4ee6e9fefa6640037a06d8a38ae5ee7c257ecff00bf8ad6d211f2c93236432f728b9249fcaa64bc87e8731340e187eea220ff00acc756ff001ad287c3524281c2a383f72262415ff80d75367e09b1600c1717d72d91fbd887cb1c7dc700e0ff00c0856cdbd8cb9f2ed96ea1201d970c84866e8032f41b31fdea69775e84dbcd1c8e98d06d76b8d26193001f987df918ff00cb263903e5ff0066a9cd7ba7ca7f77a1de21ff009e714a3ff1c5d86bd024b691895b88e38c905e6f355311f41f22f525faf7ac7b9b2bb840fb0ea36abce70a8143b74cb36327af4a76297a1cddee8da7429b9ec6ee4e84c5e60063dc809f9b673d47f08aa22fec38f2f48ba3fdd2d38ffe22ba9336acff002df47a6cb1ff00cf6948c2affb0c8739fa2e6aec5369d6e9882d10cc06d5baf2c1df27af273f9d26bcc3e473f7f15a2484b26e4c7971c25beec9c72cc00e139e2a82dc64feef728fba8b8e16a19ee5893b90e7a9cf4ebcd557bc6ff967827eef1d7aff0076a4cdf91a57370c46269781e9fc3fee5672c76ec789d4e39c03cb7fc0690db2e3f7c416eec0fddf7aaf232c5c5a8258f326e3cc9ffd6a0459924407f74149fbbbb1f77fc6ab3d929fbd273fc39e8bfef35575936b74651c97231f37fc0bd297ed91bfdc7c0eeb9e6801fa75d185b1e612dfdd61c37e7d6b424d46d17964456f7272b58af140c46f8d9f1fddfe2fcaae5c5ac3181b2d54e409137672ebf8552634325b90fcdb0de33c820fdeaaa935c31f9ade61d63385e36c847dcfcaafdac8403f2f95fdc00711d436f66d3ab79b2cd1c80e51d8f0ab8e9b7fdb6a0a1973248dfebeca571fc2ccc71fa531679fa2dbfeec654c59fbdff023cd56885c03f348e47ddc927156237919b990b7072327f8453032e575cfcf1a28ff00647dda992f2dc0f9933ef8a62dac87aa6d1ef4efb18feed311d013c7435012dfdd35279c7151fda1bdbf2ae838db039f4348777a1a433351e61a7626e261ff00ba680ade869779a01a2c1713637a1a508de94a2940a02e2046a7085bd29314e0050171046dfe4d3bcb3fe4d000a5c0f5a02e2796dfe4d39626f6fcc500539547ad017268ed5bd57f315663b623bafe7490c4b56e38c53b79168896dfdc7e756120c7a53952a555a2c3b87954e58aa400fa53941aab00823a7ac63d7f4a728a7aad16011631ebfa53d5714aab4ec5002014e55a314e1405c0251b29e0d2e7da80b9198ea1784fa55be7d2a3627d281145e1355de235a0ed8ed559cfb516199b2478aaae0569c8bed54e48454b4053e296a5f2053840291242290fd6ac0b71eb43418a4056c0a46153987de8f268029951c5432ad681b71c5413db0140149540ef4ac2ac7d9aa274a0062d2e39a72ae28c502022a36153114c22801b52c62a2db532714021b8a49f814fe94c9c714010435616a08971532f5a18931251c524629ee29235e2818af4869ee3a5215a006ca714b1b524a288451615c0b11d29f1be47348cb4b18c52b0d0919a1e96314ac28b015d49153b9e94cda01a95c70298d11275a075a7a2d28415360b903e454828954539453b021cb513e735328a46515362ae45934f563814a145280280b8c676cd29634f005040a45019c861e981ff00a0530c8d4360114ad8a02e3092454649ab000c53760a0772e5bde328e791559a624d394530a8cd4dbb0ee44c4d11dece83114f228ebb549c6ea90a035098e95bc86a5d9f90e92e247fbed9a63ccc070c40eb8a7aa7148f1f154dbead8b4ec88a199d482ac41182a7fbad5af06aae7fd7cb2b1f42c71b6b2963c53d948e94979a45a93fb327e66f27d8e51fbef315891e5ed3c2b7ab56843a4e8e80ee9e7988fbe548c46dfed31535c9248e070685b8997ee3e01eb56e5d92127dcf41b5b652a069d0228fb9bbcc0c555b9cf45007fc049a76abe1b81b688e00a0b869ae148cac7c9c328c9f415c869daa4887f7d26d0405c81ceeedbbf5a6ddf88eed99beccfb149fe1ce557f03ed59a5d91a39f77e47a63ea16730ff008995d5b26dcac2c1b0555bfda3f4aaebaae9d0361e4d54a9c7efb712acbcfdce32367b5604f3cd6883fb4ae244dc0aa1550db95719f98e08eb546cafadd08365a8ba803cb2f72c49dadd7628ff00e2a87e68a4d773b5377612366ca6bc23ac8ac870cbebf5fad67ff6d58c476cd72a25382f1c6cc3f76c38f9719279ae7ee752b29f06eb5adac0fc8ca872dc8f5e950bf89598906f82c7c7ef581dcbb7fb9818c5243baee6a5d69daab166b49ada384e1e121f86dbc63711c1eb50cf1df3f0e97774a311cce1800add7e4ce33f85539f578e450ad70f2804491cd7032afec8a071f8d5ff00edd68f0afe6489c708a31b7afc9d081421dc961d62ee18c2db6a2d138c94b4755fddafa799fd6a11ad6bb246591a4403f8646553ff0000de467eb55aeef55df234ab7987559dc0f997d3a548baec4e377d8ec0803617655dd1aaf6557e48f4c3517f31591af69aacb1229d462f32620170c0663ff8177359fad44ce19edbf7271bca91c32f7d8c6aaacd2ef2cf23346712421b18dac3aa63903db71a7ea734a7697dfe48c99e35fe3fcf27f26a452f23274c91dc9cbb29c1fdea9fb9fef37a531b579c70f677b191952e0ee59f6f74e3fc2b42defa66dffd9ff2a91f2c6a40658fd3d71ea055cb7f115b0502e65b356fbbe5ae7e5dbfece29240df738e9de539f3d1d073f7c72abfe7b5513c02d6ac0b0f94be385f6e6bb73aae96c7fd2a0b641cfef15c9f9bfef9a225f0fb9f96488b7f0641fbdf951622de679fdd36a7805ece68d71f2b943865f5dc456968b6067c7dbafe5889ff0056ca9b957d9b6720fbed35de5bcf32826d6fdca7dd6370830bedb891c7fc06ab4bfd9cb9375aa44ec7a8545f97da2f2c0e3eac69dbd05630a7f00ea6a72ad04d6e79df09ceff00faeabd734c97c396b09ccf6a17b288d4b1fd01c7e35a8dacc09c58a4f227f144c02a3ffbcbd4fd4b54c2f356718b186de053f3ed8e40037fc0739a4ca4bc8ccb7f0d94566b68dce70a81c1076b1ce79e9f28a8a7d32d113f7f3a9949dbe5a8e1573c7ef3a7cfcd69ae83a8ca3fd2258a53dd7cd236fe40e7fefaa2dfc3322b7eef4d118c6d69a47c8ffeb1ff0080d20b1871e933c876dbc2c19bf76833f7ea7f10e8f3e9eabbde0914f5688f31c8a390d9ebf515a6f6728950c9aa471ed21c43192ccfb79c26c181be99aadfda6a8035a584d1bab2c66395890eacf925231db69e4fa56b18aebf221beebfe1ce5a3b8f341fb35bb310379d80931afab28ab363a540e17ecb34c276ca113602371fc0d8cfa63ae6bb3b1d32da204e96ad6d21f95da154c36dedb883c7d2b97f105bea324cbb5e79b183b9c01e473d3ae07e1529771b5dbe45e5d0aca02a3538ee6e1883ff001eec76ac99e88b8c9ad91a4e9a3ef4b740f4dae394fae476a82e7515183b9239001e74b1ff000fb6e239f9bbf7aa6facb924be327e63d075ff006556ae31fe58a22525f6a472a0d1b6942d38f15d163888f1498a762900a0570029c05285a5c50171314a052814a050171314a05382d28140c4db4a053a8a004c52ad14f8d726819a16f1f02ae22e2a181300559514d0c555a900a4514f51400e514f514d14e14c63d453d45356a5028015452e29d484d00369ca6a22d4e56a422506941a629a70a02e3c534d2e698cd8a6321900aaef8a9657aaaf25201aca2a178e9e64a7668114fcb3daa45848ed4e6e2a68ea064421f6a6bc27d2ae8534d6a69019c63f6a047568afb520414808445514f17f4abca83d2992c791d3d28608a261cf6aa52c440ed5b620f6aceb98481fe7d690328ed005230e9d2acb45851514a98c502236a69a730229314086914f5a6914f140086992e69e4531c534264682a44eb4d514e5eb43121e688e82284a4503d0691e9dda802396887ad1251175a621ed9a10d2b522d2182d388a68e0d38d00318629efd29ac29cdd280422d28a16968191cb40cd2b8a14500394d2d340c53d4526030034006a445a36d21a2319cd3b9a763da97f0a43440fd4538d0e05388140d02d379a91714800a45084d34d2923d690b0a042ad308a915853188140c4ce052e72298ec314a8e31400629cc0526e14a4e7d6900800a69029738a616a00b1818ab3a7ac4776f03a1dbc5515738a58e4607838fe1a680d9d6af9a555f3242d8cedc93f2eec7f85619515249231fbc49a8493eb4bd4b6fb202a077a7a81509269ea4d2123634bd5122044b12b8382b9fe1abefacdbb100442307e4c8fe1ae6918d4a73de91699dc5b3e9a53171296eed86fef53bfb274d6230aca98cef27865ae0da561f778ab4bad5c05dbbce3f879fbb4efe43b9dcc7636980b1eed83fd5963cfd2b37520718b7650a72bd79ac8d3f5b97043b76f909fef714b15d4b9f9ca91f7bad265a616b68c879da1b194c9a8e4d1907581037fcb463fc6d576e661b7302a97e3bff785456fad5d22e2e20471caee3d7e6a561dcc196d5533b09c73c0e9502965ff008f66746ff649ad49edf07d3a11feed5736f8fba39a94431c3c45a82ae1e1b371dcb4632ffef377356f4dbc13ff00c7edb6988a3efb3654affb98cd40f1c25461d8bf752385aa8ca3fe599cfb536fba1a66dde4ba52e05b5f4e49f948d9955ff811c13567cf6e3ca96c2403e5daca47fdf58fe95cc153dfa7fe8353f95100312ca4f3e61c72bec9ce31422ae7402ea40c37dbd995e3262e42ff00df66ba5f0ba798c5ef6fa3214f936cb80156461efd4a2fa573ba54ba722e5a032b0eb0a725bd3e53dfe957df4dfb4856de2db19db1c89c7d76e7af14d09bf32e5f6af1099f1a7caee330a3443f87fd8f97f935538ef2ded47eef46b38d8e3e59e424fca303743c9ffc76b62dec91140f3126eef9e8dfef54d1da40bfeaf4e897d59547fe854c0e623f19deb4a16ead4464e4c313a902555ef16f503f9558d56ea29d40790c2d830bc617055bd51b91f8d745fd956eff00ebacad88f52bff00d6a89bc2da71e96912fb2923ff001d06958699e7b7c5606db6162ce4a852c58b0965cf062d9c1a9edbc3ccca0de5fc4921e5e328dfbbf6edd3e95dbaf852c57fd5a3a8fb8a158fcab9cfaff7b9ab2ba4e3ee5edf81d87986aeefa19b8aea8f22000a6134ea315d2708d029714e02942d021a052e29fb0fa53963a0062ad3b6d3c2e2822900d22929db68db4c04c514ec52628001566d63c9a81549ad2b387140d16a34c54ca29aab52015490ee2a8a7af14c1c505b140c7eea729a8775491d260584152034d514b4582e389a4634669a6905c6d2ad069c05002ad4838a681416c501714b544f2535e6f7a88be681914f262a9bcb56671545862930240e6a64355945598c50808dfad5984715015e6adc6b8148687f4a85daa56a88a500474a052eca72a503b8801a76ca705c75a696c5048bc0aa378bf2f4ab25cd453a7ca68b08acf07c838a82e61c6de2b44f0a3f0aad3ae48a2c1733a68f07a52245d78ab971165c629e96c42be452b0199b69c062a68e2247fe3b44b1107a520216a8c8a98ad34a1f4a10885452e29ca28db4c42e285a514aa290d0c6a3b529a050808d85118c1a711428c1a603c8a6a8a79a4148634f069e298d4f5a0069a71a69a776a0045a7e2980d3c50031c508295a84a0008a5141a4140c72b60d0a6999e6954d2b021e4d19a434b8a0631e83438a08a0001a05001a5514ac0308a42052d2114ec028502875a70149254957226518a4418a791c5306453b08780294d3569c5691486820d34e29ca290a8a402ae314829caa29a168183534d3d969a56801a714e1814d2b4b8a2c3439768ef523b0ec6a0229ea38a968698e033d69a531d0d1923bd049a431c8587435279ec3f88d31734c39a02e3cddc80f0c69e6fa5fef1a84803b83480503bf9921be727e7c9fe1ab0b74a7daa932d0ab49a1dcd0255ba5443683d2a247229c641e94ac3b81403a52332f7a733544707ad16193d94c378dc858642e07f1576075e8910f9ba3cf2363e47c636ffbcc0f4ff80d70cac54f071fdd22ae0d72fc711decaabf7485c0ddfef60534099d047e2591466cad848dc79848e6dbdb9e33efb7e95247e22921556bdfb410c4a966e444ca7a7bfcbcd72d0decd19cc52b2b77607ef7fbdeb576ef5692e5155d6350b92aaa38691ba96f77a6bcfe433b2835695866d9a0957fbe08c7afb5417ba95c391b27fb3f1b5c2b1fdeb67aeeae557576440b1fcbea54f3ff007d5568b5775ff8f8df20eaa49e63dd45c0efecf5568d40b80f23ff00781e597b7bd68add8ff9f79ff23fe15e776faa27980db5f4d1b11e5ab3f48ff9d7471de5ce06fb881dbf8df2393f80a607038a785a554a9425751e71084a95529c169d8a0066da76da785a5c500336d26da902d005004657146da730a08a04466902d2815661b727ad03161b7f515a31263a524710152a8aa480728a70a41485a980a5a9a5a909a4515250e15346715174a0c98a00d08cfa53aab4538e2acaf3d2985c314da93155de6028025c8a55e3ad5459c93d38a99ee00a48091e502ab4b73ef5566bb27a556329340c9cdc9cd4b1cb9aa06a585f14848b521aaaeb8a7f9b523c7c52b0ee40ab56635c546ab5614628431aa953a8a628a9545301a4526cf6a900a705140ae45e5d0571d6a625475aa33dd81f7680b8b2cca3a1a84484d572c49e6a742a28b0ae4aa9eb4c99801419fd2abcae4d0262bcd4c53eb4c39a729a010edb96156ca800fbd558cf35637668194e08b0289a2ab01702875a56199cb11c74ab2966d8395e833522c5edfecd6efd9402c3681951c52b08e336e2ad5bdb16562074c1fd69cf6e413c56b69d6c0249b973900ad2480e77a52a8a90c54b14649e0500424520a90c673d29a450034a9a6f4ab3e51c74a808a007914d5a919714c02900c614e5a08a7aa53023229d8e29f2c78c526290c888a90526da9361068022340e29db4d1b6801075a4e869d8c5348a0061a72d045281400e34b9c50690d0310d028a728a004c5380e28c53b1401030c500548f4d5140028a4614f028714ac088a9bb6a4db415a6318a29e4508b4e2295808945056a45c8e94a7e948111aad205a95452018a43b8c2b48c95315f6a695a07720294a16a52949b290ee47b0d014d4cab8a5d940cae01ef4edb5218e936d2b008a29847b54c063b5040a2c3b90723b52e71daa53c76a4c0a409911614e5dbf4a714142a8a2c3b89b698571dea5c1a4191ef4ac34c7903029be5fa1a9266e2a10e68b761dc464f7a68523bd3c9a4238e2804c6ae698b3b2e76e29ebde99b7e9415718b331ea055b108d99dcbfdd23fbb555a323a62852e3b647d6804c16400f183deb41e69a5398a1931d06d1e9e959c40feed3d2e5d47ca38edc74a0772cc6b5304a235c629c4e2bacf3c66da5c528a0d021452814c4f7a9050018a451431c5229a00471cd26d27a529ad2b2d39994123beda69010c1a71fe3181d6ac792aa7e5abe61207038aa6c6aac24c0538714c14ecd050a0d349a7629a4521a014e5e3ad2120544f2d20b8f67a8e527b54466a7c6f9eb405c16723d6b5b4f977f5ac77c76abda4c80373d39fe54219a6462a848849ef8abfbc1e954e770b9a044190bdeabbcc4f7a6c9366a3ce2818873de929d48690099a456c520a555a00519ad28f9154116adc4f83ed4090a1706a414aeb8a4140c7a8a9145354549902800a6b480523c80553967f7a0074b313d0d5629eb4e56a19a811105a7ed348bc54aa680222b8a8d854f5132d00464528a08a453cd022644a9505229e2915b14143e4151e69ccd4ca07725b64dcc315b9286ce727a05358da7c815b2dd2b61ee971da98998c6d72c78abdfeaf3b47046c3491b2e6a49f693c114ac0601b7c678a2c62cb74ad19e102aadb8dac7d29b4488f69863c55030ff003adb765238aa7e503fce9388ee4621e2a8c91e08ad954154a7830c31d2892ec08af3478a6450e4d5ebc8fa629f6f6d8ea3d6a6c32849061453e1809c55cbb870831dbad1668368cd1602bdedbe00c540b01c74ad2bc4c8e3da9e96e30286bb023323809eddc2d4c6dfe7391eb56e28707f1cd48d165b342881992c042f4ee6a28d2b5ae20050e3dcd55b5838e4516028b26074a604abf3c185e94c82df3d69580a6569ce98356a4b7c11c7a5493db8cf4e28b0143149573ecc703f1aac10d218cc528a91e220f4a8c8c5002ad389e29b1f5a57e2802339a003484d193e940120a5614c52dea29483fde340080549f676db962aa3eeaee3cbb7fb0bdea1f2c772c7f1a9449c61d14ff718f58e81af31aa29c40a414a6810d514bb452ad28a0771bb682b8a71a46a5601314d0b4e5a41405c5229a69e69a452b05c4a728e38a6914464fe1458a4c08a08c529cd2352b05c01a168c53158834582e3cad057d295a901348ab8c228c63a1a713eb48580a02e20fad25206a01a2c171cf9c73510a95d971c53148a2c3b884d14a4518a2c1708c0a6d397834c23d28b05c08a695f4a5cd2f14ac3b916314607a9a7607ad0528b05cbe4e282734c2d46eae939078a0d26ee28cd00380c53969a29cb400927142535cd2af4a007c11973803af15dd69fa4e100750075ae474755f346fe8393f9575773adaa8f95bf2ab40c8f5311c6b84233ed5ce9356e7bb79db8c9a65cda326378c669b04434669a4d2960290c950d324603ad36392a2b926a4064b71e950b39f5a61cd2e0d300c9a9236c5478a7a8a005dfeb53dbcbb4715588ab16b097e16803634d0ce3a71506a2841ef5b3a65a845e4543a95a29c62914730c71480d4d3db91daa255a0571738a6e6948a40280b8aa29d4d0d8a37516112838147987b1a899e909a2c06a6ec814e5155e27e054c1f14144c180a8de5a88cb514b27bd02b849719e9558bf3cd30b53734857241262977d440d3b1401267d2977e298a692802656a6934c2d8a42d400e34d51cd3969635c9e2801f9a6ab52b0c75a8e3340c981a696a5278a647c91405c9a2522acc8e47e942a0c74a74ebd3e829a0b11a391d297cc6cf26855a318a0104a49155b6e2ad75a8cad01618a3342a629ca08a750160534c7404d293cd3d050162174cf5a99400294c4474a4da45082c36501854712e00a79e29d100680b0d2b91cd48a314483146ea0630f069e0fad46e7914a4e28024c0239a863402a45245295f4a0082e538a6c71ed02a775cd053a52023787247e14acb9a9b15147cd340288801d3d6ab259fb55e5427a55a86d801f3f149a1a464cf6c011c55496df03a56b5ce32302a09501078a56119b6f0f238e296e62c31c568436f8c5367832c7d319a56031f1428a97ca34e8a0247038a91fa1128a502a6f21876a8f6d02f51845152b4647f3a605a0626294d0686e28108bc53a9a053cd002629a453c0a6d03182814a692810e14502822818d228518a5340a005c504538d213400c22a3db529a61a00902d2100539298f4ac310ad34ae2a514c345808f6d215352e29b45808f18a4191d2a4614d028b05c4c1a5db4e143520b916d349c8a9282298ee43834bb48eb522a8a7151482e5720d273e953ed1e94bb05160b8f3499a730c534d6c623c529a4414a4d00385069451d6801b4f4a635489c75a009ade428495fa53dee18f526aba9a766a866cf87c2b4a379e393cd5df104e9c6c606b0ac6ecc4d95ebcad17372cff0078e7bd17258a2514c796a1dc452d051346d563cb0c3aff00b355178a9e19bb7a914d010bc78a454a92e460f151ab52102a7ad1c52b363a547ba900a6ba4d034f1b7738f5db593a6e9fe71f6aec2185624c28c629a434444e07151152e47a539ce7a529b98e2fbc466914636b10aa3605641e2adea77be6b923a71544b53247134ccd2134dcd0004d28a41413400134a29053d07ad00598ce00a569bd292342c091d0726aa9734013893de9924951073499a4805a31452134c054a7134c538a1da801e1850580a881a326908716a70a8835395a90d1286c53ade500f35096a453e940162571daa146c5216a45a009b7d496ab923f3a8541ab56ab8340d17bcb20539d32a3fef9a90e314d0c36d032baf14869e56a326801d175a7bc58151a706ad4a78140d159e3c74a88d5b38c5552b400f68b18a708f1523630291987140587aa6698e800a922603ad4772de940ec5723269233834f8fde9a179a0561d29c91f9d309a53d691680b092d29e94d929d40ec387f853f8069a011415a2e3b0f74c5332054ce3238aaf8e695c6d0e2dcd4718a71eb49d298ac5db3032334ebbb9c709d2ab4321038a89d89eb4876158134be51c7b53a22075a955976fe34ee2b0d8e300535e3ffe26832814f66e295c7ca508ad38e47aad59b5b350bc8f514e2c00a9d4e08f4a9294487ec2bcf1ef5966d8e3a7aff3ae80b62a8ec5f4e2903890b58838c0ec7354e2b427763b56d2b002a1b58865bd0934072182e8463231449c5686a3000463a552963391ef8a0871f222cd2935662b07665001e6a7974a6531ee53f367ff001d722a5c97565469be917d8ad0c458702a1c575b6be1f28cc08c8ced5c8fef0ae7afec591c80b8a509ae8cba9424be25e4679a4a52692b44738e141a178a09a00434bd2933484d00484d34d2d21348614c229f4c3400e538a0d266909a0070a6934138a4a005340a09a01a0043498a73525000052903d285a0d00308a4352114c2280b8c1c529a314bb680b8d269e08a6ed346290225714dc548f8a68ad4cc70e29a68068a007e6937528a6534004d3d4d4629e28024534669a0d28a007038a706a616a40d400fa5ce29a2909a00955b34f87861f51502b62a556a007dcc9927f1a8371a91c67a546571400a1a969b40a0936b45d4162ea2ba679f3d3a57136684b0c57671c44ad51716509efd53ee91d6b1eeef59d8fcdc67d6a2bc95b71c9ee6aab494bd00573509929cd25458a00787a75305283400fe29b4a4fa53734842d3b762980d02802fdb4c15587afcb55ca669aad8a7c6c298c89571d690d48d519a0033494500d0804ce2909a0d21a000548a05305383629301a531428229c4d2818a40262802948a9238f3400cd87d2a48e13e95705b28c53480298d11470d4f10c1a5500629d8c52193ac94c6722a356c1a5739a0050fc5461b9a0f14c27140130353b3702aae69e1f8e681a1fba908c53734e7a063b771fad30f340a55a00747ef4b28a5031484d20430ae3a52eda466a035032220d3d5318cd21a7b1e940882e38a7a8a8e7e4d4e838a572921cbd29093cd394102908f6a45a1e8deb513f1492381fc4a3f1a5f32361c4b1e7f846465a905bc8855e9c9ce6944581cd10f4a64a155b02984d3c2e05445a9a287938a37301c50a7d6a6862dfc4632693f314576190dbbb9f94122ae2d8498e41fcab7f47d29553322804d6c1d3a30bf281eb5c35311fcbe87a94709a7bdea705259c8318048ad3fece271c1ade4d35481b9475feb52c76aa3191dcd672c476358613b9ce4f60c3b7e954934e727a1fcabb49ec971c557b7b55ce08f7a4b1053c2239e4d25cf63f954f1e86c07e7daba54b651daac089075031594b12fa1ac708ba9c46aba210a09ed8ac236a4b2719e421aeb75ed4508223e4f155edb48f9017ea195d7f3ae98d5d3dff44724e82bfeed79c895749559632a800c73566e74956316147ca4ff00e879ad4308e323a7dda7215c8ddee56bcf9547dfc8f5634976f3036cb93c0ae6351d3c35c01b783926bab57e6aa35a0326e3dbe5a9a751aebe487569a7ba5dcf34d52c0c0e4118aa0dc5747e2e03cee9d86dae7ce2bdca32d15fd59f318aa6936a3f21f1c0581201c01bdbfddcd3e7b72aaa7b1cedff0080d741a0e98af0ca7009da553fdeebfd29faae918b68ca2e3037bffc0ab37595ede7ca6b1c2bb5d76e65f79c9e714dcd399714d515d270589c230009071f754d459ae8af74c2b6d19da0124e4ffb2c6b9c3c567095f6f436ab4dadfb730a0d0734e86366fba3356e4b2222c91df6b5537dfd088c1f45e65106909a40682699219a5cd34d19a043c9a4cd3726973400e3cd069aa682d40c729a09a6e682d400e069bd6903526ea00534a0d3722973400ea6934a0d21a04484d19a43456840ab4a690714668017341a4cd14000a7629053e980829694f148280105094f2b814c5e2801e692826901a005a7838a68a09a009e139eb49262991b6282deb4c61401483ad5db3b62e791c50846968f63ddc71d6b5ee75548feefe86a84976b0afc9c573f7178ce7926985fb04d317627ea6a12681462900c269c2908a0d201c690d2034a6801f9a43480d213400138a506984d2a9cd003c3539588a8e941c5003f7519a6138a406900e34ec53334ecd0035a9297140a0618a053b14f8e3cf5a06848d3d69ec98a728c5319a80109e6a48980a84d3e334022e99ea395f02a10d4d95a98cb114d9c549e6d5147c54f1bd2027269c18d445e9e8c281d842f431148eb8a6e680b123702937d2b918a84939a02c59434f638a8a3a93ad03101e6a402811814872295c7624cd52b8bab843fbab5f314f3e67f75bfdda9cbe29e1e93f229149aeae78c59e7d8f14d59eeff00e7d231f56ad0639a85b834ade6c77feea212d75ff3ce11ff0002ff00eb50a2ece30d0febfe15316a744d8c6ea4d79b1a7e48ad243719f9a603e829e96d2f7b96c77ebfe353cb28ed512ce41a12f51dfd053663f8a473ec49f9bf5a8cda20eaa2a56b8e698661dc516f20bbee4896b0f78a3ffbe455cb5b68b9d9120eeb802aa47b8f406b7b47b12cdf367a544e496e694a0ded7ec63dec2c806411fc344762e172411deb7759b0076e077e6a0d46448970303db3ed59c6a7f29b4a85afcdf239e69b03f5a895b34c24e2910e05749c44824c56bf87103c83773d7f95636d24715d4f8734e642acdd3ef0ff00810ac3132d35f4474e0e0db565e6ce8546d185e95604ac073d3a530014f94003f2af11b3e912ec3f2bb78f5a809c1fd69d1e40e6976838a571a0793a53634c3f03da9d2afa7b54d1e3349b1d87c800ce7815957faaac6bc9ff0066acea57aa8a6b8c93cdb87c13c6735ad1a77f8be6635aa5be15af41b651b4ee4b938041e95d346e3a76e2a969da7f939e0738ab8b1907f5abad3ede888a10b7c5eb234558115093cf1eeb488f8069216e39ae7ff863aae3d2403ad3f70c7159ef363e9fc35651f8e693424ce53c63667e5651db6b9ae62d61f30e07a66bbed5a259558100e0155fcab8ff000fdb16970e3fd9c57a987a9a6bd0f1b194bde56eba33a7f0921f24861d72b5b17b621e02a07f0945ff00808a8748b510ae3a0c935a25c138e31835e7d496ba7aa3d4a10b2b4bb72b3c92e10a9c114c8537118f50bfad696b3685246c0c0ced5aa9608778e3b83fad7b6a7a69ea7cdce9eb67dec77f7f643ec8038e5704d79e5d4214feb5ea5a92e622146462bce352b66392a381853f957160e7dfd4f4b31a7b5974b16fc3362b2970e01f9495ff007b35b9abe8ca90bec1c0c3afe5557c1f6df2961df29fcaba4d550189b77a734ab5477d19585a4b97de4ba9e5a10fa546ea456a5a5bab13bba7dda82eac59188c74e7fe035dea48f1e54df6f228d15208891d38f5ab096ca509ee2adbff00233517fa95334d2694d26299038521352c3016238e0fcb4fb8b4642430e94015e918d29e29a6801bba90934b8a314002934b9a4a51400bba8cd34d19a432c1a0504d19ad0803452668a042d2ad20a55a00753a9a294d0004d119a434919a0099cd454b9a053016928514b400a2834829d8a00514e2871c8e28896acca8368a632089092315b31a2c43e6e2a8d9c23396e9525edd83f74f1f7681105d5d33f7e2aa05c75a93343e052191a9a534d14a6980b9a4a414a78a0031453a9a68010d005380a43c50034d028268148438506806834800d1b695454a57140c840a7814aa281400e5514ab1d094f5340c6f978a910628340340c0f150e2a52691168019b28008ab0aa290c7e9405880e691aa631d44abeb400c55c54c9c534ae2a445a18d099a0b9069e5699229f4a432767c8a8b34bda9878a570240f48a4645314d2ad032ca3014d59714c406874228289ccdef4865155831a0362802c86a7ab0aaaaf8a0c8690cb2b2535daa146a716cd02b0f56145c3607150a922891a81a14371cd00d31cf4c5119e6802ca459233532d91661b471c55bd36d0bb0ddd39ae86cf4d5ec3d2b9aad548eda1876f72a59e98bb80c56bc76eb1b9c7a53a0b7c38c74cd25dcd8948ec177ff00c0b35e7ca6df53d68534ba15ee543e7be080bfef62b8dd5af0bb7538fbb5d6c172a549de3ef75ff7457093c9927ea7f9d75e1577f447063e5a2b75212fe94e19e2a7b3d39e53f274fa56e41e15918720fe55e81e4dcc8b4859ce1064d7a05a40111460740bfa561695e1f78e4f9d78fe1e2ba2208c646315e4e3a4f6b799ee659156bdfc8731c6714c92e011cf1d2ab4b31cf5a89b2c38f6ae148f4afd8d77da07150bc98031ebb6ab4d3b01c9a8da63c7e74922ae69120f4a14e2ab5ac85b19e9cd4e4fa74a434636b858903b121314b6f60a87851562ed0391ec41ff00be69c241935aa969a7ccc7975d7e449b052ac633d3d69824c53966c1acec69702b80714c5e17f3ab4a01cd44ebf2d006690722ac1c8e94f1054f0db163d2b44bb10df7294766cfbb033d16b1ed7476827e570300afe75d9dac0173903b556bfb65de0e076ada107d3d0e6a935d7a6a8ab202bda85c8a9eed071d3b544702ae38764bc4a394f135980a48f515068fa4e5d4b28c603d741ab5a895318cf4a7d9c2a806001c05aef54f4d3d0f2e5575bb5ea6932065c1f4db5c425aef32ab0ff77f2aecc4e3d4563c366048c71c139ae5a545afcd1df5aba76fb9917856031c7f38c1c935a3abc9f2363fdda7da4010614607345cdb175efdab9e6b5d7d4e9a4f4f77d0e2f4fb7621b033c8dbf9d696b96aa8d92064a8cf1fc5d2b5b4cd0f6e772f539fd6a0f145a121881c851fceb652d74f4399d3d35f5390b5894c4dc0c8e56a0463e59c74a9a02550e7a1068b48095e41c576a479527dbb58cb5069ca84d6b5be8e48c9c7427a556b1b42e48ad4e6b1b3a36941d54edce1ab435dd1fe62638f8239c7d2b5b42b20918c8f7ad1b9b5571f30f55aa45451e46f19cf4a478c8eb5ab7765b24704700fcb55af22c01ff7cd225a338e28e28228028244340a715a4c5200a4c52d0681931a434fc526dad08100a7014aa2940a043453f18a40294d000a2834f02931400c6a4514add69ca2801314a0668229c9400631462826945002014a2909a09a009636c548ac4d5646abf670e48ddd3ad5263269fe4518e3b9ace76357af5c13c7fbb59e693000d8a52d4d345201452d3453d45003714353b14c2280b0a0d2934806283405814d35cd0a714d340080d3b3498a701400669693146680241529350669e0d03402814d069d4021e0d2834c069eaa4d031e809e80d4a6dd801f2b63e95a1a5e9264ea1c5744da1aed1c1eddea25235840e25d187504548b030ea87d6b7af744f9863776fe7562e347009e0f002d44aaa368507d0e6955bd0d4c216f435aaba672bc1abe34cc7eb52eb22e3867d4e6dad9bb0aaad1b29e4735d943a6ee1c8cd73baa599497180380688554f6155c3b5f9147cb27a0cd5c5b161fc27352dad88761f29c574ffd949b4640ed44e7d82951efe872ab64ddc0a27d3d97a8f7aebbfb2621d02d4373a7a93c0a5099a54a4975f43917b6603eef1503c2c3a8aebe4d2d4af4a86ef475c7ca2b44ff00c8e7943b1ca229a1508ad8b7d1ce7e61534ba2b0fbab9ab68c5190b814f3822ac9d2e5ec86a35b494754351736e57d8a3b69d247e9532db313f76b462d2d9a9392eac234dfd9464088d30a1ad86d3194ff00f5aa1160c4e314b9d772bd9bec66ae7b034abb876addb3d0cb37cc38ad3ff84663c8ca8feef359cab2ea6b0c349ec8e34b5359eb6b51f0f491b1f2d411d57158e2d252785ad2325d198ce0d7c51634b669f0a9278a536d20eab5a1a5d831e5c7144e4bb8e9d36dec6fd940142f15ad6b2019cd50c600c76ab30e702bc99b3e829aec5d8a51c7d6b327b8cc921cf001453f854de76debf5ac696e82a3963c9cd14e3fe41525fe6622eb0e130addcbd504859cfc833de9b6f0b39c2026ba5d0749c49fbf5e00f97fdeaf62115d17a9f39566fed3f24745a0e8291a0dea0b1e4d6fc76c80702a28a55006de9530947ad68cca287476e808214532eed158e578a0dc28ef41b95ee6b2a9493f89791d14aab5f03f3306eec241f7699061506ffc6b6669108e6b2678b23e4af3ead0fe55e67ad4310adefbf2192baba92a72064e45436f2efe873d3f953a6430c2dbbae0eda874b8caa7cde809fcab95c7f3e5476465b5bb733342cdc0ebdb35334988d89eb826a859c808383dcad4d2ca0a11ea36d64d7fc1354ffe010da3b3202d9cf5e69554d240eaaa067fd9ab0bb706a9fa0a3e642f918c1a7b2914dea463b55c4b724f4e29c53e884e4bed30859b1ff8ed0e0e3a5598edc8eb43003b56b4e83ec61531315d515d46074f4ab716d53c8cd43b4fa53d41ef5df470e96fe87975f14dfc212ccc3ee7155a5959bef9a9e41551ebad4574471b9bead892393d6a266a71a8c8aab12318fad038a314a1691425205a7eca554a408226c75ab9105239aac129ea08ef5854a699d34ab34695bc6a3a63359bab5a87dc3d46da991d87f1523b67ef1cd671a26b2afe479f6a1a734518cafaae7f1ab7a2e9dbd0719fe2addd634f12a6107bad268d69e4a0dc2ba52ec70b1f6fa6204e54775ae6f4db2c4cc08e3256bb22e3b564c165b64638ea41a770e5ec6c5b2aa018e95296155964c5065f7a2e351399d7ed0066207501ab16f60254607bd751ada82bcffbb5462b2dea38a2e2944e29c629c236c71d2a7d42d9a36f98607f0d598a01e5f2b418d8a1e59c5439ad2588639154658f078a01a23a5cd0a29761a092d0a6d3ba53056840fc52a714d2694f140094e5a65381a064829858501a9a681099e6a4a8d453c834020cd00d2629568017349bb141e29050021a506948a50b400f823cd682c81071ff0001aad6eb8a59cd30236949ea6a3a41c53a90d028a69a781498a0068a9a34a8aa656e38a00674a6819a79a402818d6a43521a8cd0818c3452d0aa4f404d04854b040ce7e41522594871fbb6aeaf45d115799147e541491cb35a30eb503478aea352d34a9f9578ac09a1607a509858abb6a58d29c23a55e28b8585582831e3a8a955a95d73d295c762158c56d685a379e727a0e3159b1dbb31e109aeefc3962224f9860939351525d8da8c35d517ecb4748c7ca8055a3683fbb5690afad2975fef571f333d0515d0cd9b4f524656a196d01cd68cb328ef551a61eb438dc7095bf53292d006c9e40cf144aea07e05ab45625c7e759b7f1301f20cff000d72bfef7a1df16adee96f4d552a323deb95f1029f3ced1d805fcaba0b795e351b47a7154ef74ff325058646097ff7ab4c36ff00818e33e1fc45d2ecb00171ce2b603fb5471aa80368c0a757a0e2baa3ca527d18f693d2a22beb4fa314e2bb226527d591eca5318f4a785a50b549137204b751fc22ac2dba9eaa29556ac22d599b289b15fee8fcaabff6429e838ad768e9638eb274cda357b9811e82a0f20fad5e8ac42f6ad32807714d205615293e87551aebaaf533dec54f6aacf62a181db5aec00e95014ce38af3e49adefd8f520e2f6b771d04081b85156580e38e86a25e0d4edd2b07e66e8a3770a39395078dbd2b121d2143f2bfa5740e8455795306b484dad991529a7ba306eb4c5dc70bc54f0c08800c63357a5506a95d060531fde09ff7d569ccdeeccb912d916a58f0a7f0a7c640c7fdf3562e6218fca9b0419ebdab1b9bd8cabb98806b9eba777384071ed5d06ad6ec17e4e72714ba6692bff2d064fb8ae9a724bf4392b41bd2fe6cccf0d68e5a43bd4e00ea7fbd5d5bdaac672800fe1a9b4cb25881e003cf6a5bde2bd6879fccf025e5e88aa2f08a79bfc0eb5992498ef51194fad581a6d7e7d6987503eb59a64a42c690cbc6f98ff15490cd9fbd59a09153c52628b7715fb1a17aaae98ed54dd5907c838c6dfd2a7493353145c735cd56827b7a9d94312d6ffe133b4d86454f9c7727f5a976b7a1abe55428db8c5465d72702bc69defaa3dea76b68ccc92370c3038ad18626229a5410322af46540e2b7a14efbaf539f1156cb47e8320b300e4d682201d38aaab2814ff3f3debd4a7452d91e2d5af27bbf32c1602a02cb513cf8ef55cdc8f5adac617ee5b3228ef4d6987ad507baf7a61b91eb4ec172f9987ad44d83502ca3d68330f5a2c171e4530ad0b2afad23ce074a0a10ad3916a2f38528980a56027650299bc0a85a6a61726a58d164ca293cfaa6f2914a18d22cb7f68a6b4f55b27d2932680266933d79a6ab01d3a547934b93e948689375266999a327d293631e4d206a6e4fa519a91a2aea3197538a75a42028cd4aeb91cd3906280b1c8f8a6cc29056a7b4b2df07cbf8ff00bd5a7ade9fe701819c60d4da6597968430c83cd3b91ca72f2c0541c835952af4aeab57b328adb4715cfc96adb33b78a69913894624c918ff0076b5e2d3188e9fa567d828deb9f515dfa58c607414db15389e7e4d3714fdb46dad0c469a70a02d380c5301b8a314ea4a4026290d3a9314c56041521a628a79a43434d0052d2e298ac348a36d2d05a810014b429a55e7a5022cc0318cf4a64c7e6f6ab12a840b8e2aa4a7278a60863506939ef4b9a43245c5262914d2e680184f34e06a314e1400f069c0547834edd8a06239c5464d2b1a4a04c1413d2b7b4bd059882e0e304d53d1b4d32b0c8e01e6bba891500da00fe1e29365c23dc853498863e4e98abebb57eee00a80cdef4c329f5a9b1adc5bb895c76ac1b9d257b2fe46b7b3eb486353d455244b4715359b2f4523eb54db20d7732d8447ff00d55953e88a4fca148a09b1ceab608abf676c646000f7e29eda410dc21fc2b7b4bd304672476db52525dc5b1d2554fce33f5adf85d57a702a99900e9519bac77a971358c8d8fb501dea192f00fe2aca3786a16baa954cb754d092f0ff007aa3fb47bd50331a16435a2899391ab0dce3a9e2a56557f7aca594d4f1dd15ac2ad1bec74d0c435b97e5814019183c55791973c7fbb50cd785b1d875a81a63eb450a36f8878aaf7f84b5e67bd3965aa22434f592ba6c717317964a7839aa68f565587ad160b932d380a6ae29c6451de9d84d8a38a7ac805557b81da98d723d6988b86e17b914dfb528ef59b25c1ec6abbdd1f5a416359ef97d699f6f03bd639b83eb4c339f5a572b94da6d417d4546ba828ef58c676f5a6f9a7d6b39457546b4e6d6cce81afd4f43520d454ff15736676f5a05c30e86b9de1d743ad62a5d4e9d6e90f7a25da7a1ae6d6ee41d1aa75d4a4eed58cf0bfcacde18c5f6d334da222aabc7bb1ec43ffdf34eb7d454fdfc55b58947415cb522d7c4bd0eca734fe17ea36edf00546b79b47007fb3525e2640c553d9d3351146adf6269555d577007906a5b270188e3b55479b6e29239f0c483c1aebc2d2bfc48e2c656b7c3beccdf59401e959b7d723b1a85b50c7735426b92d5eb1e08d77a84bd216a6e282872b54cb50a8c5481f14809768a178a8fcda039a605b8e4c54a6e4d510e694b9a045d86e79f9ba511b8c9cf4aa21c8a7090fad72d4a099db4712d2b6be45f69d7b509707d6a887a707c56d4e097c28e7ab55bf899a4b31a72c959eb718a53778ef5a191627988ef545a73eb4493e7bd572d486912198d2098d4669a5947de603bb64ff0d228b2b39a0ccdeb549efe05eb329c72554f350c7ac2bffa8b7918ff000a9233ff00025ed49bf3292f234fcd3eb4798deb5427d48c7f7ed9f3d54e461bfe042a8cbe246c7ee225ddfde63c2d4f3798f97c8e8158fad3b71ae41fc457018664c81f2b85e8ff009538f88250731cadfde20938ff008052e61f2f9a3adcd266b951e21bb72040fb4f562c063deb6575658f1f6d961e7ee943c5171d8d223d68aa326b56c9f79c9fa0a55d6ecc8ff5f8fe1e41cd170f917b14015972f88a003fd1ff0079f8fdda643ad4afd0458eaa3345c7635f150cb77127df2467a71f7ab26eafee180f3731af5dc9c7cd59d713390365c838f53cc6dde819d22ea56c48027504f2a0ff0015595c1fba411ea2b93791993fd5a310412f56ad75960e37bf9698e14018793fdae78fad4b03a2c518aa767acc329c06556fbaa09fbffee55ea4037146283484d3002a0f5a55e3a530b51be8b015b52837a1c0acc3a7030f4ed9adb620f5a8d90631dbeed160382b542ae33ebfd6bbb5cb0f94d72f3d8ec9060719ae96df2aa29b3381c366838a8565a716ad0c07034a6a256a7e680168a4cd28a007629314b9c530b5342141c53b3506ea914e680154d38b5301a09a007669a0d069a299249baa582a006a68462802cdd499c5418a52d9a09c526c690d2b4cdb52134dcd17180a0d19a0d171098a0f141a42681926e14847a547ba9dba801314b8a6938ab76166d2b0c0e3bd3158eaf45b411c632393f3b7fc0ab40bd46800031d385a52691a8bba9c1aa3cd26ea62275929c24aae1a8dd4580b3bc77a6909dc543be90c9ef40c7882306a53281d2aa994d35a4340133cd50339a42d4da40049a066976d0050161053851494058706c53b7d32968b85876fa375368a2e161e0d394d459a706a2e162757c54cb2555534f0d8a77158b7e7e3bd44f39f5aae64269a5a9390d4494ca7d698653eb4c26984d45cd144567a889a7134c34ae55842690d04d349a05610d2504d2669885a514d2d49ba8132414a2a30d4e0d4c448bc55f8b513c06e9eb59a1a9e2a6704fe245d3a8d7c0fd4d87bc523ad56328aa6b9a7ae6b15875d0e9fadbea89256269318a7aa53c455d3085be1470d5a97f899558b54654d5e682986dfdaaec45ca7b68c55936e7d293cac76a3e4172b9a69cd5831fb5208b3da8b05c8914d4cb19f4a9638b153ac629d82e532a45010d5968fd290a01f78851dc93c2d1615c8765348c54371acd9463e7ba8cffb28727f4aa31f89ed18fdc994777c70bed52daee8a517fcacd7414e75ac0b9f1491c59403fdf7ff00e37510f17ca00df6d193ff002d181fbcbfec2f6a9e75dca507d91bc49a61dde94b6fa8db4ab98e455c0df22b1198bfdeff001ac9bdf13c438b4c13dd981c7fc0169b92ee38c5f6355d828cb90a3ab13fc35933f88141c41116fee9355ecae679b26f8b951cc7b48c7994e923f2c7ddc9fbf195c7cab9e959b976348c5752cc3f6b90e66bb5b641f298c8196ff81545770423917b7331e0bae46197b741559e491d417e830a80f27e5e32d572d6544cfeed70404c30fbcddcd49697633e48883c2b4638e141ced6fef355fb5b808a046c233c2b8c0cc9efbbf2a6a06e4c2491f71558ff000b63f8bf3a90aae3261691bf8f24fcab8ea8c3bfb74a4325682595797dac7ee96e8b1fa7fdf58ac636acad862a149da49e8ad9c1ad959b03001ddcf43feafa63e6a536f148009918007ef8ebbba7c940849f41b474c401237c7c92e787ff007bd7eb5cdc236fdf5661f748cfdd6ad7bad3a384feed894e76b13fdefef28a82148ffe599c0fa7f9e2819044101f942e4fdce7fd5fb5443cd6382318ce72385ab31db306ca3a8ea0918cff00f5e90a48a79e470aafd9a802b013e7950c3aed1d5569f1c45b3bddb1c9523a55c7ce7f7522e7b91fc3ff0001a0c4a31e51c8fbae31cafe7da8018ba2972bba570a409149232ab4f7d0265c6dbb9941c142e013bbd3755c594851bf1b7942a3ac7fee55c86e415037850395da79fa74a7642b983359dc2f0f787bba86538f97e954e34987df0b8fbabc7defd6ba4ba910e4afdec6de3a7beeec2b3d609e73fbb2b1f4da580ccbff005c97fc69582e6719278fee945f624fddff00769b19b893ef346839f988e16b78f87edc7fc7c6f66fbbc9187ff796a6934ab7da163b554ea7cd5eabfe34582e61c7a41254a5dac8fc15ddd55bfd8e78ade875110e03dcc47a6f8b61ceeff69b3d6b34e8046424b211c9427a2fb366960d019d4ed69049ced04f0db7e9f9534bb20f99bc357b7c80d2aa93ca8cff00ecc2ac935c5cf6fe53624656e01461fdea99757b94ff0055727b1c31c8fa734ee07586909ac9b5f1242f8fb42946fbaecbd17dfdab58007a1047f0914d12266909a7114d228028dcda066040e957178a5228a6079b21a949a85460548b5472a428a7834c3c5394d0862834e534dc0a5c7a5002934c634e14845021a053d462929d4002ad0169e28e280b0d22a326a4634c8d0b1f979a603a2426b512c8e3a559b2d2b1cb2d4f2c8a9d08aa4bb92d98af1edeb5097a7dccd93d6ab9350cb5e64c5a9b4c56a78348009c53f35116a5cd00494629a1a9c0d315842b48053b348280b0ab193f745757a3d808d46e1c9e6b1b47b40e724702ba852074e94d1491266909a617a4df40c793499a66ea375301f9a4dd4dc9a4e681a1fba90b52628db4876133453b141a4036945029d8a00402834a69290c4a2971450002969334b9a4014628dd49ba81d85c5038a4dd49ba80b1286c5217a8b75216a2e34890b51baa2df49bea4af526cd349a8fcca0c8291438b5465a9a64f4a8cb534896c90b0a697a88bd34bd3489b9296a696a8f7d26ea62b9216a01a8f751ba9a42250d4a1ea1dd46faa26e5957a915c55412538494c45d0e2ac458acd594d5b865c77a689668aa8a70c0aaab3d384def5641686290a8a804b4e572681121514c68c5381a6338140079028f240a6f9b8a6b4d40d0f381407aaf2dc2a0cc8e15472c4d605cf889dc916c4463f85d8f2cbfd2a6525d4b8c5f43a0b9d4ade11fbd9067f8630796ae6b57d425b838de550655554f0deed59eedbbef93ea71fc54e5da3f84e3b66b0948e98411147699ea15c7707f8695a2500796081f748c7dd6a9d8951c2647538feed46ea3b1ff007456762c8de2e3e66c9fe123f8aa158c7f18e3d40ab26361cb0c8f63f75bfdaa8e3971f738ea8723fbd40cae9030e1a42c39550c7f87d3e9f5aa9f2c64076241f961663f77d99bf9569aeeec0377e694c28c3e75047dd718e68b005accab8f3b2cbc1db5a535ea0c18df68c15db8e59ab9e958dbe372c862fba5d8f303678fc2af47237f02839f5e8d42622ddb9c70ebc727ad486f800015c8c6d5209caf1fc1ee99aa81b77ddcafae3f86aca46a3ef460f4e714c45946dab87898e7ee9cff00cb3ed490ccc388d89fe1249a742a17263e49c77fbbebf29a586d598fef805feee3ab7fc0a81a19b9867209ebd0ff0076a68e5c63cdcecea4807e5e31f27e74d924642075038418fc3ef7e34fdca171c8e77ffbcb8e8b4031e6256e3e63d0bb0e959e5482416008f908156bce20feecf967eee09e3e6ff669b70914833183e675cf75ff00114c455563d03311d70a3eed0578f9d7e5eb907866a6348dfc6a33f77040cb7e54b1bbf18538ebb734860091ca1047bff0d3a4e7ee673f78f27e6a72ac6796565fe17f46a1a4653f3600fe123f96ea064f6f78c9c3479070ae0e7e6f74f4a85f51c1e2355e9b4af56ff1a61bc66e23897fbbf31e3fe05525bdbaa1f9c92f8eb8e1770a3d04401a797efa88d4e4900f2fff00d6ad88606c6768007cbd39dd54e3b671d54a938e33f757a1356e194818761fec1ecfcf34d08b72336d1ba2079196cfdddd5015543956c8e778ff006bfcf7a90dce3ff413fed5422588f4c1ebc7665aa044c978adf74f1c229ef4ab72c9820b1f5dbd5997fd9aa770a060f94187dd600f2de86b3daed94e622ea39ebd7752b85876a338762770ebb5f2396ff80d54fb292392307e5200e56ac244d2926418c7249ead5298cae3cccfaae3f8a9580abe5c6a479e0e07cbf2f565ff007aa6b4d61add8fef14a778d8f1ff007d7ad2cb679ee4ff00779aa2f1a81f32127bff00b3ef401d0c3e2ab56c79e8f1ff000eeea17fdead58e58dc661911c7aa9ae223b7f60077cd1697d244f9858ae3e5381f7dbfddee284fb8add8ee0ad30ad57b6d5a3703ce1e5b7707a7ff5aaeedcf4356200ffd9'); SELECT pg_catalog.setval('film_film_id_seq', 1000, true); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1, 1, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2, 1, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3, 1, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4, 1, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (5, 1, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (6, 1, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (7, 1, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (8, 1, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (9, 2, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (10, 2, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (11, 2, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (12, 3, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (13, 3, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (14, 3, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (15, 3, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (16, 4, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (17, 4, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (18, 4, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (19, 4, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (20, 4, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (21, 4, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (22, 4, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (23, 5, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (24, 5, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (25, 5, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (26, 6, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (27, 6, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (28, 6, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (29, 6, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (30, 6, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (31, 6, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (32, 7, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (33, 7, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (34, 7, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (35, 7, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (36, 7, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (37, 8, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (38, 8, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (39, 8, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (40, 8, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (41, 9, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (42, 9, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (43, 9, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (44, 9, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (45, 9, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (46, 10, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (47, 10, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (48, 10, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (49, 10, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (50, 10, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (51, 10, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (52, 10, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (53, 11, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (54, 11, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (55, 11, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (56, 11, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (57, 11, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (58, 11, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (59, 11, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (60, 12, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (61, 12, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (62, 12, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (63, 12, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (64, 12, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (65, 12, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (66, 12, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (67, 13, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (68, 13, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (69, 13, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (70, 13, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (71, 15, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (72, 15, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (73, 15, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (74, 15, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (75, 15, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (76, 15, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (77, 16, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (78, 16, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (79, 16, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (80, 16, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (81, 17, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (82, 17, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (83, 17, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (84, 17, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (85, 17, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (86, 17, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (87, 18, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (88, 18, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (89, 18, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (90, 18, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (91, 18, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (92, 18, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (93, 19, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (94, 19, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (95, 19, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (96, 19, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (97, 19, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (98, 19, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (99, 20, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (100, 20, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (101, 20, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (102, 21, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (103, 21, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (104, 21, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (105, 21, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (106, 21, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (107, 21, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (108, 22, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (109, 22, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (110, 22, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (111, 22, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (112, 22, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (113, 22, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (114, 22, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (115, 23, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (116, 23, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (117, 23, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (118, 23, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (119, 23, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (120, 24, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (121, 24, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (122, 24, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (123, 24, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (124, 25, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (125, 25, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (126, 25, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (127, 25, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (128, 25, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (129, 25, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (130, 26, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (131, 26, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (132, 26, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (133, 26, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (134, 26, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (135, 27, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (136, 27, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (137, 27, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (138, 27, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (139, 28, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (140, 28, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (141, 28, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (142, 29, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (143, 29, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (144, 30, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (145, 30, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (146, 31, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (147, 31, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (148, 31, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (149, 31, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (150, 31, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (151, 31, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (152, 31, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (153, 31, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (154, 32, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (155, 32, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (156, 34, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (157, 34, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (158, 34, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (159, 34, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (160, 35, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (161, 35, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (162, 35, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (163, 35, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (164, 35, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (165, 35, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (166, 35, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (167, 37, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (168, 37, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (169, 37, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (170, 37, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (171, 37, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (172, 37, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (173, 37, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (174, 39, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (175, 39, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (176, 39, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (177, 39, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (178, 39, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (179, 39, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (180, 39, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (181, 40, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (182, 40, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (183, 40, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (184, 40, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (185, 42, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (186, 42, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (187, 42, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (188, 42, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (189, 43, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (190, 43, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (191, 43, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (192, 43, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (193, 43, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (194, 43, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (195, 43, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (196, 44, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (197, 44, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (198, 44, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (199, 44, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (200, 44, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (201, 45, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (202, 45, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (203, 45, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (204, 45, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (205, 45, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (206, 45, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (207, 46, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (208, 46, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (209, 46, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (210, 47, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (211, 47, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (212, 48, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (213, 48, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (214, 48, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (215, 48, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (216, 49, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (217, 49, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (218, 49, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (219, 49, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (220, 49, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (221, 49, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (222, 50, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (223, 50, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (224, 50, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (225, 50, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (226, 50, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (227, 51, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (228, 51, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (229, 51, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (230, 51, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (231, 51, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (232, 51, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (233, 52, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (234, 52, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (235, 53, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (236, 53, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (237, 54, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (238, 54, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (239, 54, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (240, 54, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (241, 54, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (242, 55, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (243, 55, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (244, 55, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (245, 55, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (246, 55, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (247, 55, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (248, 56, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (249, 56, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (250, 56, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (251, 56, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (252, 56, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (253, 57, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (254, 57, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (255, 57, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (256, 57, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (257, 57, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (258, 57, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (259, 57, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (260, 58, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (261, 58, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (262, 58, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (263, 58, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (264, 59, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (265, 59, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (266, 59, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (267, 59, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (268, 59, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (269, 60, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (270, 60, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (271, 60, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (272, 61, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (273, 61, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (274, 61, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (275, 61, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (276, 61, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (277, 61, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (278, 62, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (279, 62, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (280, 63, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (281, 63, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (282, 63, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (283, 63, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (284, 64, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (285, 64, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (286, 64, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (287, 65, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (288, 65, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (289, 65, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (290, 65, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (291, 66, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (292, 66, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (293, 66, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (294, 67, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (295, 67, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (296, 67, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (297, 67, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (298, 67, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (299, 67, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (300, 68, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (301, 68, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (302, 68, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (303, 68, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (304, 69, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (305, 69, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (306, 69, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (307, 69, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (308, 69, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (309, 69, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (310, 69, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (311, 69, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (312, 70, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (313, 70, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (314, 70, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (315, 70, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (316, 71, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (317, 71, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (318, 71, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (319, 71, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (320, 72, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (321, 72, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (322, 72, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (323, 72, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (324, 72, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (325, 72, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (326, 73, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (327, 73, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (328, 73, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (329, 73, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (330, 73, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (331, 73, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (332, 73, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (333, 73, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (334, 74, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (335, 74, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (336, 74, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (337, 74, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (338, 74, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (339, 75, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (340, 75, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (341, 75, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (342, 76, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (343, 76, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (344, 76, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (345, 77, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (346, 77, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (347, 77, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (348, 77, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (349, 77, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (350, 77, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (351, 78, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (352, 78, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (353, 78, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (354, 78, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (355, 78, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (356, 78, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (357, 78, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (358, 79, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (359, 79, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (360, 79, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (361, 79, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (362, 79, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (363, 79, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (364, 80, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (365, 80, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (366, 80, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (367, 80, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (368, 81, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (369, 81, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (370, 81, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (371, 81, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (372, 82, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (373, 82, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (374, 83, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (375, 83, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (376, 83, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (377, 83, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (378, 83, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (379, 84, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (380, 84, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (381, 84, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (382, 84, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (383, 85, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (384, 85, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (385, 85, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (386, 85, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (387, 86, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (388, 86, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (389, 86, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (390, 86, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (391, 86, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (392, 86, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (393, 86, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (394, 86, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (395, 88, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (396, 88, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (397, 88, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (398, 88, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (399, 89, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (400, 89, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (401, 89, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (402, 89, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (403, 89, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (404, 89, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (405, 90, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (406, 90, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (407, 90, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (408, 90, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (409, 90, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (410, 90, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (411, 91, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (412, 91, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (413, 91, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (414, 91, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (415, 91, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (416, 91, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (417, 91, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (418, 91, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (419, 92, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (420, 92, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (421, 92, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (422, 92, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (423, 93, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (424, 93, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (425, 93, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (426, 94, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (427, 94, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (428, 95, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (429, 95, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (430, 95, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (431, 95, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (432, 95, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (433, 96, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (434, 96, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (435, 96, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (436, 97, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (437, 97, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (438, 97, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (439, 97, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (440, 97, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (441, 97, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (442, 98, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (443, 98, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (444, 98, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (445, 99, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (446, 99, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (447, 99, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (448, 99, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (449, 99, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (450, 99, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (451, 100, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (452, 100, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (453, 100, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (454, 100, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (455, 100, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (456, 100, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (457, 101, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (458, 101, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (459, 101, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (460, 101, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (461, 101, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (462, 101, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (463, 102, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (464, 102, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (465, 103, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (466, 103, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (467, 103, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (468, 103, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (469, 103, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (470, 103, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (471, 103, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (472, 103, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (473, 104, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (474, 104, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (475, 104, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (476, 105, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (477, 105, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (478, 105, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (479, 105, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (480, 105, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (481, 106, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (482, 106, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (483, 107, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (484, 107, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (485, 109, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (486, 109, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (487, 109, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (488, 109, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (489, 109, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (490, 109, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (491, 109, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (492, 109, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (493, 110, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (494, 110, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (495, 110, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (496, 110, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (497, 111, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (498, 111, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (499, 111, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (500, 111, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (501, 112, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (502, 112, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (503, 112, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (504, 112, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (505, 112, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (506, 112, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (507, 112, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (508, 113, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (509, 113, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (510, 113, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (511, 113, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (512, 114, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (513, 114, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (514, 114, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (515, 114, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (516, 114, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (517, 114, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (518, 114, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (519, 115, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (520, 115, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (521, 115, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (522, 115, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (523, 115, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (524, 115, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (525, 115, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (526, 116, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (527, 116, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (528, 116, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (529, 116, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (530, 116, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (531, 116, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (532, 117, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (533, 117, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (534, 117, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (535, 117, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (536, 117, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (537, 117, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (538, 118, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (539, 118, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (540, 118, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (541, 118, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (542, 118, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (543, 118, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (544, 119, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (545, 119, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (546, 119, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (547, 119, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (548, 119, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (549, 119, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (550, 119, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (551, 120, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (552, 120, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (553, 120, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (554, 121, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (555, 121, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (556, 121, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (557, 121, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (558, 121, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (559, 121, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (560, 122, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (561, 122, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (562, 122, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (563, 122, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (564, 122, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (565, 122, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (566, 122, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (567, 123, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (568, 123, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (569, 123, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (570, 123, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (571, 123, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (572, 124, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (573, 124, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (574, 124, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (575, 125, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (576, 125, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (577, 126, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (578, 126, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (579, 126, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (580, 127, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (581, 127, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (582, 127, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (583, 127, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (584, 127, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (585, 127, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (586, 127, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (587, 127, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (588, 129, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (589, 129, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (590, 129, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (591, 129, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (592, 129, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (593, 129, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (594, 130, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (595, 130, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (596, 130, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (597, 130, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (598, 130, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (599, 130, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (600, 131, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (601, 131, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (602, 131, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (603, 131, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (604, 131, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (605, 131, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (606, 132, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (607, 132, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (608, 132, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (609, 132, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (610, 132, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (611, 132, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (612, 133, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (613, 133, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (614, 133, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (615, 133, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (616, 134, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (617, 134, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (618, 134, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (619, 135, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (620, 135, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (621, 135, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (622, 135, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (623, 135, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (624, 135, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (625, 135, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (626, 136, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (627, 136, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (628, 136, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (629, 137, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (630, 137, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (631, 137, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (632, 137, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (633, 138, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (634, 138, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (635, 138, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (636, 138, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (637, 138, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (638, 139, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (639, 139, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (640, 139, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (641, 139, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (642, 139, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (643, 139, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (644, 140, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (645, 140, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (646, 140, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (647, 140, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (648, 140, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (649, 141, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (650, 141, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (651, 141, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (652, 141, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (653, 141, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (654, 142, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (655, 142, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (656, 142, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (657, 142, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (658, 142, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (659, 143, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (660, 143, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (661, 143, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (662, 143, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (663, 143, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (664, 143, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (665, 143, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (666, 145, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (667, 145, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (668, 145, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (669, 146, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (670, 146, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (671, 146, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (672, 147, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (673, 147, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (674, 147, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (675, 147, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (676, 147, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (677, 147, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (678, 149, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (679, 149, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (680, 149, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (681, 149, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (682, 149, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (683, 149, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (684, 150, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (685, 150, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (686, 150, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (687, 150, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (688, 150, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (689, 150, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (690, 151, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (691, 151, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (692, 151, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (693, 151, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (694, 152, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (695, 152, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (696, 152, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (697, 152, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (698, 153, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (699, 153, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (700, 153, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (701, 153, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (702, 154, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (703, 154, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (704, 154, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (705, 154, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (706, 154, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (707, 154, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (708, 154, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (709, 155, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (710, 155, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (711, 155, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (712, 155, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (713, 155, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (714, 156, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (715, 156, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (716, 157, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (717, 157, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (718, 157, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (719, 158, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (720, 158, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (721, 158, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (722, 158, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (723, 158, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (724, 159, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (725, 159, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (726, 159, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (727, 159, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (728, 159, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (729, 159, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (730, 159, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (731, 160, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (732, 160, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (733, 160, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (734, 160, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (735, 160, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (736, 161, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (737, 161, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (738, 162, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (739, 162, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (740, 162, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (741, 162, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (742, 162, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (743, 162, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (744, 162, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (745, 163, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (746, 163, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (747, 163, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (748, 164, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (749, 164, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (750, 164, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (751, 164, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (752, 164, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (753, 165, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (754, 165, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (755, 165, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (756, 165, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (757, 165, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (758, 166, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (759, 166, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (760, 166, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (761, 166, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (762, 166, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (763, 166, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (764, 167, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (765, 167, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (766, 167, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (767, 167, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (768, 167, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (769, 167, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (770, 167, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (771, 168, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (772, 168, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (773, 169, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (774, 169, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (775, 169, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (776, 169, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (777, 170, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (778, 170, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (779, 170, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (780, 170, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (781, 170, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (782, 170, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (783, 172, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (784, 172, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (785, 172, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (786, 172, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (787, 172, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (788, 172, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (789, 172, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (790, 173, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (791, 173, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (792, 173, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (793, 173, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (794, 173, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (795, 174, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (796, 174, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (797, 174, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (798, 174, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (799, 174, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (800, 174, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (801, 174, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (802, 174, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (803, 175, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (804, 175, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (805, 175, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (806, 175, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (807, 175, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (808, 176, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (809, 176, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (810, 176, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (811, 176, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (812, 176, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (813, 176, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (814, 177, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (815, 177, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (816, 177, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (817, 178, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (818, 178, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (819, 179, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (820, 179, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (821, 179, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (822, 179, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (823, 180, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (824, 180, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (825, 181, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (826, 181, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (827, 181, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (828, 181, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (829, 181, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (830, 181, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (831, 181, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (832, 182, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (833, 182, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (834, 183, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (835, 183, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (836, 183, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (837, 183, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (838, 183, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (839, 183, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (840, 184, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (841, 184, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (842, 184, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (843, 184, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (844, 184, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (845, 185, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (846, 185, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (847, 186, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (848, 186, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (849, 186, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (850, 186, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (851, 187, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (852, 187, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (853, 187, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (854, 188, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (855, 188, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (856, 188, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (857, 189, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (858, 189, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (859, 189, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (860, 189, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (861, 189, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (862, 189, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (863, 190, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (864, 190, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (865, 190, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (866, 190, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (867, 191, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (868, 191, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (869, 191, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (870, 191, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (871, 191, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (872, 191, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (873, 193, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (874, 193, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (875, 193, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (876, 193, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (877, 193, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (878, 193, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (879, 193, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (880, 193, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (881, 194, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (882, 194, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (883, 194, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (884, 194, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (885, 196, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (886, 196, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (887, 197, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (888, 197, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (889, 199, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (890, 199, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (891, 199, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (892, 199, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (893, 199, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (894, 199, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (895, 199, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (896, 199, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (897, 200, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (898, 200, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (899, 200, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (900, 200, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (901, 200, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (902, 200, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (903, 200, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (904, 200, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (905, 201, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (906, 201, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (907, 201, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (908, 201, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (909, 202, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (910, 202, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (911, 202, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (912, 203, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (913, 203, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (914, 203, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (915, 203, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (916, 204, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (917, 204, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (918, 204, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (919, 204, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (920, 204, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (921, 204, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (922, 205, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (923, 205, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (924, 205, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (925, 205, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (926, 206, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (927, 206, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (928, 206, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (929, 206, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (930, 206, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (931, 206, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (932, 206, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (933, 206, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (934, 207, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (935, 207, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (936, 207, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (937, 207, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (938, 208, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (939, 208, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (940, 208, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (941, 209, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (942, 209, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (943, 209, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (944, 209, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (945, 210, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (946, 210, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (947, 210, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (948, 211, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (949, 211, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (950, 212, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (951, 212, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (952, 212, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (953, 212, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (954, 212, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (955, 213, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (956, 213, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (957, 213, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (958, 213, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (959, 214, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (960, 214, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (961, 214, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (962, 214, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (963, 215, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (964, 215, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (965, 215, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (966, 215, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (967, 215, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (968, 215, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (969, 216, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (970, 216, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (971, 216, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (972, 216, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (973, 216, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (974, 218, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (975, 218, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (976, 218, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (977, 218, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (978, 218, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (979, 218, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (980, 218, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (981, 219, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (982, 219, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (983, 219, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (984, 219, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (985, 220, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (986, 220, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (987, 220, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (988, 220, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (989, 220, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (990, 220, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (991, 220, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (992, 220, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (993, 222, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (994, 222, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (995, 222, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (996, 222, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (997, 222, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (998, 222, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (999, 223, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1000, 223, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1001, 224, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1002, 224, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1003, 225, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1004, 225, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1005, 225, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1006, 226, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1007, 226, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1008, 226, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1009, 226, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1010, 226, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1011, 227, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1012, 227, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1013, 227, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1014, 227, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1015, 227, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1016, 228, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1017, 228, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1018, 228, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1019, 228, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1020, 228, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1021, 228, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1022, 228, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1023, 229, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1024, 229, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1025, 229, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1026, 229, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1027, 230, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1028, 230, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1029, 231, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1030, 231, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1031, 231, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1032, 231, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1033, 231, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1034, 231, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1035, 231, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1036, 231, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1037, 232, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1038, 232, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1039, 232, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1040, 232, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1041, 232, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1042, 233, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1043, 233, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1044, 233, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1045, 233, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1046, 233, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1047, 233, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1048, 234, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1049, 234, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1050, 234, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1051, 234, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1052, 234, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1053, 234, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1054, 234, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1055, 235, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1056, 235, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1057, 235, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1058, 235, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1059, 235, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1060, 235, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1061, 236, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1062, 236, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1063, 236, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1064, 236, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1065, 237, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1066, 237, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1067, 238, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1068, 238, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1069, 239, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1070, 239, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1071, 239, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1072, 239, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1073, 239, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1074, 239, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1075, 239, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1076, 239, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1077, 240, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1078, 240, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1079, 240, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1080, 241, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1081, 241, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1082, 241, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1083, 241, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1084, 242, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1085, 242, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1086, 242, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1087, 242, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1088, 242, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1089, 243, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1090, 243, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1091, 243, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1092, 243, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1093, 243, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1094, 243, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1095, 244, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1096, 244, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1097, 244, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1098, 244, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1099, 244, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1100, 244, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1101, 244, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1102, 245, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1103, 245, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1104, 245, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1105, 245, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1106, 245, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1107, 245, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1108, 245, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1109, 246, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1110, 246, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1111, 246, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1112, 247, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1113, 247, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1114, 247, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1115, 247, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1116, 247, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1117, 247, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1118, 247, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1119, 248, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1120, 248, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1121, 249, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1122, 249, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1123, 249, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1124, 249, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1125, 249, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1126, 249, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1127, 250, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1128, 250, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1129, 250, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1130, 250, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1131, 251, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1132, 251, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1133, 251, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1134, 251, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1135, 251, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1136, 252, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1137, 252, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1138, 252, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1139, 252, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1140, 252, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1141, 252, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1142, 253, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1143, 253, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1144, 253, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1145, 253, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1146, 253, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1147, 253, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1148, 254, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1149, 254, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1150, 254, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1151, 254, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1152, 254, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1153, 255, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1154, 255, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1155, 255, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1156, 255, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1157, 255, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1158, 255, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1159, 256, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1160, 256, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1161, 256, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1162, 257, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1163, 257, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1164, 257, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1165, 258, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1166, 258, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1167, 258, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1168, 258, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1169, 259, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1170, 259, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1171, 260, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1172, 260, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1173, 260, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1174, 260, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1175, 261, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1176, 261, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1177, 262, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1178, 262, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1179, 263, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1180, 263, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1181, 263, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1182, 263, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1183, 263, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1184, 263, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1185, 263, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1186, 264, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1187, 264, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1188, 265, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1189, 265, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1190, 265, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1191, 265, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1192, 266, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1193, 266, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1194, 266, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1195, 266, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1196, 266, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1197, 266, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1198, 266, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1199, 266, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1200, 267, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1201, 267, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1202, 267, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1203, 267, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1204, 267, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1205, 267, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1206, 268, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1207, 268, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1208, 269, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1209, 269, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1210, 269, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1211, 269, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1212, 269, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1213, 269, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1214, 270, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1215, 270, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1216, 270, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1217, 270, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1218, 270, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1219, 270, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1220, 270, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1221, 271, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1222, 271, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1223, 271, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1224, 271, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1225, 271, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1226, 272, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1227, 272, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1228, 272, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1229, 272, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1230, 273, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1231, 273, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1232, 273, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1233, 273, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1234, 273, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1235, 273, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1236, 273, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1237, 274, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1238, 274, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1239, 274, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1240, 274, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1241, 274, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1242, 274, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1243, 274, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1244, 275, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1245, 275, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1246, 275, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1247, 275, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1248, 275, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1249, 276, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1250, 276, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1251, 276, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1252, 276, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1253, 277, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1254, 277, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1255, 277, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1256, 278, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1257, 278, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1258, 279, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1259, 279, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1260, 280, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1261, 280, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1262, 280, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1263, 280, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1264, 280, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1265, 280, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1266, 281, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1267, 281, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1268, 281, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1269, 281, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1270, 281, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1271, 281, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1272, 282, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1273, 282, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1274, 282, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1275, 282, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1276, 282, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1277, 282, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1278, 283, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1279, 283, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1280, 283, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1281, 284, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1282, 284, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1283, 284, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1284, 284, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1285, 284, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1286, 284, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1287, 284, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1288, 285, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1289, 285, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1290, 285, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1291, 285, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1292, 285, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1293, 285, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1294, 285, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1295, 286, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1296, 286, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1297, 286, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1298, 286, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1299, 286, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1300, 287, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1301, 287, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1302, 287, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1303, 287, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1304, 288, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1305, 288, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1306, 288, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1307, 288, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1308, 288, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1309, 288, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1310, 289, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1311, 289, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1312, 290, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1313, 290, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1314, 290, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1315, 291, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1316, 291, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1317, 291, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1318, 291, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1319, 292, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1320, 292, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1321, 292, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1322, 292, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1323, 292, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1324, 292, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1325, 293, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1326, 293, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1327, 293, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1328, 293, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1329, 293, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1330, 294, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1331, 294, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1332, 294, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1333, 294, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1334, 294, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1335, 295, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1336, 295, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1337, 295, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1338, 295, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1339, 295, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1340, 295, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1341, 295, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1342, 295, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1343, 296, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1344, 296, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1345, 296, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1346, 296, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1347, 297, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1348, 297, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1349, 298, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1350, 298, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1351, 298, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1352, 298, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1353, 298, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1354, 299, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1355, 299, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1356, 299, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1357, 299, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1358, 300, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1359, 300, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1360, 300, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1361, 300, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1362, 300, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1363, 300, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1364, 301, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1365, 301, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1366, 301, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1367, 301, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1368, 301, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1369, 301, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1370, 301, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1371, 301, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1372, 302, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1373, 302, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1374, 302, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1375, 302, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1376, 302, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1377, 302, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1378, 303, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1379, 303, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1380, 303, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1381, 303, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1382, 303, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1383, 303, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1384, 304, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1385, 304, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1386, 304, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1387, 304, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1388, 304, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1389, 304, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1390, 305, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1391, 305, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1392, 305, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1393, 305, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1394, 305, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1395, 305, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1396, 305, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1397, 306, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1398, 306, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1399, 306, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1400, 307, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1401, 307, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1402, 307, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1403, 307, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1404, 307, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1405, 307, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1406, 308, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1407, 308, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1408, 308, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1409, 308, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1410, 309, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1411, 309, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1412, 309, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1413, 309, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1414, 309, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1415, 309, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1416, 310, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1417, 310, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1418, 311, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1419, 311, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1420, 311, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1421, 311, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1422, 311, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1423, 311, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1424, 311, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1425, 312, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1426, 312, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1427, 312, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1428, 313, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1429, 313, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1430, 313, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1431, 313, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1432, 313, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1433, 313, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1434, 314, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1435, 314, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1436, 314, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1437, 314, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1438, 314, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1439, 314, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1440, 315, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1441, 315, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1442, 315, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1443, 316, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1444, 316, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1445, 317, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1446, 317, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1447, 317, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1448, 317, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1449, 317, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1450, 317, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1451, 317, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1452, 319, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1453, 319, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1454, 319, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1455, 319, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1456, 319, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1457, 319, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1458, 319, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1459, 320, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1460, 320, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1461, 320, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1462, 320, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1463, 320, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1464, 320, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1465, 320, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1466, 321, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1467, 321, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1468, 321, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1469, 321, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1470, 322, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1471, 322, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1472, 322, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1473, 322, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1474, 322, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1475, 322, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1476, 323, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1477, 323, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1478, 323, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1479, 323, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1480, 324, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1481, 324, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1482, 324, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1483, 324, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1484, 324, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1485, 326, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1486, 326, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1487, 326, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1488, 326, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1489, 326, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1490, 326, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1491, 327, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1492, 327, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1493, 327, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1494, 327, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1495, 327, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1496, 327, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1497, 328, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1498, 328, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1499, 328, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1500, 328, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1501, 329, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1502, 329, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1503, 329, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1504, 329, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1505, 329, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1506, 329, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1507, 330, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1508, 330, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1509, 330, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1510, 330, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1511, 330, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1512, 330, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1513, 330, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1514, 331, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1515, 331, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1516, 331, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1517, 331, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1518, 331, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1519, 331, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1520, 331, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1521, 331, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1522, 333, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1523, 333, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1524, 333, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1525, 333, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1526, 334, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1527, 334, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1528, 334, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1529, 334, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1530, 334, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1531, 334, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1532, 335, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1533, 335, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1534, 336, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1535, 336, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1536, 336, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1537, 336, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1538, 336, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1539, 337, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1540, 337, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1541, 337, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1542, 337, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1543, 338, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1544, 338, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1545, 338, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1546, 339, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1547, 339, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1548, 339, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1549, 340, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1550, 340, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1551, 341, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1552, 341, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1553, 341, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1554, 341, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1555, 341, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1556, 341, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1557, 341, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1558, 341, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1559, 342, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1560, 342, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1561, 342, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1562, 342, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1563, 343, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1564, 343, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1565, 344, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1566, 344, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1567, 344, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1568, 344, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1569, 344, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1570, 345, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1571, 345, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1572, 345, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1573, 345, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1574, 345, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1575, 346, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1576, 346, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1577, 346, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1578, 346, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1579, 346, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1580, 346, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1581, 347, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1582, 347, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1583, 347, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1584, 347, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1585, 348, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1586, 348, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1587, 348, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1588, 348, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1589, 349, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1590, 349, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1591, 349, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1592, 349, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1593, 349, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1594, 349, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1595, 349, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1596, 350, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1597, 350, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1598, 350, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1599, 350, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1600, 350, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1601, 350, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1602, 350, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1603, 350, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1604, 351, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1605, 351, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1606, 351, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1607, 351, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1608, 351, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1609, 351, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1610, 352, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1611, 352, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1612, 352, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1613, 352, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1614, 353, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1615, 353, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1616, 353, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1617, 353, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1618, 353, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1619, 353, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1620, 354, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1621, 354, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1622, 354, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1623, 354, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1624, 354, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1625, 355, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1626, 355, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1627, 356, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1628, 356, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1629, 356, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1630, 356, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1631, 356, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1632, 356, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1633, 356, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1634, 356, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1635, 357, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1636, 357, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1637, 357, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1638, 357, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1639, 358, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1640, 358, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1641, 358, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1642, 358, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1643, 358, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1644, 358, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1645, 358, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1646, 358, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1647, 360, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1648, 360, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1649, 360, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1650, 360, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1651, 361, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1652, 361, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1653, 361, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1654, 361, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1655, 361, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1656, 361, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1657, 361, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1658, 361, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1659, 362, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1660, 362, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1661, 363, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1662, 363, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1663, 363, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1664, 363, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1665, 363, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1666, 363, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1667, 364, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1668, 364, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1669, 364, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1670, 365, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1671, 365, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1672, 365, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1673, 365, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1674, 366, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1675, 366, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1676, 366, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1677, 366, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1678, 366, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1679, 366, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1680, 366, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1681, 367, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1682, 367, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1683, 367, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1684, 367, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1685, 367, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1686, 367, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1687, 367, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1688, 368, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1689, 368, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1690, 369, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1691, 369, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1692, 369, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1693, 369, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1694, 369, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1695, 369, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1696, 369, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1697, 369, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1698, 370, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1699, 370, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1700, 370, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1701, 370, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1702, 370, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1703, 371, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1704, 371, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1705, 371, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1706, 372, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1707, 372, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1708, 373, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1709, 373, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1710, 373, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1711, 373, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1712, 373, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1713, 374, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1714, 374, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1715, 374, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1716, 374, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1717, 374, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1718, 374, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1719, 374, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1720, 375, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1721, 375, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1722, 376, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1723, 376, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1724, 376, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1725, 376, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1726, 376, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1727, 376, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1728, 376, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1729, 377, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1730, 377, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1731, 377, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1732, 377, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1733, 377, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1734, 377, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1735, 378, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1736, 378, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1737, 378, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1738, 378, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1739, 378, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1740, 378, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1741, 378, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1742, 378, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1743, 379, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1744, 379, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1745, 379, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1746, 379, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1747, 380, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1748, 380, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1749, 380, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1750, 380, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1751, 380, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1752, 381, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1753, 381, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1754, 381, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1755, 381, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1756, 381, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1757, 382, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1758, 382, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1759, 382, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1760, 382, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1761, 382, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1762, 382, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1763, 382, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1764, 382, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1765, 383, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1766, 383, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1767, 383, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1768, 383, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1769, 383, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1770, 384, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1771, 384, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1772, 384, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1773, 385, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1774, 385, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1775, 385, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1776, 385, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1777, 385, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1778, 387, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1779, 387, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1780, 387, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1781, 387, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1782, 387, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1783, 387, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1784, 388, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1785, 388, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1786, 388, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1787, 388, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1788, 388, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1789, 388, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1790, 389, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1791, 389, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1792, 389, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1793, 389, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1794, 390, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1795, 390, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1796, 390, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1797, 391, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1798, 391, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1799, 391, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1800, 391, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1801, 391, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1802, 391, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1803, 391, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1804, 392, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1805, 392, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1806, 392, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1807, 392, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1808, 392, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1809, 392, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1810, 393, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1811, 393, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1812, 394, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1813, 394, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1814, 394, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1815, 394, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1816, 395, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1817, 395, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1818, 395, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1819, 395, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1820, 395, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1821, 395, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1822, 396, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1823, 396, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1824, 396, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1825, 396, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1826, 397, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1827, 397, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1828, 397, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1829, 397, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1830, 397, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1831, 397, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1832, 397, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1833, 398, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1834, 398, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1835, 398, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1836, 398, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1837, 399, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1838, 399, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1839, 400, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1840, 400, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1841, 401, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1842, 401, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1843, 402, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1844, 402, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1845, 402, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1846, 402, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1847, 402, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1848, 402, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1849, 403, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1850, 403, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1851, 403, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1852, 403, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1853, 403, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1854, 403, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1855, 403, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1856, 403, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1857, 405, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1858, 405, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1859, 406, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1860, 406, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1861, 406, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1862, 406, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1863, 406, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1864, 406, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1865, 407, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1866, 407, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1867, 408, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1868, 408, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1869, 408, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1870, 408, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1871, 408, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1872, 408, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1873, 408, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1874, 409, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1875, 409, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1876, 409, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1877, 409, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1878, 409, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1879, 409, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1880, 409, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1881, 410, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1882, 410, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1883, 410, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1884, 410, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1885, 410, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1886, 411, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1887, 411, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1888, 412, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1889, 412, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1890, 412, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1891, 412, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1892, 412, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1893, 412, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1894, 412, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1895, 412, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1896, 413, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1897, 413, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1898, 413, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1899, 414, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1900, 414, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1901, 414, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1902, 414, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1903, 414, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1904, 414, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1905, 415, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1906, 415, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1907, 415, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1908, 415, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1909, 415, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1910, 415, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1911, 416, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1912, 416, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1913, 416, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1914, 416, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1915, 416, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1916, 416, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1917, 417, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1918, 417, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1919, 417, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1920, 417, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1921, 417, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1922, 417, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1923, 418, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1924, 418, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1925, 418, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1926, 418, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1927, 418, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1928, 418, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1929, 418, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1930, 418, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1931, 420, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1932, 420, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1933, 420, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1934, 420, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1935, 420, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1936, 421, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1937, 421, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1938, 421, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1939, 421, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1940, 422, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1941, 422, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1942, 423, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1943, 423, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1944, 423, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1945, 423, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1946, 424, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1947, 424, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1948, 424, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1949, 424, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1950, 424, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1951, 425, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1952, 425, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1953, 426, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1954, 426, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1955, 426, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1956, 427, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1957, 427, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1958, 427, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1959, 427, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1960, 428, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1961, 428, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1962, 428, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1963, 428, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1964, 428, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1965, 428, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1966, 429, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1967, 429, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1968, 429, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1969, 429, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1970, 429, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1971, 429, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1972, 430, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1973, 430, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1974, 430, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1975, 430, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1976, 431, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1977, 431, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1978, 431, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1979, 432, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1980, 432, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1981, 432, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1982, 432, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1983, 432, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1984, 433, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1985, 433, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1986, 433, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1987, 433, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1988, 433, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1989, 433, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1990, 434, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1991, 434, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1992, 434, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1993, 434, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1994, 434, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1995, 434, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1996, 434, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1997, 434, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1998, 435, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (1999, 435, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2000, 436, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2001, 436, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2002, 436, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2003, 436, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2004, 436, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2005, 436, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2006, 437, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2007, 437, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2008, 437, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2009, 437, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2010, 437, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2011, 437, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2012, 438, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2013, 438, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2014, 438, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2015, 438, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2016, 438, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2017, 439, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2018, 439, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2019, 439, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2020, 439, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2021, 439, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2022, 439, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2023, 440, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2024, 440, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2025, 440, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2026, 440, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2027, 441, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2028, 441, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2029, 442, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2030, 442, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2031, 442, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2032, 443, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2033, 443, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2034, 443, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2035, 443, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2036, 443, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2037, 443, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2038, 443, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2039, 444, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2040, 444, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2041, 444, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2042, 444, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2043, 444, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2044, 444, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2045, 444, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2046, 444, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2047, 445, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2048, 445, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2049, 445, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2050, 445, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2051, 445, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2052, 445, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2053, 446, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2054, 446, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2055, 446, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2056, 446, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2057, 447, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2058, 447, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2059, 447, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2060, 447, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2061, 447, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2062, 447, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2063, 447, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2064, 448, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2065, 448, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2066, 448, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2067, 448, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2068, 448, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2069, 449, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2070, 449, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2071, 449, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2072, 449, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2073, 450, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2074, 450, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2075, 450, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2076, 450, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2077, 450, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2078, 450, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2079, 450, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2080, 451, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2081, 451, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2082, 451, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2083, 451, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2084, 451, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2085, 452, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2086, 452, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2087, 452, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2088, 452, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2089, 453, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2090, 453, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2091, 453, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2092, 453, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2093, 453, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2094, 454, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2095, 454, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2096, 455, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2097, 455, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2098, 455, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2099, 455, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2100, 456, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2101, 456, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2102, 456, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2103, 456, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2104, 456, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2105, 456, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2106, 457, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2107, 457, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2108, 457, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2109, 457, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2110, 457, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2111, 457, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2112, 458, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2113, 458, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2114, 458, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2115, 458, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2116, 458, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2117, 458, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2118, 459, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2119, 459, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2120, 460, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2121, 460, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2122, 460, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2123, 460, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2124, 460, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2125, 460, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2126, 460, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2127, 460, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2128, 461, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2129, 461, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2130, 461, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2131, 461, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2132, 461, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2133, 461, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2134, 462, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2135, 462, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2136, 462, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2137, 462, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2138, 462, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2139, 463, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2140, 463, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2141, 463, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2142, 463, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2143, 463, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2144, 464, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2145, 464, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2146, 464, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2147, 464, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2148, 464, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2149, 464, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2150, 464, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2151, 465, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2152, 465, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2153, 465, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2154, 465, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2155, 465, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2156, 466, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2157, 466, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2158, 467, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2159, 467, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2160, 467, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2161, 467, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2162, 467, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2163, 467, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2164, 467, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2165, 468, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2166, 468, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2167, 468, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2168, 468, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2169, 468, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2170, 468, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2171, 468, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2172, 468, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2173, 469, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2174, 469, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2175, 469, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2176, 470, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2177, 470, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2178, 471, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2179, 471, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2180, 471, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2181, 471, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2182, 471, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2183, 471, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2184, 471, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2185, 472, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2186, 472, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2187, 473, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2188, 473, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2189, 473, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2190, 473, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2191, 473, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2192, 474, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2193, 474, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2194, 474, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2195, 474, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2196, 475, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2197, 475, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2198, 476, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2199, 476, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2200, 476, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2201, 476, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2202, 476, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2203, 476, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2204, 476, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2205, 477, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2206, 477, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2207, 477, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2208, 478, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2209, 478, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2210, 478, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2211, 478, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2212, 478, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2213, 479, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2214, 479, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2215, 479, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2216, 479, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2217, 479, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2218, 480, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2219, 480, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2220, 480, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2221, 480, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2222, 481, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2223, 481, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2224, 481, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2225, 481, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2226, 481, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2227, 481, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2228, 482, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2229, 482, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2230, 482, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2231, 483, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2232, 483, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2233, 483, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2234, 483, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2235, 483, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2236, 484, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2237, 484, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2238, 484, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2239, 484, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2240, 484, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2241, 484, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2242, 484, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2243, 485, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2244, 485, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2245, 485, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2246, 486, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2247, 486, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2248, 486, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2249, 486, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2250, 486, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2251, 486, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2252, 487, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2253, 487, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2254, 487, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2255, 488, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2256, 488, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2257, 488, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2258, 488, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2259, 488, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2260, 489, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2261, 489, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2262, 489, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2263, 489, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2264, 489, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2265, 489, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2266, 489, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2267, 489, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2268, 490, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2269, 490, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2270, 491, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2271, 491, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2272, 491, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2273, 491, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2274, 491, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2275, 491, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2276, 492, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2277, 492, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2278, 493, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2279, 493, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2280, 493, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2281, 494, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2282, 494, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2283, 494, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2284, 494, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2285, 494, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2286, 494, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2287, 496, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2288, 496, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2289, 496, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2290, 496, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2291, 496, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2292, 498, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2293, 498, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2294, 499, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2295, 499, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2296, 500, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2297, 500, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2298, 500, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2299, 500, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2300, 500, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2301, 500, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2302, 500, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2303, 500, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2304, 501, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2305, 501, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2306, 501, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2307, 501, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2308, 501, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2309, 502, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2310, 502, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2311, 502, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2312, 502, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2313, 502, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2314, 502, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2315, 502, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2316, 503, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2317, 503, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2318, 503, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2319, 504, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2320, 504, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2321, 504, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2322, 504, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2323, 504, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2324, 504, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2325, 505, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2326, 505, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2327, 505, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2328, 505, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2329, 506, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2330, 506, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2331, 506, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2332, 506, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2333, 506, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2334, 506, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2335, 507, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2336, 507, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2337, 508, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2338, 508, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2339, 508, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2340, 509, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2341, 509, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2342, 509, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2343, 510, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2344, 510, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2345, 510, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2346, 510, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2347, 511, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2348, 511, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2349, 511, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2350, 511, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2351, 511, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2352, 512, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2353, 512, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2354, 512, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2355, 512, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2356, 512, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2357, 512, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2358, 513, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2359, 513, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2360, 514, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2361, 514, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2362, 514, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2363, 514, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2364, 514, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2365, 514, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2366, 515, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2367, 515, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2368, 516, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2369, 516, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2370, 516, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2371, 517, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2372, 517, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2373, 518, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2374, 518, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2375, 518, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2376, 518, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2377, 518, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2378, 518, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2379, 519, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2380, 519, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2381, 519, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2382, 519, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2383, 520, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2384, 520, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2385, 521, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2386, 521, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2387, 521, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2388, 521, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2389, 521, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2390, 521, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2391, 521, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2392, 522, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2393, 522, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2394, 523, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2395, 523, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2396, 524, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2397, 524, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2398, 524, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2399, 524, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2400, 524, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2401, 524, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2402, 525, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2403, 525, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2404, 525, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2405, 525, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2406, 525, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2407, 525, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2408, 525, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2409, 525, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2410, 526, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2411, 526, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2412, 526, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2413, 526, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2414, 527, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2415, 527, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2416, 527, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2417, 527, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2418, 527, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2419, 527, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2420, 528, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2421, 528, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2422, 528, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2423, 529, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2424, 529, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2425, 529, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2426, 529, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2427, 530, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2428, 530, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2429, 530, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2430, 531, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2431, 531, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2432, 531, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2433, 531, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2434, 531, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2435, 531, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2436, 531, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2437, 531, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2438, 532, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2439, 532, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2440, 532, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2441, 532, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2442, 533, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2443, 533, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2444, 533, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2445, 534, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2446, 534, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2447, 534, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2448, 534, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2449, 534, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2450, 535, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2451, 535, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2452, 535, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2453, 535, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2454, 536, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2455, 536, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2456, 536, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2457, 536, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2458, 536, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2459, 537, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2460, 537, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2461, 537, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2462, 538, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2463, 538, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2464, 538, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2465, 539, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2466, 539, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2467, 540, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2468, 540, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2469, 540, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2470, 541, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2471, 541, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2472, 542, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2473, 542, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2474, 542, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2475, 542, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2476, 542, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2477, 542, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2478, 543, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2479, 543, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2480, 544, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2481, 544, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2482, 544, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2483, 544, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2484, 545, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2485, 545, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2486, 545, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2487, 545, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2488, 545, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2489, 545, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2490, 546, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2491, 546, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2492, 546, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2493, 546, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2494, 547, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2495, 547, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2496, 548, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2497, 548, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2498, 549, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2499, 549, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2500, 549, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2501, 549, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2502, 550, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2503, 550, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2504, 550, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2505, 551, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2506, 551, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2507, 551, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2508, 551, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2509, 551, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2510, 551, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2511, 552, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2512, 552, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2513, 552, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2514, 552, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2515, 553, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2516, 553, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2517, 553, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2518, 554, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2519, 554, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2520, 554, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2521, 554, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2522, 554, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2523, 554, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2524, 554, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2525, 555, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2526, 555, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2527, 555, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2528, 555, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2529, 555, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2530, 555, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2531, 555, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2532, 556, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2533, 556, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2534, 556, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2535, 556, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2536, 556, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2537, 556, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2538, 556, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2539, 557, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2540, 557, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2541, 557, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2542, 557, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2543, 557, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2544, 558, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2545, 558, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2546, 559, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2547, 559, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2548, 559, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2549, 559, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2550, 559, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2551, 559, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2552, 559, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2553, 559, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2554, 560, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2555, 560, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2556, 560, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2557, 560, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2558, 560, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2559, 561, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2560, 561, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2561, 561, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2562, 561, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2563, 562, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2564, 562, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2565, 562, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2566, 562, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2567, 562, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2568, 562, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2569, 563, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2570, 563, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2571, 563, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2572, 563, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2573, 563, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2574, 563, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2575, 563, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2576, 564, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2577, 564, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2578, 564, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2579, 565, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2580, 565, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2581, 566, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2582, 566, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2583, 567, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2584, 567, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2585, 567, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2586, 567, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2587, 568, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2588, 568, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2589, 568, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2590, 568, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2591, 569, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2592, 569, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2593, 570, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2594, 570, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2595, 570, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2596, 570, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2597, 570, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2598, 571, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2599, 571, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2600, 571, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2601, 571, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2602, 571, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2603, 571, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2604, 572, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2605, 572, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2606, 572, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2607, 572, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2608, 572, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2609, 572, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2610, 572, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2611, 572, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2612, 573, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2613, 573, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2614, 573, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2615, 573, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2616, 574, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2617, 574, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2618, 574, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2619, 574, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2620, 574, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2621, 575, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2622, 575, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2623, 575, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2624, 575, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2625, 575, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2626, 575, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2627, 576, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2628, 576, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2629, 576, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2630, 577, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2631, 577, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2632, 577, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2633, 578, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2634, 578, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2635, 578, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2636, 578, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2637, 578, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2638, 579, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2639, 579, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2640, 579, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2641, 579, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2642, 579, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2643, 579, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2644, 579, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2645, 580, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2646, 580, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2647, 580, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2648, 580, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2649, 580, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2650, 580, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2651, 581, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2652, 581, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2653, 581, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2654, 582, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2655, 582, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2656, 583, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2657, 583, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2658, 583, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2659, 583, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2660, 583, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2661, 584, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2662, 584, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2663, 585, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2664, 585, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2665, 585, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2666, 585, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2667, 586, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2668, 586, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2669, 586, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2670, 586, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2671, 586, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2672, 586, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2673, 586, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2674, 586, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2675, 587, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2676, 587, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2677, 587, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2678, 588, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2679, 588, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2680, 588, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2681, 588, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2682, 589, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2683, 589, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2684, 589, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2685, 589, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2686, 590, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2687, 590, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2688, 590, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2689, 590, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2690, 590, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2691, 590, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2692, 590, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2693, 591, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2694, 591, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2695, 591, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2696, 592, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2697, 592, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2698, 592, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2699, 592, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2700, 593, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2701, 593, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2702, 593, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2703, 593, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2704, 594, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2705, 594, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2706, 594, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2707, 595, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2708, 595, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2709, 595, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2710, 595, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2711, 595, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2712, 595, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2713, 595, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2714, 595, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2715, 596, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2716, 596, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2717, 596, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2718, 596, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2719, 596, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2720, 596, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2721, 597, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2722, 597, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2723, 597, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2724, 597, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2725, 598, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2726, 598, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2727, 598, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2728, 598, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2729, 599, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2730, 599, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2731, 599, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2732, 599, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2733, 599, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2734, 600, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2735, 600, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2736, 600, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2737, 600, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2738, 601, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2739, 601, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2740, 601, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2741, 601, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2742, 601, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2743, 602, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2744, 602, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2745, 602, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2746, 602, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2747, 602, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2748, 603, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2749, 603, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2750, 603, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2751, 603, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2752, 603, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2753, 603, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2754, 604, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2755, 604, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2756, 604, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2757, 605, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2758, 605, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2759, 606, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2760, 606, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2761, 606, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2762, 606, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2763, 606, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2764, 606, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2765, 608, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2766, 608, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2767, 608, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2768, 608, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2769, 608, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2770, 608, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2771, 609, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2772, 609, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2773, 609, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2774, 609, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2775, 609, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2776, 609, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2777, 609, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2778, 609, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2779, 610, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2780, 610, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2781, 610, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2782, 610, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2783, 610, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2784, 611, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2785, 611, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2786, 611, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2787, 611, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2788, 611, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2789, 611, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2790, 612, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2791, 612, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2792, 613, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2793, 613, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2794, 614, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2795, 614, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2796, 614, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2797, 614, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2798, 614, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2799, 614, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2800, 615, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2801, 615, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2802, 615, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2803, 615, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2804, 616, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2805, 616, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2806, 616, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2807, 616, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2808, 616, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2809, 616, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2810, 617, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2811, 617, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2812, 617, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2813, 618, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2814, 618, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2815, 618, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2816, 618, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2817, 619, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2818, 619, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2819, 619, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2820, 619, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2821, 619, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2822, 619, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2823, 620, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2824, 620, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2825, 620, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2826, 620, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2827, 620, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2828, 621, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2829, 621, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2830, 621, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2831, 621, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2832, 621, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2833, 621, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2834, 621, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2835, 621, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2836, 622, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2837, 622, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2838, 623, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2839, 623, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2840, 623, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2841, 623, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2842, 623, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2843, 624, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2844, 624, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2845, 624, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2846, 624, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2847, 624, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2848, 624, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2849, 624, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2850, 625, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2851, 625, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2852, 625, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2853, 625, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2854, 625, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2855, 625, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2856, 625, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2857, 626, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2858, 626, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2859, 626, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2860, 626, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2861, 627, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2862, 627, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2863, 627, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2864, 628, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2865, 628, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2866, 628, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2867, 628, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2868, 628, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2869, 629, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2870, 629, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2871, 629, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2872, 629, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2873, 630, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2874, 630, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2875, 630, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2876, 631, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2877, 631, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2878, 631, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2879, 631, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2880, 631, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2881, 632, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2882, 632, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2883, 632, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2884, 633, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2885, 633, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2886, 633, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2887, 634, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2888, 634, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2889, 634, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2890, 634, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2891, 635, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2892, 635, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2893, 636, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2894, 636, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2895, 636, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2896, 637, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2897, 637, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2898, 637, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2899, 637, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2900, 637, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2901, 638, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2902, 638, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2903, 638, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2904, 638, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2905, 638, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2906, 638, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2907, 638, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2908, 638, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2909, 639, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2910, 639, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2911, 639, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2912, 640, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2913, 640, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2914, 640, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2915, 641, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2916, 641, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2917, 641, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2918, 641, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2919, 641, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2920, 641, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2921, 641, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2922, 643, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2923, 643, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2924, 643, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2925, 643, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2926, 643, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2927, 643, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2928, 644, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2929, 644, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2930, 644, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2931, 644, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2932, 644, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2933, 644, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2934, 644, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2935, 645, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2936, 645, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2937, 645, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2938, 645, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2939, 645, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2940, 645, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2941, 646, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2942, 646, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2943, 646, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2944, 646, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2945, 646, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2946, 647, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2947, 647, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2948, 647, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2949, 647, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2950, 647, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2951, 647, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2952, 648, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2953, 648, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2954, 648, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2955, 648, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2956, 648, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2957, 648, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2958, 649, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2959, 649, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2960, 649, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2961, 649, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2962, 649, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2963, 649, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2964, 650, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2965, 650, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2966, 650, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2967, 650, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2968, 650, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2969, 650, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2970, 651, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2971, 651, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2972, 651, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2973, 651, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2974, 651, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2975, 651, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2976, 652, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2977, 652, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2978, 652, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2979, 652, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2980, 653, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2981, 653, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2982, 654, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2983, 654, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2984, 654, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2985, 654, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2986, 655, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2987, 655, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2988, 655, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2989, 655, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2990, 655, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2991, 655, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2992, 656, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2993, 656, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2994, 657, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2995, 657, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2996, 657, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2997, 657, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2998, 657, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (2999, 657, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3000, 658, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3001, 658, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3002, 658, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3003, 658, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3004, 659, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3005, 659, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3006, 660, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3007, 660, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3008, 660, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3009, 660, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3010, 661, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3011, 661, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3012, 661, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3013, 661, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3014, 662, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3015, 662, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3016, 662, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3017, 662, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3018, 663, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3019, 663, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3020, 663, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3021, 663, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3022, 663, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3023, 664, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3024, 664, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3025, 664, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3026, 664, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3027, 664, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3028, 665, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3029, 665, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3030, 665, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3031, 665, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3032, 665, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3033, 665, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3034, 665, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3035, 666, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3036, 666, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3037, 666, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3038, 666, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3039, 666, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3040, 667, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3041, 667, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3042, 667, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3043, 667, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3044, 668, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3045, 668, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3046, 668, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3047, 668, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3048, 668, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3049, 670, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3050, 670, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3051, 670, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3052, 670, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3053, 670, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3054, 670, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3055, 670, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3056, 672, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3057, 672, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3058, 672, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3059, 672, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3060, 672, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3061, 672, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3062, 673, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3063, 673, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3064, 673, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3065, 673, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3066, 674, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3067, 674, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3068, 674, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3069, 675, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3070, 675, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3071, 676, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3072, 676, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3073, 676, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3074, 676, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3075, 676, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3076, 676, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3077, 677, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3078, 677, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3079, 677, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3080, 677, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3081, 677, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3082, 677, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3083, 677, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3084, 678, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3085, 678, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3086, 678, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3087, 678, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3088, 679, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3089, 679, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3090, 679, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3091, 679, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3092, 680, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3093, 680, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3094, 680, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3095, 680, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3096, 680, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3097, 680, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3098, 681, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3099, 681, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3100, 681, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3101, 681, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3102, 681, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3103, 681, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3104, 682, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3105, 682, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3106, 682, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3107, 683, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3108, 683, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3109, 683, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3110, 683, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3111, 683, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3112, 683, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3113, 683, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3114, 683, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3115, 684, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3116, 684, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3117, 685, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3118, 685, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3119, 686, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3120, 686, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3121, 686, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3122, 686, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3123, 687, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3124, 687, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3125, 687, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3126, 687, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3127, 687, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3128, 687, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3129, 687, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3130, 688, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3131, 688, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3132, 688, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3133, 688, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3134, 689, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3135, 689, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3136, 689, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3137, 689, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3138, 689, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3139, 689, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3140, 690, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3141, 690, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3142, 690, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3143, 690, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3144, 690, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3145, 690, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3146, 691, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3147, 691, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3148, 691, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3149, 691, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3150, 691, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3151, 692, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3152, 692, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3153, 692, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3154, 693, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3155, 693, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3156, 693, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3157, 693, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3158, 693, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3159, 694, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3160, 694, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3161, 694, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3162, 694, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3163, 694, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3164, 694, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3165, 695, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3166, 695, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3167, 696, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3168, 696, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3169, 696, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3170, 696, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3171, 696, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3172, 697, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3173, 697, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3174, 697, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3175, 697, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3176, 697, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3177, 697, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3178, 697, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3179, 697, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3180, 698, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3181, 698, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3182, 698, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3183, 698, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3184, 698, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3185, 698, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3186, 698, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3187, 699, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3188, 699, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3189, 700, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3190, 700, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3191, 700, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3192, 702, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3193, 702, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3194, 702, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3195, 702, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3196, 702, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3197, 702, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3198, 702, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3199, 702, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3200, 703, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3201, 703, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3202, 704, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3203, 704, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3204, 704, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3205, 704, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3206, 704, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3207, 705, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3208, 705, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3209, 705, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3210, 705, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3211, 706, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3212, 706, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3213, 706, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3214, 706, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3215, 706, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3216, 706, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3217, 707, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3218, 707, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3219, 707, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3220, 707, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3221, 707, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3222, 707, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3223, 708, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3224, 708, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3225, 708, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3226, 708, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3227, 709, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3228, 709, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3229, 709, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3230, 709, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3231, 709, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3232, 709, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3233, 710, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3234, 710, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3235, 710, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3236, 710, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3237, 710, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3238, 710, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3239, 711, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3240, 711, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3241, 711, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3242, 711, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3243, 714, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3244, 714, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3245, 714, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3246, 715, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3247, 715, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3248, 715, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3249, 715, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3250, 715, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3251, 715, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3252, 715, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3253, 716, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3254, 716, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3255, 716, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3256, 716, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3257, 716, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3258, 717, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3259, 717, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3260, 717, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3261, 717, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3262, 718, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3263, 718, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3264, 719, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3265, 719, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3266, 720, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3267, 720, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3268, 720, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3269, 720, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3270, 720, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3271, 720, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3272, 720, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3273, 721, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3274, 721, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3275, 722, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3276, 722, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3277, 722, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3278, 722, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3279, 723, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3280, 723, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3281, 723, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3282, 723, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3283, 723, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3284, 723, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3285, 723, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3286, 724, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3287, 724, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3288, 724, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3289, 724, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3290, 724, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3291, 724, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3292, 725, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3293, 725, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3294, 725, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3295, 725, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3296, 725, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3297, 725, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3298, 726, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3299, 726, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3300, 726, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3301, 727, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3302, 727, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3303, 727, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3304, 727, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3305, 727, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3306, 728, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3307, 728, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3308, 728, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3309, 728, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3310, 728, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3311, 729, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3312, 729, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3313, 729, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3314, 729, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3315, 730, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3316, 730, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3317, 730, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3318, 730, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3319, 730, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3320, 730, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3321, 730, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3322, 730, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3323, 731, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3324, 731, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3325, 731, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3326, 732, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3327, 732, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3328, 732, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3329, 732, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3330, 733, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3331, 733, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3332, 733, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3333, 733, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3334, 733, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3335, 733, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3336, 733, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3337, 734, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3338, 734, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3339, 734, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3340, 734, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3341, 734, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3342, 734, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3343, 735, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3344, 735, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3345, 735, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3346, 735, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3347, 735, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3348, 735, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3349, 735, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3350, 736, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3351, 736, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3352, 736, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3353, 736, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3354, 737, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3355, 737, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3356, 737, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3357, 737, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3358, 737, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3359, 737, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3360, 738, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3361, 738, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3362, 738, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3363, 738, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3364, 738, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3365, 738, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3366, 738, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3367, 738, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3368, 739, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3369, 739, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3370, 739, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3371, 739, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3372, 739, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3373, 740, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3374, 740, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3375, 740, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3376, 741, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3377, 741, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3378, 741, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3379, 741, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3380, 741, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3381, 741, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3382, 743, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3383, 743, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3384, 743, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3385, 743, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3386, 743, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3387, 743, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3388, 744, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3389, 744, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3390, 744, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3391, 744, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3392, 744, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3393, 745, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3394, 745, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3395, 745, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3396, 745, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3397, 745, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3398, 745, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3399, 745, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3400, 745, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3401, 746, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3402, 746, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3403, 746, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3404, 746, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3405, 746, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3406, 747, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3407, 747, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3408, 747, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3409, 747, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3410, 747, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3411, 748, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3412, 748, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3413, 748, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3414, 748, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3415, 748, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3416, 748, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3417, 748, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3418, 748, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3419, 749, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3420, 749, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3421, 749, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3422, 749, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3423, 750, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3424, 750, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3425, 750, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3426, 751, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3427, 751, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3428, 752, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3429, 752, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3430, 752, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3431, 753, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3432, 753, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3433, 753, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3434, 753, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3435, 753, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3436, 753, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3437, 753, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3438, 753, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3439, 754, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3440, 754, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3441, 755, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3442, 755, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3443, 755, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3444, 755, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3445, 755, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3446, 755, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3447, 755, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3448, 756, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3449, 756, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3450, 756, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3451, 757, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3452, 757, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3453, 757, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3454, 757, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3455, 757, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3456, 758, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3457, 758, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3458, 758, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3459, 759, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3460, 759, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3461, 759, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3462, 759, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3463, 759, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3464, 759, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3465, 760, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3466, 760, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3467, 760, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3468, 760, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3469, 760, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3470, 760, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3471, 760, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3472, 761, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3473, 761, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3474, 761, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3475, 762, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3476, 762, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3477, 762, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3478, 762, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3479, 763, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3480, 763, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3481, 763, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3482, 763, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3483, 763, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3484, 764, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3485, 764, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3486, 764, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3487, 764, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3488, 764, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3489, 764, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3490, 764, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3491, 764, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3492, 765, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3493, 765, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3494, 765, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3495, 765, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3496, 766, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3497, 766, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3498, 766, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3499, 767, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3500, 767, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3501, 767, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3502, 767, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3503, 767, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3504, 767, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3505, 767, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3506, 767, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3507, 768, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3508, 768, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3509, 768, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3510, 768, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3511, 768, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3512, 768, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3513, 769, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3514, 769, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3515, 770, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3516, 770, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3517, 770, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3518, 771, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3519, 771, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3520, 771, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3521, 771, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3522, 771, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3523, 771, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3524, 771, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3525, 772, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3526, 772, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3527, 772, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3528, 772, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3529, 772, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3530, 772, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3531, 773, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3532, 773, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3533, 773, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3534, 773, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3535, 773, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3536, 773, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3537, 773, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3538, 773, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3539, 774, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3540, 774, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3541, 774, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3542, 774, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3543, 775, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3544, 775, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3545, 775, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3546, 775, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3547, 775, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3548, 776, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3549, 776, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3550, 776, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3551, 776, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3552, 776, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3553, 777, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3554, 777, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3555, 777, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3556, 777, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3557, 777, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3558, 777, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3559, 778, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3560, 778, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3561, 778, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3562, 778, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3563, 778, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3564, 778, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3565, 779, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3566, 779, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3567, 780, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3568, 780, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3569, 780, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3570, 781, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3571, 781, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3572, 782, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3573, 782, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3574, 782, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3575, 782, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3576, 782, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3577, 782, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3578, 783, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3579, 783, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3580, 783, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3581, 783, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3582, 784, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3583, 784, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3584, 784, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3585, 784, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3586, 784, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3587, 784, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3588, 785, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3589, 785, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3590, 785, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3591, 785, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3592, 785, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3593, 785, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3594, 786, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3595, 786, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3596, 786, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3597, 786, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3598, 786, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3599, 786, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3600, 786, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3601, 787, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3602, 787, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3603, 787, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3604, 788, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3605, 788, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3606, 788, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3607, 788, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3608, 789, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3609, 789, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3610, 789, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3611, 789, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3612, 789, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3613, 789, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3614, 789, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3615, 789, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3616, 790, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3617, 790, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3618, 790, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3619, 790, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3620, 790, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3621, 790, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3622, 790, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3623, 791, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3624, 791, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3625, 791, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3626, 791, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3627, 791, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3628, 791, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3629, 792, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3630, 792, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3631, 792, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3632, 793, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3633, 793, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3634, 793, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3635, 793, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3636, 794, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3637, 794, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3638, 794, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3639, 794, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3640, 795, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3641, 795, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3642, 795, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3643, 795, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3644, 796, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3645, 796, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3646, 796, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3647, 796, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3648, 796, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3649, 797, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3650, 797, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3651, 797, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3652, 797, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3653, 797, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3654, 798, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3655, 798, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3656, 798, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3657, 798, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3658, 799, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3659, 799, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3660, 800, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3661, 800, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3662, 800, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3663, 800, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3664, 800, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3665, 800, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3666, 803, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3667, 803, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3668, 803, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3669, 803, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3670, 803, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3671, 803, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3672, 804, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3673, 804, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3674, 804, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3675, 804, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3676, 804, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3677, 804, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3678, 804, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3679, 805, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3680, 805, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3681, 805, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3682, 805, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3683, 805, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3684, 806, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3685, 806, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3686, 806, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3687, 806, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3688, 806, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3689, 807, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3690, 807, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3691, 807, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3692, 807, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3693, 807, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3694, 808, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3695, 808, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3696, 809, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3697, 809, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3698, 809, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3699, 809, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3700, 810, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3701, 810, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3702, 810, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3703, 810, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3704, 810, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3705, 810, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3706, 810, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3707, 811, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3708, 811, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3709, 811, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3710, 812, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3711, 812, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3712, 812, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3713, 812, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3714, 812, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3715, 812, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3716, 813, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3717, 813, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3718, 813, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3719, 813, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3720, 814, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3721, 814, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3722, 814, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3723, 814, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3724, 814, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3725, 814, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3726, 814, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3727, 815, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3728, 815, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3729, 815, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3730, 816, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3731, 816, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3732, 816, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3733, 816, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3734, 816, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3735, 816, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3736, 816, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3737, 817, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3738, 817, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3739, 818, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3740, 818, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3741, 818, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3742, 818, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3743, 818, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3744, 819, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3745, 819, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3746, 819, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3747, 820, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3748, 820, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3749, 820, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3750, 820, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3751, 820, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3752, 820, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3753, 821, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3754, 821, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3755, 821, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3756, 821, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3757, 822, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3758, 822, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3759, 823, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3760, 823, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3761, 823, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3762, 823, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3763, 823, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3764, 823, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3765, 823, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3766, 824, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3767, 824, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3768, 824, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3769, 824, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3770, 825, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3771, 825, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3772, 825, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3773, 826, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3774, 826, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3775, 827, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3776, 827, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3777, 827, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3778, 827, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3779, 827, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3780, 827, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3781, 828, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3782, 828, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3783, 828, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3784, 828, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3785, 829, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3786, 829, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3787, 829, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3788, 829, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3789, 829, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3790, 830, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3791, 830, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3792, 830, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3793, 830, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3794, 831, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3795, 831, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3796, 831, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3797, 832, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3798, 832, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3799, 832, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3800, 832, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3801, 833, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3802, 833, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3803, 833, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3804, 833, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3805, 833, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3806, 833, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3807, 833, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3808, 834, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3809, 834, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3810, 834, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3811, 835, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3812, 835, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3813, 835, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3814, 835, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3815, 835, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3816, 835, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3817, 835, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3818, 835, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3819, 836, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3820, 836, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3821, 836, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3822, 837, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3823, 837, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3824, 837, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3825, 838, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3826, 838, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3827, 838, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3828, 838, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3829, 838, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3830, 838, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3831, 839, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3832, 839, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3833, 840, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3834, 840, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3835, 840, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3836, 840, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3837, 841, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3838, 841, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3839, 841, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3840, 841, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3841, 841, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3842, 841, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3843, 841, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3844, 842, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3845, 842, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3846, 842, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3847, 842, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3848, 843, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3849, 843, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3850, 843, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3851, 843, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3852, 843, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3853, 843, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3854, 843, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3855, 844, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3856, 844, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3857, 844, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3858, 844, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3859, 845, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3860, 845, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3861, 845, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3862, 845, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3863, 845, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3864, 845, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3865, 845, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3866, 846, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3867, 846, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3868, 846, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3869, 846, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3870, 846, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3871, 846, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3872, 846, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3873, 846, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3874, 847, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3875, 847, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3876, 847, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3877, 847, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3878, 848, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3879, 848, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3880, 848, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3881, 849, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3882, 849, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3883, 849, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3884, 849, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3885, 849, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3886, 849, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3887, 849, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3888, 849, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3889, 850, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3890, 850, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3891, 850, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3892, 850, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3893, 850, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3894, 850, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3895, 850, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3896, 851, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3897, 851, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3898, 851, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3899, 851, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3900, 851, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3901, 851, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3902, 852, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3903, 852, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3904, 852, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3905, 852, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3906, 852, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3907, 852, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3908, 852, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3909, 853, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3910, 853, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3911, 853, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3912, 854, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3913, 854, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3914, 854, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3915, 854, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3916, 855, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3917, 855, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3918, 855, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3919, 855, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3920, 856, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3921, 856, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3922, 856, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3923, 856, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3924, 856, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3925, 856, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3926, 856, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3927, 856, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3928, 857, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3929, 857, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3930, 857, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3931, 857, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3932, 857, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3933, 857, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3934, 857, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3935, 858, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3936, 858, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3937, 858, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3938, 858, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3939, 859, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3940, 859, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3941, 859, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3942, 859, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3943, 859, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3944, 859, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3945, 861, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3946, 861, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3947, 861, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3948, 861, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3949, 861, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3950, 861, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3951, 862, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3952, 862, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3953, 862, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3954, 862, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3955, 862, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3956, 863, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3957, 863, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3958, 863, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3959, 863, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3960, 863, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3961, 863, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3962, 863, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3963, 864, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3964, 864, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3965, 864, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3966, 864, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3967, 864, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3968, 864, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3969, 865, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3970, 865, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3971, 865, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3972, 865, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3973, 865, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3974, 865, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3975, 866, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3976, 866, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3977, 867, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3978, 867, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3979, 867, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3980, 867, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3981, 868, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3982, 868, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3983, 868, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3984, 869, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3985, 869, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3986, 869, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3987, 869, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3988, 869, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3989, 869, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3990, 869, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3991, 870, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3992, 870, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3993, 870, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3994, 870, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3995, 870, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3996, 870, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3997, 870, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3998, 870, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (3999, 871, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4000, 871, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4001, 871, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4002, 871, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4003, 871, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4004, 872, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4005, 872, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4006, 872, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4007, 873, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4008, 873, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4009, 873, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4010, 873, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4011, 873, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4012, 873, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4013, 873, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4014, 873, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4015, 875, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4016, 875, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4017, 875, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4018, 875, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4019, 875, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4020, 875, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4021, 875, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4022, 876, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4023, 876, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4024, 877, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4025, 877, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4026, 877, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4027, 877, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4028, 877, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4029, 878, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4030, 878, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4031, 878, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4032, 878, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4033, 879, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4034, 879, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4035, 879, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4036, 879, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4037, 879, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4038, 879, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4039, 879, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4040, 880, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4041, 880, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4042, 880, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4043, 880, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4044, 880, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4045, 880, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4046, 880, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4047, 880, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4048, 881, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4049, 881, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4050, 881, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4051, 881, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4052, 882, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4053, 882, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4054, 882, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4055, 882, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4056, 883, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4057, 883, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4058, 884, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4059, 884, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4060, 884, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4061, 885, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4062, 885, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4063, 886, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4064, 886, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4065, 886, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4066, 886, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4067, 887, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4068, 887, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4069, 887, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4070, 887, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4071, 887, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4072, 887, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4073, 888, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4074, 888, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4075, 888, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4076, 888, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4077, 889, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4078, 889, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4079, 889, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4080, 890, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4081, 890, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4082, 890, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4083, 890, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4084, 890, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4085, 890, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4086, 890, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4087, 891, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4088, 891, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4089, 891, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4090, 891, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4091, 891, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4092, 891, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4093, 891, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4094, 892, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4095, 892, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4096, 892, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4097, 892, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4098, 892, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4099, 892, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4100, 892, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4101, 893, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4102, 893, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4103, 893, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4104, 893, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4105, 893, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4106, 893, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4107, 893, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4108, 893, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4109, 894, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4110, 894, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4111, 894, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4112, 894, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4113, 894, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4114, 895, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4115, 895, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4116, 895, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4117, 895, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4118, 895, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4119, 895, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4120, 895, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4121, 896, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4122, 896, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4123, 896, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4124, 896, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4125, 897, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4126, 897, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4127, 897, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4128, 897, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4129, 897, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4130, 897, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4131, 897, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4132, 897, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4133, 898, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4134, 898, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4135, 898, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4136, 898, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4137, 898, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4138, 899, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4139, 899, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4140, 899, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4141, 900, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4142, 900, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4143, 900, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4144, 900, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4145, 901, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4146, 901, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4147, 901, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4148, 901, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4149, 901, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4150, 901, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4151, 901, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4152, 902, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4153, 902, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4154, 902, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4155, 902, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4156, 902, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4157, 902, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4158, 902, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4159, 903, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4160, 903, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4161, 904, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4162, 904, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4163, 905, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4164, 905, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4165, 905, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4166, 906, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4167, 906, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4168, 906, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4169, 906, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4170, 906, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4171, 907, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4172, 907, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4173, 907, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4174, 907, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4175, 908, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4176, 908, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4177, 908, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4178, 908, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4179, 910, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4180, 910, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4181, 911, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4182, 911, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4183, 911, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4184, 911, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4185, 911, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4186, 911, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4187, 911, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4188, 911, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4189, 912, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4190, 912, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4191, 912, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4192, 912, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4193, 912, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4194, 912, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4195, 913, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4196, 913, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4197, 913, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4198, 913, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4199, 913, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4200, 913, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4201, 914, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4202, 914, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4203, 914, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4204, 914, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4205, 914, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4206, 914, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4207, 915, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4208, 915, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4209, 915, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4210, 915, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4211, 915, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4212, 915, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4213, 916, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4214, 916, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4215, 916, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4216, 916, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4217, 917, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4218, 917, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4219, 917, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4220, 917, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4221, 917, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4222, 918, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4223, 918, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4224, 918, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4225, 918, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4226, 919, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4227, 919, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4228, 919, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4229, 919, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4230, 920, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4231, 920, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4232, 920, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4233, 920, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4234, 920, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4235, 921, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4236, 921, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4237, 921, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4238, 921, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4239, 922, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4240, 922, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4241, 922, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4242, 922, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4243, 922, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4244, 922, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4245, 922, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4246, 923, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4247, 923, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4248, 923, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4249, 924, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4250, 924, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4251, 924, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4252, 924, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4253, 924, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4254, 925, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4255, 925, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4256, 925, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4257, 925, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4258, 925, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4259, 926, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4260, 926, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4261, 927, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4262, 927, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4263, 927, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4264, 927, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4265, 928, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4266, 928, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4267, 928, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4268, 929, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4269, 929, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4270, 929, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4271, 929, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4272, 930, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4273, 930, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4274, 930, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4275, 930, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4276, 930, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4277, 930, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4278, 931, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4279, 931, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4280, 931, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4281, 932, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4282, 932, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4283, 932, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4284, 932, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4285, 933, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4286, 933, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4287, 933, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4288, 934, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4289, 934, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4290, 934, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4291, 935, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4292, 935, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4293, 936, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4294, 936, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4295, 936, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4296, 936, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4297, 936, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4298, 936, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4299, 937, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4300, 937, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4301, 937, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4302, 937, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4303, 937, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4304, 938, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4305, 938, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4306, 938, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4307, 938, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4308, 938, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4309, 938, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4310, 939, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4311, 939, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4312, 939, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4313, 939, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4314, 940, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4315, 940, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4316, 940, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4317, 941, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4318, 941, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4319, 941, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4320, 941, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4321, 941, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4322, 941, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4323, 941, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4324, 942, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4325, 942, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4326, 942, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4327, 942, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4328, 944, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4329, 944, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4330, 944, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4331, 944, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4332, 944, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4333, 945, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4334, 945, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4335, 945, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4336, 945, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4337, 945, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4338, 945, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4339, 945, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4340, 945, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4341, 946, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4342, 946, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4343, 946, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4344, 946, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4345, 947, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4346, 947, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4347, 948, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4348, 948, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4349, 948, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4350, 948, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4351, 948, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4352, 948, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4353, 949, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4354, 949, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4355, 949, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4356, 949, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4357, 949, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4358, 949, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4359, 951, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4360, 951, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4361, 951, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4362, 951, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4363, 951, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4364, 951, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4365, 951, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4366, 952, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4367, 952, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4368, 952, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4369, 953, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4370, 953, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4371, 953, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4372, 953, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4373, 953, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4374, 953, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4375, 956, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4376, 956, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4377, 956, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4378, 956, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4379, 957, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4380, 957, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4381, 957, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4382, 957, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4383, 957, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4384, 958, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4385, 958, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4386, 958, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4387, 958, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4388, 958, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4389, 958, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4390, 959, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4391, 959, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4392, 960, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4393, 960, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4394, 960, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4395, 961, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4396, 961, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4397, 961, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4398, 961, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4399, 961, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4400, 962, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4401, 962, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4402, 962, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4403, 962, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4404, 963, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4405, 963, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4406, 963, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4407, 963, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4408, 963, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4409, 964, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4410, 964, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4411, 964, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4412, 964, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4413, 964, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4414, 965, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4415, 965, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4416, 966, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4417, 966, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4418, 966, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4419, 966, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4420, 966, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4421, 966, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4422, 967, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4423, 967, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4424, 967, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4425, 967, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4426, 967, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4427, 968, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4428, 968, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4429, 968, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4430, 969, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4431, 969, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4432, 969, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4433, 969, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4434, 970, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4435, 970, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4436, 970, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4437, 970, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4438, 970, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4439, 970, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4440, 970, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4441, 971, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4442, 971, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4443, 971, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4444, 971, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4445, 972, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4446, 972, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4447, 972, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4448, 972, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4449, 972, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4450, 972, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4451, 973, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4452, 973, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4453, 973, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4454, 973, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4455, 973, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4456, 973, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4457, 973, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4458, 973, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4459, 974, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4460, 974, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4461, 975, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4462, 975, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4463, 975, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4464, 975, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4465, 975, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4466, 976, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4467, 976, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4468, 976, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4469, 976, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4470, 976, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4471, 976, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4472, 977, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4473, 977, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4474, 977, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4475, 978, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4476, 978, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4477, 978, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4478, 979, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4479, 979, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4480, 979, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4481, 979, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4482, 979, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4483, 979, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4484, 979, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4485, 980, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4486, 980, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4487, 980, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4488, 980, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4489, 980, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4490, 981, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4491, 981, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4492, 981, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4493, 981, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4494, 981, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4495, 981, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4496, 982, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4497, 982, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4498, 982, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4499, 982, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4500, 982, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4501, 982, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4502, 982, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4503, 983, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4504, 983, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4505, 983, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4506, 984, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4507, 984, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4508, 985, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4509, 985, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4510, 985, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4511, 985, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4512, 985, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4513, 985, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4514, 985, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4515, 986, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4516, 986, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4517, 986, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4518, 986, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4519, 986, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4520, 986, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4521, 987, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4522, 987, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4523, 987, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4524, 987, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4525, 988, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4526, 988, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4527, 988, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4528, 988, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4529, 988, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4530, 989, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4531, 989, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4532, 989, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4533, 989, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4534, 989, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4535, 989, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4536, 990, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4537, 990, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4538, 991, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4539, 991, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4540, 991, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4541, 991, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4542, 991, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4543, 992, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4544, 992, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4545, 992, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4546, 992, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4547, 993, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4548, 993, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4549, 993, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4550, 993, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4551, 993, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4552, 993, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4553, 993, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4554, 994, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4555, 994, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4556, 994, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4557, 995, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4558, 995, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4559, 995, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4560, 995, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4561, 995, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4562, 995, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4563, 996, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4564, 996, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4565, 997, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4566, 997, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4567, 998, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4568, 998, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4569, 999, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4570, 999, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4571, 999, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4572, 999, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4573, 999, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4574, 1000, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4575, 1000, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4576, 1000, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4577, 1000, 1, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4578, 1000, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4579, 1000, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4580, 1000, 2, '2006-02-15 10:09:17'); INSERT INTO inventory (inventory_id, film_id, store_id, last_update) VALUES (4581, 1000, 2, '2006-02-15 10:09:17'); SELECT pg_catalog.setval('inventory_inventory_id_seq', 4581, true); INSERT INTO language (language_id, name, last_update) VALUES (1, 'English ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (2, 'Italian ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (3, 'Japanese ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (4, 'Mandarin ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (5, 'French ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (6, 'German ', '2006-02-15 10:02:19'); INSERT INTO language (language_id, name, last_update) VALUES (7, 'basque ', '2017-09-13 14:55:32.419'); SELECT pg_catalog.setval('language_language_id_seq', 7, true); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16050, 269, 2, 7, 1.99, '2007-01-24 21:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16051, 269, 1, 98, 0.99, '2007-01-25 15:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16052, 269, 2, 678, 6.99, '2007-01-28 21:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16053, 269, 2, 703, 0.99, '2007-01-29 00:58:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16054, 269, 1, 750, 4.99, '2007-01-29 08:10:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16055, 269, 2, 1099, 2.99, '2007-01-31 12:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16056, 270, 1, 193, 1.99, '2007-01-26 05:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16057, 270, 1, 1040, 4.99, '2007-01-31 04:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16058, 271, 1, 1096, 8.99, '2007-01-31 11:59:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16059, 272, 1, 33, 0.99, '2007-01-25 02:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16060, 272, 1, 405, 6.99, '2007-01-27 12:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16061, 272, 1, 1041, 6.99, '2007-01-31 04:14:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16062, 272, 1, 1072, 0.99, '2007-01-31 08:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16063, 273, 2, 122, 3.99, '2007-01-25 18:14:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16064, 273, 2, 980, 0.99, '2007-01-30 20:13:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16065, 274, 1, 147, 2.99, '2007-01-25 22:46:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16066, 274, 1, 208, 4.99, '2007-01-26 06:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16067, 274, 2, 301, 2.99, '2007-01-26 19:34:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16068, 274, 1, 394, 5.99, '2007-01-27 09:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16069, 274, 2, 474, 2.99, '2007-01-27 20:40:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16070, 274, 1, 892, 4.99, '2007-01-30 06:31:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16071, 275, 2, 336, 2.99, '2007-01-27 01:43:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16072, 276, 1, 736, 3.99, '2007-01-29 06:38:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16073, 276, 1, 860, 10.99, '2007-01-30 01:13:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16074, 277, 2, 308, 6.99, '2007-01-26 20:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16075, 278, 1, 1092, 4.99, '2007-01-31 10:44:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16076, 279, 1, 979, 2.99, '2007-01-30 20:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16077, 279, 2, 1019, 0.99, '2007-01-31 01:33:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16078, 280, 1, 1014, 4.99, '2007-01-31 01:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16079, 281, 2, 650, 2.99, '2007-01-28 18:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16080, 281, 2, 754, 2.99, '2007-01-29 08:47:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16081, 282, 2, 48, 1.99, '2007-01-25 04:49:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16082, 282, 2, 282, 6.99, '2007-01-26 17:24:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16083, 282, 2, 564, 0.99, '2007-01-28 07:40:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16084, 284, 2, 423, 0.99, '2007-01-27 14:01:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16085, 284, 2, 791, 0.99, '2007-01-29 14:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16086, 284, 1, 1145, 6.99, '2007-01-31 18:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16087, 286, 2, 81, 6.99, '2007-01-25 10:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16088, 287, 2, 498, 0.99, '2007-01-27 23:29:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16089, 287, 1, 655, 2.99, '2007-01-28 18:44:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16090, 287, 2, 964, 2.99, '2007-01-30 17:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16091, 288, 2, 93, 3.99, '2007-01-25 14:22:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16092, 288, 2, 427, 6.99, '2007-01-27 14:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16093, 288, 1, 503, 4.99, '2007-01-28 00:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16094, 288, 2, 565, 5.99, '2007-01-28 07:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16095, 290, 1, 160, 2.99, '2007-01-26 00:14:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16096, 291, 1, 54, 4.99, '2007-01-25 05:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16097, 291, 2, 747, 4.99, '2007-01-29 07:55:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16098, 291, 1, 1012, 2.99, '2007-01-31 00:46:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16099, 292, 1, 324, 0.99, '2007-01-26 23:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16100, 293, 2, 445, 0.99, '2007-01-27 17:11:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16101, 293, 1, 924, 4.99, '2007-01-30 10:39:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16102, 293, 2, 1034, 8.99, '2007-01-31 03:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16103, 294, 1, 595, 1.99, '2007-01-28 12:28:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16104, 295, 2, 371, 3.99, '2007-01-27 06:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16105, 296, 2, 162, 4.99, '2007-01-26 00:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16106, 296, 1, 511, 5.99, '2007-01-28 01:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16107, 296, 1, 869, 4.99, '2007-01-30 02:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16108, 296, 2, 956, 2.99, '2007-01-30 15:58:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16109, 297, 2, 143, 0.99, '2007-01-25 22:14:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16110, 297, 1, 954, 3.99, '2007-01-30 15:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16111, 298, 1, 383, 3.99, '2007-01-27 08:40:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16112, 299, 1, 332, 5.99, '2007-01-27 00:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16113, 299, 2, 606, 8.99, '2007-01-28 13:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16114, 300, 2, 457, 0.99, '2007-01-27 18:20:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16115, 300, 1, 780, 3.99, '2007-01-29 12:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16116, 300, 1, 1111, 4.99, '2007-01-31 13:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16117, 301, 2, 27, 4.99, '2007-01-25 02:10:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16118, 301, 2, 227, 5.99, '2007-01-26 09:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16119, 301, 1, 955, 0.99, '2007-01-30 15:27:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16120, 302, 2, 38, 4.99, '2007-01-25 03:16:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16121, 302, 2, 92, 5.99, '2007-01-25 14:07:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16122, 303, 1, 265, 0.99, '2007-01-26 14:36:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16123, 303, 1, 871, 2.99, '2007-01-30 03:29:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16124, 303, 2, 1050, 4.99, '2007-01-31 05:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16125, 304, 1, 135, 10.99, '2007-01-25 20:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16126, 304, 1, 415, 0.99, '2007-01-27 13:20:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16127, 304, 2, 937, 2.99, '2007-01-30 13:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16128, 305, 2, 69, 2.99, '2007-01-25 08:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16129, 306, 2, 375, 3.99, '2007-01-27 07:17:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16130, 306, 2, 672, 6.99, '2007-01-28 20:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16131, 307, 2, 413, 4.99, '2007-01-27 13:14:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16132, 307, 1, 535, 4.99, '2007-01-28 04:44:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16133, 307, 1, 614, 1.99, '2007-01-28 14:01:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16134, 307, 1, 970, 6.99, '2007-01-30 18:18:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16135, 308, 2, 589, 3.99, '2007-01-28 10:56:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16136, 309, 2, 218, 6.99, '2007-01-26 07:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16137, 309, 2, 723, 0.99, '2007-01-29 04:03:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16138, 310, 2, 104, 0.99, '2007-01-25 16:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16139, 311, 2, 274, 5.99, '2007-01-26 15:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16140, 311, 2, 544, 6.99, '2007-01-28 05:31:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16141, 311, 1, 952, 2.99, '2007-01-30 14:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16142, 311, 2, 990, 3.99, '2007-01-30 21:53:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16143, 311, 2, 1128, 6.99, '2007-01-31 16:17:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16144, 312, 2, 229, 4.99, '2007-01-26 09:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16145, 312, 1, 530, 0.99, '2007-01-28 03:41:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16146, 312, 2, 1049, 4.99, '2007-01-31 05:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16147, 312, 2, 1079, 6.99, '2007-01-31 09:16:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16148, 313, 2, 669, 4.99, '2007-01-28 20:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16149, 313, 2, 712, 2.99, '2007-01-29 02:30:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16150, 313, 2, 781, 0.99, '2007-01-29 12:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16151, 313, 2, 843, 0.99, '2007-01-29 23:12:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16152, 314, 1, 80, 5.99, '2007-01-25 10:40:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16153, 314, 1, 440, 4.99, '2007-01-27 16:29:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16154, 315, 1, 537, 8.99, '2007-01-28 04:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16155, 315, 1, 551, 4.99, '2007-01-28 06:12:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16156, 316, 1, 16, 4.99, '2007-01-24 23:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16157, 316, 1, 644, 8.99, '2007-01-28 17:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16158, 316, 1, 1065, 1.99, '2007-01-31 07:23:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16159, 317, 1, 107, 6.99, '2007-01-25 16:56:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16160, 318, 1, 224, 9.99, '2007-01-26 08:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16161, 319, 1, 15, 9.99, '2007-01-24 23:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16162, 319, 1, 149, 3.99, '2007-01-25 22:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16163, 319, 1, 439, 2.99, '2007-01-27 16:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16164, 321, 2, 200, 4.99, '2007-01-26 05:40:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16165, 321, 1, 620, 5.99, '2007-01-28 14:23:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16166, 321, 2, 818, 4.99, '2007-01-29 19:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16167, 322, 2, 166, 0.99, '2007-01-26 01:17:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16168, 322, 1, 269, 4.99, '2007-01-26 14:48:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16169, 323, 1, 58, 4.99, '2007-01-25 07:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16170, 323, 2, 729, 2.99, '2007-01-29 05:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16171, 323, 1, 878, 5.99, '2007-01-30 04:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16172, 324, 2, 563, 3.99, '2007-01-28 07:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16173, 325, 1, 131, 5.99, '2007-01-25 20:11:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16174, 326, 1, 875, 6.99, '2007-01-30 04:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16175, 326, 2, 981, 4.99, '2007-01-30 20:21:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16176, 326, 2, 1149, 3.99, '2007-01-31 19:31:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16177, 327, 1, 653, 6.99, '2007-01-28 18:40:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16178, 328, 2, 862, 2.99, '2007-01-30 01:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16179, 330, 1, 704, 3.99, '2007-01-29 01:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16180, 330, 2, 967, 7.99, '2007-01-30 17:40:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16181, 331, 2, 87, 0.99, '2007-01-25 12:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16182, 331, 1, 996, 2.99, '2007-01-30 22:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16183, 332, 2, 600, 3.99, '2007-01-28 12:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16184, 332, 1, 1000, 6.99, '2007-01-30 22:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16185, 333, 1, 4, 4.99, '2007-01-24 21:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16186, 334, 1, 13, 6.99, '2007-01-24 22:51:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16187, 334, 1, 431, 8.99, '2007-01-27 14:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16188, 337, 1, 374, 6.99, '2007-01-27 06:54:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16189, 337, 1, 572, 4.99, '2007-01-28 08:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16190, 337, 1, 839, 8.99, '2007-01-29 22:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16191, 338, 1, 675, 0.99, '2007-01-28 20:51:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16192, 339, 1, 876, 5.99, '2007-01-30 04:09:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16193, 343, 2, 102, 3.99, '2007-01-25 15:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16194, 343, 1, 455, 3.99, '2007-01-27 18:11:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16195, 344, 2, 157, 2.99, '2007-01-25 23:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16196, 344, 2, 813, 5.99, '2007-01-29 18:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16197, 345, 1, 206, 0.99, '2007-01-26 06:30:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16198, 345, 1, 363, 0.99, '2007-01-27 05:42:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16199, 346, 1, 65, 4.99, '2007-01-25 08:00:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16200, 346, 1, 810, 4.99, '2007-01-29 17:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16201, 348, 2, 153, 0.99, '2007-01-25 23:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16202, 348, 2, 821, 0.99, '2007-01-29 19:59:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16203, 349, 1, 890, 4.99, '2007-01-30 06:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16204, 350, 1, 24, 4.99, '2007-01-25 01:21:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16205, 350, 1, 802, 4.99, '2007-01-29 16:07:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16206, 351, 1, 1137, 1.99, '2007-01-31 17:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16207, 352, 1, 784, 2.99, '2007-01-29 13:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16208, 353, 2, 1103, 6.99, '2007-01-31 12:52:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16209, 354, 1, 140, 0.99, '2007-01-25 22:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16210, 354, 2, 158, 1.99, '2007-01-25 23:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16211, 354, 2, 402, 0.99, '2007-01-27 11:45:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16212, 355, 1, 1110, 3.99, '2007-01-31 13:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16213, 356, 2, 1088, 4.99, '2007-01-31 10:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16214, 357, 1, 144, 2.99, '2007-01-25 22:18:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16215, 357, 1, 824, 4.99, '2007-01-29 20:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16216, 357, 2, 945, 0.99, '2007-01-30 14:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16217, 358, 2, 858, 4.99, '2007-01-30 00:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16218, 359, 1, 284, 8.99, '2007-01-26 17:50:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16219, 359, 2, 392, 2.99, '2007-01-27 09:43:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16220, 359, 1, 528, 3.99, '2007-01-28 02:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16221, 360, 1, 633, 0.99, '2007-01-28 16:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16222, 360, 2, 777, 4.99, '2007-01-29 12:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16223, 361, 1, 368, 5.99, '2007-01-27 06:10:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16224, 361, 2, 1120, 4.99, '2007-01-31 15:05:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16225, 362, 2, 1035, 4.99, '2007-01-31 03:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16226, 363, 1, 733, 3.99, '2007-01-29 06:03:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16227, 364, 1, 462, 5.99, '2007-01-27 18:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16228, 365, 2, 120, 5.99, '2007-01-25 18:06:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16229, 365, 1, 231, 4.99, '2007-01-26 10:00:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16230, 366, 2, 911, 6.99, '2007-01-30 09:18:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16231, 367, 1, 939, 0.99, '2007-01-30 13:18:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16232, 367, 1, 1089, 2.99, '2007-01-31 10:06:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16233, 368, 1, 64, 5.99, '2007-01-25 07:49:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16234, 368, 1, 125, 5.99, '2007-01-25 19:17:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16235, 368, 1, 836, 2.99, '2007-01-29 22:25:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16236, 368, 1, 949, 2.99, '2007-01-30 14:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16237, 369, 1, 31, 4.99, '2007-01-25 02:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16238, 369, 1, 294, 4.99, '2007-01-26 18:58:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16239, 369, 2, 854, 0.99, '2007-01-30 00:24:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16240, 369, 2, 913, 7.99, '2007-01-30 09:33:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16241, 371, 1, 26, 3.99, '2007-01-25 02:05:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16242, 371, 2, 286, 6.99, '2007-01-26 18:13:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16243, 371, 2, 381, 4.99, '2007-01-27 08:11:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16244, 371, 1, 384, 5.99, '2007-01-27 08:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16245, 371, 1, 825, 0.99, '2007-01-29 20:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16246, 371, 1, 829, 2.99, '2007-01-29 20:45:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16247, 372, 1, 617, 2.99, '2007-01-28 14:17:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16248, 372, 1, 638, 2.99, '2007-01-28 16:53:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16249, 373, 2, 257, 4.99, '2007-01-26 13:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16250, 374, 1, 521, 0.99, '2007-01-28 02:00:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16251, 374, 2, 910, 2.99, '2007-01-30 09:14:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16252, 374, 2, 919, 0.99, '2007-01-30 10:03:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16253, 375, 2, 307, 8.99, '2007-01-26 20:16:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16254, 375, 1, 412, 4.99, '2007-01-27 12:45:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16255, 375, 2, 749, 4.99, '2007-01-29 08:01:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16256, 375, 1, 873, 2.99, '2007-01-30 03:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16257, 376, 1, 554, 0.99, '2007-01-28 06:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16258, 378, 1, 347, 0.99, '2007-01-27 03:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16259, 379, 2, 209, 4.99, '2007-01-26 06:42:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16260, 379, 1, 863, 4.99, '2007-01-30 01:43:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16261, 380, 1, 847, 3.99, '2007-01-29 23:46:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16262, 381, 2, 169, 0.99, '2007-01-26 01:37:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16263, 381, 2, 406, 2.99, '2007-01-27 12:15:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16264, 381, 1, 835, 2.99, '2007-01-29 22:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16265, 382, 2, 356, 2.99, '2007-01-27 05:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16266, 382, 1, 522, 2.99, '2007-01-28 02:01:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16267, 383, 2, 63, 0.99, '2007-01-25 07:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16268, 383, 1, 766, 8.99, '2007-01-29 10:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16269, 384, 2, 103, 4.99, '2007-01-25 15:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16270, 384, 2, 279, 2.99, '2007-01-26 16:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16271, 384, 1, 898, 0.99, '2007-01-30 07:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16272, 384, 2, 1013, 2.99, '2007-01-31 01:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16273, 385, 1, 917, 2.99, '2007-01-30 09:55:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16274, 385, 2, 1038, 4.99, '2007-01-31 03:52:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16275, 386, 1, 583, 7.99, '2007-01-28 10:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16276, 387, 2, 302, 4.99, '2007-01-26 19:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16277, 387, 1, 697, 7.99, '2007-01-29 00:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16278, 387, 1, 841, 4.99, '2007-01-29 22:59:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16279, 387, 1, 1127, 3.99, '2007-01-31 16:14:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16280, 388, 2, 21, 4.99, '2007-01-25 00:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16281, 388, 2, 411, 4.99, '2007-01-27 12:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16282, 389, 1, 998, 4.99, '2007-01-30 22:45:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16283, 390, 1, 254, 4.99, '2007-01-26 13:12:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16284, 390, 2, 912, 4.99, '2007-01-30 09:26:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16285, 391, 2, 73, 4.99, '2007-01-25 09:28:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16286, 391, 1, 210, 2.99, '2007-01-26 06:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16287, 391, 1, 317, 5.99, '2007-01-26 21:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16288, 391, 2, 870, 2.99, '2007-01-30 02:54:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16289, 391, 1, 891, 7.99, '2007-01-30 06:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16290, 393, 1, 599, 4.99, '2007-01-28 12:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16291, 393, 2, 886, 0.99, '2007-01-30 05:23:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16292, 394, 1, 213, 3.99, '2007-01-26 07:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16293, 394, 1, 977, 2.99, '2007-01-30 19:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16294, 396, 2, 641, 5.99, '2007-01-28 17:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16295, 397, 2, 1002, 0.99, '2007-01-30 23:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16296, 398, 1, 486, 4.99, '2007-01-27 22:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16297, 399, 2, 10, 5.99, '2007-01-24 22:30:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16298, 399, 2, 694, 6.99, '2007-01-29 00:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16299, 399, 2, 883, 4.99, '2007-01-30 04:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16300, 400, 1, 95, 3.99, '2007-01-25 14:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16301, 400, 2, 171, 6.99, '2007-01-26 01:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16302, 400, 2, 516, 1.99, '2007-01-28 01:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16303, 400, 2, 894, 5.99, '2007-01-30 06:59:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16304, 401, 2, 167, 4.99, '2007-01-26 01:18:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16305, 401, 2, 446, 4.99, '2007-01-27 17:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16306, 401, 2, 811, 1.99, '2007-01-29 17:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16307, 402, 2, 801, 1.99, '2007-01-29 16:04:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16308, 403, 1, 442, 2.99, '2007-01-27 16:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16309, 403, 1, 517, 0.99, '2007-01-28 01:46:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16310, 404, 2, 1081, 5.99, '2007-01-31 09:24:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16311, 405, 1, 121, 2.99, '2007-01-25 18:09:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16312, 405, 2, 770, 4.99, '2007-01-29 11:25:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16313, 406, 1, 855, 0.99, '2007-01-30 00:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16314, 407, 1, 619, 7.99, '2007-01-28 14:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16315, 408, 2, 3, 3.99, '2007-01-24 21:32:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16316, 408, 2, 59, 5.99, '2007-01-25 07:25:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16317, 408, 1, 526, 2.99, '2007-01-28 02:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16318, 409, 1, 310, 6.99, '2007-01-26 21:09:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16319, 411, 2, 686, 4.99, '2007-01-28 22:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16320, 411, 2, 972, 1.99, '2007-01-30 18:49:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16321, 412, 2, 191, 0.99, '2007-01-26 04:42:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16322, 412, 1, 333, 4.99, '2007-01-27 01:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16323, 412, 1, 717, 0.99, '2007-01-29 03:06:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16324, 412, 2, 1043, 3.99, '2007-01-31 04:40:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16325, 413, 1, 40, 4.99, '2007-01-25 03:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16326, 413, 1, 999, 4.99, '2007-01-30 22:53:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16327, 414, 1, 85, 4.99, '2007-01-25 11:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16328, 414, 1, 261, 3.99, '2007-01-26 14:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16329, 415, 2, 665, 4.99, '2007-01-28 20:07:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16330, 416, 2, 253, 0.99, '2007-01-26 13:11:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16331, 416, 2, 724, 3.99, '2007-01-29 04:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16332, 416, 2, 1031, 2.99, '2007-01-31 02:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16333, 417, 1, 267, 4.99, '2007-01-26 14:44:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16334, 417, 2, 630, 8.99, '2007-01-28 15:53:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16335, 417, 2, 833, 4.99, '2007-01-29 21:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16336, 419, 1, 62, 2.99, '2007-01-25 07:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16337, 420, 2, 744, 4.99, '2007-01-29 07:41:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16338, 421, 1, 507, 0.99, '2007-01-28 00:59:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16339, 421, 1, 931, 0.99, '2007-01-30 11:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16340, 422, 1, 398, 0.99, '2007-01-27 11:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16341, 424, 2, 403, 0.99, '2007-01-27 11:57:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16342, 425, 2, 1098, 5.99, '2007-01-31 12:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16343, 426, 2, 604, 0.99, '2007-01-28 13:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16344, 427, 2, 82, 6.99, '2007-01-25 10:46:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16345, 428, 2, 634, 4.99, '2007-01-28 16:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16346, 429, 2, 150, 5.99, '2007-01-25 22:57:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16347, 429, 2, 290, 2.99, '2007-01-26 18:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16348, 429, 2, 601, 7.99, '2007-01-28 12:36:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16349, 429, 2, 799, 4.99, '2007-01-29 15:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16350, 429, 2, 844, 4.99, '2007-01-29 23:26:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16351, 430, 2, 30, 2.99, '2007-01-25 02:29:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16352, 430, 1, 364, 4.99, '2007-01-27 05:48:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16353, 431, 2, 1126, 2.99, '2007-01-31 15:56:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16354, 432, 2, 326, 7.99, '2007-01-26 23:38:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16355, 432, 1, 550, 5.99, '2007-01-28 06:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16356, 432, 1, 897, 8.99, '2007-01-30 07:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16357, 433, 2, 146, 8.99, '2007-01-25 22:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16358, 433, 1, 691, 10.99, '2007-01-28 23:29:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16359, 434, 2, 508, 5.99, '2007-01-28 01:09:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16360, 435, 1, 757, 7.99, '2007-01-29 08:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16361, 435, 1, 806, 4.99, '2007-01-29 16:59:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16362, 436, 1, 45, 7.99, '2007-01-25 04:28:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16363, 436, 1, 256, 3.99, '2007-01-26 13:49:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16364, 436, 1, 848, 5.99, '2007-01-29 23:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16365, 437, 1, 192, 2.99, '2007-01-26 04:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16366, 437, 2, 656, 4.99, '2007-01-28 18:46:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16367, 437, 1, 666, 5.99, '2007-01-28 20:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16368, 438, 2, 23, 4.99, '2007-01-25 01:08:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16369, 438, 2, 1036, 0.99, '2007-01-31 03:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16370, 438, 1, 1138, 6.99, '2007-01-31 17:58:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16371, 439, 1, 126, 2.99, '2007-01-25 19:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16372, 439, 2, 367, 0.99, '2007-01-27 06:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16373, 439, 1, 786, 9.99, '2007-01-29 13:45:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16374, 440, 2, 957, 4.99, '2007-01-30 16:21:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16375, 441, 1, 823, 4.99, '2007-01-29 20:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16376, 442, 2, 466, 0.99, '2007-01-27 19:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16377, 442, 2, 558, 6.99, '2007-01-28 07:07:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16378, 442, 1, 632, 5.99, '2007-01-28 16:06:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16379, 443, 2, 1068, 4.99, '2007-01-31 08:00:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16380, 444, 1, 201, 8.99, '2007-01-26 05:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16381, 444, 1, 557, 0.99, '2007-01-28 07:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16382, 445, 1, 481, 2.99, '2007-01-27 21:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16383, 445, 1, 960, 2.99, '2007-01-30 16:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16384, 446, 2, 14, 0.99, '2007-01-24 22:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16385, 446, 1, 236, 0.99, '2007-01-26 10:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16386, 446, 1, 355, 4.99, '2007-01-27 04:43:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16387, 447, 1, 461, 2.99, '2007-01-27 18:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16388, 447, 2, 732, 0.99, '2007-01-29 06:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16389, 448, 1, 299, 4.99, '2007-01-26 19:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16390, 448, 2, 1123, 2.99, '2007-01-31 15:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16391, 449, 2, 263, 4.99, '2007-01-26 14:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16392, 449, 2, 325, 5.99, '2007-01-26 23:38:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16393, 449, 1, 849, 7.99, '2007-01-29 23:51:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16394, 450, 2, 548, 3.99, '2007-01-28 06:03:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16395, 451, 2, 77, 0.99, '2007-01-25 10:00:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16396, 451, 2, 328, 2.99, '2007-01-26 23:57:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16397, 451, 2, 1113, 2.99, '2007-01-31 14:27:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16398, 452, 1, 354, 2.99, '2007-01-27 04:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16399, 452, 2, 714, 2.99, '2007-01-29 02:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16400, 452, 1, 726, 1.99, '2007-01-29 04:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16401, 454, 1, 735, 7.99, '2007-01-29 06:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16402, 455, 2, 115, 0.99, '2007-01-25 17:41:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16403, 455, 2, 343, 0.99, '2007-01-27 02:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16404, 456, 2, 19, 4.99, '2007-01-24 23:45:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16405, 457, 2, 1024, 7.99, '2007-01-31 01:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16406, 459, 2, 2, 2.99, '2007-01-24 21:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16407, 460, 1, 223, 4.99, '2007-01-26 08:43:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16408, 460, 2, 298, 0.99, '2007-01-26 19:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16409, 460, 1, 880, 0.99, '2007-01-30 04:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16410, 460, 2, 1064, 4.99, '2007-01-31 07:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16411, 461, 1, 684, 6.99, '2007-01-28 22:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16412, 462, 2, 156, 2.99, '2007-01-25 23:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16413, 462, 2, 590, 3.99, '2007-01-28 11:35:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16414, 463, 1, 560, 1.99, '2007-01-28 07:21:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16415, 464, 1, 305, 3.99, '2007-01-26 19:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16416, 464, 2, 373, 1.99, '2007-01-27 06:44:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16417, 465, 2, 640, 0.99, '2007-01-28 17:11:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16418, 466, 2, 1104, 2.99, '2007-01-31 12:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16419, 467, 2, 225, 4.99, '2007-01-26 08:56:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16420, 468, 2, 101, 6.99, '2007-01-25 15:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16421, 468, 1, 186, 4.99, '2007-01-26 04:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16422, 468, 2, 296, 6.99, '2007-01-26 19:03:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16423, 468, 2, 459, 0.99, '2007-01-27 18:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16424, 468, 1, 673, 0.99, '2007-01-28 20:35:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16425, 469, 1, 168, 0.99, '2007-01-26 01:36:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16426, 469, 2, 506, 7.99, '2007-01-28 00:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16427, 469, 2, 529, 4.99, '2007-01-28 03:02:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16428, 469, 2, 936, 1.99, '2007-01-30 12:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16429, 469, 1, 1119, 2.99, '2007-01-31 15:02:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16430, 470, 2, 60, 2.99, '2007-01-25 07:26:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16431, 471, 1, 616, 2.99, '2007-01-28 14:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16432, 472, 2, 142, 0.99, '2007-01-25 22:12:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16433, 472, 2, 249, 2.99, '2007-01-26 12:47:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16434, 472, 2, 800, 0.99, '2007-01-29 15:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16435, 472, 2, 994, 4.99, '2007-01-30 22:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16436, 473, 1, 348, 4.99, '2007-01-27 03:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16437, 473, 2, 942, 2.99, '2007-01-30 13:34:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16438, 473, 2, 973, 3.99, '2007-01-30 18:56:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16439, 474, 1, 816, 7.99, '2007-01-29 18:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16440, 475, 2, 417, 4.99, '2007-01-27 13:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16441, 475, 1, 702, 0.99, '2007-01-29 00:55:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16442, 476, 1, 489, 4.99, '2007-01-27 22:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16443, 476, 1, 771, 2.99, '2007-01-29 11:27:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16444, 477, 1, 882, 2.99, '2007-01-30 04:44:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16445, 479, 2, 132, 3.99, '2007-01-25 20:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16446, 479, 1, 709, 7.99, '2007-01-29 02:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16447, 480, 1, 518, 0.99, '2007-01-28 01:46:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16448, 480, 1, 720, 6.99, '2007-01-29 03:45:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16449, 480, 2, 822, 9.99, '2007-01-29 20:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16450, 481, 2, 1109, 5.99, '2007-01-31 13:40:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16451, 482, 1, 259, 8.99, '2007-01-26 14:01:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16452, 482, 2, 680, 2.99, '2007-01-28 21:55:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16453, 482, 2, 879, 0.99, '2007-01-30 04:18:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16454, 483, 2, 742, 6.99, '2007-01-29 07:04:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16455, 484, 2, 35, 4.99, '2007-01-25 02:53:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16456, 484, 2, 668, 2.99, '2007-01-28 20:23:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16457, 484, 2, 727, 2.99, '2007-01-29 04:36:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16458, 485, 1, 1009, 2.99, '2007-01-31 00:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16459, 486, 1, 909, 8.99, '2007-01-30 09:12:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16460, 486, 2, 946, 2.99, '2007-01-30 14:03:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16461, 486, 2, 1129, 0.99, '2007-01-31 16:29:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16462, 489, 1, 219, 4.99, '2007-01-26 08:10:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16463, 489, 2, 513, 2.99, '2007-01-28 01:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16464, 490, 2, 585, 6.99, '2007-01-28 10:19:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16465, 490, 2, 676, 4.99, '2007-01-28 20:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16466, 491, 1, 484, 2.99, '2007-01-27 21:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16467, 491, 2, 1097, 0.99, '2007-01-31 12:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16468, 492, 1, 84, 2.99, '2007-01-25 11:04:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16469, 493, 1, 543, 7.99, '2007-01-28 05:12:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16470, 494, 1, 608, 4.99, '2007-01-28 13:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16471, 495, 2, 623, 4.99, '2007-01-28 14:29:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16472, 495, 2, 741, 4.99, '2007-01-29 07:04:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16473, 496, 2, 322, 4.99, '2007-01-26 23:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16474, 496, 2, 966, 0.99, '2007-01-30 17:29:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16475, 497, 1, 1100, 7.99, '2007-01-31 12:31:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16476, 498, 2, 49, 2.99, '2007-01-25 05:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16477, 498, 1, 429, 8.99, '2007-01-27 14:49:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16478, 498, 2, 718, 2.99, '2007-01-29 03:20:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16479, 499, 2, 89, 2.99, '2007-01-25 12:56:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16480, 500, 1, 112, 8.99, '2007-01-25 17:25:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16481, 500, 1, 389, 8.99, '2007-01-27 09:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16482, 500, 1, 610, 0.99, '2007-01-28 13:43:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16483, 501, 1, 493, 0.99, '2007-01-27 23:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16484, 501, 1, 605, 1.99, '2007-01-28 13:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16485, 502, 2, 258, 2.99, '2007-01-26 13:56:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16486, 502, 1, 861, 0.99, '2007-01-30 01:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16487, 502, 1, 893, 2.99, '2007-01-30 06:35:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16488, 502, 2, 965, 0.99, '2007-01-30 17:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16489, 503, 2, 109, 1.99, '2007-01-25 17:08:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16490, 503, 1, 353, 5.99, '2007-01-27 04:32:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16491, 503, 1, 631, 2.99, '2007-01-28 16:04:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16492, 503, 1, 1074, 4.99, '2007-01-31 08:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16493, 504, 2, 136, 5.99, '2007-01-25 20:30:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16494, 504, 2, 470, 4.99, '2007-01-27 19:45:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16495, 504, 1, 838, 4.99, '2007-01-29 22:56:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16496, 505, 1, 159, 2.99, '2007-01-26 00:02:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16497, 505, 1, 645, 2.99, '2007-01-28 17:42:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16498, 506, 1, 114, 3.99, '2007-01-25 17:41:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16499, 506, 2, 387, 2.99, '2007-01-27 09:03:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16500, 506, 2, 410, 3.99, '2007-01-27 12:39:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16501, 506, 1, 547, 8.99, '2007-01-28 05:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16502, 506, 2, 907, 0.99, '2007-01-30 09:05:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16503, 506, 1, 1042, 2.99, '2007-01-31 04:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16504, 506, 2, 1153, 4.99, '2007-01-31 20:05:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16505, 507, 1, 52, 0.99, '2007-01-25 05:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16506, 507, 2, 713, 4.99, '2007-01-29 02:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16507, 508, 1, 369, 2.99, '2007-01-27 06:15:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16508, 508, 2, 921, 2.99, '2007-01-30 10:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16509, 509, 1, 22, 4.99, '2007-01-25 00:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16510, 509, 1, 831, 8.99, '2007-01-29 21:18:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16511, 510, 1, 75, 8.99, '2007-01-25 09:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16512, 510, 1, 372, 5.99, '2007-01-27 06:42:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16513, 510, 2, 1118, 4.99, '2007-01-31 14:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16514, 511, 1, 56, 2.99, '2007-01-25 06:56:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16515, 511, 1, 819, 3.99, '2007-01-29 19:28:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16516, 513, 2, 993, 4.99, '2007-01-30 22:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16517, 514, 2, 536, 4.99, '2007-01-28 04:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16518, 515, 2, 187, 8.99, '2007-01-26 04:11:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16519, 515, 2, 292, 6.99, '2007-01-26 18:50:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16520, 516, 2, 339, 3.99, '2007-01-27 02:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16521, 516, 1, 571, 1.99, '2007-01-28 08:46:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16522, 517, 2, 850, 4.99, '2007-01-30 00:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16523, 518, 1, 710, 2.99, '2007-01-29 02:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16524, 519, 1, 1056, 3.99, '2007-01-31 06:16:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16525, 520, 1, 962, 6.99, '2007-01-30 17:13:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16526, 522, 2, 426, 5.99, '2007-01-27 14:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16527, 523, 1, 42, 4.99, '2007-01-25 03:53:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16528, 523, 2, 664, 0.99, '2007-01-28 19:59:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16529, 524, 2, 118, 0.99, '2007-01-25 17:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16530, 524, 1, 982, 4.99, '2007-01-30 20:43:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16531, 525, 1, 437, 5.99, '2007-01-27 16:15:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16532, 526, 1, 495, 4.99, '2007-01-27 23:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16533, 526, 2, 679, 4.99, '2007-01-28 21:53:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16534, 526, 2, 1015, 2.99, '2007-01-31 01:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16535, 528, 1, 204, 0.99, '2007-01-26 05:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16536, 528, 2, 472, 0.99, '2007-01-27 20:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16537, 528, 1, 533, 5.99, '2007-01-28 04:43:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16538, 528, 2, 695, 3.99, '2007-01-29 00:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16539, 528, 2, 793, 5.99, '2007-01-29 15:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16540, 529, 1, 453, 2.99, '2007-01-27 17:59:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16541, 530, 1, 851, 0.99, '2007-01-30 00:03:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16542, 531, 1, 233, 4.99, '2007-01-26 10:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16543, 531, 1, 681, 2.99, '2007-01-28 22:08:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16544, 532, 1, 43, 2.99, '2007-01-25 04:07:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16545, 533, 1, 173, 0.99, '2007-01-26 02:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16546, 533, 2, 190, 1.99, '2007-01-26 04:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16547, 533, 1, 615, 5.99, '2007-01-28 14:04:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16548, 534, 2, 304, 5.99, '2007-01-26 19:49:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16549, 534, 2, 940, 0.99, '2007-01-30 13:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16550, 535, 1, 37, 0.99, '2007-01-25 03:12:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16551, 535, 2, 541, 2.99, '2007-01-28 05:10:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16552, 535, 1, 778, 3.99, '2007-01-29 12:38:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16553, 535, 2, 959, 4.99, '2007-01-30 16:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16554, 536, 1, 237, 0.99, '2007-01-26 10:43:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16555, 536, 1, 929, 6.99, '2007-01-30 11:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16556, 537, 2, 603, 4.99, '2007-01-28 12:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16557, 538, 2, 594, 2.99, '2007-01-28 12:10:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16558, 538, 2, 734, 4.99, '2007-01-29 06:07:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16559, 539, 2, 250, 4.99, '2007-01-26 12:58:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16560, 539, 1, 342, 0.99, '2007-01-27 02:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16561, 541, 1, 1021, 7.99, '2007-01-31 01:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16562, 541, 1, 1066, 4.99, '2007-01-31 07:35:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16563, 542, 1, 220, 4.99, '2007-01-26 08:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16564, 542, 2, 376, 4.99, '2007-01-27 07:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16565, 543, 1, 243, 6.99, '2007-01-26 11:34:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16566, 543, 2, 476, 1.99, '2007-01-27 21:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16567, 544, 1, 397, 2.99, '2007-01-27 10:57:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16568, 544, 1, 864, 2.99, '2007-01-30 01:55:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16569, 545, 2, 248, 0.99, '2007-01-26 12:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16570, 545, 2, 715, 3.99, '2007-01-29 02:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16571, 546, 1, 197, 5.99, '2007-01-26 05:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16572, 546, 1, 482, 6.99, '2007-01-27 21:21:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16573, 547, 1, 306, 0.99, '2007-01-26 20:00:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16574, 547, 2, 443, 8.99, '2007-01-27 17:03:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16575, 547, 2, 1094, 1.99, '2007-01-31 11:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16576, 548, 2, 177, 6.99, '2007-01-26 02:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16577, 548, 1, 743, 4.99, '2007-01-29 07:07:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16578, 548, 2, 872, 3.99, '2007-01-30 03:31:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16579, 549, 1, 6, 0.99, '2007-01-24 21:36:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16580, 549, 2, 852, 4.99, '2007-01-30 00:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16581, 549, 1, 906, 3.99, '2007-01-30 08:59:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16582, 549, 2, 1086, 4.99, '2007-01-31 09:46:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16583, 550, 2, 922, 7.99, '2007-01-30 10:24:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16584, 551, 2, 155, 7.99, '2007-01-25 23:43:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16585, 551, 1, 728, 2.99, '2007-01-29 04:41:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16586, 551, 1, 795, 0.99, '2007-01-29 15:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16587, 551, 2, 969, 4.99, '2007-01-30 17:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16588, 551, 2, 1005, 3.99, '2007-01-30 23:21:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16589, 552, 2, 174, 0.99, '2007-01-26 02:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16590, 553, 2, 789, 4.99, '2007-01-29 14:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16591, 554, 1, 607, 2.99, '2007-01-28 13:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16592, 554, 1, 817, 2.99, '2007-01-29 19:07:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16593, 556, 1, 184, 0.99, '2007-01-26 03:58:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16594, 556, 2, 772, 5.99, '2007-01-29 11:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16595, 556, 1, 1083, 3.99, '2007-01-31 09:33:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16596, 557, 2, 467, 4.99, '2007-01-27 19:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16597, 557, 1, 478, 4.99, '2007-01-27 21:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16598, 560, 1, 137, 2.99, '2007-01-25 20:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16599, 561, 1, 902, 4.99, '2007-01-30 08:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16600, 561, 2, 971, 4.99, '2007-01-30 18:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16601, 562, 2, 788, 2.99, '2007-01-29 14:42:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16602, 562, 1, 941, 2.99, '2007-01-30 13:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16603, 562, 1, 1139, 5.99, '2007-01-31 18:03:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16604, 563, 1, 758, 4.99, '2007-01-29 09:00:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16605, 563, 2, 773, 5.99, '2007-01-29 11:46:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16606, 564, 2, 195, 5.99, '2007-01-26 05:21:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16607, 564, 1, 985, 2.99, '2007-01-30 20:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16608, 565, 1, 458, 6.99, '2007-01-27 18:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16609, 565, 1, 1004, 0.99, '2007-01-30 23:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16610, 566, 2, 234, 5.99, '2007-01-26 10:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16611, 566, 2, 768, 4.99, '2007-01-29 10:59:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16612, 569, 2, 53, 4.99, '2007-01-25 05:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16613, 569, 1, 487, 4.99, '2007-01-27 22:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16614, 569, 1, 624, 4.99, '2007-01-28 14:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16615, 569, 1, 647, 1.99, '2007-01-28 17:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16616, 569, 2, 1037, 3.99, '2007-01-31 03:50:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16617, 570, 2, 1060, 7.99, '2007-01-31 06:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16618, 571, 1, 228, 9.99, '2007-01-26 09:22:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16619, 571, 2, 689, 3.99, '2007-01-28 23:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16620, 572, 2, 559, 7.99, '2007-01-28 07:07:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16621, 573, 2, 827, 2.99, '2007-01-29 20:27:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16622, 574, 2, 433, 0.99, '2007-01-27 15:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16623, 575, 1, 17, 2.99, '2007-01-24 23:35:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16624, 575, 1, 395, 0.99, '2007-01-27 10:14:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16625, 575, 2, 454, 4.99, '2007-01-27 18:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16626, 575, 2, 769, 2.99, '2007-01-29 11:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16627, 575, 1, 774, 4.99, '2007-01-29 11:48:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16628, 576, 2, 755, 2.99, '2007-01-29 08:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16629, 576, 1, 968, 0.99, '2007-01-30 17:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16630, 577, 2, 291, 5.99, '2007-01-26 18:49:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16631, 578, 2, 660, 0.99, '2007-01-28 19:21:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16632, 580, 1, 611, 0.99, '2007-01-28 13:46:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16633, 581, 1, 976, 4.99, '2007-01-30 19:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16634, 581, 1, 1151, 4.99, '2007-01-31 19:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16635, 582, 1, 281, 0.99, '2007-01-26 17:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16636, 584, 2, 379, 4.99, '2007-01-27 07:53:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16637, 584, 1, 626, 4.99, '2007-01-28 15:26:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16638, 584, 1, 920, 4.99, '2007-01-30 10:12:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16639, 586, 1, 138, 4.99, '2007-01-25 21:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16640, 586, 1, 900, 8.99, '2007-01-30 08:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16641, 587, 1, 181, 4.99, '2007-01-26 03:15:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16642, 587, 1, 361, 0.99, '2007-01-27 05:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16643, 588, 1, 576, 2.99, '2007-01-28 09:24:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16644, 588, 1, 961, 4.99, '2007-01-30 16:45:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16645, 589, 1, 531, 0.99, '2007-01-28 03:52:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16646, 589, 1, 596, 4.99, '2007-01-28 12:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16647, 589, 1, 737, 4.99, '2007-01-29 06:39:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16648, 590, 1, 602, 3.99, '2007-01-28 12:44:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16649, 593, 1, 790, 2.99, '2007-01-29 14:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16650, 593, 1, 991, 8.99, '2007-01-30 21:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16651, 594, 1, 313, 4.99, '2007-01-26 21:24:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16652, 594, 1, 360, 8.99, '2007-01-27 05:19:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16653, 594, 2, 1018, 0.99, '2007-01-31 01:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16654, 594, 1, 1045, 6.99, '2007-01-31 04:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16655, 595, 1, 613, 6.99, '2007-01-28 13:55:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16656, 596, 2, 303, 4.99, '2007-01-26 19:45:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16657, 596, 2, 625, 0.99, '2007-01-28 15:04:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16658, 596, 2, 667, 4.99, '2007-01-28 20:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16659, 596, 2, 782, 1.99, '2007-01-29 13:07:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16660, 596, 1, 914, 2.99, '2007-01-30 09:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16661, 596, 1, 974, 6.99, '2007-01-30 18:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16662, 597, 2, 34, 2.99, '2007-01-25 02:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16663, 597, 2, 514, 8.99, '2007-01-28 01:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16664, 599, 2, 1008, 4.99, '2007-01-30 23:47:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16665, 203, 1, 314, 0.99, '2007-01-26 21:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16666, 204, 2, 251, 0.99, '2007-01-26 13:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16667, 204, 2, 399, 4.99, '2007-01-27 11:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16668, 204, 2, 857, 4.99, '2007-01-30 00:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16669, 204, 1, 1016, 1.99, '2007-01-31 01:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16670, 207, 1, 39, 0.99, '2007-01-25 03:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16671, 207, 1, 44, 0.99, '2007-01-25 04:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16672, 207, 1, 659, 0.99, '2007-01-28 18:56:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16673, 207, 2, 826, 6.99, '2007-01-29 20:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16674, 207, 2, 896, 3.99, '2007-01-30 07:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16675, 207, 2, 1144, 3.99, '2007-01-31 18:32:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16676, 208, 1, 100, 4.99, '2007-01-25 15:18:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16677, 1, 1, 76, 2.99, '2007-01-25 09:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16678, 1, 1, 573, 0.99, '2007-01-28 09:03:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16679, 2, 1, 320, 4.99, '2007-01-26 22:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16680, 3, 1, 435, 1.99, '2007-01-27 15:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16681, 3, 1, 830, 2.99, '2007-01-29 21:12:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16682, 5, 1, 731, 0.99, '2007-01-29 05:53:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16683, 5, 1, 1085, 6.99, '2007-01-31 09:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16684, 5, 1, 1142, 1.99, '2007-01-31 18:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16685, 6, 2, 57, 4.99, '2007-01-25 07:11:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16686, 6, 1, 577, 2.99, '2007-01-28 09:37:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16687, 6, 2, 916, 0.99, '2007-01-30 09:53:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16688, 7, 2, 46, 5.99, '2007-01-25 04:32:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16689, 7, 2, 117, 0.99, '2007-01-25 17:59:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16690, 7, 2, 748, 2.99, '2007-01-29 07:55:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16691, 7, 1, 975, 4.99, '2007-01-30 19:35:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16692, 7, 1, 1063, 5.99, '2007-01-31 07:12:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16693, 8, 2, 866, 6.99, '2007-01-30 02:12:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16694, 9, 2, 350, 4.99, '2007-01-27 03:29:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16695, 9, 2, 877, 0.99, '2007-01-30 04:17:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16696, 9, 2, 1075, 4.99, '2007-01-31 08:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16697, 10, 2, 1140, 4.99, '2007-01-31 18:04:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16698, 11, 1, 987, 6.99, '2007-01-30 21:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16699, 12, 1, 988, 4.99, '2007-01-30 21:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16700, 12, 1, 1084, 4.99, '2007-01-31 09:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16701, 14, 1, 151, 0.99, '2007-01-25 23:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16702, 14, 1, 346, 9.99, '2007-01-27 03:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16703, 14, 1, 525, 5.99, '2007-01-28 02:53:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16704, 14, 1, 671, 2.99, '2007-01-28 20:32:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16705, 14, 2, 815, 0.99, '2007-01-29 18:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16706, 16, 1, 335, 3.99, '2007-01-27 01:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16707, 16, 1, 593, 2.99, '2007-01-28 12:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16708, 16, 2, 887, 0.99, '2007-01-30 05:38:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16709, 16, 1, 1017, 2.99, '2007-01-31 01:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16710, 17, 2, 287, 2.99, '2007-01-26 18:13:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16711, 17, 1, 580, 2.99, '2007-01-28 09:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16712, 17, 2, 884, 4.99, '2007-01-30 05:09:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16713, 18, 1, 50, 2.99, '2007-01-25 05:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16714, 18, 1, 116, 4.99, '2007-01-25 17:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16715, 18, 1, 692, 4.99, '2007-01-29 00:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16716, 19, 2, 18, 0.99, '2007-01-24 23:39:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16717, 19, 2, 110, 9.99, '2007-01-25 17:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16718, 19, 1, 179, 6.99, '2007-01-26 02:54:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16719, 19, 1, 337, 2.99, '2007-01-27 01:50:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16720, 19, 2, 591, 2.99, '2007-01-28 11:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16721, 19, 2, 696, 2.99, '2007-01-29 00:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16722, 20, 2, 202, 2.99, '2007-01-26 05:56:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16723, 20, 2, 497, 6.99, '2007-01-27 23:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16724, 20, 2, 546, 1.99, '2007-01-28 05:44:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16725, 21, 1, 260, 3.99, '2007-01-26 14:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16726, 21, 2, 463, 3.99, '2007-01-27 18:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16727, 21, 1, 570, 0.99, '2007-01-28 08:43:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16728, 22, 1, 370, 4.99, '2007-01-27 06:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16729, 22, 1, 556, 4.99, '2007-01-28 07:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16730, 22, 2, 820, 8.99, '2007-01-29 19:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16731, 23, 1, 129, 8.99, '2007-01-25 19:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16732, 23, 1, 654, 2.99, '2007-01-28 18:43:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16733, 23, 2, 1090, 0.99, '2007-01-31 10:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16734, 24, 2, 1007, 6.99, '2007-01-30 23:30:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16735, 24, 2, 1077, 2.99, '2007-01-31 08:51:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16736, 25, 1, 90, 7.99, '2007-01-25 12:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16737, 25, 2, 1033, 2.99, '2007-01-31 03:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16738, 26, 1, 796, 2.99, '2007-01-29 15:28:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16739, 26, 2, 1105, 2.99, '2007-01-31 13:02:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16740, 27, 2, 787, 2.99, '2007-01-29 14:31:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16741, 28, 2, 388, 2.99, '2007-01-27 09:05:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16742, 28, 1, 868, 2.99, '2007-01-30 02:48:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16743, 29, 2, 194, 1.99, '2007-01-26 05:20:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16744, 32, 2, 483, 4.99, '2007-01-27 21:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16745, 32, 2, 803, 4.99, '2007-01-29 16:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16746, 32, 2, 1067, 4.99, '2007-01-31 07:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16747, 33, 1, 165, 2.99, '2007-01-26 00:57:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16748, 35, 2, 47, 3.99, '2007-01-25 04:33:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16749, 35, 1, 424, 6.99, '2007-01-27 14:02:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16750, 36, 1, 349, 0.99, '2007-01-27 03:21:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16751, 36, 1, 716, 0.99, '2007-01-29 03:03:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16752, 37, 1, 25, 0.99, '2007-01-25 01:49:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16753, 37, 1, 923, 2.99, '2007-01-30 10:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16754, 40, 1, 128, 4.99, '2007-01-25 19:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16755, 42, 1, 635, 5.99, '2007-01-28 16:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16756, 43, 2, 123, 4.99, '2007-01-25 18:55:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16757, 43, 1, 652, 4.99, '2007-01-28 18:37:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16758, 44, 1, 29, 0.99, '2007-01-25 02:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16759, 44, 1, 99, 4.99, '2007-01-25 15:18:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16760, 44, 1, 407, 2.99, '2007-01-27 12:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16761, 44, 2, 721, 0.99, '2007-01-29 03:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16762, 44, 1, 904, 2.99, '2007-01-30 08:48:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16763, 45, 2, 277, 2.99, '2007-01-26 16:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16764, 46, 2, 401, 2.99, '2007-01-27 11:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16765, 46, 2, 432, 4.99, '2007-01-27 15:08:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16766, 46, 1, 938, 2.99, '2007-01-30 13:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16767, 47, 2, 175, 3.99, '2007-01-26 02:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16768, 47, 2, 207, 4.99, '2007-01-26 06:33:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16769, 47, 1, 300, 6.99, '2007-01-26 19:25:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16770, 48, 2, 72, 0.99, '2007-01-25 09:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16771, 48, 1, 297, 2.99, '2007-01-26 19:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16772, 48, 1, 390, 4.99, '2007-01-27 09:30:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16773, 49, 2, 96, 1.99, '2007-01-25 15:00:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16774, 49, 1, 239, 3.99, '2007-01-26 10:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16775, 49, 2, 846, 2.99, '2007-01-29 23:46:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16776, 49, 2, 1010, 4.99, '2007-01-31 00:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16777, 50, 1, 763, 4.99, '2007-01-29 10:00:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16778, 50, 1, 794, 4.99, '2007-01-29 15:12:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16779, 50, 1, 905, 4.99, '2007-01-30 08:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16780, 50, 1, 1029, 4.99, '2007-01-31 02:20:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16781, 50, 2, 1136, 4.99, '2007-01-31 17:48:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16782, 51, 2, 119, 4.99, '2007-01-25 18:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16783, 51, 1, 661, 4.99, '2007-01-28 19:29:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16784, 51, 2, 1028, 4.99, '2007-01-31 02:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16785, 52, 1, 874, 0.99, '2007-01-30 04:04:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16786, 53, 1, 88, 3.99, '2007-01-25 12:42:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16787, 53, 1, 378, 2.99, '2007-01-27 07:51:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16788, 53, 1, 751, 0.99, '2007-01-29 08:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16789, 53, 2, 783, 5.99, '2007-01-29 13:09:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16790, 53, 2, 856, 9.99, '2007-01-30 00:29:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16791, 53, 1, 1107, 2.99, '2007-01-31 13:32:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16792, 54, 2, 198, 4.99, '2007-01-26 05:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16793, 54, 2, 441, 4.99, '2007-01-27 16:39:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16794, 54, 2, 545, 3.99, '2007-01-28 05:38:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16795, 55, 1, 555, 4.99, '2007-01-28 06:59:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16796, 55, 1, 1027, 9.99, '2007-01-31 02:14:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16797, 55, 1, 1048, 0.99, '2007-01-31 05:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16798, 56, 1, 130, 3.99, '2007-01-25 19:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16799, 56, 1, 341, 5.99, '2007-01-27 02:30:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16800, 56, 1, 496, 2.99, '2007-01-27 23:12:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16801, 56, 1, 569, 6.99, '2007-01-28 08:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16802, 57, 2, 152, 9.99, '2007-01-25 23:09:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16803, 57, 2, 943, 4.99, '2007-01-30 13:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16804, 58, 1, 230, 0.99, '2007-01-26 10:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16805, 58, 2, 276, 7.99, '2007-01-26 15:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16806, 58, 2, 761, 0.99, '2007-01-29 09:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16807, 59, 2, 212, 4.99, '2007-01-26 07:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16808, 59, 2, 951, 2.99, '2007-01-30 14:39:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16809, 59, 1, 1154, 5.99, '2007-01-31 20:10:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16810, 60, 1, 318, 4.99, '2007-01-26 22:06:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16811, 60, 2, 706, 1.99, '2007-01-29 01:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16812, 60, 2, 934, 2.99, '2007-01-30 11:53:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16813, 61, 1, 1157, 0.99, '2007-01-31 21:16:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16814, 62, 2, 885, 0.99, '2007-01-30 05:22:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16815, 62, 1, 947, 4.99, '2007-01-30 14:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16816, 64, 1, 494, 4.99, '2007-01-27 23:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16817, 64, 1, 587, 0.99, '2007-01-28 10:33:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16818, 64, 1, 1001, 2.99, '2007-01-30 23:14:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16819, 65, 1, 295, 4.99, '2007-01-26 19:01:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16820, 65, 2, 657, 0.99, '2007-01-28 18:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16821, 66, 2, 933, 4.99, '2007-01-30 11:37:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16822, 67, 2, 331, 9.99, '2007-01-27 00:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16823, 67, 1, 767, 2.99, '2007-01-29 10:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16824, 69, 2, 584, 4.99, '2007-01-28 10:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16825, 69, 2, 765, 1.99, '2007-01-29 10:07:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16826, 70, 2, 1044, 4.99, '2007-01-31 04:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16827, 71, 1, 199, 2.99, '2007-01-26 05:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16828, 71, 1, 272, 9.99, '2007-01-26 14:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16829, 72, 2, 785, 4.99, '2007-01-29 13:37:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16830, 72, 2, 845, 4.99, '2007-01-29 23:45:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16831, 72, 2, 1047, 0.99, '2007-01-31 05:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16832, 73, 1, 70, 2.99, '2007-01-25 08:43:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16833, 73, 2, 1133, 4.99, '2007-01-31 17:40:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16834, 74, 2, 1121, 6.99, '2007-01-31 15:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16835, 75, 1, 180, 4.99, '2007-01-26 03:14:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16836, 75, 2, 268, 0.99, '2007-01-26 14:47:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16837, 76, 2, 574, 1.99, '2007-01-28 09:12:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16838, 76, 1, 926, 0.99, '2007-01-30 10:44:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16839, 77, 2, 319, 2.99, '2007-01-26 22:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16840, 77, 1, 419, 1.99, '2007-01-27 13:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16841, 77, 2, 561, 2.99, '2007-01-28 07:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16842, 77, 1, 586, 0.99, '2007-01-28 10:31:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16843, 77, 1, 760, 5.99, '2007-01-29 09:35:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16844, 79, 1, 840, 4.99, '2007-01-29 22:57:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16845, 79, 1, 859, 2.99, '2007-01-30 01:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16846, 79, 1, 928, 2.99, '2007-01-30 10:55:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16847, 81, 1, 289, 0.99, '2007-01-26 18:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16848, 82, 2, 145, 2.99, '2007-01-25 22:27:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16849, 82, 2, 288, 8.99, '2007-01-26 18:16:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16850, 83, 2, 222, 0.99, '2007-01-26 08:43:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16851, 83, 2, 950, 0.99, '2007-01-30 14:34:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16852, 83, 2, 989, 2.99, '2007-01-30 21:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16853, 84, 2, 408, 0.99, '2007-01-27 12:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16854, 84, 1, 739, 6.99, '2007-01-29 06:56:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16855, 84, 1, 834, 4.99, '2007-01-29 21:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16856, 85, 1, 690, 9.99, '2007-01-28 23:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16857, 85, 2, 908, 4.99, '2007-01-30 09:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16858, 86, 1, 66, 1.99, '2007-01-25 08:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16859, 87, 2, 451, 4.99, '2007-01-27 17:56:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16860, 87, 1, 674, 2.99, '2007-01-28 20:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16861, 88, 2, 36, 2.99, '2007-01-25 03:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16862, 89, 2, 141, 2.99, '2007-01-25 22:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16863, 89, 2, 588, 0.99, '2007-01-28 10:37:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16864, 89, 1, 740, 5.99, '2007-01-29 06:59:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16865, 91, 2, 216, 5.99, '2007-01-26 07:46:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16866, 92, 1, 271, 5.99, '2007-01-26 14:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16867, 92, 1, 456, 4.99, '2007-01-27 18:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16868, 93, 2, 113, 2.99, '2007-01-25 17:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16869, 93, 2, 420, 6.99, '2007-01-27 13:48:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16870, 93, 1, 1025, 4.99, '2007-01-31 02:10:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16871, 94, 1, 127, 2.99, '2007-01-25 19:39:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16872, 94, 2, 629, 4.99, '2007-01-28 15:47:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16873, 95, 1, 490, 4.99, '2007-01-27 22:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16874, 98, 2, 214, 3.99, '2007-01-26 07:17:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16875, 99, 2, 867, 0.99, '2007-01-30 02:23:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16876, 100, 1, 71, 0.99, '2007-01-25 08:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16877, 101, 1, 468, 9.99, '2007-01-27 19:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16878, 102, 1, 247, 4.99, '2007-01-26 12:29:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16879, 102, 1, 358, 0.99, '2007-01-27 05:12:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16880, 102, 2, 562, 1.99, '2007-01-28 07:29:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16881, 103, 1, 240, 7.99, '2007-01-26 11:08:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16882, 103, 1, 658, 9.99, '2007-01-28 18:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16883, 104, 1, 163, 10.99, '2007-01-26 00:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16884, 104, 2, 808, 3.99, '2007-01-29 17:36:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16885, 105, 1, 327, 8.99, '2007-01-26 23:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16886, 105, 2, 473, 7.99, '2007-01-27 20:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16887, 105, 1, 485, 2.99, '2007-01-27 22:09:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16888, 105, 1, 779, 6.99, '2007-01-29 12:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16889, 106, 2, 552, 3.99, '2007-01-28 06:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16890, 106, 2, 1156, 0.99, '2007-01-31 21:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16891, 107, 1, 170, 5.99, '2007-01-26 01:39:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16892, 107, 1, 1026, 5.99, '2007-01-31 02:13:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16893, 108, 1, 105, 4.99, '2007-01-25 16:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16894, 108, 2, 1055, 0.99, '2007-01-31 06:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16895, 109, 1, 203, 5.99, '2007-01-26 05:56:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16896, 109, 1, 386, 0.99, '2007-01-27 08:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16897, 109, 2, 622, 3.99, '2007-01-28 14:26:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16898, 109, 1, 698, 0.99, '2007-01-29 00:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16899, 109, 1, 1061, 7.99, '2007-01-31 06:56:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16900, 109, 1, 1106, 4.99, '2007-01-31 13:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16901, 109, 1, 1115, 2.99, '2007-01-31 14:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16902, 110, 1, 515, 7.99, '2007-01-28 01:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16903, 110, 2, 538, 1.99, '2007-01-28 04:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16904, 111, 2, 505, 2.99, '2007-01-28 00:35:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16905, 112, 1, 396, 0.99, '2007-01-27 10:15:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16906, 112, 2, 701, 2.99, '2007-01-29 00:54:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16907, 113, 1, 510, 0.99, '2007-01-28 01:20:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16908, 113, 2, 776, 0.99, '2007-01-29 12:04:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16909, 114, 1, 205, 4.99, '2007-01-26 06:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16910, 114, 1, 255, 4.99, '2007-01-26 13:20:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16911, 114, 2, 889, 2.99, '2007-01-30 05:43:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16912, 115, 1, 915, 0.99, '2007-01-30 09:48:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16913, 115, 1, 983, 0.99, '2007-01-30 20:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16914, 115, 1, 1102, 2.99, '2007-01-31 12:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16915, 116, 1, 1058, 4.99, '2007-01-31 06:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16916, 117, 1, 700, 0.99, '2007-01-29 00:47:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16917, 117, 2, 1114, 0.99, '2007-01-31 14:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16918, 118, 2, 351, 5.99, '2007-01-27 04:07:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16919, 119, 2, 67, 0.99, '2007-01-25 08:09:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16920, 119, 1, 235, 5.99, '2007-01-26 10:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16921, 119, 2, 540, 6.99, '2007-01-28 05:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16922, 120, 2, 68, 7.99, '2007-01-25 08:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16923, 120, 2, 532, 0.99, '2007-01-28 04:05:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16924, 121, 1, 217, 4.99, '2007-01-26 07:52:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16925, 122, 2, 853, 0.99, '2007-01-30 00:11:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16926, 122, 2, 1135, 4.99, '2007-01-31 17:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16927, 123, 1, 992, 2.99, '2007-01-30 22:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16928, 124, 1, 775, 0.99, '2007-01-29 11:51:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16929, 124, 2, 1039, 4.99, '2007-01-31 04:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16930, 124, 2, 1057, 3.99, '2007-01-31 06:26:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16931, 124, 2, 1130, 5.99, '2007-01-31 16:42:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16932, 125, 2, 185, 3.99, '2007-01-26 03:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16933, 126, 1, 9, 4.99, '2007-01-24 22:29:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16934, 126, 1, 752, 4.99, '2007-01-29 08:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16935, 126, 2, 1054, 4.99, '2007-01-31 06:01:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16936, 127, 1, 452, 0.99, '2007-01-27 17:58:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16937, 127, 1, 708, 0.99, '2007-01-29 01:52:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16938, 128, 2, 888, 5.99, '2007-01-30 05:41:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16939, 128, 2, 1131, 2.99, '2007-01-31 17:12:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16940, 130, 1, 1, 2.99, '2007-01-24 21:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16941, 130, 1, 746, 2.99, '2007-01-29 07:53:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16942, 131, 2, 55, 2.99, '2007-01-25 06:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16943, 131, 1, 83, 4.99, '2007-01-25 10:58:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16944, 131, 2, 944, 7.99, '2007-01-30 13:54:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16945, 133, 1, 275, 6.99, '2007-01-26 15:38:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16946, 133, 2, 447, 2.99, '2007-01-27 17:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16947, 134, 1, 366, 3.99, '2007-01-27 06:02:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16948, 134, 2, 798, 0.99, '2007-01-29 15:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16949, 134, 1, 814, 6.99, '2007-01-29 18:44:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16950, 134, 2, 1124, 4.99, '2007-01-31 15:18:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16951, 135, 1, 78, 5.99, '2007-01-25 10:03:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16952, 135, 2, 753, 3.99, '2007-01-29 08:45:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16953, 136, 2, 1150, 2.99, '2007-01-31 19:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16954, 137, 1, 925, 2.99, '2007-01-30 10:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16955, 138, 1, 523, 2.99, '2007-01-28 02:21:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16956, 138, 1, 1020, 0.99, '2007-01-31 01:34:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16957, 141, 2, 930, 2.99, '2007-01-30 11:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16958, 142, 2, 11, 8.99, '2007-01-24 22:37:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16959, 142, 1, 148, 0.99, '2007-01-25 22:53:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16960, 142, 1, 575, 9.99, '2007-01-28 09:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16961, 143, 1, 221, 2.99, '2007-01-26 08:42:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16962, 143, 1, 312, 2.99, '2007-01-26 21:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16963, 144, 1, 323, 2.99, '2007-01-26 23:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16964, 144, 2, 345, 2.99, '2007-01-27 03:00:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16965, 145, 1, 500, 0.99, '2007-01-27 23:33:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16966, 146, 2, 762, 7.99, '2007-01-29 09:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16967, 146, 1, 1073, 4.99, '2007-01-31 08:23:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16968, 147, 1, 362, 0.99, '2007-01-27 05:38:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16969, 147, 1, 509, 0.99, '2007-01-28 01:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16970, 148, 1, 682, 4.99, '2007-01-28 22:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16971, 149, 1, 764, 4.99, '2007-01-29 10:06:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16972, 150, 1, 422, 3.99, '2007-01-27 14:00:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16973, 150, 1, 609, 2.99, '2007-01-28 13:32:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16974, 150, 1, 995, 3.99, '2007-01-30 22:34:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16975, 151, 2, 164, 4.99, '2007-01-26 00:55:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16976, 151, 2, 418, 5.99, '2007-01-27 13:41:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16977, 152, 2, 359, 4.99, '2007-01-27 05:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16978, 152, 1, 745, 4.99, '2007-01-29 07:51:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16979, 154, 1, 469, 5.99, '2007-01-27 19:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16980, 154, 2, 865, 7.99, '2007-01-30 02:08:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16981, 154, 2, 978, 5.99, '2007-01-30 19:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16982, 155, 1, 568, 2.99, '2007-01-28 08:26:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16983, 156, 2, 899, 6.99, '2007-01-30 07:57:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16984, 156, 1, 1052, 4.99, '2007-01-31 05:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16985, 157, 2, 352, 0.99, '2007-01-27 04:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16986, 157, 1, 642, 4.99, '2007-01-28 17:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16987, 158, 2, 245, 4.99, '2007-01-26 12:15:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16988, 158, 1, 293, 5.99, '2007-01-26 18:55:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16989, 159, 2, 475, 2.99, '2007-01-27 20:44:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16990, 159, 2, 549, 1.99, '2007-01-28 06:04:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16991, 159, 1, 598, 0.99, '2007-01-28 12:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16992, 159, 1, 832, 3.99, '2007-01-29 21:19:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16993, 161, 2, 428, 2.99, '2007-01-27 14:39:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16994, 161, 2, 477, 3.99, '2007-01-27 21:01:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16995, 161, 1, 520, 5.99, '2007-01-28 01:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16996, 161, 2, 539, 0.99, '2007-01-28 04:54:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16997, 161, 1, 612, 2.99, '2007-01-28 13:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16998, 161, 1, 1003, 0.99, '2007-01-30 23:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (16999, 162, 1, 285, 1.99, '2007-01-26 18:10:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17000, 162, 1, 501, 4.99, '2007-01-27 23:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17001, 162, 1, 688, 4.99, '2007-01-28 23:13:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17002, 164, 2, 1011, 1.99, '2007-01-31 00:34:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17003, 165, 2, 338, 4.99, '2007-01-27 02:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17004, 166, 1, 662, 1.99, '2007-01-28 19:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17005, 167, 1, 280, 2.99, '2007-01-26 17:05:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17006, 167, 1, 365, 2.99, '2007-01-27 05:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17007, 167, 1, 927, 4.99, '2007-01-30 10:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17008, 168, 2, 404, 0.99, '2007-01-27 12:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17009, 168, 1, 488, 4.99, '2007-01-27 22:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17010, 169, 2, 527, 3.99, '2007-01-28 02:57:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17011, 169, 1, 1087, 4.99, '2007-01-31 09:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17012, 170, 1, 211, 2.99, '2007-01-26 07:01:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17013, 170, 1, 377, 5.99, '2007-01-27 07:32:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17014, 170, 2, 504, 0.99, '2007-01-28 00:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17015, 171, 2, 804, 9.99, '2007-01-29 16:38:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17016, 172, 2, 449, 3.99, '2007-01-27 17:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17017, 172, 1, 685, 6.99, '2007-01-28 22:46:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17018, 172, 1, 837, 0.99, '2007-01-29 22:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17019, 173, 2, 578, 2.99, '2007-01-28 09:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17020, 173, 1, 628, 4.99, '2007-01-28 15:34:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17021, 174, 1, 41, 5.99, '2007-01-25 03:40:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17022, 174, 2, 1071, 4.99, '2007-01-31 08:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17023, 176, 1, 172, 0.99, '2007-01-26 01:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17024, 176, 2, 380, 6.99, '2007-01-27 08:03:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17025, 176, 1, 553, 3.99, '2007-01-28 06:43:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17026, 176, 1, 663, 1.99, '2007-01-28 19:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17027, 176, 1, 1062, 7.99, '2007-01-31 07:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17028, 179, 1, 502, 0.99, '2007-01-28 00:03:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17029, 179, 1, 759, 6.99, '2007-01-29 09:26:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17030, 179, 1, 1046, 4.99, '2007-01-31 05:10:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17031, 180, 1, 1122, 2.99, '2007-01-31 15:07:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17032, 181, 2, 579, 6.99, '2007-01-28 09:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17033, 182, 2, 161, 0.99, '2007-01-26 00:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17034, 182, 2, 425, 3.99, '2007-01-27 14:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17035, 183, 1, 382, 0.99, '2007-01-27 08:40:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17036, 184, 1, 196, 2.99, '2007-01-26 05:24:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17037, 184, 2, 534, 4.99, '2007-01-28 04:43:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17038, 184, 1, 567, 1.99, '2007-01-28 08:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17039, 185, 2, 20, 2.99, '2007-01-25 00:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17040, 185, 2, 154, 0.99, '2007-01-25 23:24:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17041, 185, 1, 646, 0.99, '2007-01-28 17:44:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17042, 186, 1, 581, 1.99, '2007-01-28 09:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17043, 186, 2, 958, 0.99, '2007-01-30 16:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17044, 187, 1, 252, 7.99, '2007-01-26 13:08:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17045, 189, 2, 1117, 5.99, '2007-01-31 14:43:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17046, 190, 2, 430, 4.99, '2007-01-27 14:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17047, 190, 1, 693, 2.99, '2007-01-29 00:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17048, 191, 1, 1134, 2.99, '2007-01-31 17:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17049, 191, 2, 1152, 4.99, '2007-01-31 20:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17050, 192, 1, 895, 1.99, '2007-01-30 07:19:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17051, 193, 2, 273, 2.99, '2007-01-26 14:58:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17052, 193, 2, 464, 0.99, '2007-01-27 19:11:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17053, 194, 2, 334, 4.99, '2007-01-27 01:31:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17054, 194, 2, 677, 7.99, '2007-01-28 21:28:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17055, 196, 2, 106, 11.99, '2007-01-25 16:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17056, 196, 2, 178, 5.99, '2007-01-26 02:50:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17057, 196, 2, 491, 2.99, '2007-01-27 22:42:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17058, 196, 1, 1053, 1.99, '2007-01-31 05:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17059, 197, 2, 94, 2.99, '2007-01-25 14:32:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17060, 197, 1, 215, 0.99, '2007-01-26 07:31:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17061, 197, 1, 391, 2.99, '2007-01-27 09:32:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17062, 197, 2, 649, 1.99, '2007-01-28 18:04:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17063, 197, 1, 683, 2.99, '2007-01-28 22:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17064, 197, 2, 730, 3.99, '2007-01-29 05:29:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17065, 197, 1, 903, 3.99, '2007-01-30 08:39:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17066, 197, 1, 918, 0.99, '2007-01-30 10:00:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17067, 198, 1, 357, 0.99, '2007-01-27 05:05:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17068, 198, 1, 582, 4.99, '2007-01-28 10:02:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17069, 198, 2, 639, 2.99, '2007-01-28 16:53:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17070, 198, 1, 932, 2.99, '2007-01-30 11:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17071, 198, 2, 1132, 4.99, '2007-01-31 17:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17072, 199, 1, 499, 7.99, '2007-01-27 23:33:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17073, 200, 2, 270, 9.99, '2007-01-26 14:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17074, 201, 1, 311, 3.99, '2007-01-26 21:20:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17075, 201, 1, 670, 6.99, '2007-01-28 20:32:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17076, 201, 2, 756, 5.99, '2007-01-29 08:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17077, 209, 2, 340, 9.99, '2007-01-27 02:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17078, 209, 1, 471, 0.99, '2007-01-27 20:01:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17079, 209, 2, 1143, 2.99, '2007-01-31 18:21:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17080, 210, 1, 953, 2.99, '2007-01-30 15:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17081, 211, 1, 238, 4.99, '2007-01-26 10:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17082, 213, 2, 385, 0.99, '2007-01-27 08:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17083, 214, 1, 242, 1.99, '2007-01-26 11:33:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17084, 214, 1, 278, 3.99, '2007-01-26 16:09:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17085, 214, 1, 1076, 2.99, '2007-01-31 08:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17086, 214, 2, 1093, 2.99, '2007-01-31 11:00:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17087, 214, 2, 1112, 0.99, '2007-01-31 14:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17088, 215, 1, 711, 4.99, '2007-01-29 02:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17089, 215, 2, 1080, 4.99, '2007-01-31 09:23:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17090, 216, 1, 997, 4.99, '2007-01-30 22:36:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17091, 217, 2, 828, 2.99, '2007-01-29 20:43:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17092, 217, 2, 1141, 8.99, '2007-01-31 18:10:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17093, 219, 1, 414, 0.99, '2007-01-27 13:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17094, 220, 2, 409, 0.99, '2007-01-27 12:39:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17095, 220, 1, 480, 3.99, '2007-01-27 21:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17096, 221, 2, 226, 4.99, '2007-01-26 09:12:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17097, 222, 1, 5, 6.99, '2007-01-24 21:33:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17098, 222, 1, 134, 4.99, '2007-01-25 20:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17099, 222, 2, 416, 0.99, '2007-01-27 13:30:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17100, 222, 2, 809, 3.99, '2007-01-29 17:38:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17101, 222, 2, 1006, 2.99, '2007-01-30 23:25:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17102, 223, 2, 524, 2.99, '2007-01-28 02:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17103, 225, 1, 812, 4.99, '2007-01-29 18:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17104, 225, 1, 963, 3.99, '2007-01-30 17:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17105, 227, 1, 111, 4.99, '2007-01-25 17:13:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17106, 227, 1, 1023, 3.99, '2007-01-31 01:55:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17107, 228, 2, 492, 4.99, '2007-01-27 22:53:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17108, 228, 2, 1070, 0.99, '2007-01-31 08:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17109, 230, 1, 32, 0.99, '2007-01-25 02:34:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17110, 230, 1, 1078, 4.99, '2007-01-31 08:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17111, 231, 1, 329, 5.99, '2007-01-27 00:25:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17112, 231, 1, 479, 6.99, '2007-01-27 21:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17113, 231, 1, 512, 8.99, '2007-01-28 01:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17114, 232, 1, 28, 4.99, '2007-01-25 02:11:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17115, 232, 1, 805, 3.99, '2007-01-29 16:46:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17116, 234, 2, 1125, 4.99, '2007-01-31 15:52:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17117, 235, 2, 807, 2.99, '2007-01-29 17:19:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17118, 235, 1, 1148, 0.99, '2007-01-31 19:07:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17119, 236, 2, 262, 2.99, '2007-01-26 14:15:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17120, 236, 2, 344, 2.99, '2007-01-27 02:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17121, 236, 1, 1032, 2.99, '2007-01-31 02:57:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17122, 237, 2, 133, 0.99, '2007-01-25 20:16:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17123, 237, 1, 182, 4.99, '2007-01-26 03:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17124, 238, 2, 315, 4.99, '2007-01-26 21:41:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17125, 238, 1, 842, 2.99, '2007-01-29 23:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17126, 239, 2, 8, 4.99, '2007-01-24 22:00:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17127, 239, 1, 444, 2.99, '2007-01-27 17:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17128, 239, 1, 621, 4.99, '2007-01-28 14:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17129, 239, 1, 636, 6.99, '2007-01-28 16:16:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17130, 239, 1, 1022, 7.99, '2007-01-31 01:45:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17131, 239, 2, 1082, 5.99, '2007-01-31 09:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17132, 240, 1, 246, 2.99, '2007-01-26 12:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17133, 240, 1, 460, 2.99, '2007-01-27 18:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17134, 240, 1, 643, 4.99, '2007-01-28 17:20:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17135, 241, 1, 627, 7.99, '2007-01-28 15:33:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17136, 241, 1, 1059, 3.99, '2007-01-31 06:49:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17137, 242, 1, 108, 2.99, '2007-01-25 16:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17138, 242, 2, 283, 3.99, '2007-01-26 17:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17139, 242, 2, 881, 4.99, '2007-01-30 04:44:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17140, 243, 1, 188, 4.99, '2007-01-26 04:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17141, 244, 2, 592, 4.99, '2007-01-28 11:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17142, 244, 1, 797, 1.99, '2007-01-29 15:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17143, 245, 2, 79, 4.99, '2007-01-25 10:39:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17144, 245, 1, 241, 0.99, '2007-01-26 11:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17145, 245, 1, 519, 7.99, '2007-01-28 01:50:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17146, 245, 1, 719, 2.99, '2007-01-29 03:44:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17147, 245, 2, 725, 2.99, '2007-01-29 04:32:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17148, 245, 2, 948, 8.99, '2007-01-30 14:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17149, 246, 1, 124, 6.99, '2007-01-25 19:14:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17150, 246, 2, 421, 8.99, '2007-01-27 13:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17151, 246, 2, 434, 5.99, '2007-01-27 15:22:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17152, 246, 1, 699, 3.99, '2007-01-29 00:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17153, 246, 1, 1051, 4.99, '2007-01-31 05:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17154, 247, 1, 189, 4.99, '2007-01-26 04:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17155, 247, 2, 448, 3.99, '2007-01-27 17:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17156, 247, 1, 450, 6.99, '2007-01-27 17:47:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17157, 248, 2, 330, 7.99, '2007-01-27 00:43:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17158, 248, 1, 618, 4.99, '2007-01-28 14:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17159, 249, 2, 316, 4.99, '2007-01-26 21:51:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17160, 249, 2, 400, 2.99, '2007-01-27 11:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17161, 249, 1, 438, 6.99, '2007-01-27 16:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17162, 249, 1, 597, 3.99, '2007-01-28 12:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17163, 250, 1, 61, 5.99, '2007-01-25 07:30:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17164, 250, 1, 176, 3.99, '2007-01-26 02:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17165, 250, 1, 637, 4.99, '2007-01-28 16:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17166, 250, 2, 687, 0.99, '2007-01-28 23:00:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17167, 250, 1, 1146, 2.99, '2007-01-31 19:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17168, 251, 1, 264, 2.99, '2007-01-26 14:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17169, 251, 1, 309, 1.99, '2007-01-26 21:06:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17170, 251, 2, 393, 2.99, '2007-01-27 09:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17171, 251, 2, 1069, 3.99, '2007-01-31 08:00:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17172, 251, 1, 1091, 4.99, '2007-01-31 10:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17173, 251, 2, 1155, 2.99, '2007-01-31 20:45:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17174, 252, 1, 707, 4.99, '2007-01-29 01:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17175, 252, 1, 1095, 0.99, '2007-01-31 11:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17176, 253, 1, 566, 6.99, '2007-01-28 08:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17177, 253, 1, 648, 0.99, '2007-01-28 17:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17178, 253, 1, 986, 2.99, '2007-01-30 20:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17179, 254, 1, 183, 2.99, '2007-01-26 03:29:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17180, 254, 1, 1108, 5.99, '2007-01-31 13:33:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17181, 256, 1, 51, 4.99, '2007-01-25 05:17:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17182, 256, 1, 232, 0.99, '2007-01-26 10:06:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17183, 256, 2, 738, 4.99, '2007-01-29 06:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17184, 256, 1, 935, 2.99, '2007-01-30 11:58:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17185, 256, 1, 1116, 0.99, '2007-01-31 14:39:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17186, 257, 2, 139, 2.99, '2007-01-25 21:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17187, 257, 2, 244, 2.99, '2007-01-26 12:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17188, 257, 2, 705, 2.99, '2007-01-29 01:17:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17189, 259, 2, 722, 6.99, '2007-01-29 03:58:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17190, 259, 2, 901, 2.99, '2007-01-30 08:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17191, 259, 1, 1147, 5.99, '2007-01-31 19:06:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17192, 260, 1, 1101, 8.99, '2007-01-31 12:42:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17193, 261, 1, 12, 4.99, '2007-01-24 22:47:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17194, 261, 2, 465, 3.99, '2007-01-27 19:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17195, 261, 2, 542, 6.99, '2007-01-28 05:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17196, 261, 1, 792, 0.99, '2007-01-29 15:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17197, 262, 2, 984, 4.99, '2007-01-30 20:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17198, 263, 1, 97, 4.99, '2007-01-25 15:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17199, 263, 1, 266, 0.99, '2007-01-26 14:36:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17200, 265, 2, 74, 0.99, '2007-01-25 09:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17201, 266, 1, 86, 1.99, '2007-01-25 12:04:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17202, 266, 2, 651, 2.99, '2007-01-28 18:15:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17203, 267, 2, 91, 6.99, '2007-01-25 13:25:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17204, 267, 1, 436, 4.99, '2007-01-27 15:49:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17205, 267, 2, 1030, 4.99, '2007-01-31 02:35:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17206, 577, 2, 4591, 0.99, '2007-01-26 23:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17207, 268, 1, 1394, 2.99, '2007-02-15 14:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17208, 268, 2, 1450, 4.99, '2007-02-15 17:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17209, 268, 2, 1551, 3.99, '2007-02-16 00:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17210, 268, 1, 2133, 0.99, '2007-02-17 19:38:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17211, 268, 2, 2324, 4.99, '2007-02-18 08:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17212, 268, 2, 2858, 2.99, '2007-02-19 21:45:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17213, 268, 1, 3066, 3.99, '2007-02-20 12:24:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17214, 268, 1, 3361, 1.99, '2007-02-21 10:42:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17215, 269, 1, 1334, 3.99, '2007-02-15 10:11:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17216, 269, 2, 1909, 2.99, '2007-02-17 03:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17217, 269, 2, 2493, 6.99, '2007-02-18 20:40:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17218, 270, 1, 1345, 4.99, '2007-02-15 11:00:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17219, 270, 1, 1896, 6.99, '2007-02-17 02:54:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17220, 270, 1, 2115, 3.99, '2007-02-17 18:30:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17221, 270, 2, 3164, 5.99, '2007-02-20 19:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17222, 271, 2, 1852, 2.99, '2007-02-16 23:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17223, 272, 2, 1604, 4.99, '2007-02-16 04:42:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17224, 272, 2, 2546, 5.99, '2007-02-19 01:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17225, 272, 1, 3323, 5.99, '2007-02-21 07:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17226, 273, 2, 1391, 6.99, '2007-02-15 14:39:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17227, 273, 2, 1747, 6.99, '2007-02-16 15:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17228, 273, 2, 1765, 4.99, '2007-02-16 16:24:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17229, 273, 1, 2301, 1.99, '2007-02-18 06:52:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17230, 273, 1, 3202, 0.99, '2007-02-20 23:02:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17231, 274, 1, 2098, 0.99, '2007-02-17 17:10:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17232, 274, 2, 3291, 9.99, '2007-02-21 05:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17233, 275, 2, 1797, 3.99, '2007-02-16 18:41:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17234, 275, 2, 2414, 0.99, '2007-02-18 15:30:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17235, 275, 1, 2646, 4.99, '2007-02-19 08:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17236, 275, 1, 3355, 2.99, '2007-02-21 09:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17237, 276, 1, 1352, 0.99, '2007-02-15 11:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17238, 276, 2, 2763, 4.99, '2007-02-19 15:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17239, 276, 2, 3064, 6.99, '2007-02-20 12:21:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17240, 277, 1, 1331, 2.99, '2007-02-15 10:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17241, 277, 2, 1717, 2.99, '2007-02-16 13:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17242, 277, 2, 2162, 3.99, '2007-02-17 22:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17243, 277, 2, 2723, 4.99, '2007-02-19 13:23:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17244, 277, 1, 3247, 5.99, '2007-02-21 01:40:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17245, 277, 2, 3274, 4.99, '2007-02-21 03:59:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17246, 277, 1, 3344, 2.99, '2007-02-21 09:25:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17247, 278, 2, 1387, 0.99, '2007-02-15 14:09:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17248, 278, 1, 1978, 2.99, '2007-02-17 08:11:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17249, 278, 2, 2078, 4.99, '2007-02-17 15:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17250, 278, 1, 3453, 2.99, '2007-02-21 19:40:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17251, 279, 1, 1178, 2.99, '2007-02-14 23:05:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17252, 279, 1, 2147, 4.99, '2007-02-17 20:56:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17253, 279, 1, 3215, 0.99, '2007-02-20 23:39:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17254, 279, 1, 3374, 2.99, '2007-02-21 12:04:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17255, 279, 1, 3375, 4.99, '2007-02-21 12:05:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17256, 280, 1, 2656, 3.99, '2007-02-19 09:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17257, 280, 2, 3009, 4.99, '2007-02-20 08:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17258, 280, 2, 3097, 0.99, '2007-02-20 14:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17259, 281, 2, 1485, 5.99, '2007-02-15 19:52:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17260, 281, 1, 2254, 5.99, '2007-02-18 03:43:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17261, 282, 1, 2016, 2.99, '2007-02-17 10:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17262, 282, 2, 2176, 2.99, '2007-02-17 22:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17263, 282, 2, 3408, 4.99, '2007-02-21 14:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17264, 282, 1, 3417, 2.99, '2007-02-21 15:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17265, 283, 1, 1749, 0.99, '2007-02-16 15:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17266, 283, 2, 1796, 2.99, '2007-02-16 18:39:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17267, 283, 2, 2333, 2.99, '2007-02-18 09:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17268, 283, 1, 2685, 2.99, '2007-02-19 11:03:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17269, 283, 2, 2849, 7.99, '2007-02-19 21:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17270, 284, 1, 1171, 0.99, '2007-02-14 22:18:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17271, 284, 2, 2813, 6.99, '2007-02-19 18:30:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17272, 284, 2, 3296, 0.99, '2007-02-21 05:33:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17273, 285, 2, 1161, 7.99, '2007-02-14 21:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17274, 285, 2, 1302, 3.99, '2007-02-15 08:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17275, 285, 1, 2249, 5.99, '2007-02-18 03:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17276, 286, 1, 1690, 8.99, '2007-02-16 10:52:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17277, 286, 1, 2195, 4.99, '2007-02-18 00:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17278, 287, 1, 1247, 7.99, '2007-02-15 03:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17279, 287, 2, 1642, 2.99, '2007-02-16 07:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17280, 287, 2, 2286, 9.99, '2007-02-18 05:30:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17281, 287, 2, 2612, 6.99, '2007-02-19 05:48:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17282, 288, 1, 1466, 5.99, '2007-02-15 19:14:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17283, 289, 2, 1880, 4.99, '2007-02-17 01:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17284, 289, 2, 2316, 0.99, '2007-02-18 07:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17285, 289, 1, 2387, 6.99, '2007-02-18 13:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17286, 289, 1, 2784, 10.99, '2007-02-19 17:08:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17287, 289, 2, 2948, 6.99, '2007-02-20 04:31:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17288, 289, 2, 3123, 6.99, '2007-02-20 16:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17289, 290, 1, 1220, 6.99, '2007-02-15 01:54:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17290, 290, 2, 1336, 8.99, '2007-02-15 10:30:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17291, 290, 2, 1496, 4.99, '2007-02-15 20:24:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17292, 290, 2, 1532, 0.99, '2007-02-15 23:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17293, 290, 1, 3013, 3.99, '2007-02-20 09:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17294, 291, 1, 1191, 2.99, '2007-02-14 23:39:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17295, 291, 1, 2300, 2.99, '2007-02-18 06:51:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17296, 291, 2, 3042, 2.99, '2007-02-20 11:06:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17297, 292, 1, 1901, 3.99, '2007-02-17 03:03:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17298, 292, 2, 2258, 3.99, '2007-02-18 03:59:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17299, 292, 1, 2838, 3.99, '2007-02-19 20:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17300, 292, 2, 3328, 2.99, '2007-02-21 07:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17301, 293, 1, 1589, 9.99, '2007-02-16 03:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17302, 293, 1, 1829, 5.99, '2007-02-16 20:42:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17303, 293, 2, 1860, 4.99, '2007-02-16 23:45:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17304, 293, 1, 2386, 4.99, '2007-02-18 13:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17305, 293, 2, 3025, 2.99, '2007-02-20 10:15:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17306, 293, 1, 3290, 1.99, '2007-02-21 05:14:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17307, 293, 2, 3452, 4.99, '2007-02-21 19:39:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17308, 294, 1, 2900, 2.99, '2007-02-20 01:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17309, 294, 2, 3330, 2.99, '2007-02-21 07:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17310, 295, 1, 1184, 5.99, '2007-02-14 23:18:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17311, 295, 1, 1328, 2.99, '2007-02-15 09:51:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17312, 295, 2, 1935, 2.99, '2007-02-17 05:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17313, 295, 1, 2054, 2.99, '2007-02-17 13:55:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17314, 295, 1, 2431, 1.99, '2007-02-18 16:21:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17315, 295, 1, 2638, 1.99, '2007-02-19 07:51:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17316, 295, 1, 2999, 2.99, '2007-02-20 07:59:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17317, 295, 1, 3198, 1.99, '2007-02-20 22:37:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17318, 295, 2, 3394, 8.99, '2007-02-21 13:46:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17319, 296, 2, 1659, 4.99, '2007-02-16 08:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17320, 296, 1, 3034, 0.99, '2007-02-20 10:44:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17321, 296, 2, 3119, 0.99, '2007-02-20 16:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17322, 297, 1, 1409, 3.99, '2007-02-15 15:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17323, 297, 1, 2067, 2.99, '2007-02-17 14:39:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17324, 297, 1, 2202, 8.99, '2007-02-18 00:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17325, 297, 1, 2260, 2.99, '2007-02-18 04:07:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17326, 297, 2, 2339, 4.99, '2007-02-18 09:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17327, 298, 2, 1454, 4.99, '2007-02-15 18:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17328, 298, 2, 2385, 3.99, '2007-02-18 13:51:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17329, 298, 2, 3095, 4.99, '2007-02-20 14:45:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17330, 298, 2, 3400, 4.99, '2007-02-21 14:18:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17331, 299, 1, 1650, 8.99, '2007-02-16 07:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17332, 299, 2, 2664, 4.99, '2007-02-19 09:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17333, 299, 1, 2774, 2.99, '2007-02-19 16:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17334, 299, 2, 2791, 4.99, '2007-02-19 17:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17335, 299, 1, 3074, 0.99, '2007-02-20 13:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17336, 299, 2, 3223, 2.99, '2007-02-21 00:35:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17337, 299, 1, 3288, 5.99, '2007-02-21 05:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17338, 300, 2, 1381, 0.99, '2007-02-15 13:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17339, 300, 1, 3177, 2.99, '2007-02-20 21:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17340, 301, 1, 1853, 0.99, '2007-02-16 23:08:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17341, 301, 1, 2611, 4.99, '2007-02-19 05:46:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17342, 301, 2, 2925, 2.99, '2007-02-20 02:52:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17343, 302, 1, 1231, 2.99, '2007-02-15 02:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17344, 303, 2, 1970, 4.99, '2007-02-17 07:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17345, 303, 1, 2223, 8.99, '2007-02-18 01:55:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17346, 303, 1, 3077, 3.99, '2007-02-20 13:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17347, 303, 1, 3107, 2.99, '2007-02-20 15:54:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17348, 304, 1, 1414, 6.99, '2007-02-15 15:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17349, 304, 2, 1525, 4.99, '2007-02-15 22:54:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17350, 304, 1, 2039, 3.99, '2007-02-17 12:32:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17351, 304, 2, 2902, 4.99, '2007-02-20 01:14:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17352, 305, 1, 1574, 4.99, '2007-02-16 02:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17353, 305, 2, 1884, 0.99, '2007-02-17 01:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17354, 305, 1, 2166, 11.99, '2007-02-17 22:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17355, 305, 1, 3387, 0.99, '2007-02-21 12:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17356, 306, 2, 1172, 0.99, '2007-02-14 22:23:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17357, 306, 2, 2836, 6.99, '2007-02-19 20:26:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17358, 307, 2, 2152, 2.99, '2007-02-17 21:21:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17359, 307, 1, 2167, 0.99, '2007-02-17 22:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17360, 307, 1, 2787, 4.99, '2007-02-19 17:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17361, 307, 1, 2881, 2.99, '2007-02-19 23:54:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17362, 307, 2, 3057, 5.99, '2007-02-20 11:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17363, 307, 1, 3209, 4.99, '2007-02-20 23:19:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17364, 308, 1, 2037, 0.99, '2007-02-17 12:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17365, 308, 1, 2094, 0.99, '2007-02-17 16:47:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17366, 308, 2, 2168, 4.99, '2007-02-17 22:21:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17367, 308, 1, 2346, 7.99, '2007-02-18 10:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17368, 308, 2, 2448, 4.99, '2007-02-18 17:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17369, 309, 1, 1837, 4.99, '2007-02-16 21:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17370, 309, 2, 2560, 9.99, '2007-02-19 01:41:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17371, 309, 2, 2644, 3.99, '2007-02-19 08:10:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17372, 309, 2, 2688, 6.99, '2007-02-19 11:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17373, 310, 2, 1162, 4.99, '2007-02-14 21:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17374, 310, 2, 1333, 2.99, '2007-02-15 10:05:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17375, 310, 2, 1918, 3.99, '2007-02-17 04:08:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17376, 310, 2, 2088, 6.99, '2007-02-17 16:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17377, 310, 1, 2480, 5.99, '2007-02-18 19:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17378, 310, 1, 2618, 2.99, '2007-02-19 06:31:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17379, 311, 1, 1622, 4.99, '2007-02-16 06:01:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17380, 311, 2, 1955, 0.99, '2007-02-17 07:08:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17381, 311, 2, 2967, 6.99, '2007-02-20 06:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17382, 312, 2, 1419, 0.99, '2007-02-15 16:23:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17383, 312, 2, 3457, 3.99, '2007-02-21 20:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17384, 313, 2, 1312, 2.99, '2007-02-15 08:44:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17385, 313, 1, 2617, 7.99, '2007-02-19 06:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17386, 313, 2, 2711, 4.99, '2007-02-19 12:40:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17387, 314, 1, 1598, 3.99, '2007-02-16 04:31:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17388, 314, 1, 1624, 2.99, '2007-02-16 06:17:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17389, 315, 1, 1701, 2.99, '2007-02-16 11:47:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17390, 316, 1, 1317, 4.99, '2007-02-15 08:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17391, 316, 2, 1350, 4.99, '2007-02-15 11:18:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17392, 316, 1, 2032, 4.99, '2007-02-17 11:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17393, 316, 2, 2338, 4.99, '2007-02-18 09:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17394, 316, 2, 2491, 1.99, '2007-02-18 20:29:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17395, 316, 1, 2820, 4.99, '2007-02-19 18:48:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17396, 316, 2, 3373, 8.99, '2007-02-21 12:03:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17397, 317, 2, 2287, 6.99, '2007-02-18 05:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17398, 317, 2, 3029, 2.99, '2007-02-20 10:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17399, 317, 1, 3251, 0.99, '2007-02-21 01:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17400, 318, 1, 2634, 2.99, '2007-02-19 07:23:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17401, 318, 1, 2643, 2.99, '2007-02-19 08:07:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17402, 318, 2, 3337, 0.99, '2007-02-21 08:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17403, 318, 2, 3376, 7.99, '2007-02-21 12:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17404, 319, 1, 1632, 2.99, '2007-02-16 06:32:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17405, 319, 1, 1892, 4.99, '2007-02-17 02:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17406, 319, 2, 2021, 3.99, '2007-02-17 11:09:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17407, 319, 2, 2703, 4.99, '2007-02-19 12:04:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17408, 319, 2, 2884, 0.99, '2007-02-19 23:59:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17409, 319, 2, 3256, 3.99, '2007-02-21 02:14:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17410, 320, 2, 1258, 4.99, '2007-02-15 04:49:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17411, 320, 2, 1484, 3.99, '2007-02-15 19:51:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17412, 320, 2, 1567, 1.99, '2007-02-16 01:41:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17413, 320, 1, 2216, 4.99, '2007-02-18 01:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17414, 320, 2, 2883, 7.99, '2007-02-19 23:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17415, 321, 2, 1750, 5.99, '2007-02-16 15:26:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17416, 321, 1, 3410, 0.99, '2007-02-21 14:49:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17417, 322, 1, 1386, 2.99, '2007-02-15 14:07:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17418, 322, 1, 1588, 8.99, '2007-02-16 03:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17419, 322, 2, 2481, 4.99, '2007-02-18 19:36:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17420, 322, 1, 2554, 0.99, '2007-02-19 01:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17421, 322, 1, 2983, 7.99, '2007-02-20 07:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17422, 322, 2, 3054, 5.99, '2007-02-20 11:45:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17423, 322, 2, 3413, 8.99, '2007-02-21 15:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17424, 323, 2, 1167, 0.99, '2007-02-14 21:54:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17425, 323, 2, 1786, 2.99, '2007-02-16 17:59:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17426, 323, 1, 2933, 4.99, '2007-02-20 03:20:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17427, 324, 1, 1740, 0.99, '2007-02-16 14:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17428, 324, 2, 2590, 2.99, '2007-02-19 04:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17429, 325, 2, 2502, 4.99, '2007-02-18 21:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17430, 325, 2, 2507, 4.99, '2007-02-18 22:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17431, 325, 2, 2808, 2.99, '2007-02-19 18:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17432, 326, 1, 1311, 4.99, '2007-02-15 08:40:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17433, 326, 2, 2086, 0.99, '2007-02-17 16:00:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17434, 326, 2, 2317, 4.99, '2007-02-18 07:40:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17435, 326, 1, 3441, 4.99, '2007-02-21 18:28:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17436, 327, 1, 1294, 4.99, '2007-02-15 07:37:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17437, 327, 2, 1577, 3.99, '2007-02-16 02:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17438, 327, 2, 1929, 6.99, '2007-02-17 05:17:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17439, 327, 1, 2273, 4.99, '2007-02-18 04:58:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17440, 327, 2, 2304, 5.99, '2007-02-18 06:58:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17441, 327, 2, 2637, 3.99, '2007-02-19 07:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17442, 328, 2, 1670, 2.99, '2007-02-16 08:54:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17443, 328, 2, 1980, 6.99, '2007-02-17 08:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17444, 328, 2, 2243, 5.99, '2007-02-18 03:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17445, 328, 1, 3024, 4.99, '2007-02-20 09:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17446, 328, 1, 3239, 0.99, '2007-02-21 01:17:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17447, 329, 1, 1183, 2.99, '2007-02-14 23:17:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17448, 329, 1, 2010, 5.99, '2007-02-17 10:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17449, 329, 2, 2024, 0.99, '2007-02-17 11:29:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17450, 329, 1, 2151, 0.99, '2007-02-17 21:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17451, 329, 1, 2303, 2.99, '2007-02-18 06:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17452, 329, 2, 2702, 2.99, '2007-02-19 12:04:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17453, 329, 1, 3052, 5.99, '2007-02-20 11:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17454, 329, 2, 3053, 0.99, '2007-02-20 11:38:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17455, 329, 2, 3268, 4.99, '2007-02-21 03:24:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17456, 330, 1, 1219, 6.99, '2007-02-15 01:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17457, 330, 2, 1511, 5.99, '2007-02-15 21:13:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17458, 330, 2, 2885, 0.99, '2007-02-20 00:02:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17459, 330, 1, 2936, 4.99, '2007-02-20 03:37:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17460, 330, 2, 3061, 2.99, '2007-02-20 12:16:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17461, 331, 1, 1415, 2.99, '2007-02-15 16:00:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17462, 331, 2, 2528, 6.99, '2007-02-18 23:42:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17463, 331, 1, 2587, 2.99, '2007-02-19 03:34:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17464, 333, 1, 1667, 2.99, '2007-02-16 08:47:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17465, 333, 1, 2149, 6.99, '2007-02-17 21:18:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17466, 333, 1, 2929, 1.99, '2007-02-20 03:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17467, 333, 1, 3110, 2.99, '2007-02-20 16:08:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17468, 334, 2, 1187, 4.99, '2007-02-14 23:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17469, 334, 1, 1298, 4.99, '2007-02-15 08:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17470, 334, 2, 2476, 0.99, '2007-02-18 19:25:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17471, 335, 1, 3329, 4.99, '2007-02-21 07:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17472, 336, 1, 1478, 2.99, '2007-02-15 19:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17473, 336, 2, 2212, 2.99, '2007-02-18 01:04:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17474, 336, 2, 2475, 2.99, '2007-02-18 19:21:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17475, 336, 1, 2575, 2.99, '2007-02-19 03:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17476, 336, 2, 2719, 4.99, '2007-02-19 13:18:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17477, 336, 1, 2954, 2.99, '2007-02-20 05:13:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17478, 336, 2, 3204, 4.99, '2007-02-20 23:06:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17479, 336, 2, 3349, 0.99, '2007-02-21 09:46:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17480, 337, 2, 1969, 4.99, '2007-02-17 07:50:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17481, 337, 1, 2014, 5.99, '2007-02-17 10:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17482, 338, 2, 1510, 4.99, '2007-02-15 21:08:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17483, 338, 1, 1807, 5.99, '2007-02-16 19:27:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17484, 338, 2, 1952, 4.99, '2007-02-17 07:01:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17485, 338, 1, 2148, 6.99, '2007-02-17 21:13:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17486, 338, 1, 2179, 0.99, '2007-02-17 23:10:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17487, 338, 1, 2495, 4.99, '2007-02-18 20:44:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17488, 338, 1, 3458, 5.99, '2007-02-21 20:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17489, 339, 2, 1432, 3.99, '2007-02-15 16:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17490, 339, 1, 1536, 4.99, '2007-02-15 23:20:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17491, 339, 2, 1629, 4.99, '2007-02-16 06:22:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17492, 339, 1, 3146, 6.99, '2007-02-20 18:50:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17493, 339, 1, 3335, 4.99, '2007-02-21 08:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17494, 340, 2, 1205, 4.99, '2007-02-15 00:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17495, 340, 1, 1697, 3.99, '2007-02-16 11:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17496, 340, 1, 2177, 5.99, '2007-02-17 23:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17497, 340, 2, 2183, 4.99, '2007-02-17 23:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17498, 340, 2, 2607, 5.99, '2007-02-19 05:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17499, 340, 1, 2653, 5.99, '2007-02-19 09:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17500, 340, 1, 3264, 0.99, '2007-02-21 02:47:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17501, 340, 1, 3455, 2.99, '2007-02-21 19:46:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17502, 341, 1, 1318, 2.99, '2007-02-15 09:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17503, 341, 2, 1520, 7.99, '2007-02-15 22:25:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17504, 341, 1, 1778, 1.99, '2007-02-16 17:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17505, 341, 1, 1849, 7.99, '2007-02-16 22:41:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17506, 341, 2, 2829, 2.99, '2007-02-19 19:39:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17507, 341, 2, 3130, 7.99, '2007-02-20 17:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17508, 341, 1, 3382, 5.99, '2007-02-21 12:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17509, 342, 2, 2190, 5.99, '2007-02-17 23:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17510, 342, 1, 2914, 5.99, '2007-02-20 02:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17511, 342, 1, 3081, 2.99, '2007-02-20 13:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17512, 343, 2, 1547, 4.99, '2007-02-16 00:10:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17513, 343, 1, 1564, 6.99, '2007-02-16 01:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17514, 343, 2, 1879, 0.99, '2007-02-17 01:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17515, 343, 2, 1922, 0.99, '2007-02-17 04:32:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17516, 343, 2, 2461, 6.99, '2007-02-18 18:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17517, 343, 1, 2980, 8.99, '2007-02-20 07:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17518, 343, 1, 3407, 0.99, '2007-02-21 14:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17519, 344, 1, 1341, 3.99, '2007-02-15 10:54:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17520, 344, 2, 1475, 4.99, '2007-02-15 19:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17521, 344, 1, 1731, 0.99, '2007-02-16 14:00:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17522, 345, 2, 1210, 0.99, '2007-02-15 01:26:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17523, 345, 1, 1457, 4.99, '2007-02-15 18:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17524, 345, 2, 1550, 0.99, '2007-02-16 00:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17525, 345, 2, 2766, 4.99, '2007-02-19 16:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17526, 346, 1, 1994, 5.99, '2007-02-17 09:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17527, 346, 2, 3372, 2.99, '2007-02-21 12:02:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17528, 346, 1, 3421, 2.99, '2007-02-21 15:51:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17529, 347, 2, 1711, 8.99, '2007-02-16 12:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17530, 347, 2, 2274, 0.99, '2007-02-18 04:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17531, 347, 1, 3026, 4.99, '2007-02-20 10:16:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17532, 347, 1, 3092, 8.99, '2007-02-20 14:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17533, 347, 1, 3326, 7.99, '2007-02-21 07:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17534, 348, 1, 1654, 2.99, '2007-02-16 08:11:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17535, 348, 1, 2041, 8.99, '2007-02-17 12:47:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17536, 348, 2, 2499, 0.99, '2007-02-18 21:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17537, 349, 1, 1197, 2.99, '2007-02-15 00:11:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17538, 349, 1, 1523, 0.99, '2007-02-15 22:47:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17539, 349, 2, 2987, 6.99, '2007-02-20 07:24:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17540, 349, 1, 3067, 8.99, '2007-02-20 12:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17541, 350, 2, 2011, 3.99, '2007-02-17 10:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17542, 350, 1, 2619, 0.99, '2007-02-19 06:31:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17543, 350, 1, 3079, 2.99, '2007-02-20 13:42:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17544, 350, 2, 3206, 0.99, '2007-02-20 23:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17545, 351, 2, 1792, 5.99, '2007-02-16 18:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17546, 351, 1, 1869, 0.99, '2007-02-17 00:36:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17547, 351, 1, 2759, 2.99, '2007-02-19 15:38:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17548, 352, 1, 1498, 0.99, '2007-02-15 20:26:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17549, 352, 1, 1649, 4.99, '2007-02-16 07:48:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17550, 352, 1, 1678, 4.99, '2007-02-16 09:36:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17551, 352, 1, 1780, 4.99, '2007-02-16 17:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17552, 352, 2, 3331, 4.99, '2007-02-21 08:06:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17553, 353, 2, 1359, 2.99, '2007-02-15 11:58:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17554, 353, 2, 1928, 7.99, '2007-02-17 05:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17555, 353, 2, 3233, 6.99, '2007-02-21 01:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17556, 354, 1, 1491, 0.99, '2007-02-15 20:16:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17557, 354, 1, 2275, 4.99, '2007-02-18 04:59:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17558, 354, 1, 2769, 6.99, '2007-02-19 16:20:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17559, 354, 1, 3139, 2.99, '2007-02-20 18:13:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17560, 355, 2, 1488, 0.99, '2007-02-15 20:08:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17561, 355, 1, 1612, 2.99, '2007-02-16 05:20:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17562, 356, 1, 1410, 0.99, '2007-02-15 15:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17563, 356, 1, 2405, 2.99, '2007-02-18 15:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17564, 356, 1, 2433, 4.99, '2007-02-18 16:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17565, 357, 2, 1246, 5.99, '2007-02-15 03:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17566, 357, 1, 1788, 1.99, '2007-02-16 18:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17567, 357, 2, 1971, 1.99, '2007-02-17 07:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17568, 357, 2, 2153, 6.99, '2007-02-17 21:26:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17569, 358, 1, 1455, 2.99, '2007-02-15 18:19:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17570, 358, 2, 1908, 0.99, '2007-02-17 03:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17571, 358, 1, 2114, 5.99, '2007-02-17 18:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17572, 358, 1, 2721, 2.99, '2007-02-19 13:21:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17573, 358, 1, 2749, 2.99, '2007-02-19 14:56:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17574, 358, 1, 3245, 2.99, '2007-02-21 01:34:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17575, 359, 2, 1329, 4.99, '2007-02-15 09:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17576, 359, 2, 1770, 1.99, '2007-02-16 16:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17577, 359, 1, 2401, 0.99, '2007-02-18 14:50:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17578, 359, 1, 2736, 4.99, '2007-02-19 14:11:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17579, 360, 2, 1492, 0.99, '2007-02-15 20:17:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17580, 360, 2, 2402, 6.99, '2007-02-18 14:53:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17581, 360, 2, 2541, 3.99, '2007-02-19 00:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17582, 360, 2, 2780, 6.99, '2007-02-19 16:47:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17583, 361, 2, 2353, 4.99, '2007-02-18 11:21:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17584, 361, 2, 2558, 1.99, '2007-02-19 01:37:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17585, 361, 1, 2851, 2.99, '2007-02-19 21:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17586, 361, 2, 3303, 2.99, '2007-02-21 06:02:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17587, 362, 1, 1429, 2.99, '2007-02-15 16:52:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17588, 362, 1, 1529, 2.99, '2007-02-15 23:06:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17589, 362, 1, 1615, 2.99, '2007-02-16 05:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17590, 362, 2, 3197, 2.99, '2007-02-20 22:35:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17591, 362, 2, 3393, 2.99, '2007-02-21 13:42:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17592, 363, 2, 1426, 4.99, '2007-02-15 16:44:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17593, 363, 2, 1569, 4.99, '2007-02-16 01:47:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17594, 363, 1, 1847, 4.99, '2007-02-16 22:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17595, 363, 1, 2540, 4.99, '2007-02-19 00:33:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17596, 363, 2, 3281, 2.99, '2007-02-21 04:37:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17597, 364, 1, 1722, 2.99, '2007-02-16 13:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17598, 364, 2, 2442, 2.99, '2007-02-18 17:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17599, 364, 2, 2606, 4.99, '2007-02-19 05:19:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17600, 364, 2, 2857, 4.99, '2007-02-19 21:43:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17601, 364, 2, 2962, 3.99, '2007-02-20 06:00:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17602, 365, 1, 1303, 1.99, '2007-02-15 08:24:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17603, 365, 1, 1578, 6.99, '2007-02-16 02:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17604, 365, 1, 1983, 4.99, '2007-02-17 08:50:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17605, 365, 1, 2525, 2.99, '2007-02-18 23:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17606, 365, 2, 3156, 0.99, '2007-02-20 19:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17607, 366, 2, 1401, 1.99, '2007-02-15 14:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17608, 366, 2, 2214, 0.99, '2007-02-18 01:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17609, 367, 1, 3078, 0.99, '2007-02-20 13:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17610, 368, 1, 1186, 0.99, '2007-02-14 23:25:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17611, 368, 1, 1513, 9.99, '2007-02-15 21:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17612, 368, 1, 2531, 4.99, '2007-02-18 23:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17613, 368, 1, 2694, 4.99, '2007-02-19 11:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17614, 368, 1, 2744, 4.99, '2007-02-19 14:49:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17615, 368, 2, 3275, 4.99, '2007-02-21 04:01:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17616, 369, 1, 1224, 0.99, '2007-02-15 02:12:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17617, 370, 2, 1190, 6.99, '2007-02-14 23:33:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17618, 371, 2, 1212, 2.99, '2007-02-15 01:31:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17619, 371, 1, 1218, 1.99, '2007-02-15 01:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17620, 371, 1, 1573, 6.99, '2007-02-16 02:00:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17621, 371, 2, 1675, 5.99, '2007-02-16 09:33:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17622, 371, 2, 2837, 0.99, '2007-02-19 20:32:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17623, 371, 1, 3176, 3.99, '2007-02-20 21:00:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17624, 371, 2, 3396, 0.99, '2007-02-21 13:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17625, 372, 1, 2315, 2.99, '2007-02-18 07:32:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17626, 372, 1, 2959, 4.99, '2007-02-20 05:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17627, 372, 1, 3283, 3.99, '2007-02-21 04:47:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17628, 373, 1, 1472, 6.99, '2007-02-15 19:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17629, 373, 1, 3161, 2.99, '2007-02-20 19:49:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17630, 374, 1, 1548, 1.99, '2007-02-16 00:11:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17631, 374, 2, 2046, 1.99, '2007-02-17 13:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17632, 374, 2, 2487, 4.99, '2007-02-18 20:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17633, 374, 2, 2641, 2.99, '2007-02-19 08:06:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17634, 375, 2, 1404, 2.99, '2007-02-15 15:07:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17635, 375, 1, 1499, 5.99, '2007-02-15 20:26:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17636, 375, 1, 2236, 4.99, '2007-02-18 02:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17637, 376, 2, 1208, 0.99, '2007-02-15 00:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17638, 376, 1, 2779, 0.99, '2007-02-19 16:47:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17639, 377, 2, 2556, 3.99, '2007-02-19 01:35:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17640, 377, 1, 3080, 1.99, '2007-02-20 13:50:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17641, 377, 2, 3086, 0.99, '2007-02-20 14:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17642, 377, 2, 3136, 2.99, '2007-02-20 18:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17643, 377, 2, 3443, 4.99, '2007-02-21 18:47:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17644, 378, 2, 1623, 4.99, '2007-02-16 06:17:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17645, 378, 1, 1662, 5.99, '2007-02-16 08:42:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17646, 378, 2, 2134, 7.99, '2007-02-17 19:42:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17647, 378, 2, 2713, 4.99, '2007-02-19 12:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17648, 379, 1, 1383, 8.99, '2007-02-15 13:48:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17649, 379, 1, 2313, 5.99, '2007-02-18 07:25:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17650, 379, 1, 2926, 2.99, '2007-02-20 03:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17651, 380, 1, 1868, 3.99, '2007-02-17 00:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17652, 380, 1, 1984, 2.99, '2007-02-17 08:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17653, 380, 1, 2018, 3.99, '2007-02-17 11:04:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17654, 380, 1, 2440, 2.99, '2007-02-18 17:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17655, 380, 1, 2464, 4.99, '2007-02-18 18:34:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17656, 380, 2, 2998, 1.99, '2007-02-20 07:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17657, 380, 2, 3099, 1.99, '2007-02-20 15:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17658, 380, 1, 3260, 4.99, '2007-02-21 02:27:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17659, 381, 1, 1402, 3.99, '2007-02-15 14:59:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17660, 381, 1, 1878, 1.99, '2007-02-17 01:23:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17661, 381, 2, 2410, 2.99, '2007-02-18 15:23:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17662, 381, 1, 2418, 4.99, '2007-02-18 15:43:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17663, 381, 2, 3425, 2.99, '2007-02-21 16:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17664, 382, 1, 2389, 0.99, '2007-02-18 13:56:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17665, 382, 1, 2468, 4.99, '2007-02-18 18:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17666, 382, 1, 2489, 1.99, '2007-02-18 20:29:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17667, 382, 1, 2514, 2.99, '2007-02-18 22:25:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17668, 382, 2, 3125, 4.99, '2007-02-20 17:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17669, 383, 1, 1831, 7.99, '2007-02-16 20:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17670, 383, 2, 2228, 2.99, '2007-02-18 02:13:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17671, 383, 1, 2252, 2.99, '2007-02-18 03:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17672, 383, 2, 2318, 2.99, '2007-02-18 07:42:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17673, 383, 1, 2609, 7.99, '2007-02-19 05:41:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17674, 383, 1, 3091, 2.99, '2007-02-20 14:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17675, 384, 1, 1961, 0.99, '2007-02-17 07:31:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17676, 384, 2, 2020, 0.99, '2007-02-17 11:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17677, 384, 1, 2378, 7.99, '2007-02-18 13:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17678, 384, 2, 2510, 5.99, '2007-02-18 22:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17679, 384, 2, 2935, 3.99, '2007-02-20 03:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17680, 384, 1, 3088, 9.99, '2007-02-20 14:24:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17681, 384, 2, 3101, 4.99, '2007-02-20 15:17:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17682, 385, 1, 1746, 2.99, '2007-02-16 15:09:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17683, 385, 1, 1937, 0.99, '2007-02-17 05:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17684, 385, 1, 3105, 0.99, '2007-02-20 15:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17685, 386, 2, 1585, 3.99, '2007-02-16 03:19:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17686, 386, 1, 1608, 2.99, '2007-02-16 04:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17687, 386, 2, 1819, 5.99, '2007-02-16 20:01:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17688, 386, 1, 2732, 0.99, '2007-02-19 13:48:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17689, 386, 1, 3351, 2.99, '2007-02-21 09:50:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17690, 387, 1, 1464, 0.99, '2007-02-15 19:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17691, 387, 2, 1465, 0.99, '2007-02-15 19:11:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17692, 387, 1, 2068, 0.99, '2007-02-17 14:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17693, 387, 2, 2100, 0.99, '2007-02-17 17:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17694, 387, 2, 2981, 5.99, '2007-02-20 07:03:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17695, 387, 2, 3378, 4.99, '2007-02-21 12:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17696, 388, 2, 1276, 6.99, '2007-02-15 06:28:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17697, 388, 1, 2145, 0.99, '2007-02-17 20:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17698, 388, 1, 2537, 5.99, '2007-02-19 00:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17699, 388, 1, 2692, 4.99, '2007-02-19 11:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17700, 388, 2, 3159, 7.99, '2007-02-20 19:40:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17701, 389, 1, 1763, 4.99, '2007-02-16 16:19:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17702, 389, 1, 1946, 4.99, '2007-02-17 06:27:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17703, 389, 1, 2552, 3.99, '2007-02-19 01:29:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17704, 390, 2, 1539, 5.99, '2007-02-15 23:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17705, 390, 2, 1730, 2.99, '2007-02-16 13:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17706, 390, 2, 1893, 2.99, '2007-02-17 02:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17707, 390, 1, 2330, 7.99, '2007-02-18 09:09:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17708, 390, 1, 3147, 5.99, '2007-02-20 18:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17709, 391, 2, 1232, 0.99, '2007-02-15 02:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17710, 391, 2, 1931, 0.99, '2007-02-17 05:20:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17711, 391, 1, 2045, 2.99, '2007-02-17 13:06:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17712, 391, 1, 2690, 2.99, '2007-02-19 11:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17713, 391, 2, 3163, 2.99, '2007-02-20 19:50:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17714, 392, 2, 1530, 6.99, '2007-02-15 23:06:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17715, 392, 2, 1764, 2.99, '2007-02-16 16:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17716, 392, 2, 2289, 2.99, '2007-02-18 05:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17717, 392, 2, 2890, 4.99, '2007-02-20 00:29:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17718, 393, 1, 1611, 6.99, '2007-02-16 05:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17719, 393, 2, 1915, 1.99, '2007-02-17 03:56:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17720, 393, 2, 2219, 2.99, '2007-02-18 01:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17721, 393, 1, 2319, 4.99, '2007-02-18 07:52:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17722, 393, 2, 3001, 2.99, '2007-02-20 08:18:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17723, 394, 2, 1324, 4.99, '2007-02-15 09:31:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17724, 395, 1, 1270, 0.99, '2007-02-15 05:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17725, 395, 1, 1562, 0.99, '2007-02-16 01:14:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17726, 395, 2, 1603, 0.99, '2007-02-16 04:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17727, 395, 1, 3030, 4.99, '2007-02-20 10:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17728, 395, 1, 3310, 0.99, '2007-02-21 06:33:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17729, 395, 1, 3389, 6.99, '2007-02-21 13:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17730, 396, 2, 1370, 1.99, '2007-02-15 12:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17731, 396, 2, 1385, 4.99, '2007-02-15 13:56:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17732, 396, 2, 1408, 6.99, '2007-02-15 15:26:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17733, 397, 1, 1769, 5.99, '2007-02-16 16:36:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17734, 397, 2, 3027, 1.99, '2007-02-20 10:18:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17735, 398, 2, 1228, 2.99, '2007-02-15 02:19:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17736, 398, 1, 2087, 6.99, '2007-02-17 16:03:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17737, 398, 2, 3141, 9.99, '2007-02-20 18:24:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17738, 399, 2, 2961, 2.99, '2007-02-20 05:57:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17739, 399, 1, 3036, 5.99, '2007-02-20 10:46:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17740, 400, 2, 1364, 0.99, '2007-02-15 12:33:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17741, 400, 1, 1917, 3.99, '2007-02-17 04:04:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17742, 400, 2, 1923, 6.99, '2007-02-17 04:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17743, 402, 2, 1194, 4.99, '2007-02-14 23:53:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17744, 402, 2, 2490, 4.99, '2007-02-18 20:29:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17745, 402, 2, 2913, 2.99, '2007-02-20 02:10:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17746, 403, 2, 1221, 4.99, '2007-02-15 02:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17747, 403, 1, 1249, 8.99, '2007-02-15 04:06:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17748, 403, 2, 2488, 3.99, '2007-02-18 20:06:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17749, 403, 1, 2927, 4.99, '2007-02-20 03:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17750, 403, 2, 3049, 6.99, '2007-02-20 11:19:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17751, 403, 1, 3356, 5.99, '2007-02-21 10:07:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17752, 404, 2, 1506, 2.99, '2007-02-15 20:48:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17753, 404, 2, 1840, 4.99, '2007-02-16 22:08:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17754, 404, 1, 2715, 4.99, '2007-02-19 12:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17755, 404, 1, 2951, 2.99, '2007-02-20 04:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17756, 405, 2, 1315, 4.99, '2007-02-15 08:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17757, 405, 1, 1888, 0.99, '2007-02-17 02:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17758, 405, 2, 1953, 5.99, '2007-02-17 07:03:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17759, 405, 2, 2654, 3.99, '2007-02-19 09:06:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17760, 405, 1, 3240, 4.99, '2007-02-21 01:21:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17761, 405, 1, 3253, 5.99, '2007-02-21 01:54:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17762, 406, 1, 2113, 4.99, '2007-02-17 18:26:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17763, 406, 2, 2150, 3.99, '2007-02-17 21:19:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17764, 406, 1, 2241, 2.99, '2007-02-18 03:00:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17765, 406, 2, 2325, 0.99, '2007-02-18 08:36:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17766, 406, 2, 2585, 0.99, '2007-02-19 03:33:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17767, 406, 1, 3186, 7.99, '2007-02-20 21:32:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17768, 406, 1, 3306, 4.99, '2007-02-21 06:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17769, 407, 1, 1698, 2.99, '2007-02-16 11:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17770, 407, 2, 2597, 0.99, '2007-02-19 04:22:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17771, 408, 2, 2479, 4.99, '2007-02-18 19:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17772, 408, 1, 2564, 2.99, '2007-02-19 02:09:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17773, 408, 2, 2728, 2.99, '2007-02-19 13:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17774, 409, 2, 1226, 5.99, '2007-02-15 02:14:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17775, 409, 2, 2310, 8.99, '2007-02-18 07:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17776, 410, 1, 1514, 2.99, '2007-02-15 21:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17777, 410, 1, 2073, 2.99, '2007-02-17 15:02:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17778, 410, 1, 2255, 4.99, '2007-02-18 03:49:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17779, 410, 2, 2400, 5.99, '2007-02-18 14:39:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17780, 410, 2, 2971, 0.99, '2007-02-20 06:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17781, 410, 1, 3249, 4.99, '2007-02-21 01:41:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17782, 411, 1, 1985, 0.99, '2007-02-17 09:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17783, 411, 2, 1997, 2.99, '2007-02-17 09:48:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17784, 411, 2, 2712, 0.99, '2007-02-19 12:48:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17785, 412, 1, 3292, 2.99, '2007-02-21 05:27:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17786, 413, 2, 2130, 5.99, '2007-02-17 19:29:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17787, 413, 2, 2545, 4.99, '2007-02-19 00:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17788, 414, 1, 2246, 4.99, '2007-02-18 03:22:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17789, 414, 1, 2559, 9.99, '2007-02-19 01:38:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17790, 414, 1, 3318, 5.99, '2007-02-21 06:51:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17791, 415, 2, 1867, 4.99, '2007-02-17 00:30:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17792, 415, 1, 3211, 2.99, '2007-02-20 23:29:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17793, 416, 2, 1158, 2.99, '2007-02-14 21:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17794, 416, 1, 1343, 4.99, '2007-02-15 10:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17795, 416, 2, 1553, 0.99, '2007-02-16 00:31:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17796, 416, 2, 1596, 2.99, '2007-02-16 03:59:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17797, 416, 2, 1771, 0.99, '2007-02-16 16:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17798, 417, 1, 1921, 3.99, '2007-02-17 04:32:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17799, 418, 1, 2825, 2.99, '2007-02-19 19:00:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17800, 418, 2, 2943, 2.99, '2007-02-20 04:11:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17801, 418, 2, 2969, 2.99, '2007-02-20 06:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17802, 419, 2, 2793, 2.99, '2007-02-19 17:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17803, 420, 2, 2672, 3.99, '2007-02-19 10:10:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17804, 420, 1, 2698, 0.99, '2007-02-19 11:57:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17805, 420, 1, 2726, 0.99, '2007-02-19 13:30:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17806, 421, 1, 1693, 4.99, '2007-02-16 11:08:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17807, 421, 2, 2407, 2.99, '2007-02-18 15:19:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17808, 421, 1, 3170, 4.99, '2007-02-20 20:31:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17809, 422, 1, 1846, 0.99, '2007-02-16 22:31:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17810, 422, 1, 1897, 4.99, '2007-02-17 02:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17811, 422, 2, 2747, 2.99, '2007-02-19 14:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17812, 422, 1, 2778, 5.99, '2007-02-19 16:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17813, 423, 1, 1504, 3.99, '2007-02-15 20:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17814, 423, 2, 1827, 0.99, '2007-02-16 20:23:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17815, 423, 1, 2600, 6.99, '2007-02-19 04:35:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17816, 423, 2, 2758, 6.99, '2007-02-19 15:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17817, 423, 1, 3072, 8.99, '2007-02-20 12:49:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17818, 424, 2, 3044, 4.99, '2007-02-20 11:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17819, 424, 1, 3166, 6.99, '2007-02-20 20:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17820, 424, 2, 3404, 0.99, '2007-02-21 14:26:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17821, 425, 1, 3276, 6.99, '2007-02-21 04:04:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17822, 426, 1, 1709, 6.99, '2007-02-16 12:38:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17823, 426, 1, 1842, 7.99, '2007-02-16 22:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17824, 426, 1, 2204, 2.99, '2007-02-18 00:40:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17825, 426, 1, 2804, 0.99, '2007-02-19 17:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17826, 426, 1, 3243, 0.99, '2007-02-21 01:28:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17827, 427, 1, 1342, 5.99, '2007-02-15 10:54:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17828, 427, 2, 1628, 3.99, '2007-02-16 06:21:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17829, 427, 1, 1648, 5.99, '2007-02-16 07:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17830, 427, 1, 1857, 1.99, '2007-02-16 23:41:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17831, 427, 2, 2466, 0.99, '2007-02-18 18:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17832, 428, 1, 1227, 3.99, '2007-02-15 02:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17833, 428, 2, 1471, 2.99, '2007-02-15 19:21:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17834, 428, 1, 1601, 3.99, '2007-02-16 04:39:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17835, 428, 1, 2677, 2.99, '2007-02-19 10:30:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17836, 428, 2, 3377, 0.99, '2007-02-21 12:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17837, 429, 2, 1781, 5.99, '2007-02-16 17:48:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17838, 429, 2, 1798, 2.99, '2007-02-16 18:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17839, 429, 2, 1916, 7.99, '2007-02-17 03:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17840, 429, 1, 3409, 2.99, '2007-02-21 14:46:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17841, 430, 2, 1207, 0.99, '2007-02-15 00:55:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17842, 430, 1, 1274, 2.99, '2007-02-15 06:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17843, 430, 1, 1538, 2.99, '2007-02-15 23:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17844, 430, 1, 1759, 6.99, '2007-02-16 16:15:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17845, 430, 2, 2892, 0.99, '2007-02-20 00:35:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17846, 430, 2, 3153, 0.99, '2007-02-20 19:12:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17847, 431, 2, 1561, 2.99, '2007-02-16 01:09:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17848, 431, 1, 2096, 4.99, '2007-02-17 17:01:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17849, 431, 1, 2269, 3.99, '2007-02-18 04:49:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17850, 431, 2, 2281, 4.99, '2007-02-18 05:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17851, 431, 2, 2761, 2.99, '2007-02-19 15:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17852, 431, 2, 3304, 6.99, '2007-02-21 06:12:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17853, 431, 2, 3369, 8.99, '2007-02-21 11:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17854, 432, 2, 1180, 5.99, '2007-02-14 23:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17855, 432, 2, 1597, 2.99, '2007-02-16 04:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17856, 432, 2, 3194, 4.99, '2007-02-20 22:28:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17857, 434, 1, 1225, 0.99, '2007-02-15 02:14:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17858, 434, 2, 1584, 5.99, '2007-02-16 03:19:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17859, 434, 2, 2415, 7.99, '2007-02-18 15:31:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17860, 434, 1, 2430, 3.99, '2007-02-18 16:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17861, 434, 1, 2494, 3.99, '2007-02-18 20:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17862, 434, 1, 3014, 2.99, '2007-02-20 09:13:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17863, 434, 2, 3037, 2.99, '2007-02-20 10:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17864, 435, 2, 1443, 0.99, '2007-02-15 17:26:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17865, 435, 1, 2984, 0.99, '2007-02-20 07:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17866, 436, 1, 2291, 9.99, '2007-02-18 06:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17867, 437, 2, 2239, 5.99, '2007-02-18 02:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17868, 437, 1, 2792, 2.99, '2007-02-19 17:20:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17869, 437, 2, 3265, 2.99, '2007-02-21 02:51:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17870, 438, 1, 1431, 4.99, '2007-02-15 16:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17871, 438, 2, 1779, 0.99, '2007-02-16 17:23:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17872, 438, 2, 2206, 0.99, '2007-02-18 00:43:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17873, 438, 1, 2591, 4.99, '2007-02-19 04:00:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17874, 438, 1, 3315, 4.99, '2007-02-21 06:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17875, 438, 2, 3368, 0.99, '2007-02-21 11:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17876, 439, 1, 1264, 4.99, '2007-02-15 05:28:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17877, 439, 2, 1557, 0.99, '2007-02-16 00:57:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17878, 439, 2, 2097, 4.99, '2007-02-17 17:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17879, 439, 1, 2621, 2.99, '2007-02-19 06:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17880, 439, 1, 2992, 2.99, '2007-02-20 07:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17881, 439, 1, 3294, 6.99, '2007-02-21 05:31:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17882, 441, 1, 1602, 4.99, '2007-02-16 04:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17883, 441, 2, 2328, 4.99, '2007-02-18 08:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17884, 442, 1, 1251, 5.99, '2007-02-15 04:27:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17885, 442, 2, 1358, 0.99, '2007-02-15 11:57:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17886, 442, 2, 1576, 8.99, '2007-02-16 02:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17887, 442, 1, 1774, 2.99, '2007-02-16 16:56:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17888, 443, 1, 2871, 2.99, '2007-02-19 22:56:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17889, 444, 1, 1239, 0.99, '2007-02-15 03:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17890, 444, 2, 1397, 3.99, '2007-02-15 14:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17891, 444, 2, 1441, 1.99, '2007-02-15 17:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17892, 444, 1, 2551, 4.99, '2007-02-19 01:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17893, 444, 2, 3301, 7.99, '2007-02-21 06:00:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17894, 444, 2, 3415, 5.99, '2007-02-21 15:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17895, 446, 1, 2248, 4.99, '2007-02-18 03:28:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17896, 446, 2, 2335, 3.99, '2007-02-18 09:28:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17897, 446, 2, 2520, 6.99, '2007-02-18 22:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17898, 446, 2, 2710, 0.99, '2007-02-19 12:32:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17899, 446, 1, 3060, 2.99, '2007-02-20 12:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17900, 446, 2, 3168, 0.99, '2007-02-20 20:14:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17901, 447, 2, 1230, 0.99, '2007-02-15 02:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17902, 447, 2, 1890, 2.99, '2007-02-17 02:34:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17903, 447, 1, 2025, 4.99, '2007-02-17 11:32:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17904, 447, 2, 2285, 4.99, '2007-02-18 05:29:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17905, 448, 1, 1313, 5.99, '2007-02-15 08:47:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17906, 448, 2, 1823, 7.99, '2007-02-16 20:16:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17907, 448, 2, 2697, 0.99, '2007-02-19 11:57:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17908, 448, 2, 3225, 3.99, '2007-02-21 00:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17909, 448, 2, 3347, 5.99, '2007-02-21 09:36:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17910, 449, 2, 1295, 4.99, '2007-02-15 07:45:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17911, 449, 1, 2348, 0.99, '2007-02-18 10:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17912, 449, 2, 2970, 2.99, '2007-02-20 06:20:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17913, 450, 2, 1639, 4.99, '2007-02-16 07:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17914, 450, 1, 1739, 0.99, '2007-02-16 14:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17915, 450, 2, 1914, 2.99, '2007-02-17 03:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17916, 450, 2, 2278, 0.99, '2007-02-18 05:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17917, 450, 1, 2501, 4.99, '2007-02-18 21:38:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17918, 450, 1, 2626, 2.99, '2007-02-19 06:57:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17919, 450, 1, 3155, 4.99, '2007-02-20 19:31:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17920, 451, 1, 1202, 0.99, '2007-02-15 00:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17921, 451, 1, 1851, 0.99, '2007-02-16 23:00:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17922, 451, 1, 1940, 6.99, '2007-02-17 06:10:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17923, 451, 1, 2671, 1.99, '2007-02-19 10:01:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17924, 451, 1, 2909, 3.99, '2007-02-20 01:47:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17925, 451, 2, 2917, 0.99, '2007-02-20 02:37:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17926, 451, 1, 3316, 6.99, '2007-02-21 06:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17927, 452, 2, 1203, 4.99, '2007-02-15 00:37:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17928, 452, 1, 1512, 5.99, '2007-02-15 21:21:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17929, 452, 1, 1794, 3.99, '2007-02-16 18:37:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17930, 452, 1, 2263, 0.99, '2007-02-18 04:26:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17931, 452, 2, 2266, 4.99, '2007-02-18 04:33:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17932, 452, 1, 2504, 0.99, '2007-02-18 21:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17933, 452, 2, 2661, 0.99, '2007-02-19 09:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17934, 453, 2, 2852, 5.99, '2007-02-19 21:37:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17935, 453, 1, 2853, 7.99, '2007-02-19 21:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17936, 453, 2, 2887, 4.99, '2007-02-20 00:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17937, 454, 2, 1647, 4.99, '2007-02-16 07:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17938, 454, 2, 1844, 7.99, '2007-02-16 22:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17939, 454, 1, 1861, 1.99, '2007-02-16 23:45:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17940, 454, 1, 1938, 4.99, '2007-02-17 05:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17941, 454, 2, 2048, 5.99, '2007-02-17 13:23:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17942, 454, 2, 2182, 5.99, '2007-02-17 23:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17943, 454, 1, 2437, 2.99, '2007-02-18 16:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17944, 454, 2, 2666, 9.99, '2007-02-19 09:45:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17945, 454, 1, 3221, 2.99, '2007-02-21 00:18:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17946, 454, 1, 3362, 4.99, '2007-02-21 10:48:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17947, 455, 2, 1382, 1.99, '2007-02-15 13:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17948, 455, 1, 1802, 1.99, '2007-02-16 18:51:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17949, 455, 1, 1906, 2.99, '2007-02-17 03:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17950, 455, 2, 2356, 0.99, '2007-02-18 11:27:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17951, 456, 1, 1288, 2.99, '2007-02-15 07:10:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17952, 456, 1, 1700, 0.99, '2007-02-16 11:46:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17953, 456, 2, 2103, 5.99, '2007-02-17 17:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17954, 456, 2, 2146, 6.99, '2007-02-17 20:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17955, 456, 1, 2192, 4.99, '2007-02-18 00:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17956, 456, 1, 2404, 0.99, '2007-02-18 15:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17957, 456, 1, 2581, 2.99, '2007-02-19 03:22:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17958, 457, 2, 1453, 4.99, '2007-02-15 18:05:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17959, 457, 2, 1727, 0.99, '2007-02-16 13:50:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17960, 457, 1, 2030, 0.99, '2007-02-17 11:41:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17961, 457, 1, 2172, 7.99, '2007-02-17 22:34:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17962, 457, 1, 2670, 4.99, '2007-02-19 09:58:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17963, 457, 1, 2762, 3.99, '2007-02-19 15:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17964, 457, 1, 2811, 0.99, '2007-02-19 18:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17965, 457, 2, 3115, 2.99, '2007-02-20 16:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17966, 457, 2, 3184, 2.99, '2007-02-20 21:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17967, 458, 2, 2629, 5.99, '2007-02-19 07:10:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17968, 458, 2, 3322, 0.99, '2007-02-21 07:11:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17969, 459, 2, 1876, 0.99, '2007-02-17 01:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17970, 459, 2, 1977, 2.99, '2007-02-17 08:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17971, 459, 2, 2075, 4.99, '2007-02-17 15:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17972, 459, 1, 2899, 0.99, '2007-02-20 01:07:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17973, 459, 2, 3041, 4.99, '2007-02-20 11:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17974, 459, 2, 3045, 0.99, '2007-02-20 11:10:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17975, 459, 2, 3234, 9.99, '2007-02-21 01:08:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17976, 460, 2, 1392, 0.99, '2007-02-15 14:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17977, 461, 2, 3127, 5.99, '2007-02-20 17:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17978, 461, 2, 3319, 4.99, '2007-02-21 06:54:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17979, 462, 2, 1773, 5.99, '2007-02-16 16:42:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17980, 462, 2, 1926, 9.99, '2007-02-17 04:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17981, 462, 1, 3279, 4.99, '2007-02-21 04:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17982, 463, 1, 1284, 2.99, '2007-02-15 06:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17983, 463, 2, 2527, 4.99, '2007-02-18 23:38:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17984, 463, 1, 3217, 2.99, '2007-02-20 23:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17985, 463, 1, 3309, 4.99, '2007-02-21 06:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17986, 464, 2, 1277, 4.99, '2007-02-15 06:29:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17987, 464, 1, 3167, 2.99, '2007-02-20 20:10:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17988, 465, 1, 1337, 2.99, '2007-02-15 10:41:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17989, 465, 1, 2079, 4.99, '2007-02-17 15:18:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17990, 465, 1, 2159, 8.99, '2007-02-17 22:05:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17991, 465, 2, 2524, 0.99, '2007-02-18 23:16:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17992, 466, 2, 1808, 7.99, '2007-02-16 19:28:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17993, 466, 2, 2446, 8.99, '2007-02-18 17:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17994, 466, 1, 3022, 3.99, '2007-02-20 09:45:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17995, 466, 2, 3237, 4.99, '2007-02-21 01:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17996, 466, 2, 3343, 2.99, '2007-02-21 09:25:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17997, 467, 1, 1737, 8.99, '2007-02-16 14:28:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17998, 467, 2, 2121, 4.99, '2007-02-17 19:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (17999, 467, 2, 2870, 9.99, '2007-02-19 22:46:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18000, 467, 1, 3250, 6.99, '2007-02-21 01:45:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18001, 468, 2, 1229, 2.99, '2007-02-15 02:21:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18002, 468, 1, 1627, 8.99, '2007-02-16 06:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18003, 468, 1, 1821, 2.99, '2007-02-16 20:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18004, 468, 1, 1975, 2.99, '2007-02-17 08:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18005, 468, 2, 2462, 4.99, '2007-02-18 18:28:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18006, 468, 1, 2831, 0.99, '2007-02-19 19:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18007, 469, 2, 1399, 0.99, '2007-02-15 14:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18008, 469, 1, 1680, 9.99, '2007-02-16 09:45:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18009, 470, 2, 1256, 0.99, '2007-02-15 04:42:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18010, 470, 1, 1283, 0.99, '2007-02-15 06:55:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18011, 470, 2, 1594, 7.99, '2007-02-16 03:43:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18012, 471, 1, 1447, 4.99, '2007-02-15 17:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18013, 471, 2, 1449, 2.99, '2007-02-15 17:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18014, 471, 2, 2165, 2.99, '2007-02-17 22:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18015, 471, 2, 2350, 4.99, '2007-02-18 10:53:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18016, 471, 2, 3073, 4.99, '2007-02-20 13:01:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18017, 472, 1, 1389, 4.99, '2007-02-15 14:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18018, 472, 2, 1776, 6.99, '2007-02-16 17:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18019, 472, 1, 2538, 5.99, '2007-02-19 00:25:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18020, 472, 1, 2974, 0.99, '2007-02-20 06:28:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18021, 472, 1, 2991, 4.99, '2007-02-20 07:39:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18022, 472, 1, 3254, 0.99, '2007-02-21 01:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18023, 473, 2, 1748, 0.99, '2007-02-16 15:22:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18024, 473, 1, 2125, 2.99, '2007-02-17 19:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18025, 473, 2, 2553, 4.99, '2007-02-19 01:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18026, 473, 2, 2748, 4.99, '2007-02-19 14:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18027, 474, 1, 1758, 8.99, '2007-02-16 16:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18028, 474, 2, 2944, 7.99, '2007-02-20 04:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18029, 476, 1, 1682, 3.99, '2007-02-16 10:22:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18030, 476, 1, 2080, 0.99, '2007-02-17 15:28:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18031, 476, 2, 2508, 4.99, '2007-02-18 22:12:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18032, 476, 2, 3448, 2.99, '2007-02-21 19:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18033, 477, 1, 1714, 6.99, '2007-02-16 12:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18034, 477, 1, 2187, 2.99, '2007-02-17 23:45:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18035, 477, 1, 2306, 10.99, '2007-02-18 07:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18036, 477, 2, 2676, 4.99, '2007-02-19 10:23:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18037, 478, 1, 1708, 0.99, '2007-02-16 12:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18038, 478, 2, 2358, 4.99, '2007-02-18 11:29:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18039, 478, 1, 2529, 6.99, '2007-02-18 23:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18040, 478, 2, 2616, 8.99, '2007-02-19 06:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18041, 478, 2, 2765, 4.99, '2007-02-19 16:03:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18042, 478, 2, 3259, 4.99, '2007-02-21 02:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18043, 479, 1, 1902, 2.99, '2007-02-17 03:04:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18044, 479, 2, 1947, 3.99, '2007-02-17 06:30:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18045, 479, 2, 1987, 2.99, '2007-02-17 09:09:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18046, 479, 2, 2071, 3.99, '2007-02-17 15:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18047, 479, 2, 2376, 2.99, '2007-02-18 13:23:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18048, 479, 2, 2764, 6.99, '2007-02-19 15:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18049, 480, 1, 1353, 0.99, '2007-02-15 11:42:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18050, 480, 1, 1733, 0.99, '2007-02-16 14:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18051, 481, 2, 1168, 2.99, '2007-02-14 22:03:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18052, 481, 2, 2296, 4.99, '2007-02-18 06:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18053, 481, 2, 3285, 4.99, '2007-02-21 04:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18054, 481, 2, 3293, 0.99, '2007-02-21 05:27:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18055, 482, 2, 3048, 2.99, '2007-02-20 11:18:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18056, 482, 2, 3255, 0.99, '2007-02-21 02:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18057, 483, 1, 2855, 4.99, '2007-02-19 21:40:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18058, 483, 2, 2867, 0.99, '2007-02-19 22:37:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18059, 483, 1, 3380, 8.99, '2007-02-21 12:27:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18060, 484, 1, 1351, 3.99, '2007-02-15 11:19:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18061, 484, 2, 1643, 3.99, '2007-02-16 07:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18062, 484, 1, 2015, 4.99, '2007-02-17 10:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18063, 484, 1, 2044, 5.99, '2007-02-17 13:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18064, 485, 2, 1684, 2.99, '2007-02-16 10:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18065, 485, 1, 1721, 8.99, '2007-02-16 13:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18066, 486, 1, 2036, 4.99, '2007-02-17 12:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18067, 486, 1, 2102, 5.99, '2007-02-17 17:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18068, 486, 2, 2566, 2.99, '2007-02-19 02:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18069, 486, 2, 2797, 2.99, '2007-02-19 17:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18070, 487, 2, 3100, 3.99, '2007-02-20 15:16:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18071, 488, 2, 1655, 3.99, '2007-02-16 08:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18072, 488, 2, 1704, 5.99, '2007-02-16 12:14:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18073, 489, 2, 1614, 3.99, '2007-02-16 05:26:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18074, 489, 1, 2201, 0.99, '2007-02-18 00:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18075, 489, 1, 2370, 7.99, '2007-02-18 12:58:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18076, 489, 1, 2802, 4.99, '2007-02-19 17:46:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18077, 490, 1, 1665, 3.99, '2007-02-16 08:44:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18078, 491, 2, 1198, 2.99, '2007-02-15 00:17:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18079, 491, 1, 1371, 4.99, '2007-02-15 13:06:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18080, 491, 2, 2026, 4.99, '2007-02-17 11:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18081, 491, 1, 2259, 4.99, '2007-02-18 04:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18082, 491, 2, 2391, 4.99, '2007-02-18 14:01:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18083, 491, 2, 3031, 4.99, '2007-02-20 10:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18084, 491, 1, 3440, 3.99, '2007-02-21 18:26:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18085, 492, 2, 1691, 1.99, '2007-02-16 10:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18086, 492, 2, 1855, 4.99, '2007-02-16 23:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18087, 492, 2, 1956, 4.99, '2007-02-17 07:11:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18088, 492, 1, 3298, 9.99, '2007-02-21 05:38:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18089, 493, 2, 2109, 3.99, '2007-02-17 18:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18090, 493, 1, 2365, 4.99, '2007-02-18 12:14:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18091, 493, 1, 2579, 0.99, '2007-02-19 03:09:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18092, 493, 1, 2864, 2.99, '2007-02-19 22:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18093, 494, 1, 1683, 2.99, '2007-02-16 10:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18094, 495, 2, 2074, 2.99, '2007-02-17 15:08:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18095, 495, 1, 2349, 4.99, '2007-02-18 10:53:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18096, 495, 1, 2549, 7.99, '2007-02-19 01:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18097, 495, 1, 3129, 3.99, '2007-02-20 17:26:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18098, 496, 1, 2567, 2.99, '2007-02-19 02:33:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18099, 497, 2, 2180, 8.99, '2007-02-17 23:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18100, 497, 1, 2298, 5.99, '2007-02-18 06:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18101, 497, 1, 2406, 2.99, '2007-02-18 15:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18102, 497, 2, 2818, 4.99, '2007-02-19 18:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18103, 498, 1, 1253, 6.99, '2007-02-15 04:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18104, 498, 1, 1782, 2.99, '2007-02-16 17:49:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18105, 498, 1, 2344, 2.99, '2007-02-18 10:30:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18106, 498, 1, 2449, 4.99, '2007-02-18 17:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18107, 498, 1, 3098, 0.99, '2007-02-20 15:05:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18108, 498, 2, 3360, 0.99, '2007-02-21 10:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18109, 499, 1, 1355, 2.99, '2007-02-15 11:42:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18110, 499, 2, 1526, 4.99, '2007-02-15 22:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18111, 499, 2, 1830, 4.99, '2007-02-16 20:47:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18112, 499, 2, 3241, 1.99, '2007-02-21 01:22:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18113, 500, 1, 1375, 5.99, '2007-02-15 13:23:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18114, 500, 2, 1388, 5.99, '2007-02-15 14:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18115, 500, 2, 2189, 3.99, '2007-02-17 23:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18116, 500, 2, 2526, 6.99, '2007-02-18 23:31:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18117, 500, 1, 2996, 2.99, '2007-02-20 07:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18118, 501, 2, 3222, 5.99, '2007-02-21 00:18:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18119, 501, 1, 3412, 7.99, '2007-02-21 15:12:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18120, 502, 2, 1696, 7.99, '2007-02-16 11:18:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18121, 502, 2, 2420, 0.99, '2007-02-18 15:50:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18122, 502, 1, 2911, 0.99, '2007-02-20 02:01:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18123, 503, 2, 2108, 4.99, '2007-02-17 18:03:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18124, 503, 1, 2225, 2.99, '2007-02-18 02:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18125, 503, 2, 3430, 0.99, '2007-02-21 17:14:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18126, 504, 1, 2720, 1.99, '2007-02-19 13:20:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18127, 504, 1, 2938, 6.99, '2007-02-20 03:45:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18128, 505, 2, 1799, 5.99, '2007-02-16 18:45:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18129, 505, 2, 1886, 4.99, '2007-02-17 02:04:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18130, 505, 1, 2773, 7.99, '2007-02-19 16:32:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18131, 505, 1, 3137, 5.99, '2007-02-20 18:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18132, 506, 1, 1446, 6.99, '2007-02-15 17:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18133, 506, 1, 1467, 2.99, '2007-02-15 19:15:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18134, 506, 2, 1565, 0.99, '2007-02-16 01:41:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18135, 506, 1, 2755, 9.99, '2007-02-19 15:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18136, 506, 2, 2824, 6.99, '2007-02-19 19:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18137, 507, 2, 1307, 4.99, '2007-02-15 08:34:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18138, 507, 1, 2143, 4.99, '2007-02-17 20:26:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18139, 507, 2, 2283, 4.99, '2007-02-18 05:24:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18140, 508, 2, 1661, 4.99, '2007-02-16 08:41:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18141, 509, 1, 1267, 2.99, '2007-02-15 05:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18142, 509, 2, 2919, 4.99, '2007-02-20 02:38:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18143, 510, 2, 1435, 5.99, '2007-02-15 17:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18144, 510, 2, 1757, 0.99, '2007-02-16 16:00:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18145, 510, 2, 1925, 0.99, '2007-02-17 04:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18146, 510, 1, 2729, 8.99, '2007-02-19 13:34:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18147, 510, 2, 2806, 0.99, '2007-02-19 17:59:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18148, 510, 2, 2817, 0.99, '2007-02-19 18:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18149, 510, 2, 3352, 8.99, '2007-02-21 09:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18150, 510, 2, 3465, 5.99, '2007-02-21 20:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18151, 511, 2, 1281, 2.99, '2007-02-15 06:50:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18152, 511, 1, 1508, 2.99, '2007-02-15 21:01:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18153, 511, 2, 2966, 10.99, '2007-02-20 06:07:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18154, 511, 2, 3366, 4.99, '2007-02-21 11:32:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18155, 512, 1, 1176, 6.99, '2007-02-14 22:57:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18156, 512, 2, 2029, 4.99, '2007-02-17 11:39:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18157, 512, 1, 2364, 2.99, '2007-02-18 12:05:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18158, 513, 1, 1607, 2.99, '2007-02-16 04:54:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18159, 513, 2, 2290, 7.99, '2007-02-18 06:03:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18160, 513, 2, 2737, 1.99, '2007-02-19 14:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18161, 514, 2, 1692, 4.99, '2007-02-16 10:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18162, 514, 1, 2002, 3.99, '2007-02-17 10:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18163, 514, 2, 2362, 0.99, '2007-02-18 11:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18164, 514, 1, 2789, 0.99, '2007-02-19 17:16:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18165, 514, 2, 3084, 2.99, '2007-02-20 14:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18166, 514, 1, 3385, 0.99, '2007-02-21 12:45:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18167, 515, 1, 1244, 4.99, '2007-02-15 03:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18168, 515, 2, 1531, 5.99, '2007-02-15 23:09:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18169, 515, 2, 2003, 4.99, '2007-02-17 10:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18170, 515, 2, 2484, 4.99, '2007-02-18 19:53:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18171, 515, 2, 2513, 0.99, '2007-02-18 22:21:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18172, 515, 2, 3063, 3.99, '2007-02-20 12:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18173, 516, 2, 1159, 4.99, '2007-02-14 21:23:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18174, 516, 1, 1200, 1.99, '2007-02-15 00:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18175, 516, 1, 1718, 10.99, '2007-02-16 13:20:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18176, 516, 1, 2017, 0.99, '2007-02-17 11:01:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18177, 516, 2, 3068, 0.99, '2007-02-20 12:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18178, 516, 1, 3431, 2.99, '2007-02-21 17:15:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18179, 517, 2, 1653, 4.99, '2007-02-16 08:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18180, 517, 1, 1809, 8.99, '2007-02-16 19:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18181, 517, 1, 1850, 4.99, '2007-02-16 23:00:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18182, 517, 2, 2534, 2.99, '2007-02-19 00:07:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18183, 517, 1, 3113, 0.99, '2007-02-20 16:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18184, 518, 2, 1552, 5.99, '2007-02-16 00:30:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18185, 518, 2, 3311, 0.99, '2007-02-21 06:33:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18186, 519, 1, 1941, 2.99, '2007-02-17 06:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18187, 519, 2, 2505, 8.99, '2007-02-18 21:56:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18188, 519, 2, 2997, 5.99, '2007-02-20 07:52:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18189, 520, 1, 1411, 0.99, '2007-02-15 15:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18190, 520, 2, 2174, 6.99, '2007-02-17 22:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18191, 520, 1, 2772, 4.99, '2007-02-19 16:27:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18192, 521, 1, 1761, 0.99, '2007-02-16 16:18:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18193, 521, 2, 2053, 0.99, '2007-02-17 13:48:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18194, 522, 1, 1289, 3.99, '2007-02-15 07:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18195, 522, 2, 3102, 8.99, '2007-02-20 15:24:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18196, 522, 1, 3188, 2.99, '2007-02-20 21:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18197, 522, 2, 3191, 0.99, '2007-02-20 22:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18198, 523, 2, 1729, 6.99, '2007-02-16 13:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18199, 523, 1, 2447, 8.99, '2007-02-18 17:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18200, 523, 1, 2583, 7.99, '2007-02-19 03:30:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18201, 523, 2, 2669, 0.99, '2007-02-19 09:57:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18202, 524, 1, 1306, 1.99, '2007-02-15 08:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18203, 524, 2, 1651, 4.99, '2007-02-16 07:53:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18204, 524, 2, 3454, 2.99, '2007-02-21 19:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18205, 525, 2, 1772, 2.99, '2007-02-16 16:41:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18206, 526, 1, 1255, 4.99, '2007-02-15 04:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18207, 526, 2, 1848, 0.99, '2007-02-16 22:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18208, 526, 2, 1865, 7.99, '2007-02-17 00:18:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18209, 526, 2, 1972, 2.99, '2007-02-17 07:54:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18210, 526, 1, 1981, 2.99, '2007-02-17 08:32:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18211, 526, 2, 2398, 4.99, '2007-02-18 14:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18212, 526, 1, 2828, 2.99, '2007-02-19 19:19:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18213, 526, 2, 2932, 6.99, '2007-02-20 03:19:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18214, 526, 1, 3339, 6.99, '2007-02-21 09:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18215, 527, 1, 1398, 2.99, '2007-02-15 14:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18216, 527, 1, 2422, 0.99, '2007-02-18 15:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18217, 527, 2, 2496, 0.99, '2007-02-18 20:48:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18218, 527, 1, 2539, 2.99, '2007-02-19 00:27:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18219, 528, 2, 1875, 2.99, '2007-02-17 01:13:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18220, 528, 1, 2019, 4.99, '2007-02-17 11:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18221, 529, 1, 1234, 1.99, '2007-02-15 02:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18222, 529, 2, 1686, 0.99, '2007-02-16 10:36:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18223, 529, 2, 3354, 0.99, '2007-02-21 09:58:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18224, 530, 2, 1273, 1.99, '2007-02-15 06:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18225, 530, 1, 1516, 0.99, '2007-02-15 21:39:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18226, 530, 1, 2158, 2.99, '2007-02-17 22:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18227, 531, 2, 2972, 2.99, '2007-02-20 06:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18228, 532, 1, 1694, 4.99, '2007-02-16 11:08:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18229, 532, 2, 2821, 3.99, '2007-02-19 18:55:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18230, 533, 1, 1421, 5.99, '2007-02-15 16:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18231, 533, 1, 1652, 0.99, '2007-02-16 08:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18232, 533, 1, 1859, 0.99, '2007-02-16 23:42:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18233, 533, 1, 1954, 2.99, '2007-02-17 07:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18234, 533, 2, 2770, 6.99, '2007-02-19 16:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18235, 533, 1, 2956, 0.99, '2007-02-20 05:15:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18236, 534, 1, 1610, 4.99, '2007-02-16 05:04:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18237, 534, 1, 1673, 2.99, '2007-02-16 09:08:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18238, 534, 1, 2436, 0.99, '2007-02-18 16:41:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18239, 534, 2, 3213, 1.99, '2007-02-20 23:33:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18240, 534, 1, 3216, 4.99, '2007-02-20 23:48:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18241, 535, 1, 1712, 4.99, '2007-02-16 12:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18242, 535, 1, 3228, 4.99, '2007-02-21 00:48:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18243, 536, 1, 1582, 4.99, '2007-02-16 03:00:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18244, 536, 2, 1962, 2.99, '2007-02-17 07:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18245, 536, 2, 2403, 2.99, '2007-02-18 15:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18246, 537, 1, 1445, 2.99, '2007-02-15 17:38:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18247, 537, 2, 2184, 2.99, '2007-02-17 23:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18248, 537, 1, 2586, 8.99, '2007-02-19 03:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18249, 537, 2, 3134, 8.99, '2007-02-20 17:57:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18250, 538, 1, 1314, 5.99, '2007-02-15 08:50:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18251, 538, 1, 1912, 4.99, '2007-02-17 03:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18252, 538, 1, 2682, 4.99, '2007-02-19 10:46:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18253, 538, 2, 3189, 2.99, '2007-02-20 21:47:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18254, 539, 2, 1282, 3.99, '2007-02-15 06:53:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18255, 539, 1, 1327, 0.99, '2007-02-15 09:40:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18256, 539, 2, 1444, 4.99, '2007-02-15 17:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18257, 540, 2, 1263, 2.99, '2007-02-15 05:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18258, 540, 2, 1290, 4.99, '2007-02-15 07:21:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18259, 540, 2, 2640, 2.99, '2007-02-19 07:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18260, 540, 1, 2953, 3.99, '2007-02-20 05:07:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18261, 540, 1, 3340, 3.99, '2007-02-21 09:05:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18262, 541, 2, 1986, 2.99, '2007-02-17 09:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18263, 541, 1, 2708, 6.99, '2007-02-19 12:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18264, 542, 1, 2610, 4.99, '2007-02-19 05:44:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18265, 542, 2, 2957, 10.99, '2007-02-20 05:22:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18266, 543, 2, 1720, 4.99, '2007-02-16 13:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18267, 543, 1, 2426, 2.99, '2007-02-18 16:09:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18268, 543, 2, 3070, 4.99, '2007-02-20 12:44:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18269, 543, 1, 3128, 2.99, '2007-02-20 17:10:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18270, 543, 2, 3467, 5.99, '2007-02-21 20:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18271, 544, 1, 1248, 1.99, '2007-02-15 04:02:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18272, 544, 2, 1434, 10.99, '2007-02-15 16:59:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18273, 544, 1, 2373, 0.99, '2007-02-18 13:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18274, 544, 1, 2395, 2.99, '2007-02-18 14:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18275, 545, 1, 2123, 2.99, '2007-02-17 19:16:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18276, 546, 1, 1181, 1.99, '2007-02-14 23:10:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18277, 546, 2, 1403, 0.99, '2007-02-15 15:00:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18278, 546, 1, 1787, 3.99, '2007-02-16 17:59:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18279, 546, 1, 2361, 5.99, '2007-02-18 11:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18280, 547, 2, 2022, 8.99, '2007-02-17 11:13:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18281, 548, 1, 1326, 1.99, '2007-02-15 09:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18282, 548, 1, 2280, 2.99, '2007-02-18 05:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18283, 548, 2, 2978, 0.99, '2007-02-20 06:53:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18284, 549, 1, 2050, 2.99, '2007-02-17 13:35:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18285, 550, 1, 1233, 6.99, '2007-02-15 02:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18286, 550, 1, 1863, 3.99, '2007-02-17 00:00:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18287, 550, 2, 1883, 4.99, '2007-02-17 01:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18288, 550, 1, 3154, 2.99, '2007-02-20 19:13:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18289, 550, 2, 3236, 9.99, '2007-02-21 01:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18290, 550, 1, 3272, 10.99, '2007-02-21 03:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18291, 551, 2, 2069, 4.99, '2007-02-17 14:48:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18292, 551, 1, 2776, 3.99, '2007-02-19 16:44:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18293, 552, 2, 2320, 0.99, '2007-02-18 07:53:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18294, 552, 2, 3397, 4.99, '2007-02-21 13:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18295, 553, 2, 1862, 3.99, '2007-02-16 23:57:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18296, 553, 1, 2460, 8.99, '2007-02-18 18:22:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18297, 553, 2, 3103, 6.99, '2007-02-20 15:26:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18298, 554, 1, 1959, 4.99, '2007-02-17 07:22:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18299, 554, 1, 2279, 6.99, '2007-02-18 05:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18300, 554, 2, 3278, 2.99, '2007-02-21 04:09:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18301, 554, 1, 3312, 6.99, '2007-02-21 06:33:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18302, 555, 2, 3232, 1.99, '2007-02-21 00:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18303, 556, 1, 2092, 6.99, '2007-02-17 16:40:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18304, 556, 2, 2593, 5.99, '2007-02-19 04:08:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18305, 556, 2, 2986, 0.99, '2007-02-20 07:18:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18306, 556, 1, 3093, 4.99, '2007-02-20 14:34:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18307, 556, 2, 3438, 6.99, '2007-02-21 18:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18308, 557, 1, 1666, 0.99, '2007-02-16 08:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18309, 557, 2, 2988, 6.99, '2007-02-20 07:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18310, 557, 1, 3050, 3.99, '2007-02-20 11:31:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18311, 558, 2, 1967, 4.99, '2007-02-17 07:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18312, 558, 1, 2411, 1.99, '2007-02-18 15:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18313, 558, 2, 2544, 4.99, '2007-02-19 00:44:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18314, 558, 2, 3016, 4.99, '2007-02-20 09:23:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18315, 558, 2, 3451, 10.99, '2007-02-21 19:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18316, 559, 2, 2576, 4.99, '2007-02-19 03:02:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18317, 559, 1, 2706, 0.99, '2007-02-19 12:25:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18318, 559, 2, 3046, 4.99, '2007-02-20 11:11:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18319, 559, 1, 3370, 1.99, '2007-02-21 11:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18320, 560, 1, 1271, 4.99, '2007-02-15 06:00:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18321, 560, 2, 1572, 1.99, '2007-02-16 01:51:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18322, 561, 2, 1193, 2.99, '2007-02-14 23:52:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18323, 561, 2, 1505, 2.99, '2007-02-15 20:41:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18324, 561, 2, 1620, 4.99, '2007-02-16 05:49:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18325, 561, 1, 2119, 4.99, '2007-02-17 19:03:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18326, 561, 1, 2357, 5.99, '2007-02-18 11:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18327, 561, 1, 2548, 0.99, '2007-02-19 01:14:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18328, 561, 1, 2950, 4.99, '2007-02-20 04:37:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18329, 561, 1, 3160, 4.99, '2007-02-20 19:49:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18330, 561, 1, 3427, 0.99, '2007-02-21 16:59:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18331, 562, 1, 1998, 3.99, '2007-02-17 09:53:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18332, 562, 1, 2705, 4.99, '2007-02-19 12:22:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18333, 562, 1, 2746, 3.99, '2007-02-19 14:50:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18334, 562, 2, 3242, 4.99, '2007-02-21 01:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18335, 563, 2, 1545, 4.99, '2007-02-15 23:59:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18336, 563, 2, 2573, 0.99, '2007-02-19 02:51:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18337, 564, 2, 1705, 2.99, '2007-02-16 12:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18338, 565, 2, 1460, 4.99, '2007-02-15 18:55:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18339, 565, 1, 2321, 5.99, '2007-02-18 08:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18340, 565, 1, 3300, 5.99, '2007-02-21 05:53:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18341, 566, 1, 1635, 5.99, '2007-02-16 06:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18342, 566, 2, 1982, 4.99, '2007-02-17 08:40:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18343, 566, 1, 2367, 0.99, '2007-02-18 12:28:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18344, 566, 1, 3379, 4.99, '2007-02-21 12:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18345, 567, 2, 2689, 4.99, '2007-02-19 11:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18346, 567, 1, 3010, 2.99, '2007-02-20 08:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18347, 568, 2, 1658, 4.99, '2007-02-16 08:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18348, 568, 2, 2382, 4.99, '2007-02-18 13:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18349, 568, 2, 2668, 0.99, '2007-02-19 09:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18350, 568, 1, 3227, 4.99, '2007-02-21 00:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18351, 568, 2, 3462, 1.99, '2007-02-21 20:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18352, 569, 1, 1463, 6.99, '2007-02-15 19:06:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18353, 569, 2, 1668, 5.99, '2007-02-16 08:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18354, 570, 1, 1259, 4.99, '2007-02-15 05:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18355, 570, 2, 1417, 4.99, '2007-02-15 16:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18356, 570, 2, 1804, 2.99, '2007-02-16 19:01:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18357, 570, 2, 2008, 5.99, '2007-02-17 10:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18358, 570, 2, 2031, 6.99, '2007-02-17 11:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18359, 570, 2, 2261, 3.99, '2007-02-18 04:14:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18360, 570, 2, 3138, 2.99, '2007-02-20 18:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18361, 571, 1, 1254, 4.99, '2007-02-15 04:39:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18362, 571, 2, 1400, 3.99, '2007-02-15 14:58:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18363, 571, 1, 1756, 4.99, '2007-02-16 15:50:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18364, 571, 2, 1990, 4.99, '2007-02-17 09:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18365, 571, 1, 2327, 2.99, '2007-02-18 08:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18366, 571, 1, 2977, 10.99, '2007-02-20 06:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18367, 572, 2, 1889, 10.99, '2007-02-17 02:33:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18368, 572, 1, 2007, 0.99, '2007-02-17 10:15:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18369, 572, 1, 2458, 0.99, '2007-02-18 18:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18370, 573, 1, 1613, 4.99, '2007-02-16 05:23:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18371, 573, 2, 2622, 5.99, '2007-02-19 06:39:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18372, 573, 1, 2995, 1.99, '2007-02-20 07:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18373, 573, 1, 3295, 7.99, '2007-02-21 05:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18374, 574, 1, 1559, 0.99, '2007-02-16 01:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18375, 574, 2, 1636, 5.99, '2007-02-16 06:57:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18376, 574, 1, 1817, 0.99, '2007-02-16 19:49:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18377, 574, 1, 2632, 0.99, '2007-02-19 07:20:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18378, 574, 1, 3220, 6.99, '2007-02-21 00:14:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18379, 575, 2, 1494, 2.99, '2007-02-15 20:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18380, 575, 1, 1824, 2.99, '2007-02-16 20:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18381, 575, 2, 1866, 4.99, '2007-02-17 00:21:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18382, 576, 1, 1366, 4.99, '2007-02-15 12:49:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18383, 576, 2, 1742, 2.99, '2007-02-16 15:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18384, 576, 1, 2309, 0.99, '2007-02-18 07:11:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18385, 576, 2, 2444, 8.99, '2007-02-18 17:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18386, 576, 1, 2651, 3.99, '2007-02-19 08:51:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18387, 576, 2, 2799, 4.99, '2007-02-19 17:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18388, 576, 2, 3226, 6.99, '2007-02-21 00:46:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18389, 577, 2, 2399, 3.99, '2007-02-18 14:34:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18390, 577, 2, 3286, 2.99, '2007-02-21 04:59:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18391, 577, 2, 3401, 6.99, '2007-02-21 14:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18392, 578, 2, 1826, 6.99, '2007-02-16 20:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18393, 578, 2, 2615, 4.99, '2007-02-19 05:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18394, 578, 1, 3305, 2.99, '2007-02-21 06:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18395, 579, 2, 2425, 5.99, '2007-02-18 16:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18396, 579, 1, 2522, 3.99, '2007-02-18 23:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18397, 579, 1, 3111, 2.99, '2007-02-20 16:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18398, 580, 1, 1469, 0.99, '2007-02-15 19:21:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18399, 581, 2, 1958, 3.99, '2007-02-17 07:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18400, 581, 2, 2101, 2.99, '2007-02-17 17:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18401, 581, 1, 2137, 4.99, '2007-02-17 19:46:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18402, 582, 1, 1719, 2.99, '2007-02-16 13:24:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18403, 582, 1, 2337, 7.99, '2007-02-18 09:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18404, 582, 2, 3071, 0.99, '2007-02-20 12:49:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18405, 583, 1, 1428, 3.99, '2007-02-15 16:47:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18406, 583, 1, 2429, 9.99, '2007-02-18 16:16:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18407, 583, 2, 2663, 4.99, '2007-02-19 09:22:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18408, 583, 2, 2845, 5.99, '2007-02-19 21:15:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18409, 583, 2, 2879, 3.99, '2007-02-19 23:52:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18410, 583, 1, 3424, 0.99, '2007-02-21 16:11:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18411, 584, 2, 1436, 3.99, '2007-02-15 17:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18412, 584, 2, 3317, 6.99, '2007-02-21 06:50:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18413, 585, 1, 1344, 0.99, '2007-02-15 10:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18414, 585, 2, 1346, 7.99, '2007-02-15 11:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18415, 585, 1, 2674, 0.99, '2007-02-19 10:16:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18416, 585, 1, 2930, 3.99, '2007-02-20 03:18:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18417, 586, 1, 1260, 2.99, '2007-02-15 05:10:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18418, 586, 2, 1540, 0.99, '2007-02-15 23:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18419, 587, 2, 1330, 2.99, '2007-02-15 09:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18420, 587, 2, 2034, 4.99, '2007-02-17 11:55:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18421, 587, 1, 2220, 2.99, '2007-02-18 01:50:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18422, 587, 1, 2329, 4.99, '2007-02-18 08:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18423, 588, 2, 1885, 2.99, '2007-02-17 02:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18424, 588, 2, 1903, 6.99, '2007-02-17 03:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18425, 588, 2, 2270, 7.99, '2007-02-18 04:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18426, 588, 1, 2453, 2.99, '2007-02-18 17:59:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18427, 588, 2, 2920, 3.99, '2007-02-20 02:41:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18428, 589, 1, 1439, 4.99, '2007-02-15 17:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18429, 589, 2, 1703, 4.99, '2007-02-16 11:57:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18430, 589, 2, 2652, 8.99, '2007-02-19 09:03:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18431, 589, 1, 2707, 8.99, '2007-02-19 12:25:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18432, 589, 1, 2979, 2.99, '2007-02-20 06:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18433, 590, 2, 1456, 7.99, '2007-02-15 18:28:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18434, 590, 2, 2352, 2.99, '2007-02-18 11:08:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18435, 590, 2, 2775, 2.99, '2007-02-19 16:42:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18436, 590, 1, 2916, 6.99, '2007-02-20 02:29:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18437, 590, 1, 2964, 9.99, '2007-02-20 06:01:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18438, 591, 1, 1418, 0.99, '2007-02-15 16:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18439, 591, 2, 3341, 2.99, '2007-02-21 09:05:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18440, 591, 2, 3435, 4.99, '2007-02-21 17:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18441, 592, 2, 1163, 6.99, '2007-02-14 21:41:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18442, 592, 2, 1423, 5.99, '2007-02-15 16:36:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18443, 592, 1, 1479, 2.99, '2007-02-15 19:42:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18444, 592, 1, 2627, 0.99, '2007-02-19 07:00:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18445, 592, 1, 3158, 7.99, '2007-02-20 19:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18446, 593, 2, 2055, 5.99, '2007-02-17 13:55:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18447, 593, 2, 2205, 4.99, '2007-02-18 00:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18448, 593, 1, 2441, 4.99, '2007-02-18 17:13:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18449, 593, 1, 2832, 4.99, '2007-02-19 19:50:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18450, 594, 2, 1537, 5.99, '2007-02-15 23:21:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18451, 594, 1, 1816, 4.99, '2007-02-16 19:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18452, 594, 1, 1950, 2.99, '2007-02-17 06:55:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18453, 594, 1, 2276, 6.99, '2007-02-18 05:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18454, 594, 2, 2786, 0.99, '2007-02-19 17:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18455, 594, 2, 3302, 1.99, '2007-02-21 06:02:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18456, 595, 2, 1170, 2.99, '2007-02-14 22:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18457, 595, 2, 3371, 4.99, '2007-02-21 11:55:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18458, 596, 1, 1644, 1.99, '2007-02-16 07:26:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18459, 596, 1, 2767, 1.99, '2007-02-19 16:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18460, 597, 1, 2379, 0.99, '2007-02-18 13:28:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18461, 597, 1, 2696, 4.99, '2007-02-19 11:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18462, 597, 1, 3201, 1.99, '2007-02-20 22:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18463, 598, 1, 3005, 2.99, '2007-02-20 08:38:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18464, 599, 1, 2272, 1.99, '2007-02-18 04:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18465, 599, 2, 3043, 6.99, '2007-02-20 11:07:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18466, 599, 2, 3398, 4.99, '2007-02-21 14:03:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18467, 599, 1, 3429, 6.99, '2007-02-21 17:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18468, 202, 1, 1474, 2.99, '2007-02-15 19:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18469, 202, 1, 1535, 4.99, '2007-02-15 23:20:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18470, 202, 1, 3008, 0.99, '2007-02-20 08:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18471, 202, 2, 3148, 0.99, '2007-02-20 18:55:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18472, 203, 1, 1217, 4.99, '2007-02-15 01:52:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18473, 203, 1, 1715, 2.99, '2007-02-16 13:05:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18474, 203, 2, 2939, 7.99, '2007-02-20 03:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18475, 203, 2, 3406, 2.99, '2007-02-21 14:28:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18476, 204, 1, 1321, 2.99, '2007-02-15 09:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18477, 204, 1, 1616, 7.99, '2007-02-16 05:33:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18478, 204, 1, 1871, 4.99, '2007-02-17 00:53:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18479, 204, 2, 1894, 7.99, '2007-02-17 02:47:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18480, 204, 2, 2186, 2.99, '2007-02-17 23:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18481, 204, 2, 2734, 4.99, '2007-02-19 14:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18482, 205, 1, 1238, 2.99, '2007-02-15 03:17:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18483, 205, 1, 1357, 4.99, '2007-02-15 11:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18484, 205, 1, 1767, 0.99, '2007-02-16 16:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18485, 205, 2, 2237, 5.99, '2007-02-18 02:46:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18486, 206, 2, 1872, 0.99, '2007-02-17 00:55:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18487, 206, 2, 2477, 5.99, '2007-02-18 19:27:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18488, 206, 2, 3012, 4.99, '2007-02-20 09:11:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18489, 207, 2, 1945, 3.99, '2007-02-17 06:19:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18490, 208, 1, 1805, 0.99, '2007-02-16 19:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18491, 208, 1, 1949, 5.99, '2007-02-17 06:47:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18492, 208, 2, 2592, 0.99, '2007-02-19 04:05:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18493, 208, 1, 2695, 2.99, '2007-02-19 11:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18494, 208, 2, 2907, 0.99, '2007-02-20 01:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18495, 1, 1, 1185, 5.99, '2007-02-14 23:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18496, 1, 2, 1422, 0.99, '2007-02-15 16:31:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18497, 1, 2, 1476, 9.99, '2007-02-15 19:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18498, 1, 1, 1725, 4.99, '2007-02-16 13:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18499, 1, 1, 2308, 4.99, '2007-02-18 07:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18500, 1, 2, 2363, 0.99, '2007-02-18 12:02:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18501, 1, 1, 3284, 3.99, '2007-02-21 04:53:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18502, 2, 1, 2128, 2.99, '2007-02-17 19:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18503, 3, 1, 1546, 8.99, '2007-02-16 00:02:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18504, 3, 1, 1726, 6.99, '2007-02-16 13:47:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18505, 3, 2, 1911, 6.99, '2007-02-17 03:43:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18506, 3, 1, 2628, 2.99, '2007-02-19 07:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18507, 4, 1, 1297, 4.99, '2007-02-15 07:59:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18508, 4, 1, 1633, 0.99, '2007-02-16 06:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18509, 4, 2, 1707, 2.99, '2007-02-16 12:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18510, 4, 2, 1735, 0.99, '2007-02-16 14:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18511, 4, 2, 2043, 0.99, '2007-02-17 12:59:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18512, 4, 1, 2642, 5.99, '2007-02-19 08:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18513, 5, 1, 1502, 3.99, '2007-02-15 20:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18514, 5, 2, 1631, 2.99, '2007-02-16 06:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18515, 5, 2, 2063, 4.99, '2007-02-17 14:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18516, 5, 2, 2570, 2.99, '2007-02-19 02:48:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18517, 5, 2, 3126, 4.99, '2007-02-20 17:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18518, 6, 1, 1575, 3.99, '2007-02-16 02:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18519, 6, 2, 1841, 2.99, '2007-02-16 22:12:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18520, 6, 1, 1966, 0.99, '2007-02-17 07:48:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18521, 6, 1, 2345, 0.99, '2007-02-18 10:31:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18522, 7, 2, 1810, 0.99, '2007-02-16 19:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18523, 7, 1, 2250, 2.99, '2007-02-18 03:32:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18524, 7, 1, 2709, 0.99, '2007-02-19 12:28:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18525, 7, 1, 2888, 4.99, '2007-02-20 00:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18526, 7, 1, 3007, 0.99, '2007-02-20 08:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18527, 8, 2, 1305, 2.99, '2007-02-15 08:27:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18528, 8, 1, 2095, 5.99, '2007-02-17 16:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18529, 8, 2, 3114, 4.99, '2007-02-20 16:26:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18530, 9, 2, 3142, 7.99, '2007-02-20 18:27:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18531, 9, 2, 3262, 4.99, '2007-02-21 02:37:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18532, 10, 1, 1801, 4.99, '2007-02-16 18:50:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18533, 10, 1, 1995, 4.99, '2007-02-17 09:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18534, 10, 2, 2222, 3.99, '2007-02-18 01:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18535, 10, 1, 2814, 0.99, '2007-02-19 18:30:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18536, 10, 1, 2865, 0.99, '2007-02-19 22:29:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18537, 11, 1, 1470, 6.99, '2007-02-15 19:21:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18538, 11, 1, 1939, 7.99, '2007-02-17 05:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18539, 11, 1, 3192, 0.99, '2007-02-20 22:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18540, 12, 2, 1752, 5.99, '2007-02-16 15:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18541, 12, 2, 2434, 5.99, '2007-02-18 16:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18542, 12, 2, 2500, 5.99, '2007-02-18 21:35:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18543, 12, 2, 2623, 4.99, '2007-02-19 06:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18544, 12, 2, 3135, 2.99, '2007-02-20 18:02:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18545, 12, 1, 3411, 0.99, '2007-02-21 14:59:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18546, 13, 1, 1933, 2.99, '2007-02-17 05:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18547, 13, 1, 2209, 4.99, '2007-02-18 00:52:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18548, 13, 1, 2952, 2.99, '2007-02-20 04:55:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18549, 13, 1, 3047, 8.99, '2007-02-20 11:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18550, 14, 2, 1360, 4.99, '2007-02-15 12:00:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18551, 15, 1, 2486, 2.99, '2007-02-18 19:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18552, 15, 1, 2937, 5.99, '2007-02-20 03:44:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18553, 15, 2, 3182, 0.99, '2007-02-20 21:20:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18554, 16, 2, 1934, 6.99, '2007-02-17 05:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18555, 16, 1, 1944, 7.99, '2007-02-17 06:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18556, 16, 1, 2960, 7.99, '2007-02-20 05:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18557, 16, 2, 3348, 0.99, '2007-02-21 09:45:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18558, 17, 2, 2175, 5.99, '2007-02-17 22:46:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18559, 17, 1, 2684, 8.99, '2007-02-19 10:57:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18560, 17, 2, 3269, 5.99, '2007-02-21 03:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18561, 18, 2, 1451, 5.99, '2007-02-15 17:58:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18562, 18, 2, 1783, 4.99, '2007-02-16 17:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18563, 18, 2, 2112, 5.99, '2007-02-17 18:21:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18564, 18, 1, 2990, 8.99, '2007-02-20 07:31:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18565, 19, 1, 2657, 2.99, '2007-02-19 09:11:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18566, 19, 1, 2848, 2.99, '2007-02-19 21:24:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18567, 19, 2, 3423, 2.99, '2007-02-21 16:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18568, 20, 2, 1558, 0.99, '2007-02-16 01:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18569, 20, 2, 2136, 3.99, '2007-02-17 19:45:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18570, 20, 2, 2343, 4.99, '2007-02-18 10:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18571, 20, 1, 3350, 4.99, '2007-02-21 09:50:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18572, 21, 2, 2235, 7.99, '2007-02-18 02:37:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18573, 21, 1, 2268, 4.99, '2007-02-18 04:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18574, 21, 1, 2393, 2.99, '2007-02-18 14:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18575, 21, 2, 2830, 4.99, '2007-02-19 19:42:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18576, 21, 1, 3212, 10.99, '2007-02-20 23:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18577, 22, 1, 3419, 2.99, '2007-02-21 15:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18578, 23, 1, 2753, 1.99, '2007-02-19 15:13:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18579, 23, 1, 2827, 0.99, '2007-02-19 19:18:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18580, 23, 1, 3015, 5.99, '2007-02-20 09:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18581, 23, 1, 3055, 4.99, '2007-02-20 11:48:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18582, 23, 1, 3461, 2.99, '2007-02-21 20:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18583, 24, 1, 1716, 2.99, '2007-02-16 13:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18584, 24, 1, 2070, 2.99, '2007-02-17 14:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18585, 24, 2, 2116, 4.99, '2007-02-17 18:44:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18586, 24, 1, 2451, 5.99, '2007-02-18 17:56:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18587, 24, 2, 2963, 7.99, '2007-02-20 06:01:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18588, 25, 1, 1338, 4.99, '2007-02-15 10:46:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18589, 25, 1, 1365, 2.99, '2007-02-15 12:38:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18590, 25, 2, 1754, 6.99, '2007-02-16 15:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18591, 25, 2, 2625, 8.99, '2007-02-19 06:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18592, 25, 1, 2901, 4.99, '2007-02-20 01:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18593, 25, 1, 3447, 4.99, '2007-02-21 19:21:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18594, 26, 1, 1440, 5.99, '2007-02-15 17:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18595, 26, 2, 1706, 4.99, '2007-02-16 12:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18596, 26, 1, 2093, 9.99, '2007-02-17 16:42:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18597, 26, 2, 2416, 3.99, '2007-02-18 15:36:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18598, 26, 2, 2421, 6.99, '2007-02-18 15:53:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18599, 26, 1, 2532, 4.99, '2007-02-18 23:56:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18600, 26, 1, 2745, 4.99, '2007-02-19 14:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18601, 27, 1, 1310, 4.99, '2007-02-15 08:40:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18602, 27, 2, 1480, 4.99, '2007-02-15 19:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18603, 27, 2, 1699, 2.99, '2007-02-16 11:33:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18604, 27, 2, 1960, 3.99, '2007-02-17 07:28:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18605, 27, 2, 2512, 2.99, '2007-02-18 22:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18606, 27, 1, 2815, 4.99, '2007-02-19 18:31:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18607, 27, 1, 3038, 1.99, '2007-02-20 10:57:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18608, 27, 2, 3420, 3.99, '2007-02-21 15:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18609, 28, 2, 1240, 2.99, '2007-02-15 03:26:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18610, 28, 1, 1543, 4.99, '2007-02-15 23:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18611, 28, 2, 2299, 3.99, '2007-02-18 06:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18612, 28, 2, 2604, 0.99, '2007-02-19 04:58:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18613, 28, 1, 3231, 0.99, '2007-02-21 00:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18614, 29, 1, 2655, 0.99, '2007-02-19 09:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18615, 29, 1, 2673, 0.99, '2007-02-19 10:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18616, 29, 1, 2701, 7.99, '2007-02-19 12:01:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18617, 29, 1, 2735, 2.99, '2007-02-19 14:10:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18618, 29, 2, 2801, 2.99, '2007-02-19 17:46:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18619, 29, 2, 2923, 2.99, '2007-02-20 02:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18620, 29, 1, 3324, 2.99, '2007-02-21 07:17:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18621, 30, 2, 1874, 1.99, '2007-02-17 01:07:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18622, 30, 2, 1895, 2.99, '2007-02-17 02:53:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18623, 30, 2, 2154, 4.99, '2007-02-17 21:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18624, 30, 2, 2730, 2.99, '2007-02-19 13:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18625, 31, 2, 1656, 4.99, '2007-02-16 08:34:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18626, 31, 1, 1838, 1.99, '2007-02-16 21:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18627, 31, 1, 2233, 0.99, '2007-02-18 02:26:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18628, 31, 2, 2341, 6.99, '2007-02-18 10:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18629, 31, 1, 2396, 7.99, '2007-02-18 14:18:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18630, 31, 2, 2438, 0.99, '2007-02-18 17:02:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18631, 31, 1, 2530, 0.99, '2007-02-18 23:48:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18632, 31, 2, 2648, 4.99, '2007-02-19 08:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18633, 31, 2, 3117, 2.99, '2007-02-20 16:33:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18634, 31, 2, 3172, 1.99, '2007-02-20 20:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18635, 31, 1, 3205, 0.99, '2007-02-20 23:07:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18636, 32, 2, 1887, 6.99, '2007-02-17 02:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18637, 32, 2, 2160, 0.99, '2007-02-17 22:07:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18638, 32, 2, 2624, 5.99, '2007-02-19 06:50:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18639, 32, 2, 2891, 1.99, '2007-02-20 00:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18640, 33, 1, 1301, 10.99, '2007-02-15 08:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18641, 33, 2, 3173, 8.99, '2007-02-20 20:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18642, 34, 1, 1900, 4.99, '2007-02-17 02:58:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18643, 34, 2, 2257, 5.99, '2007-02-18 03:58:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18644, 34, 1, 3150, 0.99, '2007-02-20 19:03:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18645, 35, 1, 1579, 0.99, '2007-02-16 02:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18646, 35, 1, 1989, 2.99, '2007-02-17 09:15:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18647, 35, 1, 2229, 4.99, '2007-02-18 02:18:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18648, 35, 1, 2231, 0.99, '2007-02-18 02:20:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18649, 35, 1, 2743, 2.99, '2007-02-19 14:44:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18650, 35, 2, 3112, 4.99, '2007-02-20 16:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18651, 36, 2, 2741, 0.99, '2007-02-19 14:34:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18652, 37, 1, 1583, 4.99, '2007-02-16 03:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18653, 37, 2, 1812, 1.99, '2007-02-16 19:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18654, 37, 2, 1854, 3.99, '2007-02-16 23:12:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18655, 38, 2, 1250, 2.99, '2007-02-15 04:24:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18656, 38, 1, 2550, 1.99, '2007-02-19 01:18:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18657, 38, 2, 2605, 1.99, '2007-02-19 05:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18658, 38, 2, 3003, 4.99, '2007-02-20 08:29:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18659, 38, 2, 3392, 3.99, '2007-02-21 13:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18660, 39, 1, 1625, 5.99, '2007-02-16 06:17:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18661, 39, 1, 1905, 4.99, '2007-02-17 03:20:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18662, 39, 2, 2135, 0.99, '2007-02-17 19:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18663, 39, 2, 2439, 4.99, '2007-02-18 17:03:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18664, 39, 1, 2631, 4.99, '2007-02-19 07:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18665, 39, 1, 2876, 4.99, '2007-02-19 23:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18666, 40, 2, 2470, 7.99, '2007-02-18 18:56:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18667, 40, 2, 2896, 2.99, '2007-02-20 01:02:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18668, 40, 1, 2993, 4.99, '2007-02-20 07:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18669, 40, 1, 3428, 0.99, '2007-02-21 17:08:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18670, 41, 1, 2563, 4.99, '2007-02-19 01:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18671, 41, 2, 3246, 7.99, '2007-02-21 01:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18672, 42, 2, 1534, 0.99, '2007-02-15 23:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18673, 42, 2, 2056, 2.99, '2007-02-17 13:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18674, 42, 1, 2170, 3.99, '2007-02-17 22:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18675, 42, 1, 2302, 4.99, '2007-02-18 06:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18676, 43, 2, 1544, 4.99, '2007-02-15 23:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18677, 44, 1, 1497, 3.99, '2007-02-15 20:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18678, 44, 1, 2369, 2.99, '2007-02-18 12:53:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18679, 44, 1, 2809, 3.99, '2007-02-19 18:08:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18680, 44, 2, 2866, 4.99, '2007-02-19 22:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18681, 45, 1, 1806, 4.99, '2007-02-16 19:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18682, 45, 2, 1979, 2.99, '2007-02-17 08:13:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18683, 45, 2, 2722, 4.99, '2007-02-19 13:23:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18684, 45, 1, 3391, 3.99, '2007-02-21 13:39:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18685, 45, 2, 3444, 0.99, '2007-02-21 19:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18686, 46, 1, 1166, 4.99, '2007-02-14 21:45:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18687, 46, 2, 1214, 4.99, '2007-02-15 01:47:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18688, 46, 2, 2144, 0.99, '2007-02-17 20:34:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18689, 46, 1, 2203, 2.99, '2007-02-18 00:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18690, 46, 2, 2965, 8.99, '2007-02-20 06:02:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18691, 46, 2, 2975, 4.99, '2007-02-20 06:34:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18692, 46, 2, 3439, 4.99, '2007-02-21 18:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18693, 47, 1, 1882, 4.99, '2007-02-17 01:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18694, 47, 1, 2307, 6.99, '2007-02-18 07:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18695, 47, 2, 3320, 5.99, '2007-02-21 06:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18696, 48, 2, 1689, 9.99, '2007-02-16 10:47:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18697, 48, 2, 2822, 0.99, '2007-02-19 18:57:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18698, 49, 1, 1164, 0.99, '2007-02-14 21:44:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18699, 49, 2, 1237, 9.99, '2007-02-15 03:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18700, 49, 2, 1688, 0.99, '2007-02-16 10:39:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18701, 49, 2, 1777, 6.99, '2007-02-16 17:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18702, 49, 2, 3235, 4.99, '2007-02-21 01:14:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18703, 50, 1, 1223, 2.99, '2007-02-15 02:07:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18704, 50, 1, 1785, 4.99, '2007-02-16 17:55:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18705, 50, 2, 3000, 0.99, '2007-02-20 08:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18706, 50, 2, 3169, 2.99, '2007-02-20 20:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18707, 51, 2, 1373, 1.99, '2007-02-15 13:16:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18708, 51, 1, 1477, 0.99, '2007-02-15 19:39:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18709, 52, 1, 1196, 4.99, '2007-02-15 00:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18710, 52, 2, 2232, 0.99, '2007-02-18 02:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18711, 52, 1, 2862, 2.99, '2007-02-19 22:15:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18712, 52, 2, 3196, 4.99, '2007-02-20 22:30:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18713, 53, 1, 1964, 0.99, '2007-02-17 07:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18714, 53, 1, 2388, 2.99, '2007-02-18 13:54:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18715, 53, 1, 2903, 2.99, '2007-02-20 01:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18716, 53, 2, 3140, 2.99, '2007-02-20 18:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18717, 53, 2, 3244, 0.99, '2007-02-21 01:29:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18718, 54, 1, 1556, 4.99, '2007-02-16 00:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18719, 54, 1, 1571, 2.99, '2007-02-16 01:50:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18720, 54, 2, 2323, 6.99, '2007-02-18 08:23:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18721, 54, 1, 2647, 4.99, '2007-02-19 08:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18722, 55, 2, 1825, 2.99, '2007-02-16 20:21:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18723, 55, 2, 2062, 2.99, '2007-02-17 14:25:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18724, 55, 1, 2904, 2.99, '2007-02-20 01:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18725, 55, 1, 2976, 4.99, '2007-02-20 06:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18726, 55, 1, 3149, 4.99, '2007-02-20 19:03:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18727, 56, 2, 1795, 6.99, '2007-02-16 18:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18728, 56, 1, 2140, 0.99, '2007-02-17 20:08:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18729, 56, 1, 2485, 4.99, '2007-02-18 19:54:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18730, 56, 1, 2989, 0.99, '2007-02-20 07:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18731, 57, 1, 2058, 5.99, '2007-02-17 14:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18732, 57, 1, 2105, 0.99, '2007-02-17 17:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18733, 57, 1, 2360, 4.99, '2007-02-18 11:39:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18734, 57, 2, 2910, 7.99, '2007-02-20 01:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18735, 57, 1, 3357, 0.99, '2007-02-21 10:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18736, 58, 1, 2191, 4.99, '2007-02-18 00:01:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18737, 58, 2, 2543, 0.99, '2007-02-19 00:42:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18738, 58, 1, 2906, 0.99, '2007-02-20 01:33:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18739, 59, 1, 1269, 2.99, '2007-02-15 05:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18740, 59, 1, 1728, 3.99, '2007-02-16 13:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18741, 59, 1, 2921, 3.99, '2007-02-20 02:41:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18742, 60, 2, 1482, 4.99, '2007-02-15 19:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18743, 60, 2, 2394, 4.99, '2007-02-18 14:10:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18744, 62, 2, 1241, 6.99, '2007-02-15 03:28:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18745, 62, 1, 1486, 0.99, '2007-02-15 19:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18746, 62, 1, 1587, 0.99, '2007-02-16 03:20:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18747, 62, 2, 3021, 4.99, '2007-02-20 09:41:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18748, 62, 1, 3035, 5.99, '2007-02-20 10:45:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18749, 62, 1, 3287, 0.99, '2007-02-21 05:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18750, 62, 1, 3327, 3.99, '2007-02-21 07:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18751, 63, 2, 1818, 0.99, '2007-02-16 19:59:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18752, 64, 2, 1335, 0.99, '2007-02-15 10:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18753, 64, 1, 2060, 2.99, '2007-02-17 14:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18754, 65, 1, 2173, 7.99, '2007-02-17 22:36:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18755, 65, 1, 3051, 4.99, '2007-02-20 11:35:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18756, 66, 1, 1236, 2.99, '2007-02-15 03:02:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18757, 66, 1, 1907, 2.99, '2007-02-17 03:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18758, 66, 1, 2106, 4.99, '2007-02-17 17:57:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18759, 66, 2, 2571, 2.99, '2007-02-19 02:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18760, 66, 1, 2577, 4.99, '2007-02-19 03:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18761, 66, 1, 3334, 3.99, '2007-02-21 08:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18762, 66, 2, 3395, 6.99, '2007-02-21 13:47:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18763, 67, 1, 2064, 3.99, '2007-02-17 14:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18764, 67, 1, 2542, 3.99, '2007-02-19 00:37:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18765, 67, 2, 2810, 0.99, '2007-02-19 18:12:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18766, 67, 1, 3359, 4.99, '2007-02-21 10:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18767, 68, 2, 1828, 5.99, '2007-02-16 20:33:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18768, 68, 2, 1957, 8.99, '2007-02-17 07:19:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18769, 68, 2, 2633, 2.99, '2007-02-19 07:21:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18770, 68, 2, 2662, 4.99, '2007-02-19 09:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18771, 68, 1, 2686, 2.99, '2007-02-19 11:12:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18772, 69, 1, 1549, 2.99, '2007-02-16 00:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18773, 69, 1, 3358, 4.99, '2007-02-21 10:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18774, 70, 1, 2472, 4.99, '2007-02-18 19:01:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18775, 71, 2, 1873, 2.99, '2007-02-17 01:06:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18776, 71, 1, 2374, 4.99, '2007-02-18 13:12:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18777, 71, 2, 3345, 5.99, '2007-02-21 09:33:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18778, 72, 2, 2294, 4.99, '2007-02-18 06:15:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18779, 73, 1, 1669, 0.99, '2007-02-16 08:48:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18780, 73, 2, 2940, 4.99, '2007-02-20 03:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18781, 74, 1, 2498, 1.99, '2007-02-18 21:24:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18782, 74, 2, 2517, 0.99, '2007-02-18 22:39:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18783, 74, 1, 3020, 1.99, '2007-02-20 09:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18784, 74, 2, 3445, 7.99, '2007-02-21 19:08:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18785, 75, 1, 1920, 4.99, '2007-02-17 04:28:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18786, 75, 1, 2161, 7.99, '2007-02-17 22:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18787, 75, 2, 2738, 4.99, '2007-02-19 14:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18788, 75, 2, 3062, 6.99, '2007-02-20 12:18:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18789, 75, 1, 3210, 4.99, '2007-02-20 23:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18790, 76, 2, 1487, 0.99, '2007-02-15 19:56:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18791, 76, 1, 1791, 6.99, '2007-02-16 18:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18792, 76, 2, 2111, 0.99, '2007-02-17 18:15:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18793, 76, 2, 2397, 1.99, '2007-02-18 14:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18794, 76, 1, 2894, 0.99, '2007-02-20 00:51:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18795, 76, 2, 3416, 0.99, '2007-02-21 15:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18796, 77, 1, 1710, 4.99, '2007-02-16 12:39:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18797, 77, 1, 2354, 3.99, '2007-02-18 11:22:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18798, 77, 2, 2452, 8.99, '2007-02-18 17:57:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18799, 77, 1, 3151, 2.99, '2007-02-20 19:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18800, 77, 2, 3238, 0.99, '2007-02-21 01:16:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18801, 78, 1, 2207, 2.99, '2007-02-18 00:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18802, 78, 2, 2949, 6.99, '2007-02-20 04:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18803, 78, 2, 3248, 7.99, '2007-02-21 01:40:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18804, 79, 2, 3096, 4.99, '2007-02-20 14:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18805, 79, 2, 3178, 2.99, '2007-02-20 21:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18806, 80, 1, 2596, 2.99, '2007-02-19 04:16:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18807, 80, 2, 2805, 8.99, '2007-02-19 17:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18808, 80, 1, 3367, 3.99, '2007-02-21 11:36:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18809, 81, 1, 2714, 1.99, '2007-02-19 12:54:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18810, 81, 1, 2854, 5.99, '2007-02-19 21:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18811, 81, 1, 3229, 4.99, '2007-02-21 00:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18812, 82, 1, 1438, 0.99, '2007-02-15 17:07:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18813, 82, 2, 1570, 0.99, '2007-02-16 01:49:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18814, 82, 1, 2506, 8.99, '2007-02-18 21:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18815, 82, 1, 2819, 8.99, '2007-02-19 18:41:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18816, 82, 2, 3332, 0.99, '2007-02-21 08:23:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18817, 83, 1, 1354, 5.99, '2007-02-15 11:42:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18818, 83, 1, 1591, 5.99, '2007-02-16 03:41:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18819, 83, 2, 1617, 3.99, '2007-02-16 05:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18820, 83, 2, 3230, 4.99, '2007-02-21 00:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18821, 84, 2, 1195, 0.99, '2007-02-15 00:06:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18822, 84, 2, 1320, 4.99, '2007-02-15 09:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18823, 84, 2, 1815, 0.99, '2007-02-16 19:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18824, 84, 1, 2012, 5.99, '2007-02-17 10:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18825, 84, 2, 2042, 0.99, '2007-02-17 12:59:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18826, 84, 2, 2409, 0.99, '2007-02-18 15:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18827, 85, 1, 1685, 1.99, '2007-02-16 10:35:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18828, 85, 1, 2131, 5.99, '2007-02-17 19:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18829, 85, 2, 2794, 0.99, '2007-02-19 17:21:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18830, 85, 1, 3165, 4.99, '2007-02-20 19:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18831, 85, 1, 3307, 1.99, '2007-02-21 06:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18832, 85, 2, 3418, 3.99, '2007-02-21 15:35:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18833, 86, 2, 1640, 4.99, '2007-02-16 07:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18834, 86, 2, 1822, 0.99, '2007-02-16 20:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18835, 86, 2, 1924, 2.99, '2007-02-17 04:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18836, 86, 1, 2141, 4.99, '2007-02-17 20:10:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18837, 86, 1, 2518, 4.99, '2007-02-18 22:44:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18838, 86, 1, 3207, 0.99, '2007-02-20 23:11:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18839, 86, 2, 3270, 4.99, '2007-02-21 03:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18840, 87, 2, 1580, 4.99, '2007-02-16 02:40:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18841, 87, 1, 1904, 2.99, '2007-02-17 03:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18842, 87, 2, 2408, 2.99, '2007-02-18 15:19:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18843, 87, 1, 2516, 4.99, '2007-02-18 22:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18844, 87, 2, 3122, 9.99, '2007-02-20 16:54:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18845, 88, 1, 1433, 2.99, '2007-02-15 16:58:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18846, 88, 1, 2483, 7.99, '2007-02-18 19:50:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18847, 88, 1, 2878, 2.99, '2007-02-19 23:37:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18848, 89, 1, 1252, 8.99, '2007-02-15 04:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18849, 89, 2, 1407, 7.99, '2007-02-15 15:13:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18850, 89, 1, 1948, 4.99, '2007-02-17 06:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18851, 89, 1, 2523, 0.99, '2007-02-18 23:14:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18852, 89, 1, 2835, 7.99, '2007-02-19 20:12:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18853, 90, 2, 2033, 0.99, '2007-02-17 11:53:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18854, 90, 2, 2584, 6.99, '2007-02-19 03:31:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18855, 90, 2, 3132, 0.99, '2007-02-20 17:38:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18856, 91, 1, 1299, 4.99, '2007-02-15 08:03:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18857, 91, 1, 2457, 3.99, '2007-02-18 18:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18858, 91, 1, 2908, 0.99, '2007-02-20 01:45:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18859, 91, 2, 3384, 2.99, '2007-02-21 12:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18860, 92, 2, 2084, 4.99, '2007-02-17 15:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18861, 92, 1, 2521, 0.99, '2007-02-18 23:09:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18862, 92, 1, 2740, 8.99, '2007-02-19 14:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18863, 93, 2, 2256, 4.99, '2007-02-18 03:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18864, 93, 1, 3109, 0.99, '2007-02-20 16:02:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18865, 94, 2, 1213, 2.99, '2007-02-15 01:42:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18866, 94, 1, 1367, 4.99, '2007-02-15 12:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18867, 94, 2, 1734, 3.99, '2007-02-16 14:17:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18868, 94, 2, 2620, 4.99, '2007-02-19 06:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18869, 94, 1, 2816, 2.99, '2007-02-19 18:32:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18870, 95, 2, 1174, 2.99, '2007-02-14 22:41:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18871, 95, 2, 1261, 1.99, '2007-02-15 05:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18872, 95, 2, 3056, 2.99, '2007-02-20 11:49:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18873, 95, 2, 3426, 0.99, '2007-02-21 16:40:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18874, 96, 1, 1266, 3.99, '2007-02-15 05:40:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18875, 96, 2, 1413, 7.99, '2007-02-15 15:53:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18876, 96, 2, 1437, 0.99, '2007-02-15 17:05:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18877, 96, 1, 2372, 0.99, '2007-02-18 13:06:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18878, 96, 2, 2973, 5.99, '2007-02-20 06:27:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18879, 96, 1, 3308, 0.99, '2007-02-21 06:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18880, 96, 2, 3463, 0.99, '2007-02-21 20:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18881, 97, 2, 2083, 2.99, '2007-02-17 15:42:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18882, 97, 2, 2790, 4.99, '2007-02-19 17:18:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18883, 97, 1, 3459, 0.99, '2007-02-21 20:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18884, 98, 1, 1362, 3.99, '2007-02-15 12:21:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18885, 98, 2, 1590, 5.99, '2007-02-16 03:40:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18886, 98, 1, 2213, 4.99, '2007-02-18 01:05:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18887, 98, 1, 2445, 0.99, '2007-02-18 17:30:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18888, 98, 2, 2601, 4.99, '2007-02-19 04:38:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18889, 98, 2, 3399, 4.99, '2007-02-21 14:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18890, 99, 1, 1858, 4.99, '2007-02-16 23:41:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18891, 99, 1, 2368, 2.99, '2007-02-18 12:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18892, 100, 2, 1216, 4.99, '2007-02-15 01:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18893, 100, 1, 1340, 3.99, '2007-02-15 10:52:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18894, 100, 1, 1427, 2.99, '2007-02-15 16:45:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18895, 100, 2, 3468, 6.99, '2007-02-21 21:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18896, 102, 2, 1215, 2.99, '2007-02-15 01:49:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18897, 102, 2, 2419, 8.99, '2007-02-18 15:49:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18898, 103, 2, 1396, 4.99, '2007-02-15 14:51:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18899, 103, 1, 2118, 0.99, '2007-02-17 18:56:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18900, 103, 1, 2197, 0.99, '2007-02-18 00:18:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18901, 103, 1, 2724, 0.99, '2007-02-19 13:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18902, 104, 2, 1287, 3.99, '2007-02-15 07:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18903, 104, 1, 2107, 0.99, '2007-02-17 17:59:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18904, 104, 2, 2928, 0.99, '2007-02-20 03:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18905, 104, 2, 3273, 2.99, '2007-02-21 03:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18906, 105, 2, 1789, 3.99, '2007-02-16 18:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18907, 105, 2, 1991, 3.99, '2007-02-17 09:17:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18908, 105, 2, 2635, 3.99, '2007-02-19 07:37:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18909, 106, 1, 2295, 4.99, '2007-02-18 06:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18910, 106, 1, 3023, 4.99, '2007-02-20 09:46:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18911, 107, 2, 1243, 2.99, '2007-02-15 03:35:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18912, 107, 2, 2693, 6.99, '2007-02-19 11:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18913, 107, 2, 2860, 4.99, '2007-02-19 21:49:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18914, 107, 2, 2897, 3.99, '2007-02-20 01:02:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18915, 107, 1, 3033, 3.99, '2007-02-20 10:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18916, 107, 2, 3120, 0.99, '2007-02-20 16:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18917, 107, 2, 3174, 0.99, '2007-02-20 20:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18918, 108, 2, 1372, 4.99, '2007-02-15 13:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18919, 108, 1, 1425, 2.99, '2007-02-15 16:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18920, 108, 1, 2061, 8.99, '2007-02-17 14:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18921, 108, 1, 2210, 2.99, '2007-02-18 00:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18922, 108, 2, 3116, 4.99, '2007-02-20 16:33:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18923, 109, 2, 1581, 2.99, '2007-02-16 02:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18924, 109, 2, 1891, 3.99, '2007-02-17 02:45:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18925, 109, 2, 2198, 6.99, '2007-02-18 00:19:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18926, 109, 2, 2679, 5.99, '2007-02-19 10:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18927, 109, 2, 3076, 5.99, '2007-02-20 13:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18928, 110, 2, 1528, 8.99, '2007-02-15 23:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18929, 111, 1, 1593, 6.99, '2007-02-16 03:43:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18930, 111, 2, 1974, 2.99, '2007-02-17 07:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18931, 111, 2, 1999, 1.99, '2007-02-17 09:58:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18932, 111, 2, 2297, 4.99, '2007-02-18 06:46:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18933, 111, 2, 3087, 2.99, '2007-02-20 14:22:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18934, 111, 2, 3333, 2.99, '2007-02-21 08:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18935, 112, 1, 1835, 4.99, '2007-02-16 21:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18936, 112, 2, 1930, 2.99, '2007-02-17 05:19:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18937, 112, 1, 2193, 4.99, '2007-02-18 00:07:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18938, 112, 2, 3018, 2.99, '2007-02-20 09:39:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18939, 113, 2, 2077, 4.99, '2007-02-17 15:14:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18940, 113, 1, 2282, 2.99, '2007-02-18 05:16:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18941, 113, 1, 2783, 2.99, '2007-02-19 16:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18942, 113, 2, 3004, 0.99, '2007-02-20 08:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18943, 113, 1, 3124, 8.99, '2007-02-20 16:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18944, 113, 1, 3162, 6.99, '2007-02-20 19:49:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18945, 114, 1, 2059, 2.99, '2007-02-17 14:04:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18946, 114, 2, 2680, 7.99, '2007-02-19 10:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18947, 114, 1, 3094, 2.99, '2007-02-20 14:35:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18948, 114, 2, 3144, 5.99, '2007-02-20 18:42:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18949, 115, 2, 1361, 0.99, '2007-02-15 12:06:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18950, 115, 2, 1515, 2.99, '2007-02-15 21:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18951, 115, 1, 3289, 6.99, '2007-02-21 05:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18952, 116, 2, 1332, 0.99, '2007-02-15 10:04:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18953, 116, 2, 1533, 0.99, '2007-02-15 23:14:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18954, 116, 2, 1762, 4.99, '2007-02-16 16:18:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18955, 116, 2, 1913, 4.99, '2007-02-17 03:48:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18956, 116, 1, 2639, 4.99, '2007-02-19 07:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18957, 116, 1, 2861, 3.99, '2007-02-19 21:50:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18958, 117, 1, 1755, 2.99, '2007-02-16 15:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18959, 117, 2, 3218, 2.99, '2007-02-21 00:06:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18960, 118, 2, 1766, 4.99, '2007-02-16 16:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18961, 118, 2, 2217, 0.99, '2007-02-18 01:40:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18962, 118, 1, 3263, 4.99, '2007-02-21 02:44:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18963, 119, 1, 1179, 7.99, '2007-02-14 23:05:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18964, 119, 2, 2009, 2.99, '2007-02-17 10:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18965, 119, 2, 3388, 5.99, '2007-02-21 13:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18966, 120, 1, 1374, 3.99, '2007-02-15 13:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18967, 120, 1, 1820, 4.99, '2007-02-16 20:03:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18968, 120, 2, 1932, 2.99, '2007-02-17 05:23:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18969, 120, 1, 2169, 4.99, '2007-02-17 22:25:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18970, 120, 1, 2803, 9.99, '2007-02-19 17:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18971, 120, 1, 3133, 2.99, '2007-02-20 17:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18972, 121, 1, 1634, 2.99, '2007-02-16 06:44:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18973, 121, 1, 1833, 1.99, '2007-02-16 21:13:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18974, 122, 1, 1211, 0.99, '2007-02-15 01:29:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18975, 122, 2, 1442, 7.99, '2007-02-15 17:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18976, 122, 2, 2240, 3.99, '2007-02-18 02:56:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18977, 122, 1, 2253, 0.99, '2007-02-18 03:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18978, 122, 1, 2482, 4.99, '2007-02-18 19:39:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18979, 122, 2, 2595, 4.99, '2007-02-19 04:12:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18980, 122, 2, 2834, 1.99, '2007-02-19 20:10:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18981, 123, 2, 1490, 4.99, '2007-02-15 20:10:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18982, 123, 1, 1751, 0.99, '2007-02-16 15:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18983, 123, 2, 1775, 4.99, '2007-02-16 16:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18984, 123, 2, 1951, 0.99, '2007-02-17 06:59:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18985, 123, 1, 2594, 2.99, '2007-02-19 04:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18986, 124, 2, 2336, 1.99, '2007-02-18 09:28:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18987, 125, 1, 1481, 2.99, '2007-02-15 19:46:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18988, 125, 1, 2355, 3.99, '2007-02-18 11:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18989, 125, 1, 2826, 7.99, '2007-02-19 19:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18990, 125, 1, 3118, 4.99, '2007-02-20 16:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18991, 126, 1, 3450, 2.99, '2007-02-21 19:30:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18992, 127, 1, 1293, 4.99, '2007-02-15 07:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18993, 127, 2, 1803, 2.99, '2007-02-16 19:01:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18994, 127, 2, 2412, 3.99, '2007-02-18 15:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18995, 128, 2, 2519, 7.99, '2007-02-18 22:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18996, 128, 1, 2565, 0.99, '2007-02-19 02:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18997, 129, 2, 1732, 0.99, '2007-02-16 14:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18998, 129, 1, 2727, 3.99, '2007-02-19 13:31:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (18999, 129, 2, 2768, 0.99, '2007-02-19 16:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19000, 129, 2, 2795, 4.99, '2007-02-19 17:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19001, 129, 1, 3183, 4.99, '2007-02-20 21:24:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19002, 129, 1, 3219, 3.99, '2007-02-21 00:11:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19003, 130, 1, 1630, 2.99, '2007-02-16 06:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19004, 130, 2, 1864, 2.99, '2007-02-17 00:08:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19005, 130, 2, 2163, 2.99, '2007-02-17 22:14:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19006, 130, 2, 2292, 2.99, '2007-02-18 06:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19007, 130, 1, 2535, 2.99, '2007-02-19 00:07:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19008, 130, 1, 2982, 6.99, '2007-02-20 07:06:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19009, 131, 1, 1646, 9.99, '2007-02-16 07:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19010, 131, 2, 1768, 4.99, '2007-02-16 16:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19011, 132, 1, 1843, 0.99, '2007-02-16 22:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19012, 132, 1, 2208, 4.99, '2007-02-18 00:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19013, 132, 1, 2384, 0.99, '2007-02-18 13:47:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19014, 132, 2, 2608, 2.99, '2007-02-19 05:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19015, 132, 2, 2924, 4.99, '2007-02-20 02:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19016, 132, 1, 3121, 4.99, '2007-02-20 16:51:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19017, 133, 2, 1522, 3.99, '2007-02-15 22:46:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19018, 133, 2, 2665, 7.99, '2007-02-19 09:41:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19019, 133, 1, 3006, 0.99, '2007-02-20 08:38:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19020, 133, 2, 3365, 0.99, '2007-02-21 11:24:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19021, 134, 1, 1618, 9.99, '2007-02-16 05:37:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19022, 134, 2, 1784, 0.99, '2007-02-16 17:53:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19023, 134, 2, 1881, 0.99, '2007-02-17 01:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19024, 134, 1, 3267, 5.99, '2007-02-21 03:23:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19025, 135, 2, 1272, 0.99, '2007-02-15 06:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19026, 135, 2, 1671, 1.99, '2007-02-16 08:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19027, 135, 2, 2941, 2.99, '2007-02-20 03:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19028, 136, 2, 2104, 2.99, '2007-02-17 17:42:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19029, 137, 1, 2469, 6.99, '2007-02-18 18:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19030, 137, 1, 2785, 2.99, '2007-02-19 17:12:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19031, 137, 2, 3058, 3.99, '2007-02-20 11:57:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19032, 137, 1, 3436, 5.99, '2007-02-21 17:44:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19033, 138, 2, 1316, 0.99, '2007-02-15 08:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19034, 138, 2, 2038, 0.99, '2007-02-17 12:29:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19035, 138, 1, 2731, 7.99, '2007-02-19 13:43:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19036, 139, 2, 1169, 2.99, '2007-02-14 22:11:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19037, 139, 1, 1736, 2.99, '2007-02-16 14:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19038, 139, 1, 2659, 0.99, '2007-02-19 09:16:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19039, 139, 2, 2718, 7.99, '2007-02-19 13:18:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19040, 140, 1, 1586, 4.99, '2007-02-16 03:19:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19041, 140, 1, 1687, 2.99, '2007-02-16 10:37:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19042, 140, 2, 2332, 6.99, '2007-02-18 09:22:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19043, 140, 2, 3171, 0.99, '2007-02-20 20:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19044, 141, 2, 1242, 7.99, '2007-02-15 03:33:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19045, 141, 2, 2895, 7.99, '2007-02-20 00:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19046, 141, 1, 3434, 4.99, '2007-02-21 17:36:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19047, 142, 1, 1268, 1.99, '2007-02-15 05:57:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19048, 142, 1, 3214, 2.99, '2007-02-20 23:36:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19049, 143, 2, 1898, 1.99, '2007-02-17 02:56:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19050, 143, 1, 1942, 4.99, '2007-02-17 06:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19051, 143, 2, 2251, 3.99, '2007-02-18 03:33:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19052, 143, 1, 2574, 0.99, '2007-02-19 02:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19053, 143, 1, 2588, 4.99, '2007-02-19 03:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19054, 144, 1, 1814, 5.99, '2007-02-16 19:43:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19055, 144, 1, 1943, 0.99, '2007-02-17 06:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19056, 144, 1, 2756, 4.99, '2007-02-19 15:26:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19057, 144, 2, 3019, 4.99, '2007-02-20 09:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19058, 144, 1, 3145, 2.99, '2007-02-20 18:49:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19059, 144, 1, 3321, 2.99, '2007-02-21 07:01:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19060, 145, 2, 2271, 4.99, '2007-02-18 04:58:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19061, 145, 2, 2614, 0.99, '2007-02-19 05:56:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19062, 146, 2, 1209, 7.99, '2007-02-15 00:59:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19063, 146, 2, 1724, 1.99, '2007-02-16 13:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19064, 146, 2, 2099, 2.99, '2007-02-17 17:15:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19065, 146, 1, 2242, 3.99, '2007-02-18 03:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19066, 146, 1, 2342, 2.99, '2007-02-18 10:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19067, 146, 1, 2800, 0.99, '2007-02-19 17:44:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19068, 146, 1, 3131, 4.99, '2007-02-20 17:36:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19069, 147, 1, 2171, 0.99, '2007-02-17 22:34:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19070, 147, 1, 2456, 6.99, '2007-02-18 18:05:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19071, 147, 2, 2859, 2.99, '2007-02-19 21:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19072, 147, 2, 3011, 5.99, '2007-02-20 09:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19073, 148, 1, 1501, 1.99, '2007-02-15 20:31:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19074, 148, 2, 1517, 6.99, '2007-02-15 21:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19075, 148, 2, 2751, 3.99, '2007-02-19 15:07:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19076, 148, 2, 2843, 3.99, '2007-02-19 21:05:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19077, 148, 2, 2847, 5.99, '2007-02-19 21:22:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19078, 149, 2, 1521, 2.99, '2007-02-15 22:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19079, 149, 1, 1800, 2.99, '2007-02-16 18:47:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19080, 149, 2, 1996, 6.99, '2007-02-17 09:46:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19081, 149, 2, 2194, 4.99, '2007-02-18 00:10:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19082, 149, 1, 2305, 5.99, '2007-02-18 06:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19083, 149, 2, 2383, 7.99, '2007-02-18 13:46:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19084, 149, 1, 2752, 0.99, '2007-02-19 15:12:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19085, 150, 2, 3187, 1.99, '2007-02-20 21:34:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19086, 150, 1, 3456, 5.99, '2007-02-21 19:48:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19087, 151, 2, 2474, 2.99, '2007-02-18 19:20:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19088, 151, 2, 2947, 2.99, '2007-02-20 04:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19089, 151, 1, 3017, 3.99, '2007-02-20 09:37:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19090, 151, 2, 3089, 0.99, '2007-02-20 14:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19091, 151, 2, 3390, 2.99, '2007-02-21 13:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19092, 152, 1, 2882, 4.99, '2007-02-19 23:54:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19093, 153, 1, 2224, 0.99, '2007-02-18 02:02:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19094, 153, 1, 2649, 0.99, '2007-02-19 08:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19095, 153, 1, 2893, 4.99, '2007-02-20 00:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19096, 153, 1, 2945, 5.99, '2007-02-20 04:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19097, 154, 1, 1963, 0.99, '2007-02-17 07:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19098, 154, 1, 2886, 4.99, '2007-02-20 00:07:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19099, 154, 1, 2985, 2.99, '2007-02-20 07:13:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19100, 155, 2, 1519, 1.99, '2007-02-15 22:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19101, 155, 1, 1554, 7.99, '2007-02-16 00:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19102, 155, 1, 2028, 7.99, '2007-02-17 11:36:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19103, 155, 1, 2869, 4.99, '2007-02-19 22:37:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19104, 155, 2, 3405, 4.99, '2007-02-21 14:26:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19105, 156, 2, 2089, 9.99, '2007-02-17 16:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19106, 156, 2, 2221, 0.99, '2007-02-18 01:53:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19107, 156, 1, 2658, 4.99, '2007-02-19 09:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19108, 156, 1, 2782, 0.99, '2007-02-19 16:53:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19109, 157, 2, 2340, 0.99, '2007-02-18 09:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19110, 158, 1, 1380, 0.99, '2007-02-15 13:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19111, 158, 2, 1790, 4.99, '2007-02-16 18:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19112, 158, 2, 2035, 6.99, '2007-02-17 12:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19113, 158, 2, 3203, 8.99, '2007-02-20 23:03:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19114, 159, 1, 1695, 0.99, '2007-02-16 11:08:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19115, 159, 1, 2572, 0.99, '2007-02-19 02:49:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19116, 160, 2, 2314, 4.99, '2007-02-18 07:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19117, 160, 1, 2465, 2.99, '2007-02-18 18:35:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19118, 160, 2, 2873, 2.99, '2007-02-19 23:09:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19119, 161, 1, 1856, 2.99, '2007-02-16 23:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19120, 161, 1, 3075, 3.99, '2007-02-20 13:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19121, 162, 2, 1339, 4.99, '2007-02-15 10:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19122, 162, 1, 2366, 0.99, '2007-02-18 12:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19123, 162, 1, 2547, 4.99, '2007-02-19 01:12:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19124, 162, 1, 3040, 0.99, '2007-02-20 11:02:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19125, 162, 2, 3180, 0.99, '2007-02-20 21:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19126, 163, 2, 1265, 4.99, '2007-02-15 05:29:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19127, 163, 2, 2000, 2.99, '2007-02-17 10:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19128, 163, 2, 2110, 7.99, '2007-02-17 18:14:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19129, 163, 2, 2536, 5.99, '2007-02-19 00:10:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19130, 163, 1, 2994, 6.99, '2007-02-20 07:45:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19131, 163, 1, 3179, 0.99, '2007-02-20 21:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19132, 164, 2, 1713, 4.99, '2007-02-16 12:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19133, 164, 2, 2589, 2.99, '2007-02-19 03:49:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19134, 164, 1, 3082, 8.99, '2007-02-20 14:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19135, 165, 1, 2013, 3.99, '2007-02-17 10:31:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19136, 165, 2, 3195, 2.99, '2007-02-20 22:30:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19137, 166, 2, 1412, 2.99, '2007-02-15 15:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19138, 166, 1, 2211, 3.99, '2007-02-18 00:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19139, 166, 1, 2874, 5.99, '2007-02-19 23:10:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19140, 166, 1, 3085, 0.99, '2007-02-20 14:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19141, 167, 1, 1416, 3.99, '2007-02-15 16:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19142, 167, 1, 1509, 5.99, '2007-02-15 21:04:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19143, 167, 2, 2381, 5.99, '2007-02-18 13:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19144, 168, 2, 1222, 4.99, '2007-02-15 02:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19145, 169, 1, 2023, 4.99, '2007-02-17 11:21:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19146, 169, 1, 3261, 2.99, '2007-02-21 02:36:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19147, 170, 2, 2117, 0.99, '2007-02-17 18:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19148, 170, 2, 2413, 8.99, '2007-02-18 15:28:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19149, 171, 2, 1676, 0.99, '2007-02-16 09:34:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19150, 171, 2, 2004, 4.99, '2007-02-17 10:12:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19151, 171, 2, 2199, 5.99, '2007-02-18 00:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19152, 171, 1, 2497, 4.99, '2007-02-18 21:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19153, 171, 2, 2599, 5.99, '2007-02-19 04:34:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19154, 171, 2, 2788, 2.99, '2007-02-19 17:16:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19155, 171, 2, 3338, 6.99, '2007-02-21 08:55:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19156, 172, 2, 1507, 0.99, '2007-02-15 20:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19157, 172, 1, 2052, 0.99, '2007-02-17 13:43:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19158, 172, 2, 3032, 1.99, '2007-02-20 10:26:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19159, 173, 2, 1188, 2.99, '2007-02-14 23:32:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19160, 173, 2, 2435, 4.99, '2007-02-18 16:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19161, 173, 1, 2602, 2.99, '2007-02-19 04:38:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19162, 173, 2, 3224, 0.99, '2007-02-21 00:40:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19163, 173, 1, 3336, 4.99, '2007-02-21 08:42:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19164, 174, 2, 1566, 7.99, '2007-02-16 01:41:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19165, 174, 1, 1609, 0.99, '2007-02-16 05:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19166, 174, 1, 2326, 5.99, '2007-02-18 08:42:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19167, 174, 2, 3446, 1.99, '2007-02-21 19:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19168, 175, 2, 1495, 0.99, '2007-02-15 20:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19169, 175, 2, 3266, 4.99, '2007-02-21 03:17:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19170, 176, 1, 1291, 5.99, '2007-02-15 07:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19171, 176, 1, 1741, 7.99, '2007-02-16 15:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19172, 176, 1, 1836, 6.99, '2007-02-16 21:41:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19173, 176, 1, 2181, 8.99, '2007-02-17 23:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19174, 176, 1, 2218, 2.99, '2007-02-18 01:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19175, 176, 2, 2427, 2.99, '2007-02-18 16:13:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19176, 176, 2, 2503, 1.99, '2007-02-18 21:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19177, 176, 1, 2922, 4.99, '2007-02-20 02:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19178, 177, 1, 1393, 2.99, '2007-02-15 14:41:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19179, 177, 1, 1524, 2.99, '2007-02-15 22:54:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19180, 177, 2, 1621, 4.99, '2007-02-16 05:52:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19181, 177, 1, 1738, 0.99, '2007-02-16 14:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19182, 177, 2, 2467, 2.99, '2007-02-18 18:48:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19183, 178, 1, 1292, 6.99, '2007-02-15 07:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19184, 178, 2, 1458, 6.99, '2007-02-15 18:52:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19185, 178, 2, 1568, 2.99, '2007-02-16 01:42:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19186, 178, 2, 1745, 3.99, '2007-02-16 15:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19187, 178, 2, 2124, 1.99, '2007-02-17 19:17:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19188, 178, 1, 2293, 4.99, '2007-02-18 06:13:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19189, 178, 2, 2844, 6.99, '2007-02-19 21:08:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19190, 178, 1, 2898, 9.99, '2007-02-20 01:06:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19191, 179, 2, 1286, 7.99, '2007-02-15 07:09:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19192, 179, 1, 2613, 4.99, '2007-02-19 05:54:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19193, 180, 2, 2700, 2.99, '2007-02-19 12:00:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19194, 180, 1, 2798, 2.99, '2007-02-19 17:36:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19195, 181, 1, 1638, 2.99, '2007-02-16 07:01:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19196, 181, 1, 2645, 5.99, '2007-02-19 08:19:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19197, 181, 2, 3449, 5.99, '2007-02-21 19:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19198, 181, 2, 3469, 4.99, '2007-02-21 21:17:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19199, 182, 2, 1542, 3.99, '2007-02-15 23:48:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19200, 182, 1, 2049, 2.99, '2007-02-17 13:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19201, 182, 2, 2120, 5.99, '2007-02-17 19:05:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19202, 182, 1, 2234, 0.99, '2007-02-18 02:29:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19203, 183, 1, 1279, 0.99, '2007-02-15 06:42:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19204, 183, 2, 2188, 1.99, '2007-02-17 23:47:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19205, 183, 2, 2471, 5.99, '2007-02-18 18:59:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19206, 183, 1, 3381, 5.99, '2007-02-21 12:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19207, 184, 2, 1976, 2.99, '2007-02-17 08:06:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19208, 184, 1, 2312, 0.99, '2007-02-18 07:24:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19209, 185, 1, 2459, 4.99, '2007-02-18 18:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19210, 185, 1, 3314, 4.99, '2007-02-21 06:45:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19211, 185, 1, 3325, 4.99, '2007-02-21 07:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19212, 186, 1, 1192, 4.99, '2007-02-14 23:47:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19213, 186, 1, 1300, 2.99, '2007-02-15 08:04:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19214, 186, 1, 1663, 2.99, '2007-02-16 08:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19215, 186, 2, 2132, 4.99, '2007-02-17 19:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19216, 186, 2, 2875, 4.99, '2007-02-19 23:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19217, 186, 1, 3039, 4.99, '2007-02-20 11:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19218, 187, 2, 1323, 6.99, '2007-02-15 09:23:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19219, 187, 2, 1462, 4.99, '2007-02-15 19:06:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19220, 187, 2, 1592, 0.99, '2007-02-16 03:43:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19221, 187, 2, 2127, 0.99, '2007-02-17 19:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19222, 187, 2, 2533, 0.99, '2007-02-19 00:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19223, 187, 1, 2742, 5.99, '2007-02-19 14:34:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19224, 187, 1, 3402, 2.99, '2007-02-21 14:23:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19225, 188, 2, 1527, 2.99, '2007-02-15 23:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19226, 188, 2, 1927, 0.99, '2007-02-17 05:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19227, 188, 1, 2515, 4.99, '2007-02-18 22:25:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19228, 188, 2, 2733, 4.99, '2007-02-19 13:50:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19229, 189, 1, 1541, 0.99, '2007-02-15 23:44:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19230, 189, 1, 1834, 0.99, '2007-02-16 21:17:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19231, 189, 2, 2905, 1.99, '2007-02-20 01:24:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19232, 189, 1, 3108, 6.99, '2007-02-20 15:57:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19233, 189, 1, 3346, 2.99, '2007-02-21 09:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19234, 190, 1, 1319, 2.99, '2007-02-15 09:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19235, 190, 1, 1347, 2.99, '2007-02-15 11:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19236, 190, 1, 2057, 4.99, '2007-02-17 14:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19237, 190, 1, 2568, 3.99, '2007-02-19 02:37:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19238, 190, 1, 3386, 4.99, '2007-02-21 12:49:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19239, 191, 2, 1173, 2.99, '2007-02-14 22:23:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19240, 191, 1, 1278, 0.99, '2007-02-15 06:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19241, 191, 1, 1677, 2.99, '2007-02-16 09:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19242, 191, 2, 1870, 2.99, '2007-02-17 00:53:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19243, 191, 1, 2051, 4.99, '2007-02-17 13:38:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19244, 191, 2, 2555, 2.99, '2007-02-19 01:35:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19245, 192, 1, 2760, 3.99, '2007-02-19 15:44:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19246, 193, 1, 1325, 4.99, '2007-02-15 09:31:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19247, 193, 2, 2377, 6.99, '2007-02-18 13:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19248, 193, 2, 2841, 6.99, '2007-02-19 20:49:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19249, 193, 2, 2846, 4.99, '2007-02-19 21:20:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19250, 193, 2, 2880, 2.99, '2007-02-19 23:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19251, 193, 1, 3297, 8.99, '2007-02-21 05:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19252, 194, 1, 1430, 0.99, '2007-02-15 16:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19253, 194, 1, 2245, 7.99, '2007-02-18 03:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19254, 194, 1, 2347, 2.99, '2007-02-18 10:40:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19255, 194, 1, 2463, 3.99, '2007-02-18 18:30:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19256, 194, 1, 2807, 3.99, '2007-02-19 18:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19257, 196, 1, 1182, 5.99, '2007-02-14 23:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19258, 196, 1, 1348, 2.99, '2007-02-15 11:13:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19259, 196, 2, 1600, 0.99, '2007-02-16 04:32:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19260, 196, 1, 2681, 0.99, '2007-02-19 10:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19261, 196, 2, 2912, 4.99, '2007-02-20 02:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19262, 196, 1, 3104, 4.99, '2007-02-20 15:35:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19263, 196, 2, 3271, 5.99, '2007-02-21 03:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19264, 196, 2, 3342, 4.99, '2007-02-21 09:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19265, 197, 2, 1175, 2.99, '2007-02-14 22:43:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19266, 197, 1, 1363, 0.99, '2007-02-15 12:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19267, 197, 1, 1503, 2.99, '2007-02-15 20:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19268, 197, 2, 1605, 8.99, '2007-02-16 04:46:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19269, 197, 2, 1919, 4.99, '2007-02-17 04:09:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19270, 197, 1, 2090, 2.99, '2007-02-17 16:34:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19271, 197, 1, 2750, 4.99, '2007-02-19 15:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19272, 197, 2, 2781, 2.99, '2007-02-19 16:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19273, 198, 2, 2185, 0.99, '2007-02-17 23:40:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19274, 199, 1, 1406, 4.99, '2007-02-15 15:12:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19275, 199, 1, 1910, 2.99, '2007-02-17 03:39:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19276, 199, 1, 3299, 0.99, '2007-02-21 05:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19277, 200, 2, 1296, 1.99, '2007-02-15 07:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19278, 200, 2, 1309, 4.99, '2007-02-15 08:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19279, 200, 2, 1899, 6.99, '2007-02-17 02:57:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19280, 200, 1, 2227, 4.99, '2007-02-18 02:11:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19281, 200, 2, 2667, 3.99, '2007-02-19 09:57:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19282, 200, 2, 2717, 4.99, '2007-02-19 13:14:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19283, 200, 1, 3190, 3.99, '2007-02-20 21:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19284, 201, 1, 2047, 1.99, '2007-02-17 13:09:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19285, 201, 1, 2157, 3.99, '2007-02-17 21:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19286, 201, 2, 2359, 6.99, '2007-02-18 11:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19287, 201, 1, 3106, 4.99, '2007-02-20 15:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19288, 201, 1, 3364, 7.99, '2007-02-21 11:06:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19289, 209, 2, 1201, 4.99, '2007-02-15 00:34:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19290, 209, 1, 1657, 4.99, '2007-02-16 08:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19291, 209, 1, 2650, 4.99, '2007-02-19 08:50:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19292, 209, 1, 2796, 4.99, '2007-02-19 17:29:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19293, 210, 2, 1177, 2.99, '2007-02-14 23:01:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19294, 210, 2, 2856, 0.99, '2007-02-19 21:41:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19295, 211, 2, 2812, 8.99, '2007-02-19 18:26:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19296, 211, 2, 3437, 6.99, '2007-02-21 17:48:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19297, 212, 1, 1356, 0.99, '2007-02-15 11:45:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19298, 212, 2, 1379, 0.99, '2007-02-15 13:33:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19299, 212, 1, 1637, 2.99, '2007-02-16 06:58:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19300, 212, 2, 2739, 9.99, '2007-02-19 14:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19301, 213, 1, 1489, 0.99, '2007-02-15 20:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19302, 213, 2, 1936, 4.99, '2007-02-17 05:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19303, 213, 1, 2322, 5.99, '2007-02-18 08:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19304, 213, 1, 2509, 0.99, '2007-02-18 22:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19305, 213, 2, 2569, 6.99, '2007-02-19 02:47:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19306, 213, 1, 2889, 4.99, '2007-02-20 00:22:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19307, 213, 2, 2946, 4.99, '2007-02-20 04:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19308, 213, 1, 3252, 2.99, '2007-02-21 01:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19309, 213, 1, 3313, 2.99, '2007-02-21 06:39:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19310, 214, 2, 1275, 4.99, '2007-02-15 06:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19311, 214, 2, 2085, 2.99, '2007-02-17 15:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19312, 214, 2, 2868, 2.99, '2007-02-19 22:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19313, 215, 2, 1376, 4.99, '2007-02-15 13:27:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19314, 215, 2, 1599, 4.99, '2007-02-16 04:31:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19315, 215, 2, 1845, 4.99, '2007-02-16 22:24:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19316, 215, 2, 2006, 2.99, '2007-02-17 10:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19317, 215, 2, 2918, 2.99, '2007-02-20 02:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19318, 215, 1, 3143, 2.99, '2007-02-20 18:30:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19319, 216, 2, 1461, 6.99, '2007-02-15 19:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19320, 216, 1, 1664, 0.99, '2007-02-16 08:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19321, 216, 1, 1672, 3.99, '2007-02-16 09:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19322, 216, 2, 2351, 0.99, '2007-02-18 10:56:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19323, 216, 1, 3432, 2.99, '2007-02-21 17:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19324, 217, 1, 1322, 2.99, '2007-02-15 09:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19325, 217, 1, 2076, 6.99, '2007-02-17 15:12:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19326, 217, 1, 2842, 4.99, '2007-02-19 21:02:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19327, 218, 1, 1459, 2.99, '2007-02-15 18:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19328, 218, 1, 2262, 0.99, '2007-02-18 04:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19329, 218, 1, 2267, 0.99, '2007-02-18 04:38:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19330, 219, 2, 2417, 3.99, '2007-02-18 15:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19331, 219, 2, 2580, 0.99, '2007-02-19 03:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19332, 220, 1, 1832, 0.99, '2007-02-16 21:03:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19333, 221, 1, 1369, 0.99, '2007-02-15 12:57:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19334, 221, 1, 2331, 2.99, '2007-02-18 09:18:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19335, 221, 2, 2473, 2.99, '2007-02-18 19:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19336, 221, 1, 2660, 10.99, '2007-02-19 09:18:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19337, 221, 1, 3200, 5.99, '2007-02-20 22:51:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19338, 222, 1, 1368, 8.99, '2007-02-15 12:56:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19339, 222, 2, 2603, 6.99, '2007-02-19 04:49:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19340, 223, 2, 1839, 5.99, '2007-02-16 21:50:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19341, 223, 1, 2334, 4.99, '2007-02-18 09:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19342, 224, 1, 1424, 7.99, '2007-02-15 16:36:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19343, 224, 1, 2277, 2.99, '2007-02-18 05:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19344, 224, 2, 3282, 4.99, '2007-02-21 04:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19345, 225, 2, 2226, 7.99, '2007-02-18 02:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19346, 226, 2, 3414, 2.99, '2007-02-21 15:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19347, 226, 1, 3466, 4.99, '2007-02-21 20:41:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19348, 227, 1, 1679, 2.99, '2007-02-16 09:39:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19349, 227, 2, 2155, 1.99, '2007-02-17 21:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19350, 227, 1, 2164, 6.99, '2007-02-17 22:14:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19351, 227, 2, 3065, 0.99, '2007-02-20 12:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19352, 228, 2, 2284, 3.99, '2007-02-18 05:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19353, 228, 2, 2863, 2.99, '2007-02-19 22:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19354, 228, 2, 2934, 2.99, '2007-02-20 03:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19355, 228, 2, 3433, 3.99, '2007-02-21 17:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19356, 229, 1, 2200, 4.99, '2007-02-18 00:27:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19357, 229, 1, 3208, 0.99, '2007-02-20 23:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19358, 229, 1, 3277, 7.99, '2007-02-21 04:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19359, 229, 2, 3280, 0.99, '2007-02-21 04:36:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19360, 230, 2, 1468, 3.99, '2007-02-15 19:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19361, 230, 1, 1744, 4.99, '2007-02-16 15:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19362, 230, 2, 1793, 0.99, '2007-02-16 18:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19363, 230, 2, 2450, 8.99, '2007-02-18 17:54:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19364, 230, 2, 2675, 0.99, '2007-02-19 10:20:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19365, 230, 1, 2777, 0.99, '2007-02-19 16:44:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19366, 231, 2, 2423, 0.99, '2007-02-18 16:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19367, 232, 2, 1619, 0.99, '2007-02-16 05:42:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19368, 232, 1, 2833, 8.99, '2007-02-19 20:03:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19369, 233, 2, 1992, 2.99, '2007-02-17 09:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19370, 233, 2, 2244, 2.99, '2007-02-18 03:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19371, 233, 1, 2424, 2.99, '2007-02-18 16:03:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19372, 233, 2, 2443, 4.99, '2007-02-18 17:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19373, 234, 2, 1245, 3.99, '2007-02-15 03:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19374, 234, 2, 1645, 0.99, '2007-02-16 07:38:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19375, 234, 1, 1674, 2.99, '2007-02-16 09:25:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19376, 234, 2, 1993, 5.99, '2007-02-17 09:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19377, 234, 1, 2005, 4.99, '2007-02-17 10:13:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19378, 234, 2, 2511, 5.99, '2007-02-18 22:13:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19379, 234, 2, 3185, 6.99, '2007-02-20 21:26:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19380, 234, 2, 3199, 4.99, '2007-02-20 22:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19381, 235, 1, 1493, 4.99, '2007-02-15 20:18:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19382, 235, 2, 1811, 0.99, '2007-02-16 19:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19383, 236, 1, 1262, 0.99, '2007-02-15 05:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19384, 236, 2, 1308, 5.99, '2007-02-15 08:36:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19385, 236, 2, 2139, 8.99, '2007-02-17 19:58:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19386, 236, 2, 2311, 6.99, '2007-02-18 07:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19387, 236, 1, 2630, 2.99, '2007-02-19 07:15:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19388, 236, 2, 2840, 3.99, '2007-02-19 20:46:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19389, 236, 1, 3353, 4.99, '2007-02-21 09:57:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19390, 236, 2, 3460, 2.99, '2007-02-21 20:15:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19391, 237, 1, 1500, 0.99, '2007-02-15 20:29:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19392, 237, 2, 1518, 0.99, '2007-02-15 22:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19393, 237, 1, 2156, 4.99, '2007-02-17 21:36:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19394, 237, 1, 2492, 2.99, '2007-02-18 20:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19395, 237, 2, 3069, 2.99, '2007-02-20 12:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19396, 238, 1, 1199, 2.99, '2007-02-15 00:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19397, 238, 1, 1660, 4.99, '2007-02-16 08:41:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19398, 238, 1, 3181, 2.99, '2007-02-20 21:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19399, 239, 1, 1160, 4.99, '2007-02-14 21:29:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19400, 239, 2, 1560, 4.99, '2007-02-16 01:05:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19401, 239, 2, 2215, 2.99, '2007-02-18 01:16:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19402, 239, 1, 2390, 4.99, '2007-02-18 13:57:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19403, 239, 1, 3383, 5.99, '2007-02-21 12:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19404, 240, 2, 2196, 3.99, '2007-02-18 00:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19405, 240, 1, 2264, 4.99, '2007-02-18 04:27:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19406, 240, 2, 2872, 5.99, '2007-02-19 23:06:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19407, 241, 2, 2428, 0.99, '2007-02-18 16:16:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19408, 241, 1, 2455, 0.99, '2007-02-18 18:01:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19409, 241, 2, 2478, 5.99, '2007-02-18 19:29:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19410, 241, 2, 2683, 2.99, '2007-02-19 10:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19411, 241, 2, 3258, 0.99, '2007-02-21 02:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19412, 242, 2, 1304, 4.99, '2007-02-15 08:24:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19413, 242, 1, 1384, 4.99, '2007-02-15 13:50:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19414, 242, 1, 1483, 4.99, '2007-02-15 19:50:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19415, 242, 2, 1702, 4.99, '2007-02-16 11:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19416, 242, 1, 2691, 4.99, '2007-02-19 11:35:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19417, 242, 2, 2942, 4.99, '2007-02-20 03:55:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19418, 243, 1, 1405, 5.99, '2007-02-15 15:09:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19419, 243, 1, 1452, 0.99, '2007-02-15 18:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19420, 243, 2, 2757, 5.99, '2007-02-19 15:29:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19421, 244, 2, 1189, 6.99, '2007-02-14 23:32:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19422, 244, 1, 1595, 5.99, '2007-02-16 03:52:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19423, 244, 2, 2955, 3.99, '2007-02-20 05:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19424, 245, 1, 1377, 2.99, '2007-02-15 13:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19425, 245, 1, 2122, 2.99, '2007-02-17 19:16:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19426, 245, 1, 3157, 2.99, '2007-02-20 19:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19427, 246, 2, 1448, 1.99, '2007-02-15 17:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19428, 246, 1, 1968, 2.99, '2007-02-17 07:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19429, 246, 2, 2704, 1.99, '2007-02-19 12:18:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19430, 246, 1, 2725, 0.99, '2007-02-19 13:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19431, 246, 1, 3152, 4.99, '2007-02-20 19:11:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19432, 247, 1, 2288, 5.99, '2007-02-18 05:51:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19433, 248, 1, 2066, 3.99, '2007-02-17 14:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19434, 248, 2, 2371, 0.99, '2007-02-18 13:03:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19435, 249, 1, 1204, 0.99, '2007-02-15 00:50:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19436, 249, 1, 1473, 5.99, '2007-02-15 19:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19437, 249, 2, 1753, 2.99, '2007-02-16 15:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19438, 249, 2, 2129, 1.99, '2007-02-17 19:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19439, 249, 2, 3175, 7.99, '2007-02-20 20:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19440, 250, 1, 2432, 4.99, '2007-02-18 16:27:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19441, 251, 1, 2238, 6.99, '2007-02-18 02:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19442, 251, 2, 3422, 7.99, '2007-02-21 15:53:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19443, 251, 1, 3464, 2.99, '2007-02-21 20:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19444, 252, 1, 1395, 5.99, '2007-02-15 14:49:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19445, 252, 2, 2716, 4.99, '2007-02-19 13:08:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19446, 252, 1, 2968, 0.99, '2007-02-20 06:10:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19447, 253, 2, 1378, 1.99, '2007-02-15 13:31:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19448, 253, 2, 1606, 6.99, '2007-02-16 04:46:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19449, 253, 2, 2081, 5.99, '2007-02-17 15:33:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19450, 253, 1, 2142, 4.99, '2007-02-17 20:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19451, 253, 1, 2454, 4.99, '2007-02-18 18:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19452, 253, 2, 2636, 4.99, '2007-02-19 07:41:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19453, 254, 1, 1285, 2.99, '2007-02-15 07:01:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19454, 254, 2, 1390, 0.99, '2007-02-15 14:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19455, 254, 1, 2082, 2.99, '2007-02-17 15:41:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19456, 254, 1, 2138, 2.99, '2007-02-17 19:56:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19457, 254, 2, 2687, 3.99, '2007-02-19 11:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19458, 255, 1, 1235, 2.99, '2007-02-15 02:59:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19459, 255, 1, 1420, 6.99, '2007-02-15 16:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19460, 255, 2, 1681, 2.99, '2007-02-16 10:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19461, 255, 2, 3442, 2.99, '2007-02-21 18:35:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19462, 256, 1, 1555, 2.99, '2007-02-16 00:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19463, 256, 2, 1965, 0.99, '2007-02-17 07:46:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19464, 256, 2, 1973, 4.99, '2007-02-17 07:54:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19465, 256, 2, 2230, 4.99, '2007-02-18 02:19:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19466, 256, 1, 2380, 6.99, '2007-02-18 13:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19467, 256, 2, 2561, 4.99, '2007-02-19 01:43:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19468, 256, 1, 2839, 4.99, '2007-02-19 20:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19469, 257, 1, 2557, 0.99, '2007-02-19 01:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19470, 257, 2, 3083, 4.99, '2007-02-20 14:02:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19471, 258, 1, 1743, 2.99, '2007-02-16 15:06:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19472, 258, 2, 2678, 0.99, '2007-02-19 10:40:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19473, 258, 2, 2931, 8.99, '2007-02-20 03:19:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19474, 259, 1, 1641, 7.99, '2007-02-16 07:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19475, 259, 2, 1723, 7.99, '2007-02-16 13:42:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19476, 259, 2, 1813, 2.99, '2007-02-16 19:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19477, 259, 2, 2375, 5.99, '2007-02-18 13:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19478, 260, 1, 1626, 3.99, '2007-02-16 06:18:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19479, 260, 2, 2001, 2.99, '2007-02-17 10:03:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19480, 260, 2, 2040, 2.99, '2007-02-17 12:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19481, 260, 1, 2091, 10.99, '2007-02-17 16:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19482, 260, 1, 2178, 0.99, '2007-02-17 23:07:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19483, 260, 1, 2823, 7.99, '2007-02-19 18:58:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19484, 260, 2, 2958, 3.99, '2007-02-20 05:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19485, 260, 1, 3193, 0.99, '2007-02-20 22:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19486, 261, 1, 1760, 2.99, '2007-02-16 16:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19487, 261, 1, 1877, 5.99, '2007-02-17 01:22:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19488, 261, 2, 1988, 8.99, '2007-02-17 09:11:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19489, 261, 2, 2072, 3.99, '2007-02-17 15:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19490, 261, 2, 2392, 0.99, '2007-02-18 14:02:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19491, 261, 1, 3363, 0.99, '2007-02-21 10:53:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19492, 262, 1, 1563, 2.99, '2007-02-16 01:14:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19493, 262, 1, 2771, 6.99, '2007-02-19 16:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19494, 262, 2, 2850, 8.99, '2007-02-19 21:34:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19495, 262, 1, 2915, 1.99, '2007-02-20 02:25:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19496, 263, 2, 2126, 8.99, '2007-02-17 19:23:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19497, 263, 2, 3257, 1.99, '2007-02-21 02:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19498, 264, 2, 1165, 3.99, '2007-02-14 21:44:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19499, 264, 1, 1206, 4.99, '2007-02-15 00:55:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19500, 264, 1, 3028, 0.99, '2007-02-20 10:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19501, 264, 1, 3403, 3.99, '2007-02-21 14:23:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19502, 265, 2, 2027, 7.99, '2007-02-17 11:35:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19503, 265, 2, 2562, 4.99, '2007-02-19 01:43:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19504, 265, 1, 2598, 2.99, '2007-02-19 04:28:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19505, 266, 2, 1280, 5.99, '2007-02-15 06:44:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19506, 266, 2, 2065, 4.99, '2007-02-17 14:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19507, 266, 2, 3002, 4.99, '2007-02-20 08:24:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19508, 266, 1, 3059, 4.99, '2007-02-20 12:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19509, 267, 2, 1257, 4.99, '2007-02-15 04:44:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19510, 267, 2, 1349, 4.99, '2007-02-15 11:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19511, 267, 2, 2265, 2.99, '2007-02-18 04:31:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19512, 267, 2, 2578, 7.99, '2007-02-19 03:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19513, 267, 1, 2582, 6.99, '2007-02-19 03:24:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19514, 267, 2, 2699, 2.99, '2007-02-19 11:57:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19515, 267, 2, 2754, 4.99, '2007-02-19 15:24:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19516, 267, 1, 2877, 1.99, '2007-02-19 23:35:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19517, 267, 2, 3090, 0.99, '2007-02-20 14:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19518, 16, 1, 4591, 1.99, '2007-02-18 03:24:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19519, 267, 1, 10343, 2.99, '2007-03-01 03:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19520, 267, 2, 11373, 0.99, '2007-03-02 16:42:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19521, 267, 1, 11690, 6.99, '2007-03-17 05:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19522, 267, 1, 12320, 4.99, '2007-03-18 04:55:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19523, 267, 1, 12979, 4.99, '2007-03-19 05:29:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19524, 267, 2, 13236, 9.99, '2007-03-19 14:46:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19525, 267, 1, 14131, 5.99, '2007-03-21 00:12:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19526, 267, 2, 15020, 3.99, '2007-03-22 07:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19527, 267, 1, 15208, 3.99, '2007-03-22 15:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19528, 267, 1, 15768, 0.99, '2007-03-23 11:43:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19529, 267, 1, 15903, 3.99, '2007-03-23 15:59:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19530, 268, 2, 11462, 7.99, '2007-03-02 20:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19531, 268, 2, 11828, 6.99, '2007-03-17 11:16:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19532, 268, 2, 12007, 2.99, '2007-03-17 17:39:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19533, 268, 2, 12694, 4.99, '2007-03-18 18:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19534, 268, 2, 13880, 5.99, '2007-03-20 13:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19535, 268, 2, 14249, 4.99, '2007-03-21 04:06:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19536, 268, 2, 14373, 4.99, '2007-03-21 08:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19537, 268, 1, 14874, 0.99, '2007-03-22 02:00:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19538, 268, 2, 15183, 2.99, '2007-03-22 14:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19539, 269, 2, 10566, 2.99, '2007-03-01 11:40:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19540, 269, 1, 10908, 4.99, '2007-03-02 00:21:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19541, 269, 1, 11014, 4.99, '2007-03-02 03:40:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19542, 269, 1, 11915, 3.99, '2007-03-17 14:33:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19543, 269, 1, 12344, 4.99, '2007-03-18 05:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19544, 269, 2, 13142, 5.99, '2007-03-19 11:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19545, 269, 2, 13759, 2.99, '2007-03-20 09:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19546, 269, 1, 14266, 4.99, '2007-03-21 04:49:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19547, 269, 2, 14693, 6.99, '2007-03-21 19:12:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19548, 269, 2, 15788, 2.99, '2007-03-23 12:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19549, 270, 1, 10461, 7.99, '2007-03-01 08:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19550, 270, 2, 10579, 5.99, '2007-03-01 12:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19551, 270, 2, 10648, 4.99, '2007-03-01 14:37:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19552, 270, 1, 11389, 2.99, '2007-03-02 17:07:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19553, 270, 1, 11810, 0.99, '2007-03-17 10:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19554, 270, 2, 11841, 2.99, '2007-03-17 11:40:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19555, 270, 1, 11917, 2.99, '2007-03-17 14:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19556, 270, 1, 12192, 2.99, '2007-03-18 00:30:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19557, 270, 1, 12442, 2.99, '2007-03-18 09:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19558, 270, 2, 13945, 1.99, '2007-03-20 16:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19559, 270, 1, 14618, 0.99, '2007-03-21 16:38:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19560, 270, 2, 15620, 6.99, '2007-03-23 05:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19561, 271, 2, 10310, 4.99, '2007-03-01 02:53:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19562, 271, 1, 10599, 3.99, '2007-03-01 12:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19563, 271, 1, 11431, 2.99, '2007-03-02 18:33:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19564, 271, 1, 12219, 4.99, '2007-03-18 01:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19565, 271, 2, 14234, 0.99, '2007-03-21 03:35:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19566, 271, 2, 14355, 4.99, '2007-03-21 07:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19567, 271, 1, 15244, 2.99, '2007-03-22 16:17:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19568, 272, 1, 10736, 2.99, '2007-03-01 17:58:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19569, 272, 2, 11003, 2.99, '2007-03-02 03:31:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19570, 272, 2, 11597, 8.99, '2007-03-17 01:31:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19571, 272, 1, 11881, 0.99, '2007-03-17 13:00:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19572, 272, 2, 12006, 6.99, '2007-03-17 17:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19573, 272, 2, 13274, 2.99, '2007-03-19 16:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19574, 272, 1, 13903, 2.99, '2007-03-20 14:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19575, 273, 1, 10272, 8.99, '2007-03-01 01:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19576, 273, 1, 10753, 3.99, '2007-03-01 18:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19577, 273, 1, 10768, 6.99, '2007-03-01 19:07:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19578, 273, 1, 11282, 4.99, '2007-03-02 13:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19579, 273, 2, 11509, 4.99, '2007-03-16 21:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19580, 273, 1, 12692, 0.99, '2007-03-18 18:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19581, 273, 2, 13738, 4.99, '2007-03-20 09:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19582, 273, 1, 13955, 5.99, '2007-03-20 16:33:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19583, 273, 2, 14092, 4.99, '2007-03-20 22:42:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19584, 273, 2, 14558, 2.99, '2007-03-21 14:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19585, 273, 2, 14911, 2.99, '2007-03-22 03:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19586, 273, 2, 15372, 2.99, '2007-03-22 20:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19587, 273, 1, 15760, 6.99, '2007-03-23 11:18:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19588, 274, 1, 10790, 1.99, '2007-03-01 20:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19589, 274, 2, 10855, 0.99, '2007-03-01 22:35:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19590, 274, 1, 11058, 3.99, '2007-03-02 05:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19591, 274, 2, 11363, 2.99, '2007-03-02 16:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19592, 274, 1, 12321, 3.99, '2007-03-18 04:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19593, 274, 1, 13103, 2.99, '2007-03-19 09:34:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19594, 274, 2, 13129, 8.99, '2007-03-19 10:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19595, 274, 1, 13549, 8.99, '2007-03-20 02:27:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19596, 274, 1, 14012, 0.99, '2007-03-20 19:10:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19597, 274, 1, 14066, 7.99, '2007-03-20 21:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19598, 274, 2, 14164, 7.99, '2007-03-21 01:26:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19599, 274, 1, 14388, 4.99, '2007-03-21 08:43:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19600, 274, 2, 15143, 2.99, '2007-03-22 12:14:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19601, 274, 1, 15260, 2.99, '2007-03-22 16:52:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19602, 274, 2, 15328, 2.99, '2007-03-22 19:00:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19603, 274, 2, 15819, 3.99, '2007-03-23 13:30:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19604, 275, 1, 10479, 6.99, '2007-03-01 08:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19605, 275, 2, 11309, 1.99, '2007-03-02 14:19:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19606, 275, 1, 11610, 4.99, '2007-03-17 02:12:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19607, 275, 2, 12589, 5.99, '2007-03-18 14:34:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19608, 275, 1, 12606, 1.99, '2007-03-18 15:30:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19609, 275, 1, 13037, 3.99, '2007-03-19 07:22:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19610, 275, 2, 13860, 2.99, '2007-03-20 13:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19611, 275, 2, 13865, 1.99, '2007-03-20 13:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19612, 275, 2, 13902, 0.99, '2007-03-20 14:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19613, 275, 2, 14063, 0.99, '2007-03-20 21:05:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19614, 275, 1, 14187, 5.99, '2007-03-21 02:00:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19615, 275, 1, 14296, 2.99, '2007-03-21 05:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19616, 275, 2, 14483, 5.99, '2007-03-21 12:12:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19617, 275, 2, 14727, 4.99, '2007-03-21 20:41:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19618, 275, 2, 15269, 2.99, '2007-03-22 17:08:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19619, 275, 2, 15496, 3.99, '2007-03-23 00:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19620, 276, 2, 10691, 0.99, '2007-03-01 16:38:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19621, 276, 1, 10763, 2.99, '2007-03-01 19:00:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19622, 276, 2, 11085, 2.99, '2007-03-02 06:05:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19623, 276, 1, 11636, 4.99, '2007-03-17 03:04:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19624, 276, 2, 11961, 3.99, '2007-03-17 15:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19625, 276, 2, 12178, 5.99, '2007-03-17 23:45:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19626, 276, 2, 12251, 4.99, '2007-03-18 02:27:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19627, 276, 1, 12650, 4.99, '2007-03-18 17:01:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19628, 276, 1, 14000, 4.99, '2007-03-20 18:34:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19629, 276, 2, 15718, 2.99, '2007-03-23 09:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19630, 276, 1, 15769, 3.99, '2007-03-23 11:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19631, 276, 2, 15923, 4.99, '2007-03-23 16:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19632, 277, 2, 11074, 3.99, '2007-03-02 05:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19633, 277, 2, 11162, 4.99, '2007-03-02 08:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19634, 277, 2, 11574, 0.99, '2007-03-17 00:06:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19635, 277, 2, 12149, 3.99, '2007-03-17 22:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19636, 277, 1, 12458, 5.99, '2007-03-18 09:51:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19637, 277, 1, 13122, 4.99, '2007-03-19 10:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19638, 277, 2, 13526, 4.99, '2007-03-20 01:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19639, 277, 1, 13714, 4.99, '2007-03-20 08:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19640, 277, 2, 14227, 4.99, '2007-03-21 03:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19641, 277, 2, 14745, 4.99, '2007-03-21 21:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19642, 277, 1, 15008, 10.99, '2007-03-22 06:52:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19643, 277, 1, 15345, 5.99, '2007-03-22 19:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19644, 278, 1, 10649, 2.99, '2007-03-01 14:40:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19645, 278, 1, 10731, 2.99, '2007-03-01 17:50:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19646, 278, 2, 10849, 3.99, '2007-03-01 22:19:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19647, 278, 1, 11095, 5.99, '2007-03-02 06:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19648, 278, 2, 11531, 0.99, '2007-03-16 22:58:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19649, 278, 1, 12787, 0.99, '2007-03-18 22:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19650, 278, 1, 13896, 0.99, '2007-03-20 14:28:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19651, 278, 2, 13976, 0.99, '2007-03-20 17:30:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19652, 278, 1, 14268, 2.99, '2007-03-21 04:49:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19653, 278, 2, 14803, 0.99, '2007-03-21 23:17:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19654, 278, 1, 14986, 4.99, '2007-03-22 06:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19655, 278, 1, 16019, 4.99, '2007-03-23 19:59:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19656, 279, 2, 11250, 6.99, '2007-03-02 12:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19657, 279, 1, 11515, 2.99, '2007-03-16 22:23:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19658, 279, 1, 11703, 4.99, '2007-03-17 05:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19659, 279, 2, 12935, 2.99, '2007-03-19 03:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19660, 279, 1, 12949, 4.99, '2007-03-19 04:24:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19661, 279, 1, 13105, 7.99, '2007-03-19 09:34:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19662, 279, 1, 13233, 2.99, '2007-03-19 14:43:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19663, 279, 2, 13588, 4.99, '2007-03-20 04:15:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19664, 279, 2, 14206, 2.99, '2007-03-21 02:27:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19665, 279, 1, 14714, 3.99, '2007-03-21 19:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19666, 279, 1, 14779, 5.99, '2007-03-21 22:29:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19667, 279, 1, 14789, 4.99, '2007-03-21 22:58:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19668, 279, 2, 15580, 6.99, '2007-03-23 04:07:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19669, 279, 1, 15606, 2.99, '2007-03-23 05:18:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19670, 280, 1, 10847, 9.99, '2007-03-01 22:17:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19671, 280, 1, 11366, 4.99, '2007-03-02 16:29:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19672, 280, 1, 11517, 2.99, '2007-03-16 22:24:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19673, 280, 1, 12053, 4.99, '2007-03-17 19:25:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19674, 280, 1, 12849, 5.99, '2007-03-19 00:34:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19675, 280, 2, 13231, 9.99, '2007-03-19 14:41:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19676, 280, 1, 13321, 4.99, '2007-03-19 18:09:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19677, 280, 1, 13667, 4.99, '2007-03-20 06:54:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19678, 280, 2, 15036, 2.99, '2007-03-22 08:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19679, 280, 1, 15312, 4.99, '2007-03-22 18:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19680, 280, 2, 15554, 5.99, '2007-03-23 03:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19681, 280, 2, 15950, 5.99, '2007-03-23 17:38:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19682, 281, 1, 13641, 2.99, '2007-03-20 06:03:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19683, 281, 1, 14196, 1.99, '2007-03-21 02:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19684, 282, 2, 11226, 2.99, '2007-03-02 11:15:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19685, 282, 1, 13278, 2.99, '2007-03-19 16:26:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19686, 282, 2, 13749, 2.99, '2007-03-20 09:29:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19687, 282, 2, 15543, 4.99, '2007-03-23 02:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19688, 283, 1, 11637, 0.99, '2007-03-17 03:05:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19689, 283, 2, 11846, 2.99, '2007-03-17 11:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19690, 283, 2, 11966, 0.99, '2007-03-17 16:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19691, 283, 1, 12290, 6.99, '2007-03-18 03:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19692, 283, 1, 13229, 2.99, '2007-03-19 14:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19693, 283, 1, 15837, 2.99, '2007-03-23 13:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19694, 284, 1, 10396, 7.99, '2007-03-01 05:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19695, 284, 1, 10535, 4.99, '2007-03-01 10:49:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19696, 284, 2, 12162, 3.99, '2007-03-17 23:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19697, 284, 1, 14007, 5.99, '2007-03-20 18:51:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19698, 284, 1, 14648, 4.99, '2007-03-21 17:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19699, 284, 2, 14746, 4.99, '2007-03-21 21:22:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19700, 284, 1, 14921, 4.99, '2007-03-22 03:40:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19701, 284, 2, 15135, 3.99, '2007-03-22 11:47:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19702, 285, 1, 10493, 5.99, '2007-03-01 09:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19703, 285, 2, 10628, 2.99, '2007-03-01 14:01:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19704, 285, 1, 10641, 4.99, '2007-03-01 14:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19705, 285, 1, 12027, 8.99, '2007-03-17 18:29:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19706, 285, 1, 12444, 0.99, '2007-03-18 09:21:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19707, 285, 1, 12449, 0.99, '2007-03-18 09:31:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19708, 285, 2, 12687, 9.99, '2007-03-18 18:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19709, 285, 2, 13102, 7.99, '2007-03-19 09:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19710, 285, 2, 15251, 0.99, '2007-03-22 16:32:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19711, 285, 1, 15489, 4.99, '2007-03-23 00:35:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19712, 286, 2, 11670, 0.99, '2007-03-17 04:17:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19713, 286, 2, 12595, 0.99, '2007-03-18 14:55:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19714, 286, 1, 12656, 0.99, '2007-03-18 17:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19715, 286, 2, 13635, 5.99, '2007-03-20 05:46:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19716, 286, 1, 13975, 4.99, '2007-03-20 17:26:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19717, 286, 1, 14905, 0.99, '2007-03-22 03:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19718, 286, 2, 15629, 4.99, '2007-03-23 05:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19719, 287, 2, 10574, 2.99, '2007-03-01 12:05:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19720, 287, 2, 10807, 4.99, '2007-03-01 20:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19721, 287, 2, 11106, 4.99, '2007-03-02 06:46:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19722, 287, 1, 11716, 4.99, '2007-03-17 06:09:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19723, 287, 2, 12861, 2.99, '2007-03-19 00:58:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19724, 287, 2, 14715, 6.99, '2007-03-21 19:56:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19725, 287, 2, 15076, 1.99, '2007-03-22 09:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19726, 287, 1, 15084, 4.99, '2007-03-22 09:46:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19727, 287, 2, 15127, 0.99, '2007-03-22 11:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19728, 287, 1, 15614, 2.99, '2007-03-23 05:33:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19729, 288, 1, 10927, 9.99, '2007-03-02 00:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19730, 288, 2, 11952, 2.99, '2007-03-17 15:43:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19731, 288, 1, 12134, 1.99, '2007-03-17 22:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19732, 288, 1, 13219, 2.99, '2007-03-19 14:08:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19733, 288, 1, 13227, 0.99, '2007-03-19 14:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19734, 288, 2, 13363, 2.99, '2007-03-19 19:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19735, 288, 2, 14113, 0.99, '2007-03-20 23:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19736, 288, 2, 14756, 0.99, '2007-03-21 21:49:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19737, 288, 2, 15058, 2.99, '2007-03-22 08:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19738, 288, 1, 15119, 2.99, '2007-03-22 11:09:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19739, 289, 2, 10297, 7.99, '2007-03-01 02:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19740, 289, 1, 12158, 1.99, '2007-03-17 23:02:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19741, 289, 1, 12170, 0.99, '2007-03-17 23:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19742, 289, 2, 12558, 7.99, '2007-03-18 13:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19743, 289, 2, 13165, 0.99, '2007-03-19 12:02:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19744, 289, 2, 13211, 0.99, '2007-03-19 13:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19745, 289, 2, 13256, 9.99, '2007-03-19 15:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19746, 289, 2, 13336, 5.99, '2007-03-19 18:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19747, 289, 2, 13891, 6.99, '2007-03-20 14:10:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19748, 289, 1, 14087, 0.99, '2007-03-20 22:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19749, 289, 2, 14729, 4.99, '2007-03-21 20:45:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19750, 289, 2, 14917, 4.99, '2007-03-22 03:32:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19751, 290, 1, 10901, 2.99, '2007-03-02 00:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19752, 290, 1, 11596, 6.99, '2007-03-17 01:22:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19753, 290, 2, 12193, 3.99, '2007-03-18 00:32:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19754, 290, 2, 12778, 4.99, '2007-03-18 22:08:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19755, 290, 2, 13190, 1.99, '2007-03-19 12:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19756, 290, 1, 13367, 2.99, '2007-03-19 19:47:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19757, 290, 2, 13687, 2.99, '2007-03-20 07:26:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19758, 291, 1, 10463, 4.99, '2007-03-01 08:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19759, 291, 2, 11145, 0.99, '2007-03-02 08:11:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19760, 291, 1, 13665, 5.99, '2007-03-20 06:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19761, 291, 2, 14241, 4.99, '2007-03-21 03:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19762, 291, 2, 15663, 3.99, '2007-03-23 07:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19763, 292, 1, 11193, 4.99, '2007-03-02 09:59:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19764, 292, 1, 12739, 10.99, '2007-03-18 20:43:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19765, 292, 1, 13715, 2.99, '2007-03-20 08:11:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19766, 292, 1, 14499, 0.99, '2007-03-21 12:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19767, 292, 2, 14845, 4.99, '2007-03-22 00:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19768, 292, 1, 15117, 2.99, '2007-03-22 11:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19769, 293, 2, 11131, 1.99, '2007-03-02 07:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19770, 293, 1, 11576, 2.99, '2007-03-17 00:21:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19771, 293, 2, 13013, 6.99, '2007-03-19 06:24:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19772, 293, 1, 13029, 2.99, '2007-03-19 06:56:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19773, 293, 2, 13504, 5.99, '2007-03-20 00:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19774, 293, 1, 13817, 4.99, '2007-03-20 11:43:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19775, 293, 1, 14248, 6.99, '2007-03-21 04:04:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19776, 293, 1, 15258, 4.99, '2007-03-22 16:51:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19777, 293, 1, 15402, 8.99, '2007-03-22 21:46:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19778, 293, 1, 15508, 7.99, '2007-03-23 01:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19779, 293, 2, 15675, 5.99, '2007-03-23 07:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19780, 294, 1, 10551, 6.99, '2007-03-01 11:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19781, 294, 2, 10600, 2.99, '2007-03-01 12:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19782, 294, 2, 10642, 4.99, '2007-03-01 14:13:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19783, 294, 2, 11071, 2.99, '2007-03-02 05:39:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19784, 294, 1, 11390, 2.99, '2007-03-02 17:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19785, 294, 2, 11875, 4.99, '2007-03-17 12:45:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19786, 294, 2, 11981, 2.99, '2007-03-17 16:39:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19787, 294, 1, 12278, 5.99, '2007-03-18 03:15:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19788, 294, 1, 14474, 2.99, '2007-03-21 11:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19789, 294, 2, 14630, 7.99, '2007-03-21 17:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19790, 294, 1, 15839, 5.99, '2007-03-23 14:03:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19791, 295, 1, 10349, 3.99, '2007-03-01 03:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19792, 295, 2, 11083, 4.99, '2007-03-02 06:00:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19793, 295, 2, 11913, 5.99, '2007-03-17 14:21:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19794, 295, 2, 12041, 4.99, '2007-03-17 19:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19795, 295, 1, 12383, 0.99, '2007-03-18 07:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19796, 295, 1, 14264, 0.99, '2007-03-21 04:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19797, 295, 1, 14387, 6.99, '2007-03-21 08:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19798, 295, 1, 14514, 6.99, '2007-03-21 13:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19799, 296, 2, 11571, 4.99, '2007-03-17 00:06:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19800, 296, 2, 11825, 4.99, '2007-03-17 11:11:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19801, 296, 2, 12689, 3.99, '2007-03-18 18:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19802, 296, 2, 13471, 2.99, '2007-03-19 23:30:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19803, 296, 1, 13702, 2.99, '2007-03-20 07:55:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19804, 296, 1, 13819, 4.99, '2007-03-20 11:51:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19805, 296, 1, 13991, 1.99, '2007-03-20 17:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19806, 296, 2, 14571, 7.99, '2007-03-21 15:08:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19807, 296, 2, 15023, 2.99, '2007-03-22 07:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19808, 296, 2, 15866, 7.99, '2007-03-23 14:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19809, 297, 2, 10264, 4.99, '2007-03-01 01:31:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19810, 297, 2, 11269, 0.99, '2007-03-02 12:40:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19811, 297, 2, 11413, 0.99, '2007-03-02 18:03:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19812, 297, 2, 11585, 4.99, '2007-03-17 00:43:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19813, 297, 1, 11780, 2.99, '2007-03-17 09:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19814, 297, 1, 11784, 0.99, '2007-03-17 09:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19815, 297, 1, 12472, 10.99, '2007-03-18 10:27:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19816, 297, 1, 13330, 2.99, '2007-03-19 18:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19817, 297, 2, 13721, 4.99, '2007-03-20 08:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19818, 297, 1, 13888, 1.99, '2007-03-20 14:08:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19819, 297, 1, 14403, 5.99, '2007-03-21 09:09:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19820, 297, 2, 15582, 2.99, '2007-03-23 04:14:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19821, 297, 1, 15711, 4.99, '2007-03-23 09:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19822, 298, 2, 10248, 6.99, '2007-03-01 01:03:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19823, 298, 1, 11070, 0.99, '2007-03-02 05:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19824, 298, 2, 11288, 6.99, '2007-03-02 13:22:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19825, 298, 2, 12076, 0.99, '2007-03-17 20:26:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19826, 298, 1, 12765, 8.99, '2007-03-18 21:50:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19827, 298, 1, 13172, 0.99, '2007-03-19 12:17:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19828, 298, 1, 13244, 4.99, '2007-03-19 15:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19829, 298, 2, 14473, 0.99, '2007-03-21 11:47:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19830, 298, 1, 15245, 3.99, '2007-03-22 16:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19831, 298, 2, 15262, 4.99, '2007-03-22 16:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19832, 298, 1, 15643, 4.99, '2007-03-23 06:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19833, 299, 2, 10440, 2.99, '2007-03-01 07:22:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19834, 299, 1, 11629, 6.99, '2007-03-17 02:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19835, 299, 1, 11746, 5.99, '2007-03-17 07:31:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19836, 299, 1, 11998, 0.99, '2007-03-17 17:14:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19837, 299, 1, 13069, 4.99, '2007-03-19 08:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19838, 299, 2, 14208, 0.99, '2007-03-21 02:37:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19839, 299, 1, 14548, 3.99, '2007-03-21 14:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19840, 299, 2, 14889, 4.99, '2007-03-22 02:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19841, 299, 2, 14898, 6.99, '2007-03-22 02:55:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19842, 300, 1, 10977, 4.99, '2007-03-02 02:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19843, 300, 2, 12484, 2.99, '2007-03-18 11:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19844, 300, 2, 12644, 5.99, '2007-03-18 16:50:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19845, 300, 2, 13257, 3.99, '2007-03-19 15:29:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19846, 300, 1, 13296, 0.99, '2007-03-19 17:12:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19847, 300, 2, 13499, 6.99, '2007-03-20 00:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19848, 300, 1, 13717, 5.99, '2007-03-20 08:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19849, 300, 1, 14674, 7.99, '2007-03-21 18:30:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19850, 300, 1, 14709, 9.99, '2007-03-21 19:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19851, 300, 2, 15051, 2.99, '2007-03-22 08:37:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19852, 300, 2, 15811, 5.99, '2007-03-23 13:12:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19853, 301, 1, 10883, 0.99, '2007-03-01 23:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19854, 301, 2, 13183, 5.99, '2007-03-19 12:37:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19855, 301, 2, 13633, 2.99, '2007-03-20 05:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19856, 301, 1, 15201, 10.99, '2007-03-22 14:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19857, 301, 1, 15268, 1.99, '2007-03-22 17:07:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19858, 302, 2, 10329, 0.99, '2007-03-01 03:24:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19859, 302, 1, 12126, 7.99, '2007-03-17 21:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19860, 302, 2, 12516, 4.99, '2007-03-18 12:08:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19861, 302, 1, 12903, 2.99, '2007-03-19 02:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19862, 302, 1, 13916, 2.99, '2007-03-20 15:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19863, 302, 1, 14120, 4.99, '2007-03-20 23:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19864, 302, 2, 14247, 3.99, '2007-03-21 04:03:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19865, 302, 2, 15578, 2.99, '2007-03-23 04:05:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19866, 302, 1, 15622, 5.99, '2007-03-23 05:50:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19867, 302, 2, 15734, 0.99, '2007-03-23 10:08:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19868, 302, 2, 15987, 6.99, '2007-03-23 18:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19869, 303, 1, 11253, 4.99, '2007-03-02 12:11:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19870, 303, 2, 11673, 2.99, '2007-03-17 04:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19871, 303, 2, 11993, 2.99, '2007-03-17 16:56:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19872, 303, 2, 12117, 0.99, '2007-03-17 21:39:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19873, 303, 1, 12365, 0.99, '2007-03-18 06:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19874, 303, 2, 12473, 2.99, '2007-03-18 10:28:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19875, 303, 1, 14750, 5.99, '2007-03-21 21:37:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19876, 303, 2, 14795, 4.99, '2007-03-21 23:08:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19877, 303, 1, 15511, 3.99, '2007-03-23 01:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19878, 304, 1, 10631, 0.99, '2007-03-01 14:03:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19879, 304, 2, 11983, 4.99, '2007-03-17 16:42:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19880, 304, 1, 12540, 5.99, '2007-03-18 12:45:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19881, 304, 2, 13911, 3.99, '2007-03-20 14:59:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19882, 304, 1, 14023, 0.99, '2007-03-20 19:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19883, 304, 1, 14899, 4.99, '2007-03-22 02:55:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19884, 304, 1, 14945, 4.99, '2007-03-22 04:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19885, 305, 2, 10426, 4.99, '2007-03-01 06:54:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19886, 305, 2, 10929, 4.99, '2007-03-02 01:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19887, 305, 1, 10981, 2.99, '2007-03-02 02:46:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19888, 305, 2, 11035, 5.99, '2007-03-02 04:24:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19889, 305, 2, 11809, 3.99, '2007-03-17 10:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19890, 305, 2, 12592, 3.99, '2007-03-18 14:46:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19891, 305, 2, 12846, 0.99, '2007-03-19 00:31:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19892, 305, 1, 13782, 4.99, '2007-03-20 10:37:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19893, 305, 2, 15417, 2.99, '2007-03-22 22:22:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19894, 305, 1, 15612, 6.99, '2007-03-23 05:27:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19895, 306, 2, 10893, 5.99, '2007-03-01 23:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19896, 306, 2, 11142, 4.99, '2007-03-02 07:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19897, 306, 1, 11440, 0.99, '2007-03-02 18:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19898, 306, 2, 11674, 6.99, '2007-03-17 04:24:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19899, 306, 2, 11776, 0.99, '2007-03-17 08:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19900, 306, 1, 12225, 7.99, '2007-03-18 01:28:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19901, 306, 1, 12989, 2.99, '2007-03-19 05:47:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19902, 306, 1, 13686, 4.99, '2007-03-20 07:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19903, 306, 2, 13725, 5.99, '2007-03-20 08:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19904, 306, 1, 13873, 0.99, '2007-03-20 13:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19905, 306, 1, 13996, 4.99, '2007-03-20 18:14:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19906, 306, 1, 15457, 2.99, '2007-03-22 23:36:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19907, 306, 2, 15868, 7.99, '2007-03-23 14:47:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19908, 307, 1, 10374, 0.99, '2007-03-01 04:53:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19909, 307, 1, 10745, 2.99, '2007-03-01 18:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19910, 307, 1, 11491, 7.99, '2007-03-02 21:13:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19911, 307, 2, 12391, 4.99, '2007-03-18 07:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19912, 307, 2, 13365, 6.99, '2007-03-19 19:41:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19913, 307, 1, 14231, 0.99, '2007-03-21 03:33:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19914, 307, 2, 15515, 4.99, '2007-03-23 01:32:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19915, 308, 1, 10571, 2.99, '2007-03-01 11:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19916, 308, 2, 10797, 0.99, '2007-03-01 20:31:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19917, 308, 1, 10819, 4.99, '2007-03-01 21:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19918, 308, 1, 11765, 2.99, '2007-03-17 08:23:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19919, 308, 1, 11972, 4.99, '2007-03-17 16:24:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19920, 308, 2, 12567, 3.99, '2007-03-18 13:43:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19921, 308, 1, 12590, 6.99, '2007-03-18 14:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19922, 308, 2, 12838, 6.99, '2007-03-19 00:20:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19923, 308, 1, 13843, 2.99, '2007-03-20 12:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19924, 308, 2, 14946, 2.99, '2007-03-22 04:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19925, 308, 1, 15243, 4.99, '2007-03-22 16:16:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19926, 308, 2, 15493, 4.99, '2007-03-23 00:49:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19927, 308, 2, 15820, 2.99, '2007-03-23 13:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19928, 309, 1, 10458, 2.99, '2007-03-01 07:48:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19929, 309, 1, 10728, 0.99, '2007-03-01 17:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19930, 309, 1, 10818, 2.99, '2007-03-01 21:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19931, 309, 2, 11964, 6.99, '2007-03-17 16:05:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19932, 309, 2, 13021, 5.99, '2007-03-19 06:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19933, 309, 2, 13502, 0.99, '2007-03-20 00:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19934, 309, 2, 13909, 4.99, '2007-03-20 14:55:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19935, 309, 2, 14846, 5.99, '2007-03-22 00:42:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19936, 309, 2, 15422, 4.99, '2007-03-22 22:26:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19937, 310, 2, 11137, 2.99, '2007-03-02 07:53:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19938, 310, 2, 12500, 4.99, '2007-03-18 11:34:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19939, 310, 2, 12710, 7.99, '2007-03-18 19:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19940, 310, 1, 12929, 4.99, '2007-03-19 03:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19941, 310, 1, 14972, 5.99, '2007-03-22 05:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19942, 311, 2, 10448, 4.99, '2007-03-01 07:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19943, 311, 1, 12997, 2.99, '2007-03-19 06:00:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19944, 311, 2, 13310, 0.99, '2007-03-19 17:33:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19945, 311, 2, 13423, 1.99, '2007-03-19 21:36:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19946, 311, 2, 14517, 4.99, '2007-03-21 13:25:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19947, 311, 2, 15826, 9.99, '2007-03-23 13:43:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19948, 311, 1, 16020, 8.99, '2007-03-23 20:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19949, 312, 2, 10858, 2.99, '2007-03-01 22:37:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19950, 312, 2, 11248, 0.99, '2007-03-02 12:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19951, 312, 2, 11879, 5.99, '2007-03-17 12:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19952, 312, 1, 12186, 2.99, '2007-03-18 00:12:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19953, 312, 1, 12945, 0.99, '2007-03-19 04:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19954, 312, 2, 14362, 2.99, '2007-03-21 07:48:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19955, 312, 1, 14504, 3.99, '2007-03-21 12:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19956, 312, 1, 15100, 4.99, '2007-03-22 10:23:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19957, 312, 1, 15882, 6.99, '2007-03-23 15:12:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19958, 313, 2, 10237, 5.99, '2007-03-01 00:35:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19959, 313, 2, 10933, 7.99, '2007-03-02 01:19:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19960, 313, 2, 11854, 2.99, '2007-03-17 12:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19961, 313, 2, 12011, 2.99, '2007-03-17 17:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19962, 313, 2, 14250, 2.99, '2007-03-21 04:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19963, 313, 1, 14325, 4.99, '2007-03-21 06:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19964, 313, 2, 15081, 2.99, '2007-03-22 09:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19965, 313, 1, 15340, 0.99, '2007-03-22 19:24:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19966, 313, 2, 15569, 6.99, '2007-03-23 03:52:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19967, 314, 2, 11908, 3.99, '2007-03-17 14:11:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19968, 314, 1, 12434, 0.99, '2007-03-18 09:06:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19969, 314, 2, 13120, 3.99, '2007-03-19 10:16:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19970, 314, 1, 13265, 2.99, '2007-03-19 15:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19971, 314, 2, 13553, 3.99, '2007-03-20 02:35:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19972, 314, 2, 14145, 4.99, '2007-03-21 00:40:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19973, 314, 1, 14409, 4.99, '2007-03-21 09:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19974, 314, 2, 14682, 4.99, '2007-03-21 18:54:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19975, 314, 2, 14815, 4.99, '2007-03-21 23:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19976, 314, 2, 14873, 5.99, '2007-03-22 01:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19977, 314, 2, 16021, 3.99, '2007-03-23 20:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19978, 315, 2, 11254, 0.99, '2007-03-02 12:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19979, 315, 2, 12155, 2.99, '2007-03-17 22:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19980, 315, 1, 14106, 2.99, '2007-03-20 23:14:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19981, 315, 2, 14162, 2.99, '2007-03-21 01:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19982, 315, 1, 15504, 6.99, '2007-03-23 01:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19983, 316, 1, 10438, 7.99, '2007-03-01 07:21:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19984, 316, 1, 12028, 0.99, '2007-03-17 18:32:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19985, 316, 2, 12191, 0.99, '2007-03-18 00:25:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19986, 316, 2, 12823, 2.99, '2007-03-18 23:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19987, 316, 2, 13277, 5.99, '2007-03-19 16:26:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19988, 316, 1, 14226, 2.99, '2007-03-21 03:24:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19989, 316, 2, 15840, 2.99, '2007-03-23 14:03:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19990, 317, 1, 10364, 2.99, '2007-03-01 04:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19991, 317, 2, 12111, 2.99, '2007-03-17 21:28:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19992, 317, 2, 12138, 7.99, '2007-03-17 22:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19993, 317, 2, 12301, 2.99, '2007-03-18 04:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19994, 317, 1, 13388, 4.99, '2007-03-19 20:15:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19995, 317, 1, 14032, 5.99, '2007-03-20 19:55:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19996, 317, 2, 14385, 0.99, '2007-03-21 08:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19997, 317, 2, 14669, 2.99, '2007-03-21 18:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19998, 317, 1, 14791, 4.99, '2007-03-21 23:04:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (19999, 317, 1, 15204, 2.99, '2007-03-22 14:59:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20000, 317, 1, 15280, 4.99, '2007-03-22 17:38:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20001, 318, 1, 14276, 2.99, '2007-03-21 05:02:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20002, 319, 1, 11575, 0.99, '2007-03-17 00:18:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20003, 319, 2, 11598, 0.99, '2007-03-17 01:31:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20004, 319, 1, 11955, 6.99, '2007-03-17 15:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20005, 319, 2, 11994, 2.99, '2007-03-17 16:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20006, 319, 1, 12018, 4.99, '2007-03-17 18:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20007, 319, 2, 12424, 8.99, '2007-03-18 08:45:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20008, 319, 1, 13548, 3.99, '2007-03-20 02:21:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20009, 319, 2, 14828, 4.99, '2007-03-22 00:02:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20010, 319, 2, 15396, 5.99, '2007-03-22 21:36:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20011, 320, 1, 11208, 0.99, '2007-03-02 10:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20012, 320, 2, 11560, 2.99, '2007-03-16 23:48:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20013, 320, 2, 14171, 0.99, '2007-03-21 01:29:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20014, 320, 1, 15302, 2.99, '2007-03-22 18:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20015, 321, 1, 11722, 2.99, '2007-03-17 06:21:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20016, 321, 1, 12033, 6.99, '2007-03-17 18:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20017, 321, 2, 12034, 7.99, '2007-03-17 18:43:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20018, 321, 1, 12398, 4.99, '2007-03-18 07:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20019, 321, 2, 13623, 6.99, '2007-03-20 05:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20020, 321, 1, 15673, 6.99, '2007-03-23 07:41:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20021, 321, 2, 15888, 5.99, '2007-03-23 15:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20022, 322, 2, 11120, 4.99, '2007-03-02 07:15:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20023, 322, 2, 11456, 0.99, '2007-03-02 19:42:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20024, 322, 2, 13180, 4.99, '2007-03-19 12:29:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20025, 322, 1, 13650, 9.99, '2007-03-20 06:17:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20026, 322, 2, 14042, 4.99, '2007-03-20 20:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20027, 322, 1, 15450, 0.99, '2007-03-22 23:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20028, 322, 2, 15703, 8.99, '2007-03-23 08:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20029, 323, 1, 10298, 0.99, '2007-03-01 02:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20030, 323, 1, 10994, 3.99, '2007-03-02 03:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20031, 323, 2, 11548, 0.99, '2007-03-16 23:28:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20032, 323, 1, 12120, 4.99, '2007-03-17 21:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20033, 323, 1, 12169, 2.99, '2007-03-17 23:34:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20034, 323, 1, 13140, 5.99, '2007-03-19 11:04:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20035, 323, 1, 14224, 2.99, '2007-03-21 03:21:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20036, 323, 1, 14957, 3.99, '2007-03-22 04:58:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20037, 323, 1, 15387, 4.99, '2007-03-22 21:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20038, 323, 1, 15728, 0.99, '2007-03-23 09:58:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20039, 324, 1, 11617, 2.99, '2007-03-17 02:29:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20040, 324, 1, 11771, 6.99, '2007-03-17 08:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20041, 324, 2, 12543, 2.99, '2007-03-18 12:52:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20042, 324, 2, 13356, 0.99, '2007-03-19 19:30:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20043, 324, 1, 13386, 2.99, '2007-03-19 20:12:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20044, 324, 1, 14262, 8.99, '2007-03-21 04:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20045, 324, 2, 14479, 7.99, '2007-03-21 12:04:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20046, 324, 1, 15263, 4.99, '2007-03-22 16:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20047, 325, 2, 10326, 4.99, '2007-03-01 03:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20048, 325, 1, 10412, 0.99, '2007-03-01 06:25:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20049, 325, 2, 12097, 4.99, '2007-03-17 21:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20050, 325, 1, 12779, 3.99, '2007-03-18 22:12:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20051, 325, 2, 13054, 4.99, '2007-03-19 08:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20052, 325, 2, 14452, 3.99, '2007-03-21 10:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20053, 325, 1, 14672, 5.99, '2007-03-21 18:27:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20054, 325, 2, 15009, 0.99, '2007-03-22 06:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20055, 326, 2, 10720, 0.99, '2007-03-01 17:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20056, 326, 2, 10976, 4.99, '2007-03-02 02:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20057, 326, 2, 11010, 0.99, '2007-03-02 03:34:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20058, 326, 2, 11428, 2.99, '2007-03-02 18:31:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20059, 326, 2, 11485, 4.99, '2007-03-02 21:01:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20060, 326, 2, 12829, 2.99, '2007-03-19 00:06:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20061, 327, 1, 10371, 0.99, '2007-03-01 04:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20062, 327, 1, 11372, 4.99, '2007-03-02 16:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20063, 327, 2, 11929, 6.99, '2007-03-17 14:57:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20064, 327, 1, 12016, 0.99, '2007-03-17 18:01:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20065, 327, 2, 13158, 2.99, '2007-03-19 11:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20066, 327, 1, 13360, 4.99, '2007-03-19 19:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20067, 327, 1, 13448, 0.99, '2007-03-19 22:41:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20068, 327, 1, 14847, 4.99, '2007-03-22 00:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20069, 327, 2, 15365, 3.99, '2007-03-22 20:10:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20070, 327, 1, 15386, 2.99, '2007-03-22 21:09:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20071, 327, 1, 15828, 5.99, '2007-03-23 13:44:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20072, 327, 1, 15916, 9.99, '2007-03-23 16:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20073, 327, 2, 15969, 7.99, '2007-03-23 18:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20074, 328, 1, 11174, 2.99, '2007-03-02 09:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20075, 328, 1, 12175, 4.99, '2007-03-17 23:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20076, 328, 2, 12825, 0.99, '2007-03-18 23:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20077, 328, 1, 13609, 2.99, '2007-03-20 04:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20078, 328, 2, 13681, 7.99, '2007-03-20 07:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20079, 328, 1, 13907, 3.99, '2007-03-20 14:45:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20080, 328, 2, 14307, 3.99, '2007-03-21 06:03:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20081, 328, 1, 14755, 3.99, '2007-03-21 21:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20082, 328, 2, 14939, 2.99, '2007-03-22 04:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20083, 328, 1, 15179, 4.99, '2007-03-22 14:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20084, 328, 1, 15863, 0.99, '2007-03-23 14:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20085, 329, 1, 10473, 7.99, '2007-03-01 08:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20086, 329, 2, 10490, 0.99, '2007-03-01 09:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20087, 329, 1, 11130, 2.99, '2007-03-02 07:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20088, 329, 2, 11169, 3.99, '2007-03-02 08:48:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20089, 329, 2, 11697, 0.99, '2007-03-17 05:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20090, 329, 1, 12659, 6.99, '2007-03-18 17:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20091, 329, 1, 13627, 8.99, '2007-03-20 05:27:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20092, 329, 1, 14900, 4.99, '2007-03-22 02:56:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20093, 329, 2, 15011, 4.99, '2007-03-22 06:59:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20094, 329, 1, 15308, 2.99, '2007-03-22 18:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20095, 330, 2, 11259, 3.99, '2007-03-02 12:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20096, 330, 1, 12062, 2.99, '2007-03-17 19:53:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20097, 330, 1, 12394, 2.99, '2007-03-18 07:33:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20098, 330, 1, 12740, 4.99, '2007-03-18 20:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20099, 330, 1, 12867, 0.99, '2007-03-19 01:08:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20100, 331, 1, 11052, 5.99, '2007-03-02 04:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20101, 331, 1, 11362, 2.99, '2007-03-02 16:15:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20102, 331, 2, 12533, 4.99, '2007-03-18 12:30:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20103, 331, 1, 13795, 0.99, '2007-03-20 11:00:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20104, 331, 1, 14256, 7.99, '2007-03-21 04:20:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20105, 331, 1, 14628, 1.99, '2007-03-21 17:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20106, 331, 1, 15339, 2.99, '2007-03-22 19:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20107, 331, 2, 15447, 3.99, '2007-03-22 23:22:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20108, 331, 1, 15521, 2.99, '2007-03-23 01:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20109, 332, 1, 10307, 0.99, '2007-03-01 02:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20110, 332, 2, 10439, 0.99, '2007-03-01 07:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20111, 332, 1, 11229, 5.99, '2007-03-02 11:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20112, 332, 2, 11564, 2.99, '2007-03-16 23:56:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20113, 332, 2, 12318, 4.99, '2007-03-18 04:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20114, 332, 2, 13673, 2.99, '2007-03-20 06:55:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20115, 332, 2, 14783, 4.99, '2007-03-21 22:50:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20116, 332, 2, 15194, 0.99, '2007-03-22 14:36:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20117, 332, 1, 15210, 3.99, '2007-03-22 15:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20118, 333, 2, 10844, 4.99, '2007-03-01 22:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20119, 333, 1, 12427, 6.99, '2007-03-18 08:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20120, 333, 2, 12661, 0.99, '2007-03-18 17:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20121, 333, 1, 13579, 3.99, '2007-03-20 03:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20122, 333, 2, 13710, 4.99, '2007-03-20 08:03:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20123, 333, 1, 14057, 4.99, '2007-03-20 20:51:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20124, 333, 1, 14740, 2.99, '2007-03-21 21:03:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20125, 333, 2, 15253, 2.99, '2007-03-22 16:33:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20126, 333, 1, 15313, 4.99, '2007-03-22 18:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20127, 334, 1, 10408, 4.99, '2007-03-01 06:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20128, 334, 1, 10492, 2.99, '2007-03-01 09:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20129, 334, 1, 10879, 1.99, '2007-03-01 23:01:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20130, 334, 2, 10997, 7.99, '2007-03-02 03:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20131, 334, 2, 12677, 4.99, '2007-03-18 18:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20132, 334, 2, 13325, 4.99, '2007-03-19 18:20:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20133, 334, 1, 13876, 2.99, '2007-03-20 13:43:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20134, 334, 1, 14645, 0.99, '2007-03-21 17:41:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20135, 334, 1, 14984, 7.99, '2007-03-22 06:03:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20136, 334, 2, 15548, 0.99, '2007-03-23 02:54:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20137, 334, 2, 15656, 4.99, '2007-03-23 07:07:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20138, 334, 1, 15669, 3.99, '2007-03-23 07:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20139, 335, 2, 10606, 4.99, '2007-03-01 13:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20140, 335, 2, 13267, 0.99, '2007-03-19 16:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20141, 335, 1, 13622, 1.99, '2007-03-20 05:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20142, 335, 1, 14014, 2.99, '2007-03-20 19:15:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20143, 335, 2, 15005, 4.99, '2007-03-22 06:44:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20144, 335, 2, 15101, 0.99, '2007-03-22 10:24:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20145, 336, 2, 11743, 2.99, '2007-03-17 07:17:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20146, 336, 1, 12323, 8.99, '2007-03-18 05:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20147, 336, 2, 12794, 0.99, '2007-03-18 22:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20148, 336, 2, 12926, 3.99, '2007-03-19 03:28:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20149, 336, 2, 13066, 0.99, '2007-03-19 08:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20150, 336, 2, 13689, 4.99, '2007-03-20 07:32:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20151, 336, 1, 14295, 2.99, '2007-03-21 05:37:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20152, 336, 1, 15073, 10.99, '2007-03-22 09:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20153, 336, 2, 15848, 2.99, '2007-03-23 14:09:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20154, 337, 1, 10664, 0.99, '2007-03-01 15:19:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20155, 337, 2, 10765, 0.99, '2007-03-01 19:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20156, 337, 2, 11252, 2.99, '2007-03-02 12:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20157, 337, 1, 11734, 3.99, '2007-03-17 07:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20158, 337, 1, 12369, 6.99, '2007-03-18 06:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20159, 337, 2, 13305, 6.99, '2007-03-19 17:25:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20160, 337, 1, 13678, 4.99, '2007-03-20 07:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20161, 337, 2, 13892, 3.99, '2007-03-20 14:18:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20162, 337, 2, 14118, 5.99, '2007-03-20 23:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20163, 337, 2, 15241, 4.99, '2007-03-22 16:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20164, 337, 1, 15292, 4.99, '2007-03-22 17:57:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20165, 338, 2, 10791, 2.99, '2007-03-01 20:10:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20166, 338, 1, 10897, 0.99, '2007-03-01 23:52:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20167, 338, 2, 11064, 4.99, '2007-03-02 05:23:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20168, 338, 2, 11671, 4.99, '2007-03-17 04:18:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20169, 338, 2, 11719, 5.99, '2007-03-17 06:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20170, 338, 1, 12167, 2.99, '2007-03-17 23:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20171, 338, 1, 13284, 3.99, '2007-03-19 16:40:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20172, 338, 1, 14619, 2.99, '2007-03-21 16:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20173, 338, 2, 15105, 0.99, '2007-03-22 10:29:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20174, 338, 2, 15173, 6.99, '2007-03-22 13:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20175, 339, 2, 10338, 3.99, '2007-03-01 03:31:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20176, 339, 2, 11171, 4.99, '2007-03-02 08:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20177, 339, 1, 11550, 2.99, '2007-03-16 23:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20178, 339, 2, 11582, 3.99, '2007-03-17 00:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20179, 339, 2, 11699, 5.99, '2007-03-17 05:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20180, 339, 1, 12631, 0.99, '2007-03-18 16:21:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20181, 339, 1, 13199, 3.99, '2007-03-19 13:21:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20182, 339, 1, 13575, 5.99, '2007-03-20 03:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20183, 339, 1, 13985, 0.99, '2007-03-20 17:41:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20184, 339, 1, 14636, 4.99, '2007-03-21 17:27:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20185, 339, 2, 14758, 3.99, '2007-03-21 21:53:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20186, 340, 1, 10292, 2.99, '2007-03-01 02:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20187, 340, 1, 10667, 8.99, '2007-03-01 15:26:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20188, 340, 2, 10674, 3.99, '2007-03-01 15:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20189, 340, 1, 10809, 0.99, '2007-03-01 21:07:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20190, 340, 1, 10995, 0.99, '2007-03-02 03:16:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20191, 340, 2, 12598, 4.99, '2007-03-18 15:02:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20192, 340, 2, 12908, 1.99, '2007-03-19 02:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20193, 340, 2, 12940, 2.99, '2007-03-19 04:06:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20194, 340, 1, 13425, 2.99, '2007-03-19 21:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20195, 340, 1, 14457, 4.99, '2007-03-21 11:16:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20196, 340, 2, 14718, 0.99, '2007-03-21 20:07:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20197, 340, 1, 14895, 2.99, '2007-03-22 02:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20198, 340, 2, 15306, 2.99, '2007-03-22 18:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20199, 340, 1, 15378, 9.99, '2007-03-22 20:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20200, 341, 2, 10605, 0.99, '2007-03-01 13:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20201, 341, 1, 11305, 6.99, '2007-03-02 14:13:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20202, 341, 1, 11723, 2.99, '2007-03-17 06:24:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20203, 341, 2, 13059, 0.99, '2007-03-19 08:10:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20204, 341, 2, 13074, 8.99, '2007-03-19 08:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20205, 341, 2, 13806, 4.99, '2007-03-20 11:22:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20206, 341, 2, 14344, 4.99, '2007-03-21 07:09:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20207, 341, 2, 15030, 0.99, '2007-03-22 07:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20208, 341, 2, 15938, 6.99, '2007-03-23 17:11:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20209, 342, 1, 10242, 4.99, '2007-03-01 00:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20210, 342, 2, 11178, 2.99, '2007-03-02 09:16:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20211, 342, 2, 11446, 0.99, '2007-03-02 19:02:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20212, 342, 1, 11568, 0.99, '2007-03-16 23:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20213, 342, 1, 12139, 6.99, '2007-03-17 22:25:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20214, 342, 1, 12404, 4.99, '2007-03-18 08:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20215, 342, 1, 12522, 2.99, '2007-03-18 12:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20216, 342, 2, 12816, 4.99, '2007-03-18 23:32:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20217, 342, 2, 13368, 4.99, '2007-03-19 19:48:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20218, 342, 2, 13637, 4.99, '2007-03-20 05:49:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20219, 342, 1, 13755, 2.99, '2007-03-20 09:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20220, 342, 2, 13827, 4.99, '2007-03-20 12:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20221, 342, 2, 14096, 2.99, '2007-03-20 22:56:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20222, 342, 2, 14299, 0.99, '2007-03-21 05:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20223, 342, 2, 14683, 8.99, '2007-03-21 18:56:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20224, 342, 1, 15484, 4.99, '2007-03-23 00:33:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20225, 342, 1, 15895, 3.99, '2007-03-23 15:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20226, 343, 1, 10822, 0.99, '2007-03-01 21:22:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20227, 343, 1, 11212, 0.99, '2007-03-02 10:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20228, 343, 2, 11570, 2.99, '2007-03-17 00:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20229, 343, 2, 13279, 4.99, '2007-03-19 16:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20230, 343, 2, 13522, 3.99, '2007-03-20 01:12:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20231, 343, 2, 13866, 0.99, '2007-03-20 13:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20232, 343, 2, 15973, 5.99, '2007-03-23 18:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20233, 344, 2, 11116, 5.99, '2007-03-02 07:03:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20234, 344, 2, 12183, 5.99, '2007-03-18 00:02:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20235, 344, 2, 13014, 4.99, '2007-03-19 06:24:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20236, 344, 1, 13033, 3.99, '2007-03-19 07:03:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20237, 344, 1, 14621, 0.99, '2007-03-21 16:46:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20238, 344, 2, 14624, 0.99, '2007-03-21 17:01:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20239, 344, 1, 15215, 2.99, '2007-03-22 15:23:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20240, 345, 2, 10982, 4.99, '2007-03-02 02:47:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20241, 345, 1, 11865, 2.99, '2007-03-17 12:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20242, 345, 1, 12485, 4.99, '2007-03-18 11:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20243, 345, 2, 12805, 4.99, '2007-03-18 23:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20244, 345, 1, 14702, 10.99, '2007-03-21 19:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20245, 345, 1, 15551, 4.99, '2007-03-23 02:56:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20246, 346, 1, 10304, 5.99, '2007-03-01 02:42:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20247, 346, 2, 10389, 3.99, '2007-03-01 05:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20248, 346, 2, 10521, 0.99, '2007-03-01 10:14:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20249, 346, 2, 11062, 4.99, '2007-03-02 05:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20250, 346, 1, 11375, 4.99, '2007-03-02 16:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20251, 346, 2, 11470, 2.99, '2007-03-02 20:16:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20252, 346, 1, 14890, 5.99, '2007-03-22 02:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20253, 346, 2, 15459, 2.99, '2007-03-22 23:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20254, 346, 1, 15535, 0.99, '2007-03-23 02:26:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20255, 346, 1, 15661, 8.99, '2007-03-23 07:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20256, 346, 2, 15825, 5.99, '2007-03-23 13:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20257, 346, 1, 15827, 0.99, '2007-03-23 13:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20258, 347, 2, 11738, 8.99, '2007-03-17 07:14:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20259, 347, 1, 12195, 2.99, '2007-03-18 00:36:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20260, 347, 2, 12399, 10.99, '2007-03-18 07:42:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20261, 347, 2, 13314, 5.99, '2007-03-19 17:41:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20262, 347, 2, 14894, 4.99, '2007-03-22 02:45:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20263, 347, 2, 14958, 2.99, '2007-03-22 04:58:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20264, 347, 2, 15426, 2.99, '2007-03-22 22:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20265, 347, 2, 15555, 4.99, '2007-03-23 03:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20266, 348, 1, 10769, 2.99, '2007-03-01 19:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20267, 348, 2, 10972, 2.99, '2007-03-02 02:36:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20268, 348, 1, 11262, 2.99, '2007-03-02 12:27:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20269, 348, 1, 11429, 7.99, '2007-03-02 18:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20270, 348, 2, 12564, 2.99, '2007-03-18 13:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20271, 348, 2, 12884, 5.99, '2007-03-19 02:02:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20272, 348, 2, 12937, 4.99, '2007-03-19 03:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20273, 348, 2, 13238, 2.99, '2007-03-19 14:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20274, 348, 2, 13602, 5.99, '2007-03-20 04:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20275, 348, 2, 13684, 0.99, '2007-03-20 07:24:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20276, 348, 1, 13962, 1.99, '2007-03-20 16:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20277, 348, 2, 14079, 3.99, '2007-03-20 21:57:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20278, 348, 2, 14937, 7.99, '2007-03-22 04:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20279, 348, 2, 15817, 0.99, '2007-03-23 13:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20280, 348, 1, 15944, 4.99, '2007-03-23 17:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20281, 349, 1, 10987, 4.99, '2007-03-02 03:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20282, 349, 2, 11192, 4.99, '2007-03-02 09:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20283, 349, 2, 11492, 8.99, '2007-03-02 21:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20284, 349, 1, 11905, 3.99, '2007-03-17 14:08:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20285, 349, 1, 13258, 4.99, '2007-03-19 15:34:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20286, 349, 2, 13636, 4.99, '2007-03-20 05:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20287, 349, 2, 14200, 6.99, '2007-03-21 02:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20288, 349, 2, 14721, 6.99, '2007-03-21 20:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20289, 349, 2, 14908, 4.99, '2007-03-22 03:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20290, 349, 1, 15833, 6.99, '2007-03-23 13:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20291, 349, 1, 15955, 5.99, '2007-03-23 17:47:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20292, 350, 2, 11504, 0.99, '2007-03-16 21:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20293, 350, 2, 11595, 6.99, '2007-03-17 01:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20294, 350, 2, 11692, 6.99, '2007-03-17 05:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20295, 350, 1, 11800, 0.99, '2007-03-17 09:58:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20296, 350, 2, 12252, 6.99, '2007-03-18 02:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20297, 350, 2, 12445, 2.99, '2007-03-18 09:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20298, 350, 2, 13086, 0.99, '2007-03-19 09:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20299, 350, 2, 15789, 1.99, '2007-03-23 12:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20300, 350, 1, 15807, 0.99, '2007-03-23 13:03:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20301, 351, 2, 10501, 2.99, '2007-03-01 09:33:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20302, 351, 2, 11127, 0.99, '2007-03-02 07:29:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20303, 351, 1, 14368, 6.99, '2007-03-21 08:00:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20304, 351, 2, 15142, 4.99, '2007-03-22 12:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20305, 351, 1, 15664, 4.99, '2007-03-23 07:25:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20306, 351, 2, 15712, 2.99, '2007-03-23 09:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20307, 351, 1, 15762, 2.99, '2007-03-23 11:30:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20308, 352, 1, 11793, 5.99, '2007-03-17 09:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20309, 352, 1, 11823, 6.99, '2007-03-17 11:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20310, 352, 2, 11986, 0.99, '2007-03-17 16:50:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20311, 352, 2, 12234, 5.99, '2007-03-18 01:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20312, 352, 1, 12751, 2.99, '2007-03-18 21:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20313, 352, 1, 14130, 4.99, '2007-03-21 00:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20314, 352, 2, 14852, 0.99, '2007-03-22 00:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20315, 353, 1, 11186, 0.99, '2007-03-02 09:40:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20316, 353, 2, 11414, 4.99, '2007-03-02 18:11:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20317, 353, 2, 11698, 4.99, '2007-03-17 05:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20318, 353, 1, 12928, 5.99, '2007-03-19 03:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20319, 353, 2, 13604, 0.99, '2007-03-20 04:31:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20320, 353, 1, 14396, 4.99, '2007-03-21 08:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20321, 353, 1, 15564, 1.99, '2007-03-23 03:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20322, 353, 2, 15650, 0.99, '2007-03-23 06:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20323, 353, 2, 15676, 2.99, '2007-03-23 07:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20324, 354, 1, 10420, 6.99, '2007-03-01 06:42:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20325, 354, 2, 12243, 6.99, '2007-03-18 02:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20326, 354, 1, 12544, 3.99, '2007-03-18 12:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20327, 354, 1, 12998, 4.99, '2007-03-19 06:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20328, 354, 2, 14212, 2.99, '2007-03-21 02:57:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20329, 354, 2, 14245, 0.99, '2007-03-21 03:59:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20330, 354, 1, 14840, 5.99, '2007-03-22 00:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20331, 354, 2, 15956, 0.99, '2007-03-23 17:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20332, 355, 1, 10498, 0.99, '2007-03-01 09:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20333, 355, 2, 11471, 0.99, '2007-03-02 20:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20334, 355, 2, 13821, 1.99, '2007-03-20 12:02:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20335, 355, 1, 15367, 3.99, '2007-03-22 20:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20336, 355, 2, 15531, 2.99, '2007-03-23 02:21:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20337, 356, 1, 10427, 3.99, '2007-03-01 06:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20338, 356, 1, 10854, 4.99, '2007-03-01 22:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20339, 356, 1, 11535, 3.99, '2007-03-16 23:08:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20340, 356, 2, 11579, 2.99, '2007-03-17 00:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20341, 356, 2, 12037, 4.99, '2007-03-17 18:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20342, 356, 2, 12876, 2.99, '2007-03-19 01:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20343, 356, 1, 12913, 0.99, '2007-03-19 02:54:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20344, 356, 2, 13107, 4.99, '2007-03-19 09:42:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20345, 356, 2, 13442, 5.99, '2007-03-19 22:19:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20346, 356, 2, 13703, 6.99, '2007-03-20 07:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20347, 356, 1, 15705, 4.99, '2007-03-23 09:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20348, 356, 2, 15754, 5.99, '2007-03-23 11:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20349, 356, 1, 15757, 2.99, '2007-03-23 11:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20350, 357, 2, 10391, 2.99, '2007-03-01 05:17:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20351, 357, 1, 10502, 2.99, '2007-03-01 09:35:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20352, 357, 1, 10503, 6.99, '2007-03-01 09:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20353, 357, 2, 10764, 0.99, '2007-03-01 19:01:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20354, 357, 2, 11065, 2.99, '2007-03-02 05:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20355, 357, 1, 14926, 0.99, '2007-03-22 03:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20356, 357, 2, 15869, 2.99, '2007-03-23 14:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20357, 358, 1, 10482, 4.99, '2007-03-01 08:46:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20358, 358, 2, 11149, 5.99, '2007-03-02 08:20:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20359, 358, 2, 11653, 4.99, '2007-03-17 03:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20360, 358, 1, 12452, 6.99, '2007-03-18 09:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20361, 358, 1, 13197, 2.99, '2007-03-19 13:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20362, 358, 1, 14004, 7.99, '2007-03-20 18:45:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20363, 359, 1, 11032, 4.99, '2007-03-02 04:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20364, 359, 1, 12611, 1.99, '2007-03-18 15:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20365, 359, 2, 13297, 2.99, '2007-03-19 17:14:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20366, 359, 1, 14258, 1.99, '2007-03-21 04:25:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20367, 359, 2, 14598, 5.99, '2007-03-21 16:08:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20368, 359, 1, 15104, 2.99, '2007-03-22 10:29:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20369, 359, 1, 15148, 4.99, '2007-03-22 12:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20370, 359, 1, 15453, 1.99, '2007-03-22 23:29:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20371, 360, 2, 10857, 2.99, '2007-03-01 22:35:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20372, 360, 2, 11264, 6.99, '2007-03-02 12:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20373, 360, 2, 11553, 4.99, '2007-03-16 23:32:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20374, 360, 2, 12088, 5.99, '2007-03-17 20:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20375, 360, 1, 12773, 5.99, '2007-03-18 22:00:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20376, 360, 2, 12795, 0.99, '2007-03-18 22:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20377, 360, 1, 12839, 6.99, '2007-03-19 00:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20378, 360, 1, 12990, 4.99, '2007-03-19 05:49:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20379, 360, 2, 13894, 7.99, '2007-03-20 14:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20380, 360, 1, 14700, 4.99, '2007-03-21 19:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20381, 360, 1, 15310, 2.99, '2007-03-22 18:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20382, 361, 1, 10414, 0.99, '2007-03-01 06:32:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20383, 361, 2, 10975, 0.99, '2007-03-02 02:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20384, 361, 2, 11031, 5.99, '2007-03-02 04:21:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20385, 361, 2, 11243, 5.99, '2007-03-02 12:01:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20386, 361, 1, 11327, 2.99, '2007-03-02 15:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20387, 361, 1, 11991, 3.99, '2007-03-17 16:55:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20388, 361, 2, 12626, 5.99, '2007-03-18 16:05:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20389, 361, 2, 12690, 2.99, '2007-03-18 18:35:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20390, 361, 1, 13135, 0.99, '2007-03-19 10:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20391, 361, 2, 14031, 0.99, '2007-03-20 19:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20392, 361, 1, 14422, 0.99, '2007-03-21 09:50:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20393, 361, 1, 15759, 6.99, '2007-03-23 11:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20394, 361, 2, 15935, 2.99, '2007-03-23 17:09:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20395, 362, 2, 10546, 3.99, '2007-03-01 11:12:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20396, 362, 2, 12244, 4.99, '2007-03-18 02:07:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20397, 362, 1, 12854, 6.99, '2007-03-19 00:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20398, 362, 1, 13603, 6.99, '2007-03-20 04:31:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20399, 362, 2, 14051, 6.99, '2007-03-20 20:38:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20400, 362, 2, 14129, 2.99, '2007-03-21 00:10:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20401, 362, 2, 14336, 4.99, '2007-03-21 07:02:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20402, 362, 1, 14752, 5.99, '2007-03-21 21:40:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20403, 362, 1, 14759, 11.99, '2007-03-21 21:57:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20404, 362, 1, 14808, 4.99, '2007-03-21 23:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20405, 362, 1, 14950, 2.99, '2007-03-22 04:45:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20406, 363, 1, 10339, 6.99, '2007-03-01 03:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20407, 363, 2, 12189, 5.99, '2007-03-18 00:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20408, 363, 2, 12760, 4.99, '2007-03-18 21:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20409, 363, 1, 13706, 9.99, '2007-03-20 08:01:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20410, 363, 1, 14694, 2.99, '2007-03-21 19:15:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20411, 363, 1, 14983, 5.99, '2007-03-22 06:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20412, 363, 2, 15279, 4.99, '2007-03-22 17:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20413, 363, 1, 15335, 4.99, '2007-03-22 19:13:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20414, 364, 2, 10290, 5.99, '2007-03-01 02:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20415, 364, 2, 11932, 4.99, '2007-03-17 15:04:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20416, 364, 1, 12557, 4.99, '2007-03-18 13:19:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20417, 364, 1, 12761, 1.99, '2007-03-18 21:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20418, 364, 2, 12912, 3.99, '2007-03-19 02:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20419, 364, 1, 13698, 4.99, '2007-03-20 07:52:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20420, 364, 2, 13936, 0.99, '2007-03-20 15:51:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20421, 364, 2, 14293, 4.99, '2007-03-21 05:35:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20422, 364, 1, 15242, 0.99, '2007-03-22 16:16:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20423, 365, 2, 10717, 2.99, '2007-03-01 17:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20424, 365, 2, 12322, 2.99, '2007-03-18 05:03:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20425, 365, 2, 12375, 4.99, '2007-03-18 06:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20426, 365, 1, 12804, 8.99, '2007-03-18 23:01:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20427, 365, 1, 13619, 2.99, '2007-03-20 05:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20428, 365, 2, 14463, 6.99, '2007-03-21 11:20:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20429, 366, 1, 10384, 4.99, '2007-03-01 05:07:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20430, 366, 2, 11337, 2.99, '2007-03-02 15:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20431, 366, 2, 11340, 5.99, '2007-03-02 15:34:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20432, 366, 2, 12413, 2.99, '2007-03-18 08:19:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20433, 366, 1, 12608, 4.99, '2007-03-18 15:33:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20434, 366, 2, 13563, 0.99, '2007-03-20 03:01:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20435, 366, 1, 13857, 2.99, '2007-03-20 13:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20436, 366, 1, 14147, 4.99, '2007-03-21 00:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20437, 366, 1, 14290, 4.99, '2007-03-21 05:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20438, 366, 1, 14390, 2.99, '2007-03-21 08:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20439, 366, 1, 14717, 2.99, '2007-03-21 19:59:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20440, 366, 1, 14906, 6.99, '2007-03-22 03:06:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20441, 366, 1, 15514, 2.99, '2007-03-23 01:32:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20442, 367, 2, 10344, 4.99, '2007-03-01 03:46:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20443, 367, 1, 12152, 4.99, '2007-03-17 22:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20444, 367, 2, 12362, 0.99, '2007-03-18 06:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20445, 367, 2, 12373, 8.99, '2007-03-18 06:35:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20446, 367, 2, 12911, 6.99, '2007-03-19 02:52:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20447, 367, 2, 13235, 4.99, '2007-03-19 14:46:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20448, 367, 1, 14413, 6.99, '2007-03-21 09:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20449, 367, 1, 14481, 10.99, '2007-03-21 12:09:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20450, 368, 2, 10730, 8.99, '2007-03-01 17:50:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20451, 368, 2, 10848, 1.99, '2007-03-01 22:18:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20452, 368, 1, 11844, 0.99, '2007-03-17 11:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20453, 368, 2, 12319, 2.99, '2007-03-18 04:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20454, 368, 1, 12796, 4.99, '2007-03-18 22:50:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20455, 368, 2, 13189, 8.99, '2007-03-19 12:55:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20456, 368, 2, 13280, 2.99, '2007-03-19 16:31:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20457, 368, 2, 13378, 0.99, '2007-03-19 20:02:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20458, 368, 2, 13781, 7.99, '2007-03-20 10:35:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20459, 368, 2, 13963, 1.99, '2007-03-20 16:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20460, 368, 1, 14393, 7.99, '2007-03-21 08:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20461, 368, 1, 15353, 2.99, '2007-03-22 19:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20462, 368, 1, 15437, 2.99, '2007-03-22 22:59:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20463, 369, 1, 10299, 0.99, '2007-03-01 02:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20464, 369, 2, 10359, 3.99, '2007-03-01 04:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20465, 369, 2, 10713, 2.99, '2007-03-01 17:18:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20466, 369, 1, 11084, 4.99, '2007-03-02 06:02:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20467, 369, 2, 11388, 1.99, '2007-03-02 17:04:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20468, 369, 1, 12521, 0.99, '2007-03-18 12:11:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20469, 369, 2, 14684, 5.99, '2007-03-21 18:56:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20470, 370, 1, 10336, 4.99, '2007-03-01 03:28:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20471, 370, 1, 11540, 1.99, '2007-03-16 23:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20472, 370, 2, 11925, 0.99, '2007-03-17 14:51:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20473, 370, 1, 12339, 4.99, '2007-03-18 05:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20474, 370, 1, 13039, 0.99, '2007-03-19 07:23:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20475, 370, 1, 14602, 3.99, '2007-03-21 16:17:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20476, 370, 2, 14786, 2.99, '2007-03-21 22:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20477, 370, 2, 15368, 3.99, '2007-03-22 20:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20478, 370, 1, 15626, 4.99, '2007-03-23 05:54:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20479, 370, 1, 15982, 5.99, '2007-03-23 18:41:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20480, 371, 1, 11086, 10.99, '2007-03-02 06:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20481, 371, 2, 12397, 9.99, '2007-03-18 07:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20482, 371, 2, 12584, 7.99, '2007-03-18 14:20:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20483, 371, 1, 13028, 2.99, '2007-03-19 06:55:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20484, 371, 2, 13143, 3.99, '2007-03-19 11:13:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20485, 371, 1, 13191, 4.99, '2007-03-19 12:57:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20486, 371, 2, 13953, 4.99, '2007-03-20 16:29:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20487, 371, 1, 14384, 2.99, '2007-03-21 08:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20488, 371, 1, 15786, 0.99, '2007-03-23 12:17:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20489, 371, 1, 15824, 2.99, '2007-03-23 13:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20490, 372, 2, 11134, 10.99, '2007-03-02 07:47:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20491, 372, 2, 11438, 3.99, '2007-03-02 18:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20492, 372, 2, 11555, 4.99, '2007-03-16 23:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20493, 372, 1, 12224, 0.99, '2007-03-18 01:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20494, 372, 1, 12714, 3.99, '2007-03-18 19:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20495, 372, 2, 13402, 4.99, '2007-03-19 20:45:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20496, 372, 2, 13871, 8.99, '2007-03-20 13:38:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20497, 372, 2, 14037, 9.99, '2007-03-20 20:04:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20498, 372, 1, 14211, 4.99, '2007-03-21 02:57:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20499, 372, 1, 14331, 2.99, '2007-03-21 06:58:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20500, 372, 1, 14770, 1.99, '2007-03-21 22:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20501, 372, 2, 15041, 0.99, '2007-03-22 08:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20502, 372, 1, 15563, 2.99, '2007-03-23 03:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20503, 373, 1, 10758, 5.99, '2007-03-01 18:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20504, 373, 2, 11066, 7.99, '2007-03-02 05:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20505, 373, 2, 11512, 7.99, '2007-03-16 22:19:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20506, 373, 2, 11663, 3.99, '2007-03-17 03:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20507, 373, 2, 11976, 3.99, '2007-03-17 16:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20508, 373, 1, 12142, 5.99, '2007-03-17 22:32:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20509, 373, 2, 12536, 5.99, '2007-03-18 12:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20510, 373, 1, 12748, 7.99, '2007-03-18 20:57:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20511, 373, 2, 12780, 0.99, '2007-03-18 22:16:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20512, 373, 2, 13299, 2.99, '2007-03-19 17:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20513, 373, 1, 13329, 3.99, '2007-03-19 18:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20514, 373, 2, 13467, 2.99, '2007-03-19 23:25:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20515, 373, 2, 15014, 6.99, '2007-03-22 07:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20516, 373, 1, 15068, 3.99, '2007-03-22 09:18:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20517, 374, 1, 10695, 2.99, '2007-03-01 16:44:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20518, 374, 1, 11619, 0.99, '2007-03-17 02:31:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20519, 374, 2, 12696, 2.99, '2007-03-18 18:41:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20520, 374, 1, 13337, 2.99, '2007-03-19 18:35:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20521, 374, 2, 13734, 4.99, '2007-03-20 08:58:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20522, 374, 2, 14524, 8.99, '2007-03-21 13:33:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20523, 374, 2, 15053, 5.99, '2007-03-22 08:41:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20524, 374, 1, 15200, 2.99, '2007-03-22 14:51:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20525, 374, 2, 15202, 4.99, '2007-03-22 14:55:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20526, 374, 2, 15366, 6.99, '2007-03-22 20:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20527, 375, 1, 10274, 0.99, '2007-03-01 01:45:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20528, 375, 2, 10589, 1.99, '2007-03-01 12:39:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20529, 375, 1, 10640, 0.99, '2007-03-01 14:13:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20530, 375, 1, 10672, 4.99, '2007-03-01 15:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20531, 375, 1, 10859, 5.99, '2007-03-01 22:40:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20532, 375, 1, 10961, 6.99, '2007-03-02 02:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20533, 375, 2, 11008, 5.99, '2007-03-02 03:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20534, 375, 2, 12122, 9.99, '2007-03-17 21:49:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20535, 375, 2, 12663, 0.99, '2007-03-18 17:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20536, 375, 1, 13836, 4.99, '2007-03-20 12:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20537, 375, 1, 15004, 2.99, '2007-03-22 06:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20538, 375, 1, 15505, 4.99, '2007-03-23 01:14:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20539, 376, 2, 10413, 3.99, '2007-03-01 06:28:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20540, 376, 1, 10810, 3.99, '2007-03-01 21:09:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20541, 376, 1, 11144, 4.99, '2007-03-02 08:07:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20542, 376, 2, 11792, 4.99, '2007-03-17 09:32:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20543, 376, 1, 11851, 4.99, '2007-03-17 11:58:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20544, 376, 1, 13009, 0.99, '2007-03-19 06:19:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20545, 376, 1, 13141, 0.99, '2007-03-19 11:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20546, 376, 2, 13761, 4.99, '2007-03-20 09:57:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20547, 376, 1, 15107, 4.99, '2007-03-22 10:33:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20548, 376, 1, 15382, 2.99, '2007-03-22 20:59:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20549, 377, 1, 10738, 3.99, '2007-03-01 18:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20550, 377, 1, 10943, 2.99, '2007-03-02 01:45:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20551, 377, 1, 12390, 1.99, '2007-03-18 07:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20552, 377, 1, 12549, 4.99, '2007-03-18 13:06:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20553, 377, 1, 13249, 2.99, '2007-03-19 15:16:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20554, 377, 1, 13275, 0.99, '2007-03-19 16:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20555, 377, 2, 15088, 0.99, '2007-03-22 09:56:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20556, 377, 1, 15995, 0.99, '2007-03-23 18:58:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20557, 377, 1, 15999, 7.99, '2007-03-23 19:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20558, 378, 1, 10917, 4.99, '2007-03-02 00:34:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20559, 378, 1, 11111, 4.99, '2007-03-02 06:49:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20560, 378, 1, 12596, 2.99, '2007-03-18 14:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20561, 378, 1, 12828, 4.99, '2007-03-19 00:06:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20562, 378, 2, 14502, 4.99, '2007-03-21 12:50:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20563, 378, 1, 14971, 2.99, '2007-03-22 05:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20564, 379, 2, 11457, 3.99, '2007-03-02 19:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20565, 379, 1, 12503, 4.99, '2007-03-18 11:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20566, 379, 1, 13334, 0.99, '2007-03-19 18:30:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20567, 379, 2, 13397, 7.99, '2007-03-19 20:35:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20568, 379, 1, 13485, 0.99, '2007-03-19 23:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20569, 379, 1, 14011, 5.99, '2007-03-20 19:01:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20570, 379, 2, 14152, 2.99, '2007-03-21 00:52:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20571, 379, 1, 14470, 0.99, '2007-03-21 11:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20572, 379, 1, 14886, 4.99, '2007-03-22 02:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20573, 379, 2, 15399, 4.99, '2007-03-22 21:40:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20574, 379, 1, 15446, 4.99, '2007-03-22 23:17:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20575, 379, 2, 15930, 3.99, '2007-03-23 16:55:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20576, 380, 2, 10450, 1.99, '2007-03-01 07:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20577, 380, 1, 10983, 3.99, '2007-03-02 02:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20578, 380, 1, 11936, 0.99, '2007-03-17 15:14:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20579, 380, 2, 11945, 0.99, '2007-03-17 15:33:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20580, 380, 1, 12636, 3.99, '2007-03-18 16:28:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20581, 380, 1, 12996, 6.99, '2007-03-19 05:59:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20582, 380, 1, 14529, 6.99, '2007-03-21 13:36:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20583, 380, 1, 14935, 1.99, '2007-03-22 04:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20584, 380, 2, 15175, 5.99, '2007-03-22 13:57:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20585, 380, 1, 15361, 2.99, '2007-03-22 20:08:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20586, 380, 2, 15636, 2.99, '2007-03-23 06:19:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20587, 380, 1, 15697, 2.99, '2007-03-23 08:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20588, 380, 2, 15748, 2.99, '2007-03-23 11:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20589, 381, 1, 10608, 0.99, '2007-03-01 13:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20590, 381, 2, 10705, 0.99, '2007-03-01 17:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20591, 381, 1, 11519, 2.99, '2007-03-16 22:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20592, 381, 2, 12135, 2.99, '2007-03-17 22:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20593, 381, 2, 12237, 4.99, '2007-03-18 01:53:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20594, 381, 2, 12632, 2.99, '2007-03-18 16:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20595, 381, 2, 13202, 8.99, '2007-03-19 13:26:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20596, 381, 2, 13430, 0.99, '2007-03-19 21:54:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20597, 381, 1, 13614, 0.99, '2007-03-20 04:57:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20598, 381, 2, 13995, 2.99, '2007-03-20 18:03:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20599, 381, 1, 14198, 4.99, '2007-03-21 02:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20600, 381, 2, 15299, 4.99, '2007-03-22 18:11:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20601, 381, 1, 15747, 4.99, '2007-03-23 10:57:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20602, 382, 2, 10327, 3.99, '2007-03-01 03:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20603, 382, 2, 12229, 0.99, '2007-03-18 01:36:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20604, 382, 2, 12529, 0.99, '2007-03-18 12:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20605, 382, 1, 14009, 4.99, '2007-03-20 18:55:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20606, 382, 2, 14300, 4.99, '2007-03-21 05:48:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20607, 382, 2, 14354, 5.99, '2007-03-21 07:36:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20608, 382, 2, 15939, 7.99, '2007-03-23 17:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20609, 383, 2, 10515, 4.99, '2007-03-01 10:09:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20610, 383, 1, 10971, 4.99, '2007-03-02 02:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20611, 383, 2, 10993, 0.99, '2007-03-02 03:13:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20612, 383, 2, 11122, 0.99, '2007-03-02 07:17:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20613, 383, 1, 11592, 2.99, '2007-03-17 01:04:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20614, 383, 1, 12735, 4.99, '2007-03-18 20:33:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20615, 383, 2, 14039, 4.99, '2007-03-20 20:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20616, 383, 2, 14678, 4.99, '2007-03-21 18:41:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20617, 383, 1, 15416, 1.99, '2007-03-22 22:19:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20618, 383, 1, 15881, 6.99, '2007-03-23 15:12:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20619, 384, 2, 11773, 5.99, '2007-03-17 08:48:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20620, 384, 2, 13521, 2.99, '2007-03-20 01:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20621, 384, 2, 14416, 2.99, '2007-03-21 09:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20622, 384, 1, 14841, 0.99, '2007-03-22 00:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20623, 384, 1, 14963, 5.99, '2007-03-22 05:06:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20624, 384, 2, 15321, 4.99, '2007-03-22 18:48:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20625, 385, 1, 10557, 0.99, '2007-03-01 11:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20626, 385, 1, 10636, 3.99, '2007-03-01 14:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20627, 385, 1, 10655, 4.99, '2007-03-01 15:01:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20628, 385, 1, 11021, 2.99, '2007-03-02 03:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20629, 385, 1, 11559, 2.99, '2007-03-16 23:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20630, 385, 2, 12310, 2.99, '2007-03-18 04:31:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20631, 385, 2, 12686, 8.99, '2007-03-18 18:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20632, 385, 2, 13062, 7.99, '2007-03-19 08:12:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20633, 385, 1, 13117, 0.99, '2007-03-19 10:01:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20634, 385, 1, 15488, 6.99, '2007-03-23 00:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20635, 386, 1, 10572, 4.99, '2007-03-01 11:55:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20636, 386, 2, 10618, 3.99, '2007-03-01 13:35:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20637, 386, 1, 10715, 2.99, '2007-03-01 17:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20638, 386, 2, 11128, 2.99, '2007-03-02 07:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20639, 386, 2, 11695, 4.99, '2007-03-17 05:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20640, 386, 2, 12961, 2.99, '2007-03-19 04:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20641, 386, 1, 13716, 3.99, '2007-03-20 08:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20642, 386, 1, 13764, 2.99, '2007-03-20 10:06:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20643, 386, 2, 13869, 6.99, '2007-03-20 13:37:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20644, 386, 1, 15949, 0.99, '2007-03-23 17:34:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20645, 387, 1, 10564, 0.99, '2007-03-01 11:36:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20646, 387, 1, 10838, 4.99, '2007-03-01 22:04:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20647, 387, 2, 11682, 2.99, '2007-03-17 04:42:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20648, 387, 2, 12153, 4.99, '2007-03-17 22:50:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20649, 387, 1, 12936, 6.99, '2007-03-19 03:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20650, 387, 2, 13034, 2.99, '2007-03-19 07:09:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20651, 387, 1, 13082, 5.99, '2007-03-19 08:47:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20652, 387, 2, 13645, 0.99, '2007-03-20 06:15:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20653, 387, 2, 13772, 4.99, '2007-03-20 10:16:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20654, 387, 2, 14279, 5.99, '2007-03-21 05:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20655, 387, 2, 14979, 0.99, '2007-03-22 05:45:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20656, 388, 2, 11604, 0.99, '2007-03-17 01:56:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20657, 388, 2, 12044, 0.99, '2007-03-17 19:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20658, 388, 1, 12068, 2.99, '2007-03-17 20:05:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20659, 388, 2, 12267, 6.99, '2007-03-18 02:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20660, 388, 2, 12497, 4.99, '2007-03-18 11:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20661, 388, 2, 12646, 2.99, '2007-03-18 16:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20662, 388, 1, 12749, 2.99, '2007-03-18 20:59:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20663, 388, 1, 12977, 4.99, '2007-03-19 05:23:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20664, 388, 1, 14273, 10.99, '2007-03-21 04:55:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20665, 388, 2, 14853, 5.99, '2007-03-22 00:54:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20666, 388, 2, 15660, 5.99, '2007-03-23 07:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20667, 389, 1, 10949, 2.99, '2007-03-02 01:52:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20668, 389, 2, 11348, 4.99, '2007-03-02 15:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20669, 389, 2, 11441, 2.99, '2007-03-02 18:54:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20670, 389, 2, 11944, 3.99, '2007-03-17 15:31:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20671, 389, 2, 12069, 4.99, '2007-03-17 20:08:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20672, 389, 2, 14493, 7.99, '2007-03-21 12:30:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20673, 389, 1, 14578, 2.99, '2007-03-21 15:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20674, 389, 1, 14777, 2.99, '2007-03-21 22:24:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20675, 389, 1, 15462, 5.99, '2007-03-22 23:42:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20676, 389, 2, 16011, 9.99, '2007-03-23 19:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20677, 390, 1, 12105, 5.99, '2007-03-17 21:23:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20678, 390, 2, 12803, 2.99, '2007-03-18 22:56:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20679, 390, 1, 13413, 3.99, '2007-03-19 21:15:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20680, 390, 1, 13473, 4.99, '2007-03-19 23:32:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20681, 390, 1, 13501, 0.99, '2007-03-20 00:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20682, 390, 2, 13546, 3.99, '2007-03-20 02:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20683, 390, 2, 13591, 3.99, '2007-03-20 04:18:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20684, 390, 2, 13618, 7.99, '2007-03-20 05:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20685, 390, 2, 13893, 5.99, '2007-03-20 14:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20686, 390, 2, 15222, 4.99, '2007-03-22 15:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20687, 390, 2, 15303, 8.99, '2007-03-22 18:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20688, 390, 2, 15376, 4.99, '2007-03-22 20:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20689, 391, 2, 10406, 2.99, '2007-03-01 06:05:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20690, 391, 1, 11151, 4.99, '2007-03-02 08:21:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20691, 391, 2, 11434, 2.99, '2007-03-02 18:41:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20692, 391, 1, 11602, 4.99, '2007-03-17 01:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20693, 391, 1, 12090, 0.99, '2007-03-17 20:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20694, 391, 1, 12100, 1.99, '2007-03-17 21:09:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20695, 391, 1, 13980, 2.99, '2007-03-20 17:33:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20696, 391, 1, 14381, 0.99, '2007-03-21 08:24:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20697, 392, 1, 10435, 4.99, '2007-03-01 07:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20698, 392, 1, 11459, 0.99, '2007-03-02 19:53:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20699, 392, 1, 11686, 2.99, '2007-03-17 05:07:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20700, 392, 2, 12102, 6.99, '2007-03-17 21:13:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20701, 392, 1, 12368, 6.99, '2007-03-18 06:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20702, 392, 2, 12561, 0.99, '2007-03-18 13:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20703, 392, 1, 13629, 4.99, '2007-03-20 05:32:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20704, 392, 2, 14081, 7.99, '2007-03-20 22:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20705, 392, 1, 14223, 5.99, '2007-03-21 03:20:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20706, 392, 2, 14369, 0.99, '2007-03-21 08:02:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20707, 392, 2, 14438, 5.99, '2007-03-21 10:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20708, 393, 2, 12059, 2.99, '2007-03-17 19:37:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20709, 393, 1, 12113, 1.99, '2007-03-17 21:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20710, 393, 1, 12563, 4.99, '2007-03-18 13:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20711, 393, 1, 12676, 0.99, '2007-03-18 18:03:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20712, 393, 1, 13184, 4.99, '2007-03-19 12:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20713, 393, 2, 13357, 4.99, '2007-03-19 19:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20714, 393, 2, 13788, 1.99, '2007-03-20 10:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20715, 393, 1, 15132, 2.99, '2007-03-22 11:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20716, 393, 2, 15284, 3.99, '2007-03-22 17:45:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20717, 393, 2, 15527, 0.99, '2007-03-23 02:13:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20718, 393, 2, 16049, 3.99, '2007-03-23 21:18:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20719, 394, 1, 10319, 4.99, '2007-03-01 03:05:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20720, 394, 1, 10603, 0.99, '2007-03-01 12:59:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20721, 394, 1, 10718, 0.99, '2007-03-01 17:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20722, 394, 1, 12080, 4.99, '2007-03-17 20:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20723, 394, 1, 12389, 4.99, '2007-03-18 07:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20724, 394, 2, 12510, 9.99, '2007-03-18 11:50:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20725, 394, 2, 13047, 0.99, '2007-03-19 07:53:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20726, 394, 1, 14605, 0.99, '2007-03-21 16:24:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20727, 395, 1, 11889, 0.99, '2007-03-17 13:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20728, 395, 1, 14471, 5.99, '2007-03-21 11:39:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20729, 395, 2, 14720, 0.99, '2007-03-21 20:12:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20730, 395, 1, 15698, 2.99, '2007-03-23 08:40:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20731, 395, 1, 15856, 0.99, '2007-03-23 14:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20732, 395, 1, 15970, 4.99, '2007-03-23 18:22:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20733, 396, 2, 10610, 0.99, '2007-03-01 13:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20734, 396, 2, 12393, 5.99, '2007-03-18 07:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20735, 396, 1, 12895, 4.99, '2007-03-19 02:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20736, 396, 2, 13355, 4.99, '2007-03-19 19:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20737, 396, 1, 14078, 3.99, '2007-03-20 21:55:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20738, 396, 1, 14169, 4.99, '2007-03-21 01:28:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20739, 396, 1, 14508, 2.99, '2007-03-21 13:02:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20740, 396, 2, 14778, 5.99, '2007-03-21 22:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20741, 396, 1, 14792, 1.99, '2007-03-21 23:05:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20742, 396, 2, 15198, 7.99, '2007-03-22 14:43:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20743, 397, 1, 10534, 0.99, '2007-03-01 10:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20744, 397, 2, 10598, 4.99, '2007-03-01 12:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20745, 397, 1, 10785, 1.99, '2007-03-01 19:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20746, 397, 2, 11511, 4.99, '2007-03-16 22:08:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20747, 397, 2, 12223, 2.99, '2007-03-18 01:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20748, 397, 1, 12276, 0.99, '2007-03-18 03:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20749, 397, 2, 12329, 1.99, '2007-03-18 05:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20750, 397, 2, 12700, 0.99, '2007-03-18 18:53:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20751, 397, 2, 12726, 2.99, '2007-03-18 20:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20752, 397, 1, 12772, 4.99, '2007-03-18 21:57:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20753, 397, 2, 14100, 3.99, '2007-03-20 22:59:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20754, 397, 1, 14790, 6.99, '2007-03-21 23:02:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20755, 397, 1, 15083, 6.99, '2007-03-22 09:46:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20756, 398, 1, 10230, 2.99, '2007-03-01 00:18:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20757, 398, 2, 11132, 4.99, '2007-03-02 07:42:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20758, 398, 2, 12528, 2.99, '2007-03-18 12:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20759, 398, 2, 13643, 4.99, '2007-03-20 06:10:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20760, 398, 1, 15189, 3.99, '2007-03-22 14:25:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20761, 399, 2, 10654, 2.99, '2007-03-01 15:00:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20762, 399, 2, 10960, 5.99, '2007-03-02 02:14:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20763, 399, 1, 11329, 4.99, '2007-03-02 15:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20764, 399, 1, 11953, 3.99, '2007-03-17 15:45:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20765, 399, 1, 13253, 4.99, '2007-03-19 15:22:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20766, 399, 2, 13293, 4.99, '2007-03-19 17:04:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20767, 399, 1, 15300, 0.99, '2007-03-22 18:12:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20768, 399, 1, 15468, 4.99, '2007-03-22 23:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20769, 400, 2, 10484, 2.99, '2007-03-01 08:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20770, 400, 1, 10711, 0.99, '2007-03-01 17:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20771, 400, 2, 11510, 6.99, '2007-03-16 21:58:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20772, 400, 2, 11530, 2.99, '2007-03-16 22:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20773, 400, 1, 11600, 5.99, '2007-03-17 01:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20774, 400, 1, 12514, 2.99, '2007-03-18 12:02:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20775, 400, 2, 13449, 2.99, '2007-03-19 22:45:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20776, 400, 1, 14775, 2.99, '2007-03-21 22:21:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20777, 400, 2, 15533, 4.99, '2007-03-23 02:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20778, 400, 2, 15988, 4.99, '2007-03-23 18:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20779, 401, 1, 11820, 2.99, '2007-03-17 10:53:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20780, 401, 1, 12475, 4.99, '2007-03-18 10:42:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20781, 401, 2, 12479, 4.99, '2007-03-18 10:55:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20782, 401, 1, 12906, 2.99, '2007-03-19 02:42:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20783, 401, 1, 13024, 4.99, '2007-03-19 06:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20784, 401, 1, 14359, 0.99, '2007-03-21 07:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20785, 401, 2, 14433, 1.99, '2007-03-21 10:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20786, 401, 1, 15831, 0.99, '2007-03-23 13:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20787, 401, 1, 15927, 0.99, '2007-03-23 16:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20788, 402, 2, 11045, 0.99, '2007-03-02 04:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20789, 402, 2, 11549, 4.99, '2007-03-16 23:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20790, 402, 2, 11920, 0.99, '2007-03-17 14:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20791, 402, 1, 15428, 4.99, '2007-03-22 22:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20792, 403, 1, 10443, 2.99, '2007-03-01 07:29:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20793, 403, 1, 10547, 6.99, '2007-03-01 11:12:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20794, 403, 2, 10789, 2.99, '2007-03-01 20:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20795, 403, 1, 11038, 7.99, '2007-03-02 04:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20796, 403, 2, 11391, 9.99, '2007-03-02 17:08:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20797, 403, 2, 11427, 2.99, '2007-03-02 18:31:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20798, 403, 2, 11460, 0.99, '2007-03-02 19:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20799, 403, 2, 11558, 0.99, '2007-03-16 23:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20800, 403, 2, 12005, 5.99, '2007-03-17 17:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20801, 403, 1, 12132, 2.99, '2007-03-17 22:05:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20802, 403, 1, 12793, 5.99, '2007-03-18 22:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20803, 403, 1, 14519, 2.99, '2007-03-21 13:27:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20804, 403, 1, 14662, 0.99, '2007-03-21 18:13:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20805, 403, 2, 14725, 4.99, '2007-03-21 20:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20806, 403, 1, 15410, 4.99, '2007-03-22 21:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20807, 404, 1, 10651, 2.99, '2007-03-01 14:48:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20808, 404, 1, 12325, 5.99, '2007-03-18 05:09:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20809, 404, 1, 12554, 8.99, '2007-03-18 13:15:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20810, 404, 2, 13412, 5.99, '2007-03-19 21:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20811, 404, 1, 13422, 4.99, '2007-03-19 21:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20812, 404, 1, 14691, 0.99, '2007-03-21 19:10:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20813, 404, 2, 14835, 5.99, '2007-03-22 00:17:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20814, 404, 2, 14838, 4.99, '2007-03-22 00:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20815, 404, 2, 14912, 4.99, '2007-03-22 03:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20816, 404, 2, 15087, 0.99, '2007-03-22 09:52:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20817, 404, 2, 15290, 10.99, '2007-03-22 17:56:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20818, 405, 1, 10472, 4.99, '2007-03-01 08:23:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20819, 405, 2, 10823, 4.99, '2007-03-01 21:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20820, 405, 1, 11345, 7.99, '2007-03-02 15:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20821, 405, 1, 12050, 0.99, '2007-03-17 19:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20822, 405, 2, 12425, 5.99, '2007-03-18 08:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20823, 405, 1, 13304, 1.99, '2007-03-19 17:24:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20824, 405, 1, 13398, 0.99, '2007-03-19 20:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20825, 405, 1, 14274, 4.99, '2007-03-21 04:57:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20826, 405, 2, 14537, 0.99, '2007-03-21 13:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20827, 405, 1, 15072, 1.99, '2007-03-22 09:27:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20828, 405, 2, 15383, 2.99, '2007-03-22 20:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20829, 405, 1, 15932, 4.99, '2007-03-23 17:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20830, 406, 1, 10632, 1.99, '2007-03-01 14:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20831, 406, 1, 11603, 4.99, '2007-03-17 01:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20832, 406, 2, 12505, 5.99, '2007-03-18 11:45:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20833, 406, 2, 14205, 6.99, '2007-03-21 02:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20834, 406, 2, 14421, 2.99, '2007-03-21 09:48:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20835, 406, 2, 14601, 2.99, '2007-03-21 16:14:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20836, 407, 2, 10774, 4.99, '2007-03-01 19:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20837, 407, 1, 11214, 8.99, '2007-03-02 10:48:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20838, 407, 1, 11222, 2.99, '2007-03-02 11:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20839, 407, 2, 11382, 5.99, '2007-03-02 16:49:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20840, 407, 2, 11518, 4.99, '2007-03-16 22:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20841, 407, 1, 11677, 0.99, '2007-03-17 04:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20842, 407, 2, 12566, 0.99, '2007-03-18 13:41:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20843, 407, 2, 12931, 2.99, '2007-03-19 03:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20844, 407, 1, 13800, 0.99, '2007-03-20 11:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20845, 407, 2, 13856, 6.99, '2007-03-20 13:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20846, 407, 2, 14401, 6.99, '2007-03-21 09:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20847, 407, 2, 15320, 0.99, '2007-03-22 18:46:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20848, 407, 2, 15334, 1.99, '2007-03-22 19:13:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20849, 408, 2, 11115, 2.99, '2007-03-02 06:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20850, 408, 1, 12140, 2.99, '2007-03-17 22:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20851, 408, 1, 12338, 4.99, '2007-03-18 05:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20852, 408, 1, 12498, 2.99, '2007-03-18 11:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20853, 408, 2, 12900, 0.99, '2007-03-19 02:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20854, 408, 1, 13508, 7.99, '2007-03-20 00:41:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20855, 408, 2, 13744, 3.99, '2007-03-20 09:20:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20856, 408, 1, 13944, 2.99, '2007-03-20 16:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20857, 408, 2, 14733, 4.99, '2007-03-21 20:50:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20858, 408, 1, 15628, 2.99, '2007-03-23 05:56:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20859, 408, 2, 15716, 1.99, '2007-03-23 09:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20860, 408, 1, 15765, 6.99, '2007-03-23 11:34:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20861, 409, 2, 12830, 0.99, '2007-03-19 00:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20862, 409, 1, 13392, 8.99, '2007-03-19 20:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20863, 409, 2, 13632, 6.99, '2007-03-20 05:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20864, 409, 1, 14103, 1.99, '2007-03-20 23:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20865, 409, 1, 14697, 4.99, '2007-03-21 19:17:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20866, 410, 1, 10402, 4.99, '2007-03-01 05:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20867, 410, 1, 10837, 2.99, '2007-03-01 21:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20868, 410, 1, 11107, 0.99, '2007-03-02 06:48:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20869, 410, 1, 11187, 10.99, '2007-03-02 09:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20870, 410, 1, 11472, 6.99, '2007-03-02 20:17:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20871, 410, 1, 11694, 6.99, '2007-03-17 05:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20872, 410, 2, 12955, 8.99, '2007-03-19 04:34:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20873, 410, 1, 13460, 4.99, '2007-03-19 23:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20874, 410, 2, 13748, 2.99, '2007-03-20 09:28:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20875, 410, 2, 13948, 6.99, '2007-03-20 16:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20876, 410, 1, 14237, 3.99, '2007-03-21 03:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20877, 410, 2, 14298, 4.99, '2007-03-21 05:45:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20878, 410, 1, 14319, 4.99, '2007-03-21 06:29:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20879, 410, 2, 14819, 2.99, '2007-03-21 23:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20880, 410, 1, 15211, 2.99, '2007-03-22 15:08:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20881, 410, 2, 15392, 3.99, '2007-03-22 21:30:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20882, 410, 1, 15518, 4.99, '2007-03-23 01:48:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20883, 411, 2, 11294, 2.99, '2007-03-02 13:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20884, 411, 1, 11997, 5.99, '2007-03-17 17:03:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20885, 411, 2, 13634, 0.99, '2007-03-20 05:45:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20886, 411, 2, 13656, 7.99, '2007-03-20 06:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20887, 411, 2, 14480, 2.99, '2007-03-21 12:05:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20888, 411, 1, 14772, 5.99, '2007-03-21 22:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20889, 411, 2, 14996, 2.99, '2007-03-22 06:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20890, 411, 1, 15936, 0.99, '2007-03-23 17:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20891, 412, 2, 10381, 2.99, '2007-03-01 05:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20892, 412, 1, 10467, 5.99, '2007-03-01 08:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20893, 412, 2, 11027, 4.99, '2007-03-02 04:15:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20894, 412, 1, 14068, 3.99, '2007-03-20 21:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20895, 412, 1, 14535, 6.99, '2007-03-21 13:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20896, 412, 2, 15354, 4.99, '2007-03-22 19:47:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20897, 412, 2, 15732, 4.99, '2007-03-23 10:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20898, 412, 1, 15781, 8.99, '2007-03-23 12:09:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20899, 413, 1, 10909, 2.99, '2007-03-02 00:22:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20900, 413, 2, 11304, 2.99, '2007-03-02 14:08:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20901, 413, 1, 11468, 0.99, '2007-03-02 20:15:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20902, 413, 1, 11532, 0.99, '2007-03-16 23:02:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20903, 413, 2, 12552, 2.99, '2007-03-18 13:15:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20904, 413, 1, 13010, 3.99, '2007-03-19 06:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20905, 413, 1, 13318, 2.99, '2007-03-19 18:02:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20906, 413, 2, 13824, 4.99, '2007-03-20 12:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20907, 413, 2, 13887, 4.99, '2007-03-20 14:07:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20908, 413, 1, 14773, 2.99, '2007-03-21 22:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20909, 413, 1, 15678, 2.99, '2007-03-23 07:52:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20910, 414, 1, 11706, 0.99, '2007-03-17 05:52:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20911, 414, 2, 12930, 4.99, '2007-03-19 03:39:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20912, 414, 1, 13042, 0.99, '2007-03-19 07:34:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20913, 414, 1, 13242, 2.99, '2007-03-19 14:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20914, 414, 1, 13308, 7.99, '2007-03-19 17:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20915, 414, 1, 13404, 0.99, '2007-03-19 20:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20916, 414, 2, 13494, 2.99, '2007-03-20 00:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20917, 414, 2, 13657, 4.99, '2007-03-20 06:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20918, 414, 1, 15140, 6.99, '2007-03-22 12:07:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20919, 414, 2, 15481, 0.99, '2007-03-23 00:27:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20920, 415, 1, 10263, 5.99, '2007-03-01 01:31:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20921, 415, 1, 10553, 2.99, '2007-03-01 11:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20922, 415, 2, 11310, 1.99, '2007-03-02 14:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20923, 415, 2, 12128, 5.99, '2007-03-17 21:59:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20924, 415, 2, 12588, 2.99, '2007-03-18 14:33:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20925, 415, 2, 13729, 8.99, '2007-03-20 08:45:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20926, 415, 1, 14992, 4.99, '2007-03-22 06:20:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20927, 415, 2, 15121, 4.99, '2007-03-22 11:15:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20928, 415, 1, 15959, 0.99, '2007-03-23 17:55:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20929, 416, 1, 10254, 3.99, '2007-03-01 01:10:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20930, 416, 1, 10354, 2.99, '2007-03-01 04:15:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20931, 416, 1, 10742, 6.99, '2007-03-01 18:21:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20932, 416, 1, 10937, 6.99, '2007-03-02 01:28:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20933, 416, 2, 11047, 5.99, '2007-03-02 04:37:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20934, 416, 1, 11557, 6.99, '2007-03-16 23:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20935, 416, 1, 12722, 8.99, '2007-03-18 20:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20936, 416, 1, 12932, 4.99, '2007-03-19 03:45:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20937, 416, 1, 14239, 4.99, '2007-03-21 03:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20938, 416, 1, 15235, 1.99, '2007-03-22 16:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20939, 416, 2, 15470, 4.99, '2007-03-23 00:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20940, 416, 1, 15727, 2.99, '2007-03-23 09:57:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20941, 416, 2, 15761, 0.99, '2007-03-23 11:24:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20942, 417, 1, 10478, 0.99, '2007-03-01 08:37:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20943, 417, 1, 11217, 7.99, '2007-03-02 10:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20944, 417, 1, 11291, 6.99, '2007-03-02 13:26:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20945, 417, 2, 11303, 0.99, '2007-03-02 14:07:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20946, 417, 2, 12074, 0.99, '2007-03-17 20:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20947, 417, 2, 12281, 4.99, '2007-03-18 03:18:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20948, 417, 1, 13545, 4.99, '2007-03-20 02:18:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20949, 417, 1, 13927, 1.99, '2007-03-20 15:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20950, 417, 2, 14121, 4.99, '2007-03-20 23:54:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20951, 417, 1, 14304, 6.99, '2007-03-21 05:51:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20952, 417, 1, 14607, 2.99, '2007-03-21 16:25:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20953, 417, 2, 14882, 2.99, '2007-03-22 02:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20954, 417, 1, 15795, 0.99, '2007-03-23 12:36:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20955, 418, 2, 10537, 5.99, '2007-03-01 10:50:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20956, 418, 1, 10709, 0.99, '2007-03-01 17:12:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20957, 418, 2, 10915, 2.99, '2007-03-02 00:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20958, 418, 1, 11270, 2.99, '2007-03-02 12:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20959, 418, 2, 11322, 3.99, '2007-03-02 14:51:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20960, 418, 2, 11409, 1.99, '2007-03-02 17:55:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20961, 418, 1, 11650, 4.99, '2007-03-17 03:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20962, 418, 1, 11769, 2.99, '2007-03-17 08:33:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20963, 418, 1, 11910, 0.99, '2007-03-17 14:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20964, 418, 2, 13312, 0.99, '2007-03-19 17:37:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20965, 418, 1, 13537, 2.99, '2007-03-20 02:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20966, 418, 1, 13970, 0.99, '2007-03-20 17:12:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20967, 418, 1, 14484, 0.99, '2007-03-21 12:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20968, 418, 1, 14836, 4.99, '2007-03-22 00:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20969, 418, 2, 14860, 2.99, '2007-03-22 01:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20970, 418, 1, 15466, 4.99, '2007-03-22 23:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20971, 418, 2, 15957, 5.99, '2007-03-23 17:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20972, 419, 1, 10372, 2.99, '2007-03-01 04:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20973, 419, 2, 11025, 4.99, '2007-03-02 04:07:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20974, 419, 1, 11313, 2.99, '2007-03-02 14:31:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20975, 419, 2, 11323, 2.99, '2007-03-02 14:58:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20976, 419, 1, 11425, 2.99, '2007-03-02 18:27:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20977, 419, 2, 11689, 6.99, '2007-03-17 05:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20978, 419, 1, 12460, 7.99, '2007-03-18 09:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20979, 419, 1, 12720, 5.99, '2007-03-18 19:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20980, 419, 2, 14308, 0.99, '2007-03-21 06:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20981, 419, 2, 15779, 4.99, '2007-03-23 12:02:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20982, 420, 2, 10291, 4.99, '2007-03-01 02:08:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20983, 420, 2, 10601, 10.99, '2007-03-01 12:54:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20984, 420, 1, 10766, 4.99, '2007-03-01 19:04:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20985, 420, 2, 11236, 5.99, '2007-03-02 11:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20986, 420, 2, 14525, 0.99, '2007-03-21 13:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20987, 420, 2, 15597, 0.99, '2007-03-23 04:49:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20988, 421, 2, 11089, 2.99, '2007-03-02 06:20:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20989, 421, 1, 11263, 4.99, '2007-03-02 12:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20990, 421, 1, 11523, 3.99, '2007-03-16 22:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20991, 421, 1, 12279, 4.99, '2007-03-18 03:15:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20992, 421, 2, 13461, 9.99, '2007-03-19 23:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20993, 421, 1, 13872, 4.99, '2007-03-20 13:38:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20994, 421, 1, 14742, 4.99, '2007-03-21 21:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20995, 421, 1, 14887, 3.99, '2007-03-22 02:32:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20996, 422, 2, 10833, 6.99, '2007-03-01 21:54:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20997, 422, 2, 11325, 6.99, '2007-03-02 15:01:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20998, 422, 1, 11658, 2.99, '2007-03-17 03:47:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (20999, 422, 1, 11842, 4.99, '2007-03-17 11:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21000, 422, 1, 12907, 9.99, '2007-03-19 02:44:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21001, 422, 2, 13216, 1.99, '2007-03-19 14:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21002, 422, 2, 13625, 1.99, '2007-03-20 05:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21003, 422, 2, 13709, 0.99, '2007-03-20 08:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21004, 422, 2, 13722, 4.99, '2007-03-20 08:32:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21005, 422, 1, 14861, 4.99, '2007-03-22 01:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21006, 422, 1, 15272, 3.99, '2007-03-22 17:18:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21007, 422, 1, 15273, 2.99, '2007-03-22 17:21:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21008, 422, 2, 15316, 2.99, '2007-03-22 18:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21009, 423, 1, 10488, 2.99, '2007-03-01 08:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21010, 423, 1, 11091, 2.99, '2007-03-02 06:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21011, 423, 2, 11514, 4.99, '2007-03-16 22:21:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21012, 423, 2, 12806, 4.99, '2007-03-18 23:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21013, 423, 2, 14191, 6.99, '2007-03-21 02:04:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21014, 423, 2, 14902, 4.99, '2007-03-22 03:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21015, 423, 1, 15380, 0.99, '2007-03-22 20:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21016, 423, 1, 15755, 4.99, '2007-03-23 11:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21017, 424, 2, 10369, 4.99, '2007-03-01 04:42:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21018, 424, 1, 10866, 2.99, '2007-03-01 22:51:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21019, 424, 2, 11374, 2.99, '2007-03-02 16:43:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21020, 424, 2, 11562, 6.99, '2007-03-16 23:52:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21021, 424, 2, 11833, 2.99, '2007-03-17 11:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21022, 424, 2, 12729, 0.99, '2007-03-18 20:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21023, 424, 2, 13793, 3.99, '2007-03-20 10:50:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21024, 424, 2, 15113, 0.99, '2007-03-22 10:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21025, 424, 2, 15941, 9.99, '2007-03-23 17:15:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21026, 425, 1, 10545, 0.99, '2007-03-01 11:06:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21027, 425, 2, 13040, 0.99, '2007-03-19 07:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21028, 425, 2, 14089, 5.99, '2007-03-20 22:27:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21029, 425, 2, 14881, 4.99, '2007-03-22 02:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21030, 425, 1, 15064, 0.99, '2007-03-22 09:10:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21031, 425, 2, 15784, 6.99, '2007-03-23 12:14:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21032, 425, 2, 16036, 2.99, '2007-03-23 20:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21033, 426, 1, 10505, 1.99, '2007-03-01 09:42:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21034, 426, 2, 11237, 0.99, '2007-03-02 11:52:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21035, 426, 2, 11876, 0.99, '2007-03-17 12:46:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21036, 426, 2, 11938, 6.99, '2007-03-17 15:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21037, 426, 2, 12548, 5.99, '2007-03-18 13:03:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21038, 426, 2, 12707, 4.99, '2007-03-18 19:20:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21039, 426, 1, 12822, 4.99, '2007-03-18 23:43:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21040, 426, 2, 13834, 2.99, '2007-03-20 12:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21041, 426, 2, 14151, 6.99, '2007-03-21 00:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21042, 426, 2, 14826, 2.99, '2007-03-22 00:00:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21043, 427, 1, 10417, 4.99, '2007-03-01 06:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21044, 427, 1, 10464, 5.99, '2007-03-01 08:11:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21045, 427, 2, 10560, 4.99, '2007-03-01 11:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21046, 427, 1, 11024, 5.99, '2007-03-02 04:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21047, 427, 1, 13720, 1.99, '2007-03-20 08:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21048, 427, 2, 14201, 6.99, '2007-03-21 02:20:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21049, 427, 1, 14287, 3.99, '2007-03-21 05:22:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21050, 427, 1, 15330, 3.99, '2007-03-22 19:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21051, 428, 2, 10577, 4.99, '2007-03-01 12:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21052, 428, 2, 10888, 2.99, '2007-03-01 23:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21053, 428, 2, 11536, 0.99, '2007-03-16 23:08:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21054, 429, 1, 12259, 2.99, '2007-03-18 02:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21055, 429, 1, 12953, 4.99, '2007-03-19 04:32:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21056, 429, 2, 14495, 4.99, '2007-03-21 12:33:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21057, 430, 1, 12723, 0.99, '2007-03-18 20:02:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21058, 430, 1, 12965, 4.99, '2007-03-19 05:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21059, 430, 1, 13007, 0.99, '2007-03-19 06:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21060, 430, 2, 13452, 0.99, '2007-03-19 22:48:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21061, 430, 2, 13454, 2.99, '2007-03-19 22:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21062, 430, 1, 14058, 5.99, '2007-03-20 20:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21063, 430, 1, 15031, 4.99, '2007-03-22 07:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21064, 431, 2, 10508, 0.99, '2007-03-01 09:51:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21065, 431, 1, 10527, 4.99, '2007-03-01 10:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21066, 431, 2, 10959, 6.99, '2007-03-02 02:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21067, 431, 2, 11538, 2.99, '2007-03-16 23:12:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21068, 431, 1, 12273, 6.99, '2007-03-18 03:09:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21069, 431, 2, 13153, 1.99, '2007-03-19 11:38:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21070, 431, 1, 13784, 4.99, '2007-03-20 10:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21071, 431, 1, 15809, 2.99, '2007-03-23 13:10:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21072, 431, 1, 15960, 2.99, '2007-03-23 18:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21073, 432, 2, 11870, 0.99, '2007-03-17 12:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21074, 432, 1, 12767, 6.99, '2007-03-18 21:54:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21075, 432, 1, 14027, 2.99, '2007-03-20 19:50:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21076, 432, 1, 15523, 4.99, '2007-03-23 02:01:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21077, 432, 1, 15713, 6.99, '2007-03-23 09:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21078, 433, 1, 10663, 4.99, '2007-03-01 15:19:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21079, 433, 1, 11664, 2.99, '2007-03-17 04:04:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21080, 433, 2, 12669, 6.99, '2007-03-18 17:46:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21081, 433, 2, 13273, 4.99, '2007-03-19 16:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21082, 433, 1, 13801, 4.99, '2007-03-20 11:09:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21083, 433, 2, 14523, 4.99, '2007-03-21 13:32:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21084, 433, 1, 14559, 6.99, '2007-03-21 14:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21085, 433, 2, 15476, 4.99, '2007-03-23 00:13:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21086, 433, 1, 15502, 5.99, '2007-03-23 01:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21087, 434, 1, 11242, 3.99, '2007-03-02 12:00:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21088, 434, 1, 11867, 2.99, '2007-03-17 12:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21089, 434, 2, 12030, 2.99, '2007-03-17 18:39:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21090, 434, 2, 12146, 2.99, '2007-03-17 22:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21091, 434, 2, 12624, 7.99, '2007-03-18 16:03:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21092, 434, 2, 13359, 9.99, '2007-03-19 19:33:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21093, 434, 1, 13383, 7.99, '2007-03-19 20:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21094, 434, 2, 14553, 4.99, '2007-03-21 14:28:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21095, 434, 2, 15016, 3.99, '2007-03-22 07:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21096, 434, 2, 15385, 4.99, '2007-03-22 21:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21097, 435, 1, 10998, 6.99, '2007-03-02 03:19:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21098, 435, 1, 11041, 2.99, '2007-03-02 04:32:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21099, 435, 1, 11786, 3.99, '2007-03-17 09:26:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21100, 435, 1, 11796, 0.99, '2007-03-17 09:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21101, 435, 2, 12046, 0.99, '2007-03-17 19:16:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21102, 435, 1, 12741, 4.99, '2007-03-18 20:45:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21103, 435, 2, 13208, 0.99, '2007-03-19 13:47:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21104, 435, 1, 14696, 4.99, '2007-03-21 19:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21105, 435, 1, 14765, 1.99, '2007-03-21 22:08:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21106, 435, 1, 14850, 0.99, '2007-03-22 00:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21107, 435, 1, 15136, 2.99, '2007-03-22 11:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21108, 436, 2, 11160, 0.99, '2007-03-02 08:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21109, 436, 1, 11580, 2.99, '2007-03-17 00:27:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21110, 436, 2, 11615, 4.99, '2007-03-17 02:23:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21111, 436, 2, 11896, 5.99, '2007-03-17 13:48:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21112, 436, 2, 12297, 0.99, '2007-03-18 03:48:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21113, 436, 2, 12429, 6.99, '2007-03-18 08:55:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21114, 436, 2, 13099, 9.99, '2007-03-19 09:23:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21115, 436, 2, 13382, 7.99, '2007-03-19 20:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21116, 436, 1, 13533, 3.99, '2007-03-20 01:58:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21117, 436, 1, 13760, 5.99, '2007-03-20 09:54:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21118, 436, 1, 13814, 0.99, '2007-03-20 11:35:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21119, 436, 2, 13826, 2.99, '2007-03-20 12:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21120, 436, 2, 15766, 4.99, '2007-03-23 11:38:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21121, 437, 2, 10249, 0.99, '2007-03-01 01:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21122, 437, 2, 11417, 3.99, '2007-03-02 18:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21123, 437, 1, 12205, 8.99, '2007-03-18 00:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21124, 437, 2, 13838, 7.99, '2007-03-20 12:51:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21125, 437, 1, 13839, 2.99, '2007-03-20 12:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21126, 437, 1, 13905, 1.99, '2007-03-20 14:41:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21127, 437, 1, 14993, 1.99, '2007-03-22 06:20:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21128, 438, 1, 10512, 6.99, '2007-03-01 10:04:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21129, 438, 1, 10607, 4.99, '2007-03-01 13:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21130, 438, 2, 11644, 4.99, '2007-03-17 03:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21131, 438, 2, 11933, 4.99, '2007-03-17 15:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21132, 438, 2, 12654, 0.99, '2007-03-18 17:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21133, 438, 2, 13319, 7.99, '2007-03-19 18:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21134, 438, 1, 13414, 4.99, '2007-03-19 21:16:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21135, 438, 2, 14582, 5.99, '2007-03-21 15:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21136, 438, 2, 15893, 5.99, '2007-03-23 15:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21137, 439, 2, 10744, 1.99, '2007-03-01 18:25:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21138, 439, 1, 10905, 2.99, '2007-03-02 00:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21139, 439, 2, 11042, 6.99, '2007-03-02 04:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21140, 439, 2, 11544, 5.99, '2007-03-16 23:23:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21141, 439, 1, 11989, 2.99, '2007-03-17 16:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21142, 439, 1, 12621, 2.99, '2007-03-18 16:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21143, 439, 2, 12755, 5.99, '2007-03-18 21:07:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21144, 439, 2, 12826, 3.99, '2007-03-18 23:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21145, 439, 2, 13358, 4.99, '2007-03-19 19:32:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21146, 439, 2, 14730, 5.99, '2007-03-21 20:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21147, 439, 2, 15044, 9.99, '2007-03-22 08:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21148, 439, 2, 15162, 4.99, '2007-03-22 13:09:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21149, 439, 2, 15653, 4.99, '2007-03-23 07:03:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21150, 439, 1, 15818, 1.99, '2007-03-23 13:28:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21151, 439, 1, 16018, 0.99, '2007-03-23 19:56:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21152, 440, 2, 12403, 6.99, '2007-03-18 07:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21153, 440, 1, 12850, 0.99, '2007-03-19 00:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21154, 440, 2, 13384, 4.99, '2007-03-19 20:07:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21155, 440, 2, 13779, 2.99, '2007-03-20 10:32:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21156, 440, 1, 14555, 0.99, '2007-03-21 14:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21157, 440, 2, 14863, 7.99, '2007-03-22 01:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21158, 440, 2, 15264, 0.99, '2007-03-22 16:56:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21159, 440, 1, 15925, 4.99, '2007-03-23 16:43:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21160, 441, 1, 10846, 1.99, '2007-03-01 22:16:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21161, 441, 2, 11247, 1.99, '2007-03-02 12:02:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21162, 441, 2, 13483, 2.99, '2007-03-19 23:45:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21163, 441, 2, 13739, 4.99, '2007-03-20 09:13:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21164, 441, 1, 13932, 4.99, '2007-03-20 15:45:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21165, 441, 2, 14796, 4.99, '2007-03-21 23:09:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21166, 441, 2, 15070, 3.99, '2007-03-22 09:24:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21167, 442, 2, 10365, 6.99, '2007-03-01 04:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21168, 442, 2, 10452, 0.99, '2007-03-01 07:40:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21169, 442, 1, 12948, 0.99, '2007-03-19 04:23:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21170, 442, 2, 13004, 0.99, '2007-03-19 06:08:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21171, 442, 1, 13155, 7.99, '2007-03-19 11:38:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21172, 442, 2, 14199, 0.99, '2007-03-21 02:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21173, 442, 1, 14418, 1.99, '2007-03-21 09:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21174, 442, 1, 14466, 0.99, '2007-03-21 11:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21175, 442, 2, 15207, 2.99, '2007-03-22 15:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21176, 443, 2, 10360, 0.99, '2007-03-01 04:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21177, 443, 1, 11449, 4.99, '2007-03-02 19:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21178, 443, 1, 12415, 4.99, '2007-03-18 08:22:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21179, 443, 2, 12857, 4.99, '2007-03-19 00:48:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21180, 443, 1, 13489, 2.99, '2007-03-19 23:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21181, 443, 1, 14561, 2.99, '2007-03-21 14:49:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21182, 443, 2, 14611, 6.99, '2007-03-21 16:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21183, 443, 1, 15182, 0.99, '2007-03-22 14:15:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21184, 443, 2, 15393, 4.99, '2007-03-22 21:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21185, 443, 1, 15519, 0.99, '2007-03-23 01:51:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21186, 444, 1, 10529, 4.99, '2007-03-01 10:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21187, 444, 1, 10693, 4.99, '2007-03-01 16:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21188, 444, 2, 11353, 0.99, '2007-03-02 16:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21189, 444, 2, 11419, 6.99, '2007-03-02 18:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21190, 444, 1, 11728, 4.99, '2007-03-17 06:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21191, 444, 1, 12161, 6.99, '2007-03-17 23:10:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21192, 444, 2, 12712, 2.99, '2007-03-18 19:32:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21193, 444, 2, 12946, 2.99, '2007-03-19 04:22:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21194, 444, 1, 13488, 0.99, '2007-03-19 23:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21195, 444, 2, 13559, 2.99, '2007-03-20 02:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21196, 444, 1, 13924, 0.99, '2007-03-20 15:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21197, 444, 1, 15249, 4.99, '2007-03-22 16:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21198, 444, 1, 15557, 0.99, '2007-03-23 03:20:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21199, 444, 2, 15815, 4.99, '2007-03-23 13:24:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21200, 445, 2, 10334, 1.99, '2007-03-01 03:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21201, 445, 2, 10341, 0.99, '2007-03-01 03:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21202, 445, 2, 10936, 9.99, '2007-03-02 01:23:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21203, 445, 1, 11383, 7.99, '2007-03-02 16:50:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21204, 445, 1, 11868, 4.99, '2007-03-17 12:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21205, 445, 1, 11877, 3.99, '2007-03-17 12:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21206, 445, 2, 13586, 0.99, '2007-03-20 04:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21207, 445, 1, 14612, 6.99, '2007-03-21 16:31:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21208, 445, 2, 14673, 2.99, '2007-03-21 18:29:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21209, 445, 1, 14866, 6.99, '2007-03-22 01:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21210, 445, 1, 14955, 4.99, '2007-03-22 04:54:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21211, 445, 1, 15123, 3.99, '2007-03-22 11:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21212, 445, 1, 15791, 6.99, '2007-03-23 12:30:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21213, 445, 2, 15906, 2.99, '2007-03-23 16:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21214, 446, 1, 11051, 3.99, '2007-03-02 04:52:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21215, 446, 2, 12253, 0.99, '2007-03-18 02:29:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21216, 446, 2, 12480, 8.99, '2007-03-18 10:55:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21217, 446, 1, 15808, 1.99, '2007-03-23 13:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21218, 446, 2, 15951, 0.99, '2007-03-23 17:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21219, 447, 1, 10425, 2.99, '2007-03-01 06:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21220, 447, 2, 10957, 5.99, '2007-03-02 02:01:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21221, 447, 2, 11108, 0.99, '2007-03-02 06:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21222, 447, 1, 11465, 5.99, '2007-03-02 20:12:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21223, 447, 2, 12511, 0.99, '2007-03-18 11:51:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21224, 447, 1, 13072, 2.99, '2007-03-19 08:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21225, 447, 2, 13110, 0.99, '2007-03-19 09:53:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21226, 447, 1, 13848, 4.99, '2007-03-20 13:06:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21227, 447, 2, 14443, 5.99, '2007-03-21 10:34:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21228, 447, 1, 15108, 2.99, '2007-03-22 10:38:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21229, 447, 1, 15997, 4.99, '2007-03-23 19:08:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21230, 447, 2, 16032, 4.99, '2007-03-23 20:28:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21231, 448, 2, 11608, 8.99, '2007-03-17 02:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21232, 448, 1, 11798, 9.99, '2007-03-17 09:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21233, 448, 1, 12446, 2.99, '2007-03-18 09:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21234, 448, 1, 13220, 2.99, '2007-03-19 14:10:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21235, 448, 2, 13250, 3.99, '2007-03-19 15:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21236, 448, 1, 13982, 3.99, '2007-03-20 17:36:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21237, 448, 1, 14580, 3.99, '2007-03-21 15:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21238, 448, 1, 14711, 2.99, '2007-03-21 19:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21239, 448, 2, 15358, 9.99, '2007-03-22 19:57:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21240, 448, 1, 15427, 4.99, '2007-03-22 22:36:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21241, 449, 2, 10409, 2.99, '2007-03-01 06:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21242, 449, 1, 10416, 4.99, '2007-03-01 06:37:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21243, 449, 1, 10516, 6.99, '2007-03-01 10:10:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21244, 449, 2, 10688, 6.99, '2007-03-01 16:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21245, 449, 1, 12212, 4.99, '2007-03-18 01:01:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21246, 449, 2, 14962, 7.99, '2007-03-22 05:06:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21247, 450, 2, 10432, 2.99, '2007-03-01 07:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21248, 450, 1, 10984, 3.99, '2007-03-02 02:58:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21249, 450, 2, 12812, 0.99, '2007-03-18 23:22:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21250, 450, 2, 13731, 4.99, '2007-03-20 08:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21251, 450, 1, 13810, 0.99, '2007-03-20 11:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21252, 450, 1, 13828, 4.99, '2007-03-20 12:18:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21253, 450, 1, 14282, 4.99, '2007-03-21 05:09:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21254, 450, 2, 15019, 0.99, '2007-03-22 07:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21255, 450, 1, 15327, 4.99, '2007-03-22 18:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21256, 450, 2, 15419, 4.99, '2007-03-22 22:23:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21257, 451, 2, 10337, 8.99, '2007-03-01 03:30:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21258, 451, 1, 10856, 2.99, '2007-03-01 22:35:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21259, 451, 2, 10950, 2.99, '2007-03-02 01:53:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21260, 451, 2, 11167, 6.99, '2007-03-02 08:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21261, 451, 2, 11381, 6.99, '2007-03-02 16:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21262, 451, 1, 11790, 2.99, '2007-03-17 09:28:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21263, 451, 2, 12371, 2.99, '2007-03-18 06:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21264, 451, 1, 12422, 4.99, '2007-03-18 08:41:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21265, 451, 2, 13003, 1.99, '2007-03-19 06:07:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21266, 451, 2, 13100, 2.99, '2007-03-19 09:24:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21267, 451, 2, 13252, 2.99, '2007-03-19 15:19:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21268, 451, 2, 13380, 0.99, '2007-03-19 20:05:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21269, 451, 1, 13666, 2.99, '2007-03-20 06:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21270, 451, 1, 13705, 2.99, '2007-03-20 08:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21271, 451, 2, 14500, 0.99, '2007-03-21 12:39:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21272, 451, 1, 15651, 4.99, '2007-03-23 07:00:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21273, 452, 2, 11715, 4.99, '2007-03-17 06:09:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21274, 452, 1, 11735, 3.99, '2007-03-17 07:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21275, 452, 1, 12355, 0.99, '2007-03-18 06:04:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21276, 452, 1, 12630, 4.99, '2007-03-18 16:17:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21277, 452, 1, 13080, 4.99, '2007-03-19 08:46:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21278, 452, 1, 13642, 3.99, '2007-03-20 06:10:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21279, 452, 1, 14660, 0.99, '2007-03-21 18:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21280, 452, 1, 15909, 0.99, '2007-03-23 16:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21281, 453, 1, 11794, 4.99, '2007-03-17 09:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21282, 453, 1, 12703, 2.99, '2007-03-18 19:05:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21283, 453, 1, 13711, 7.99, '2007-03-20 08:03:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21284, 453, 1, 13785, 4.99, '2007-03-20 10:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21285, 453, 1, 14133, 2.99, '2007-03-21 00:12:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21286, 453, 2, 14306, 5.99, '2007-03-21 06:01:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21287, 453, 2, 14644, 4.99, '2007-03-21 17:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21288, 453, 1, 14652, 4.99, '2007-03-21 18:00:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21289, 453, 1, 15252, 0.99, '2007-03-22 16:32:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21290, 453, 2, 15627, 4.99, '2007-03-23 05:54:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21291, 454, 2, 12347, 0.99, '2007-03-18 05:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21292, 454, 1, 12553, 0.99, '2007-03-18 13:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21293, 454, 2, 13496, 8.99, '2007-03-20 00:10:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21294, 454, 2, 13513, 2.99, '2007-03-20 00:56:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21295, 454, 2, 13694, 8.99, '2007-03-20 07:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21296, 454, 1, 13805, 6.99, '2007-03-20 11:21:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21297, 454, 1, 14799, 0.99, '2007-03-21 23:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21298, 454, 2, 14843, 2.99, '2007-03-22 00:33:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21299, 454, 2, 15012, 4.99, '2007-03-22 07:10:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21300, 454, 1, 15301, 3.99, '2007-03-22 18:12:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21301, 454, 2, 15608, 1.99, '2007-03-23 05:23:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21302, 455, 1, 10436, 0.99, '2007-03-01 07:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21303, 455, 1, 11605, 4.99, '2007-03-17 01:59:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21304, 455, 1, 12163, 2.99, '2007-03-17 23:14:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21305, 455, 1, 12314, 4.99, '2007-03-18 04:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21306, 455, 2, 13083, 2.99, '2007-03-19 08:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21307, 455, 2, 13813, 4.99, '2007-03-20 11:31:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21308, 455, 1, 14294, 2.99, '2007-03-21 05:35:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21309, 455, 2, 14583, 4.99, '2007-03-21 15:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21310, 455, 1, 15494, 1.99, '2007-03-23 00:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21311, 456, 2, 10519, 5.99, '2007-03-01 10:12:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21312, 456, 1, 10813, 2.99, '2007-03-01 21:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21313, 456, 1, 12188, 4.99, '2007-03-18 00:20:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21314, 456, 1, 13144, 8.99, '2007-03-19 11:14:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21315, 456, 1, 13348, 4.99, '2007-03-19 19:00:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21316, 456, 1, 13547, 4.99, '2007-03-20 02:21:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21317, 456, 2, 14253, 2.99, '2007-03-21 04:16:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21318, 456, 2, 14690, 1.99, '2007-03-21 19:10:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21319, 456, 1, 15720, 3.99, '2007-03-23 09:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21320, 456, 1, 15910, 2.99, '2007-03-23 16:11:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21321, 457, 2, 11956, 6.99, '2007-03-17 15:50:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21322, 457, 1, 12115, 4.99, '2007-03-17 21:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21323, 457, 1, 12171, 4.99, '2007-03-17 23:34:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21324, 457, 1, 13088, 0.99, '2007-03-19 09:04:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21325, 457, 1, 13150, 2.99, '2007-03-19 11:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21326, 457, 2, 13934, 0.99, '2007-03-20 15:47:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21327, 457, 2, 14327, 10.99, '2007-03-21 06:46:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21328, 457, 1, 14365, 6.99, '2007-03-21 07:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21329, 457, 1, 15128, 3.99, '2007-03-22 11:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21330, 458, 2, 11138, 2.99, '2007-03-02 07:54:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21331, 458, 2, 11975, 2.99, '2007-03-17 16:27:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21332, 458, 2, 12768, 0.99, '2007-03-18 21:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21333, 458, 2, 13259, 2.99, '2007-03-19 15:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21334, 458, 2, 13487, 2.99, '2007-03-19 23:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21335, 458, 2, 13571, 4.99, '2007-03-20 03:33:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21336, 458, 2, 14428, 4.99, '2007-03-21 09:55:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21337, 458, 1, 15604, 4.99, '2007-03-23 05:12:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21338, 459, 1, 10233, 6.99, '2007-03-01 00:22:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21339, 459, 2, 10255, 4.99, '2007-03-01 01:14:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21340, 459, 1, 10499, 7.99, '2007-03-01 09:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21341, 459, 1, 10531, 2.99, '2007-03-01 10:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21342, 459, 1, 12527, 6.99, '2007-03-18 12:17:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21343, 459, 1, 12629, 7.99, '2007-03-18 16:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21344, 459, 2, 13960, 10.99, '2007-03-20 16:44:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21345, 459, 1, 13967, 4.99, '2007-03-20 16:57:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21346, 459, 1, 14315, 3.99, '2007-03-21 06:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21347, 459, 1, 15126, 5.99, '2007-03-22 11:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21348, 459, 2, 15342, 2.99, '2007-03-22 19:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21349, 459, 1, 15814, 0.99, '2007-03-23 13:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21350, 460, 2, 10754, 10.99, '2007-03-01 18:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21351, 460, 1, 10926, 1.99, '2007-03-02 00:55:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21352, 460, 2, 11554, 2.99, '2007-03-16 23:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21353, 460, 1, 12056, 5.99, '2007-03-17 19:32:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21354, 460, 2, 12586, 4.99, '2007-03-18 14:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21355, 460, 1, 12865, 0.99, '2007-03-19 01:07:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21356, 460, 2, 13215, 8.99, '2007-03-19 14:04:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21357, 460, 1, 13341, 3.99, '2007-03-19 18:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21358, 460, 2, 13920, 5.99, '2007-03-20 15:19:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21359, 460, 2, 14864, 0.99, '2007-03-22 01:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21360, 460, 1, 14923, 3.99, '2007-03-22 03:41:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21361, 460, 2, 15954, 2.99, '2007-03-23 17:42:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21362, 461, 1, 10260, 2.99, '2007-03-01 01:26:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21363, 461, 2, 11063, 0.99, '2007-03-02 05:22:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21364, 461, 2, 11219, 0.99, '2007-03-02 10:58:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21365, 461, 2, 12022, 2.99, '2007-03-17 18:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21366, 461, 1, 13223, 2.99, '2007-03-19 14:20:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21367, 461, 1, 13269, 2.99, '2007-03-19 16:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21368, 461, 1, 14186, 4.99, '2007-03-21 01:59:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21369, 461, 1, 14893, 4.99, '2007-03-22 02:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21370, 461, 1, 15067, 2.99, '2007-03-22 09:17:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21371, 461, 2, 15187, 4.99, '2007-03-22 14:21:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21372, 461, 1, 15336, 6.99, '2007-03-22 19:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21373, 461, 2, 15411, 2.99, '2007-03-22 22:04:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21374, 461, 2, 15449, 2.99, '2007-03-22 23:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21375, 461, 2, 15613, 7.99, '2007-03-23 05:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21376, 462, 1, 10283, 2.99, '2007-03-01 01:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21377, 462, 2, 11639, 6.99, '2007-03-17 03:11:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21378, 462, 1, 11808, 2.99, '2007-03-17 10:19:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21379, 462, 1, 12466, 4.99, '2007-03-18 10:05:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21380, 462, 2, 12582, 0.99, '2007-03-18 14:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21381, 462, 1, 12802, 8.99, '2007-03-18 22:56:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21382, 462, 2, 13041, 8.99, '2007-03-19 07:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21383, 462, 1, 13328, 4.99, '2007-03-19 18:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21384, 462, 1, 13492, 7.99, '2007-03-20 00:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21385, 462, 2, 15581, 2.99, '2007-03-23 04:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21386, 462, 1, 15943, 2.99, '2007-03-23 17:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21387, 462, 1, 16013, 0.99, '2007-03-23 19:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21388, 463, 1, 10275, 3.99, '2007-03-01 01:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21389, 463, 2, 10405, 0.99, '2007-03-01 06:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21390, 463, 2, 10906, 2.99, '2007-03-02 00:15:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21391, 463, 2, 12096, 7.99, '2007-03-17 21:01:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21392, 463, 2, 12679, 6.99, '2007-03-18 18:10:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21393, 463, 1, 12950, 2.99, '2007-03-19 04:24:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21394, 463, 2, 13938, 4.99, '2007-03-20 15:53:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21395, 463, 1, 14689, 0.99, '2007-03-21 19:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21396, 463, 1, 14859, 2.99, '2007-03-22 01:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21397, 463, 2, 15151, 7.99, '2007-03-22 12:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21398, 464, 2, 11275, 1.99, '2007-03-02 12:54:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21399, 464, 1, 13644, 8.99, '2007-03-20 06:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21400, 464, 2, 13943, 2.99, '2007-03-20 15:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21401, 464, 1, 15092, 6.99, '2007-03-22 10:04:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21402, 464, 2, 15854, 0.99, '2007-03-23 14:26:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21403, 464, 1, 15983, 4.99, '2007-03-23 18:42:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21404, 465, 1, 10542, 3.99, '2007-03-01 11:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21405, 465, 1, 11156, 2.99, '2007-03-02 08:24:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21406, 465, 1, 11586, 4.99, '2007-03-17 00:49:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21407, 465, 2, 11648, 6.99, '2007-03-17 03:24:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21408, 465, 2, 12106, 4.99, '2007-03-17 21:23:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21409, 465, 1, 12814, 4.99, '2007-03-18 23:26:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21410, 465, 1, 12864, 4.99, '2007-03-19 01:06:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21411, 465, 1, 15550, 3.99, '2007-03-23 02:56:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21412, 465, 2, 15859, 4.99, '2007-03-23 14:36:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21413, 466, 1, 10469, 4.99, '2007-03-01 08:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21414, 466, 2, 11343, 0.99, '2007-03-02 15:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21415, 466, 1, 11359, 4.99, '2007-03-02 16:14:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21416, 466, 1, 12048, 7.99, '2007-03-17 19:17:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21417, 466, 1, 13478, 2.99, '2007-03-19 23:35:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21418, 466, 1, 13884, 5.99, '2007-03-20 13:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21419, 466, 1, 13988, 4.99, '2007-03-20 17:49:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21420, 466, 2, 14546, 2.99, '2007-03-21 14:19:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21421, 466, 2, 15230, 4.99, '2007-03-22 16:00:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21422, 466, 1, 16005, 7.99, '2007-03-23 19:28:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21423, 467, 2, 10239, 0.99, '2007-03-01 00:37:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21424, 467, 2, 11332, 2.99, '2007-03-02 15:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21425, 467, 1, 11874, 4.99, '2007-03-17 12:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21426, 467, 1, 12266, 2.99, '2007-03-18 02:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21427, 467, 1, 12437, 9.99, '2007-03-18 09:11:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21428, 467, 1, 12641, 2.99, '2007-03-18 16:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21429, 467, 1, 14402, 2.99, '2007-03-21 09:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21430, 467, 1, 14451, 0.99, '2007-03-21 10:50:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21431, 467, 1, 14842, 3.99, '2007-03-22 00:33:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21432, 467, 1, 15032, 0.99, '2007-03-22 07:42:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21433, 467, 2, 15830, 2.99, '2007-03-23 13:47:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21434, 468, 2, 11257, 10.99, '2007-03-02 12:13:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21435, 468, 2, 11633, 4.99, '2007-03-17 02:58:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21436, 468, 2, 12026, 6.99, '2007-03-17 18:28:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21437, 468, 2, 13221, 3.99, '2007-03-19 14:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21438, 468, 1, 13417, 0.99, '2007-03-19 21:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21439, 468, 2, 14154, 4.99, '2007-03-21 00:58:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21440, 468, 2, 14210, 4.99, '2007-03-21 02:56:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21441, 468, 1, 14309, 9.99, '2007-03-21 06:12:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21442, 468, 1, 14313, 2.99, '2007-03-21 06:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21443, 468, 1, 14614, 9.99, '2007-03-21 16:32:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21444, 468, 2, 15435, 4.99, '2007-03-22 22:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21445, 468, 1, 15522, 1.99, '2007-03-23 02:00:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21446, 468, 1, 15836, 2.99, '2007-03-23 13:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21447, 468, 2, 16044, 0.99, '2007-03-23 20:53:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21448, 469, 1, 10258, 4.99, '2007-03-01 01:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21449, 469, 1, 10316, 4.99, '2007-03-01 03:03:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21450, 469, 1, 10658, 2.99, '2007-03-01 15:07:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21451, 469, 1, 10741, 2.99, '2007-03-01 18:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21452, 469, 2, 11185, 0.99, '2007-03-02 09:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21453, 469, 2, 12035, 0.99, '2007-03-17 18:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21454, 469, 1, 12447, 4.99, '2007-03-18 09:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21455, 469, 1, 12633, 6.99, '2007-03-18 16:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21456, 469, 1, 13654, 4.99, '2007-03-20 06:26:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21457, 469, 1, 13763, 2.99, '2007-03-20 10:06:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21458, 469, 2, 14197, 7.99, '2007-03-21 02:15:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21459, 469, 2, 14661, 2.99, '2007-03-21 18:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21460, 469, 1, 15487, 4.99, '2007-03-23 00:34:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21461, 469, 1, 15561, 9.99, '2007-03-23 03:30:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21462, 469, 1, 15851, 2.99, '2007-03-23 14:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21463, 470, 1, 10236, 0.99, '2007-03-01 00:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21464, 470, 2, 10944, 4.99, '2007-03-02 01:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21465, 470, 2, 11397, 1.99, '2007-03-02 17:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21466, 470, 2, 11711, 2.99, '2007-03-17 05:59:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21467, 470, 1, 11742, 0.99, '2007-03-17 07:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21468, 470, 2, 12177, 3.99, '2007-03-17 23:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21469, 470, 2, 12423, 8.99, '2007-03-18 08:43:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21470, 470, 1, 12753, 10.99, '2007-03-18 21:06:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21471, 470, 2, 13585, 4.99, '2007-03-20 04:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21472, 470, 1, 13592, 4.99, '2007-03-20 04:19:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21473, 470, 2, 14405, 4.99, '2007-03-21 09:13:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21474, 471, 1, 10430, 2.99, '2007-03-01 07:05:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21475, 471, 2, 10828, 3.99, '2007-03-01 21:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21476, 471, 2, 11601, 4.99, '2007-03-17 01:43:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21477, 471, 1, 12271, 4.99, '2007-03-18 03:01:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21478, 471, 1, 13661, 5.99, '2007-03-20 06:34:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21479, 471, 1, 14085, 7.99, '2007-03-20 22:14:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21480, 471, 1, 14094, 4.99, '2007-03-20 22:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21481, 471, 1, 14317, 5.99, '2007-03-21 06:29:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21482, 471, 2, 14538, 2.99, '2007-03-21 13:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21483, 471, 2, 14942, 7.99, '2007-03-22 04:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21484, 471, 2, 15184, 0.99, '2007-03-22 14:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21485, 471, 1, 15654, 1.99, '2007-03-23 07:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21486, 472, 1, 10282, 6.99, '2007-03-01 01:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21487, 472, 1, 10627, 0.99, '2007-03-01 14:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21488, 472, 1, 11911, 6.99, '2007-03-17 14:20:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21489, 472, 2, 12763, 4.99, '2007-03-18 21:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21490, 472, 2, 13188, 8.99, '2007-03-19 12:55:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21491, 472, 1, 14209, 4.99, '2007-03-21 02:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21492, 472, 2, 14596, 4.99, '2007-03-21 16:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21493, 472, 1, 14597, 4.99, '2007-03-21 16:08:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21494, 472, 2, 15185, 5.99, '2007-03-22 14:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21495, 472, 2, 15278, 2.99, '2007-03-22 17:35:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21496, 473, 1, 10867, 2.99, '2007-03-01 22:52:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21497, 473, 2, 11006, 2.99, '2007-03-02 03:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21498, 473, 1, 11216, 4.99, '2007-03-02 10:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21499, 473, 1, 11336, 0.99, '2007-03-02 15:27:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21500, 473, 2, 11421, 7.99, '2007-03-02 18:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21501, 473, 1, 11741, 0.99, '2007-03-17 07:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21502, 473, 2, 13984, 4.99, '2007-03-20 17:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21503, 473, 2, 14202, 0.99, '2007-03-21 02:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21504, 473, 2, 14550, 0.99, '2007-03-21 14:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21505, 473, 2, 14658, 4.99, '2007-03-21 18:10:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21506, 473, 2, 14757, 4.99, '2007-03-21 21:52:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21507, 473, 1, 15118, 4.99, '2007-03-22 11:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21508, 473, 2, 15400, 2.99, '2007-03-22 21:41:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21509, 473, 2, 16024, 4.99, '2007-03-23 20:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21510, 474, 2, 10376, 5.99, '2007-03-01 04:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21511, 474, 2, 11117, 0.99, '2007-03-02 07:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21512, 474, 1, 11489, 2.99, '2007-03-02 21:03:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21513, 474, 2, 11537, 2.99, '2007-03-16 23:09:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21514, 474, 1, 12083, 2.99, '2007-03-17 20:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21515, 474, 1, 12236, 4.99, '2007-03-18 01:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21516, 474, 1, 12440, 0.99, '2007-03-18 09:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21517, 474, 2, 12597, 2.99, '2007-03-18 15:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21518, 474, 1, 12702, 4.99, '2007-03-18 18:58:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21519, 474, 1, 14728, 0.99, '2007-03-21 20:44:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21520, 474, 2, 15046, 4.99, '2007-03-22 08:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21521, 474, 1, 15558, 6.99, '2007-03-23 03:20:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21522, 475, 1, 10357, 0.99, '2007-03-01 04:18:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21523, 475, 1, 10633, 3.99, '2007-03-01 14:05:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21524, 475, 1, 11293, 5.99, '2007-03-02 13:29:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21525, 475, 1, 11770, 4.99, '2007-03-17 08:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21526, 475, 2, 14303, 2.99, '2007-03-21 05:51:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21527, 475, 1, 15097, 1.99, '2007-03-22 10:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21528, 475, 1, 15288, 4.99, '2007-03-22 17:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21529, 476, 1, 10346, 4.99, '2007-03-01 03:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21530, 476, 1, 10617, 9.99, '2007-03-01 13:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21531, 476, 1, 10826, 6.99, '2007-03-01 21:36:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21532, 476, 1, 12616, 4.99, '2007-03-18 15:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21533, 476, 2, 12709, 5.99, '2007-03-18 19:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21534, 476, 1, 15413, 0.99, '2007-03-22 22:06:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21535, 477, 1, 10500, 4.99, '2007-03-01 09:29:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21536, 477, 2, 10912, 0.99, '2007-03-02 00:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21537, 477, 2, 12420, 4.99, '2007-03-18 08:30:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21538, 477, 1, 13002, 0.99, '2007-03-19 06:06:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21539, 477, 2, 14552, 3.99, '2007-03-21 14:27:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21540, 477, 2, 15091, 2.99, '2007-03-22 10:03:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21541, 477, 1, 15929, 2.99, '2007-03-23 16:51:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21542, 478, 1, 11906, 2.99, '2007-03-17 14:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21543, 478, 2, 13162, 2.99, '2007-03-19 11:56:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21544, 478, 2, 13507, 4.99, '2007-03-20 00:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21545, 478, 1, 15027, 4.99, '2007-03-22 07:31:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21546, 478, 2, 15188, 4.99, '2007-03-22 14:24:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21547, 478, 1, 15724, 4.99, '2007-03-23 09:50:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21548, 479, 2, 10303, 4.99, '2007-03-01 02:41:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21549, 479, 2, 11109, 4.99, '2007-03-02 06:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21550, 479, 2, 11584, 1.99, '2007-03-17 00:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21551, 479, 2, 11835, 4.99, '2007-03-17 11:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21552, 479, 2, 12401, 0.99, '2007-03-18 07:49:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21553, 479, 2, 13078, 8.99, '2007-03-19 08:45:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21554, 479, 1, 13974, 2.99, '2007-03-20 17:23:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21555, 480, 2, 10808, 1.99, '2007-03-01 21:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21556, 480, 2, 11017, 0.99, '2007-03-02 03:48:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21557, 480, 1, 11369, 5.99, '2007-03-02 16:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21558, 480, 2, 12905, 4.99, '2007-03-19 02:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21559, 480, 2, 13092, 0.99, '2007-03-19 09:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21560, 480, 2, 13131, 9.99, '2007-03-19 10:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21561, 480, 1, 13831, 4.99, '2007-03-20 12:28:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21562, 480, 2, 15363, 2.99, '2007-03-22 20:10:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21563, 480, 2, 15579, 4.99, '2007-03-23 04:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21564, 481, 2, 11207, 0.99, '2007-03-02 10:29:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21565, 481, 2, 11387, 2.99, '2007-03-02 17:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21566, 481, 1, 11752, 4.99, '2007-03-17 07:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21567, 481, 1, 11885, 4.99, '2007-03-17 13:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21568, 481, 2, 12160, 2.99, '2007-03-17 23:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21569, 481, 1, 12981, 4.99, '2007-03-19 05:32:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21570, 481, 2, 13497, 2.99, '2007-03-20 00:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21571, 481, 2, 13878, 4.99, '2007-03-20 13:46:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21572, 481, 1, 13990, 1.99, '2007-03-20 17:57:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21573, 481, 2, 14280, 4.99, '2007-03-21 05:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21574, 481, 2, 14584, 0.99, '2007-03-21 15:43:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21575, 482, 2, 10824, 4.99, '2007-03-01 21:28:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21576, 482, 2, 10839, 2.99, '2007-03-01 22:06:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21577, 482, 2, 11498, 6.99, '2007-03-16 21:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21578, 482, 1, 13174, 4.99, '2007-03-19 12:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21579, 482, 2, 14383, 4.99, '2007-03-21 08:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21580, 482, 2, 14732, 0.99, '2007-03-21 20:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21581, 482, 2, 14891, 6.99, '2007-03-22 02:39:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21582, 482, 2, 14995, 4.99, '2007-03-22 06:20:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21583, 482, 1, 15391, 0.99, '2007-03-22 21:30:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21584, 482, 1, 15849, 5.99, '2007-03-23 14:09:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21585, 482, 2, 15865, 2.99, '2007-03-23 14:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21586, 482, 1, 15879, 3.99, '2007-03-23 15:11:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21587, 483, 2, 10677, 0.99, '2007-03-01 15:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21588, 483, 1, 10953, 6.99, '2007-03-02 01:57:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21589, 483, 2, 12331, 3.99, '2007-03-18 05:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21590, 483, 2, 12695, 2.99, '2007-03-18 18:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21591, 483, 2, 12875, 2.99, '2007-03-19 01:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21592, 484, 2, 11871, 4.99, '2007-03-17 12:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21593, 484, 1, 12024, 0.99, '2007-03-17 18:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21594, 484, 1, 12771, 4.99, '2007-03-18 21:57:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21595, 484, 1, 12993, 7.99, '2007-03-19 05:52:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21596, 484, 2, 13160, 0.99, '2007-03-19 11:49:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21597, 484, 2, 13956, 3.99, '2007-03-20 16:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21598, 484, 1, 15607, 2.99, '2007-03-23 05:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21599, 484, 1, 16026, 4.99, '2007-03-23 20:17:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21600, 485, 1, 10771, 4.99, '2007-03-01 19:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21601, 485, 2, 10772, 6.99, '2007-03-01 19:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21602, 485, 2, 11188, 3.99, '2007-03-02 09:45:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21603, 485, 1, 11921, 4.99, '2007-03-17 14:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21604, 485, 1, 11974, 2.99, '2007-03-17 16:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21605, 485, 2, 12261, 8.99, '2007-03-18 02:44:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21606, 485, 2, 12487, 0.99, '2007-03-18 11:13:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21607, 485, 2, 13055, 2.99, '2007-03-19 08:04:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21608, 486, 2, 10902, 4.99, '2007-03-02 00:04:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21609, 486, 1, 12465, 0.99, '2007-03-18 10:03:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21610, 486, 2, 12609, 2.99, '2007-03-18 15:34:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21611, 486, 1, 13048, 4.99, '2007-03-19 07:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21612, 486, 2, 13803, 0.99, '2007-03-20 11:14:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21613, 486, 2, 14251, 4.99, '2007-03-21 04:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21614, 486, 2, 14284, 4.99, '2007-03-21 05:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21615, 487, 2, 10511, 2.99, '2007-03-01 10:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21616, 487, 2, 10555, 6.99, '2007-03-01 11:25:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21617, 487, 1, 10832, 6.99, '2007-03-01 21:53:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21618, 487, 2, 10877, 5.99, '2007-03-01 23:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21619, 487, 1, 10978, 9.99, '2007-03-02 02:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21620, 487, 1, 11669, 5.99, '2007-03-17 04:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21621, 487, 2, 11890, 5.99, '2007-03-17 13:37:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21622, 487, 1, 12493, 7.99, '2007-03-18 11:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21623, 487, 2, 13210, 4.99, '2007-03-19 13:52:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21624, 487, 1, 13658, 7.99, '2007-03-20 06:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21625, 487, 2, 15665, 2.99, '2007-03-23 07:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21626, 488, 2, 10474, 5.99, '2007-03-01 08:30:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21627, 488, 1, 10767, 0.99, '2007-03-01 19:05:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21628, 488, 1, 11774, 3.99, '2007-03-17 08:49:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21629, 488, 2, 12483, 5.99, '2007-03-18 11:07:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21630, 488, 2, 13446, 4.99, '2007-03-19 22:34:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21631, 488, 2, 14948, 5.99, '2007-03-22 04:39:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21632, 488, 2, 15259, 0.99, '2007-03-22 16:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21633, 488, 1, 15350, 2.99, '2007-03-22 19:43:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21634, 488, 2, 15499, 2.99, '2007-03-23 01:05:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21635, 489, 2, 11119, 9.99, '2007-03-02 07:13:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21636, 489, 1, 11705, 4.99, '2007-03-17 05:50:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21637, 489, 1, 12496, 6.99, '2007-03-18 11:26:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21638, 489, 2, 12701, 6.99, '2007-03-18 18:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21639, 489, 1, 13462, 4.99, '2007-03-19 23:17:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21640, 489, 2, 14095, 5.99, '2007-03-20 22:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21641, 489, 2, 14328, 2.99, '2007-03-21 06:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21642, 489, 2, 14424, 6.99, '2007-03-21 09:52:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21643, 489, 1, 15205, 0.99, '2007-03-22 15:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21644, 489, 1, 15981, 4.99, '2007-03-23 18:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21645, 490, 1, 10786, 7.99, '2007-03-01 19:58:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21646, 490, 1, 10955, 7.99, '2007-03-02 02:01:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21647, 490, 2, 11965, 2.99, '2007-03-17 16:08:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21648, 490, 2, 14557, 4.99, '2007-03-21 14:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21649, 490, 2, 14761, 6.99, '2007-03-21 21:58:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21650, 490, 2, 15276, 2.99, '2007-03-22 17:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21651, 490, 1, 15448, 2.99, '2007-03-22 23:23:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21652, 491, 2, 10974, 6.99, '2007-03-02 02:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21653, 491, 1, 11048, 4.99, '2007-03-02 04:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21654, 491, 1, 11590, 0.99, '2007-03-17 00:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21655, 491, 1, 11840, 4.99, '2007-03-17 11:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21656, 491, 2, 13607, 2.99, '2007-03-20 04:37:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21657, 491, 1, 14780, 0.99, '2007-03-21 22:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21658, 491, 2, 15685, 5.99, '2007-03-23 08:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21659, 492, 2, 12971, 4.99, '2007-03-19 05:11:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21660, 492, 1, 14255, 2.99, '2007-03-21 04:20:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21661, 492, 2, 15822, 0.99, '2007-03-23 13:34:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21662, 492, 1, 15958, 4.99, '2007-03-23 17:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21663, 493, 1, 10777, 6.99, '2007-03-01 19:32:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21664, 493, 2, 10885, 7.99, '2007-03-01 23:20:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21665, 493, 1, 13638, 2.99, '2007-03-20 05:49:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21666, 493, 2, 13675, 6.99, '2007-03-20 07:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21667, 493, 1, 14117, 4.99, '2007-03-20 23:40:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21668, 493, 2, 15177, 4.99, '2007-03-22 14:03:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21669, 493, 1, 15355, 0.99, '2007-03-22 19:47:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21670, 493, 1, 15490, 6.99, '2007-03-23 00:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21671, 493, 2, 15878, 2.99, '2007-03-23 15:02:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21672, 494, 1, 10403, 0.99, '2007-03-01 05:59:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21673, 494, 1, 10623, 2.99, '2007-03-01 13:51:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21674, 494, 2, 11152, 3.99, '2007-03-02 08:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21675, 494, 1, 11987, 5.99, '2007-03-17 16:50:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21676, 494, 2, 13094, 0.99, '2007-03-19 09:16:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21677, 494, 2, 13301, 3.99, '2007-03-19 17:21:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21678, 494, 2, 14634, 5.99, '2007-03-21 17:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21679, 494, 1, 14832, 4.99, '2007-03-22 00:11:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21680, 494, 1, 15086, 6.99, '2007-03-22 09:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21681, 494, 2, 15156, 9.99, '2007-03-22 12:57:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21682, 494, 2, 15291, 4.99, '2007-03-22 17:56:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21683, 495, 2, 10643, 5.99, '2007-03-01 14:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21684, 495, 1, 10783, 4.99, '2007-03-01 19:52:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21685, 495, 1, 12782, 5.99, '2007-03-18 22:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21686, 495, 2, 12837, 0.99, '2007-03-19 00:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21687, 495, 2, 13205, 3.99, '2007-03-19 13:33:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21688, 495, 2, 13445, 2.99, '2007-03-19 22:33:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21689, 495, 2, 13818, 4.99, '2007-03-20 11:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21690, 495, 1, 15984, 2.99, '2007-03-23 18:44:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21691, 496, 1, 11060, 7.99, '2007-03-02 05:16:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21692, 496, 2, 11448, 4.99, '2007-03-02 19:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21693, 496, 1, 11893, 3.99, '2007-03-17 13:41:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21694, 496, 2, 12605, 4.99, '2007-03-18 15:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21695, 496, 1, 13569, 5.99, '2007-03-20 03:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21696, 496, 2, 14013, 6.99, '2007-03-20 19:11:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21697, 496, 1, 14332, 7.99, '2007-03-21 06:59:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21698, 496, 1, 14348, 0.99, '2007-03-21 07:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21699, 496, 2, 15750, 2.99, '2007-03-23 11:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21700, 497, 2, 10760, 7.99, '2007-03-01 18:53:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21701, 497, 1, 12123, 0.99, '2007-03-17 21:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21702, 497, 1, 13159, 4.99, '2007-03-19 11:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21703, 497, 1, 13289, 2.99, '2007-03-19 16:59:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21704, 497, 2, 14134, 0.99, '2007-03-21 00:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21705, 497, 1, 15362, 5.99, '2007-03-22 20:08:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21706, 497, 2, 15633, 0.99, '2007-03-23 05:59:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21707, 497, 1, 15919, 0.99, '2007-03-23 16:29:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21708, 498, 1, 10225, 0.99, '2007-03-01 00:07:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21709, 498, 1, 11455, 6.99, '2007-03-02 19:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21710, 498, 1, 12893, 2.99, '2007-03-19 02:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21711, 499, 2, 10333, 0.99, '2007-03-01 03:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21712, 499, 2, 10497, 2.99, '2007-03-01 09:24:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21713, 499, 1, 11513, 7.99, '2007-03-16 22:19:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21714, 499, 2, 11606, 0.99, '2007-03-17 02:01:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21715, 499, 2, 11978, 4.99, '2007-03-17 16:30:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21716, 499, 1, 12004, 8.99, '2007-03-17 17:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21717, 499, 1, 12354, 7.99, '2007-03-18 06:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21718, 499, 1, 12436, 3.99, '2007-03-18 09:09:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21719, 499, 1, 12587, 1.99, '2007-03-18 14:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21720, 499, 2, 12947, 4.99, '2007-03-19 04:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21721, 499, 2, 13822, 3.99, '2007-03-20 12:07:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21722, 499, 1, 14858, 3.99, '2007-03-22 01:14:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21723, 499, 1, 15587, 7.99, '2007-03-23 04:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21724, 500, 1, 10947, 6.99, '2007-03-02 01:51:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21725, 500, 2, 11218, 1.99, '2007-03-02 10:57:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21726, 500, 1, 12639, 2.99, '2007-03-18 16:41:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21727, 500, 2, 12813, 2.99, '2007-03-18 23:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21728, 500, 2, 13628, 4.99, '2007-03-20 05:32:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21729, 500, 1, 14407, 0.99, '2007-03-21 09:15:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21730, 500, 1, 14964, 4.99, '2007-03-22 05:07:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21731, 500, 1, 15584, 2.99, '2007-03-23 04:17:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21732, 500, 1, 15853, 2.99, '2007-03-23 14:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21733, 501, 1, 10817, 4.99, '2007-03-01 21:19:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21734, 501, 2, 11393, 4.99, '2007-03-02 17:12:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21735, 501, 1, 11640, 1.99, '2007-03-17 03:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21736, 501, 2, 11799, 6.99, '2007-03-17 09:53:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21737, 501, 1, 12914, 4.99, '2007-03-19 02:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21738, 501, 2, 13889, 0.99, '2007-03-20 14:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21739, 501, 1, 15239, 4.99, '2007-03-22 16:14:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21740, 501, 1, 15699, 5.99, '2007-03-23 08:49:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21741, 502, 2, 10390, 4.99, '2007-03-01 05:15:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21742, 502, 1, 10938, 0.99, '2007-03-02 01:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21743, 502, 2, 11036, 4.99, '2007-03-02 04:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21744, 502, 1, 11301, 0.99, '2007-03-02 14:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21745, 502, 1, 11317, 4.99, '2007-03-02 14:37:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21746, 502, 1, 11435, 0.99, '2007-03-02 18:42:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21747, 502, 1, 11620, 0.99, '2007-03-17 02:34:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21748, 502, 1, 12762, 4.99, '2007-03-18 21:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21749, 502, 1, 13052, 9.99, '2007-03-19 08:00:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21750, 502, 1, 14411, 4.99, '2007-03-21 09:23:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21751, 502, 1, 15486, 3.99, '2007-03-23 00:33:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21752, 502, 1, 16034, 3.99, '2007-03-23 20:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21753, 503, 2, 11075, 2.99, '2007-03-02 05:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21754, 503, 1, 11161, 1.99, '2007-03-02 08:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21755, 503, 1, 11858, 4.99, '2007-03-17 12:18:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21756, 503, 2, 12370, 2.99, '2007-03-18 06:26:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21757, 503, 2, 12783, 4.99, '2007-03-18 22:29:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21758, 503, 1, 13332, 2.99, '2007-03-19 18:29:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21759, 503, 1, 13551, 2.99, '2007-03-20 02:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21760, 503, 1, 14823, 0.99, '2007-03-21 23:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21761, 503, 1, 14913, 2.99, '2007-03-22 03:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21762, 503, 2, 15056, 4.99, '2007-03-22 08:44:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21763, 503, 2, 15077, 2.99, '2007-03-22 09:37:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21764, 503, 1, 15588, 3.99, '2007-03-23 04:31:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21765, 503, 1, 15692, 4.99, '2007-03-23 08:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21766, 503, 1, 15726, 2.99, '2007-03-23 09:56:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21767, 503, 1, 15797, 0.99, '2007-03-23 12:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21768, 504, 2, 10397, 0.99, '2007-03-01 05:39:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21769, 504, 2, 10509, 3.99, '2007-03-01 09:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21770, 504, 2, 11569, 2.99, '2007-03-16 23:59:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21771, 504, 1, 12769, 1.99, '2007-03-18 21:55:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21772, 504, 1, 13166, 2.99, '2007-03-19 12:04:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21773, 504, 2, 13206, 2.99, '2007-03-19 13:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21774, 504, 2, 13387, 2.99, '2007-03-19 20:14:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21775, 504, 2, 13859, 5.99, '2007-03-20 13:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21776, 504, 2, 15018, 4.99, '2007-03-22 07:21:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21777, 504, 1, 15166, 6.99, '2007-03-22 13:34:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21778, 504, 1, 15723, 8.99, '2007-03-23 09:45:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21779, 504, 2, 16022, 4.99, '2007-03-23 20:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21780, 505, 1, 10896, 2.99, '2007-03-01 23:47:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21781, 505, 1, 11163, 0.99, '2007-03-02 08:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21782, 505, 1, 11907, 2.99, '2007-03-17 14:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21783, 505, 2, 13612, 3.99, '2007-03-20 04:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21784, 505, 1, 14398, 2.99, '2007-03-21 08:55:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21785, 505, 1, 14802, 2.99, '2007-03-21 23:16:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21786, 505, 1, 15436, 4.99, '2007-03-22 22:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21787, 506, 1, 10477, 2.99, '2007-03-01 08:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21788, 506, 1, 10873, 4.99, '2007-03-01 22:59:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21789, 506, 2, 11238, 0.99, '2007-03-02 11:54:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21790, 506, 2, 11781, 4.99, '2007-03-17 09:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21791, 506, 1, 12994, 0.99, '2007-03-19 05:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21792, 506, 2, 13073, 2.99, '2007-03-19 08:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21793, 506, 2, 13767, 0.99, '2007-03-20 10:12:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21794, 506, 1, 14074, 1.99, '2007-03-20 21:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21795, 506, 1, 14337, 2.99, '2007-03-21 07:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21796, 506, 2, 14395, 6.99, '2007-03-21 08:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21797, 506, 2, 15022, 5.99, '2007-03-22 07:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21798, 506, 2, 15572, 1.99, '2007-03-23 03:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21799, 506, 1, 15694, 9.99, '2007-03-23 08:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21800, 507, 2, 12071, 6.99, '2007-03-17 20:17:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21801, 507, 2, 12275, 4.99, '2007-03-18 03:10:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21802, 507, 1, 12343, 4.99, '2007-03-18 05:43:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21803, 507, 2, 14625, 4.99, '2007-03-21 17:02:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21804, 507, 1, 15394, 2.99, '2007-03-22 21:32:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21805, 508, 1, 10746, 8.99, '2007-03-01 18:27:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21806, 508, 1, 11365, 2.99, '2007-03-02 16:28:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21807, 508, 2, 11447, 6.99, '2007-03-02 19:04:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21808, 508, 1, 13095, 6.99, '2007-03-19 09:16:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21809, 508, 2, 13201, 2.99, '2007-03-19 13:24:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21810, 508, 1, 15010, 6.99, '2007-03-22 06:58:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21811, 508, 1, 15195, 4.99, '2007-03-22 14:36:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21812, 509, 2, 10988, 5.99, '2007-03-02 03:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21813, 509, 1, 11814, 6.99, '2007-03-17 10:37:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21814, 509, 2, 12109, 4.99, '2007-03-17 21:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21815, 509, 2, 14045, 4.99, '2007-03-20 20:18:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21816, 509, 2, 14994, 5.99, '2007-03-22 06:20:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21817, 509, 1, 15965, 2.99, '2007-03-23 18:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21818, 510, 2, 10265, 7.99, '2007-03-01 01:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21819, 510, 2, 11996, 4.99, '2007-03-17 17:03:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21820, 510, 1, 12317, 0.99, '2007-03-18 04:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21821, 510, 2, 12406, 2.99, '2007-03-18 08:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21822, 510, 1, 15065, 4.99, '2007-03-22 09:15:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21823, 511, 1, 10231, 2.99, '2007-03-01 00:19:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21824, 511, 2, 10429, 2.99, '2007-03-01 07:02:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21825, 511, 2, 12110, 6.99, '2007-03-17 21:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21826, 511, 1, 12920, 4.99, '2007-03-19 03:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21827, 511, 1, 14213, 4.99, '2007-03-21 02:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21828, 511, 1, 14302, 6.99, '2007-03-21 05:48:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21829, 511, 1, 15172, 4.99, '2007-03-22 13:53:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21830, 512, 2, 10232, 4.99, '2007-03-01 00:19:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21831, 512, 2, 10670, 3.99, '2007-03-01 15:35:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21832, 512, 2, 11818, 9.99, '2007-03-17 10:50:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21833, 512, 2, 12957, 8.99, '2007-03-19 04:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21834, 512, 2, 13156, 4.99, '2007-03-19 11:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21835, 512, 2, 13771, 0.99, '2007-03-20 10:15:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21836, 512, 1, 14288, 4.99, '2007-03-21 05:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21837, 512, 1, 14870, 2.99, '2007-03-22 01:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21838, 512, 1, 15153, 2.99, '2007-03-22 12:54:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21839, 512, 2, 15265, 3.99, '2007-03-22 17:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21840, 512, 1, 15317, 3.99, '2007-03-22 18:42:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21841, 512, 2, 15733, 4.99, '2007-03-23 10:05:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21842, 512, 2, 15990, 4.99, '2007-03-23 18:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21843, 513, 2, 11081, 2.99, '2007-03-02 05:58:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21844, 513, 1, 11165, 2.99, '2007-03-02 08:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21845, 513, 1, 11407, 3.99, '2007-03-02 17:47:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21846, 513, 1, 11755, 3.99, '2007-03-17 07:44:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21847, 513, 1, 12559, 5.99, '2007-03-18 13:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21848, 513, 2, 12784, 2.99, '2007-03-18 22:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21849, 513, 2, 12807, 4.99, '2007-03-18 23:07:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21850, 513, 1, 13596, 5.99, '2007-03-20 04:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21851, 513, 1, 13690, 4.99, '2007-03-20 07:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21852, 513, 2, 14844, 7.99, '2007-03-22 00:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21853, 513, 1, 14875, 4.99, '2007-03-22 02:03:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21854, 513, 1, 15035, 4.99, '2007-03-22 08:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21855, 513, 2, 15289, 6.99, '2007-03-22 17:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21856, 513, 2, 15545, 5.99, '2007-03-23 02:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21857, 514, 1, 11675, 1.99, '2007-03-17 04:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21858, 514, 2, 12067, 4.99, '2007-03-17 20:05:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21859, 514, 1, 12293, 4.99, '2007-03-18 03:42:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21860, 514, 1, 12302, 4.99, '2007-03-18 04:10:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21861, 514, 2, 12578, 0.99, '2007-03-18 14:15:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21862, 514, 1, 12752, 2.99, '2007-03-18 21:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21863, 514, 2, 13344, 3.99, '2007-03-19 18:51:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21864, 514, 1, 14052, 0.99, '2007-03-20 20:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21865, 514, 1, 14386, 1.99, '2007-03-21 08:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21866, 514, 1, 15451, 2.99, '2007-03-22 23:24:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21867, 514, 1, 15776, 5.99, '2007-03-23 11:54:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21868, 515, 2, 10716, 0.99, '2007-03-01 17:22:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21869, 515, 1, 11451, 3.99, '2007-03-02 19:14:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21870, 515, 2, 11572, 4.99, '2007-03-17 00:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21871, 515, 1, 11691, 3.99, '2007-03-17 05:19:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21872, 515, 2, 11937, 6.99, '2007-03-17 15:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21873, 515, 2, 12416, 2.99, '2007-03-18 08:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21874, 515, 1, 12486, 8.99, '2007-03-18 11:11:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21875, 515, 1, 12889, 5.99, '2007-03-19 02:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21876, 515, 2, 14072, 4.99, '2007-03-20 21:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21877, 515, 2, 14378, 3.99, '2007-03-21 08:18:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21878, 515, 2, 14414, 0.99, '2007-03-21 09:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21879, 515, 2, 15274, 4.99, '2007-03-22 17:24:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21880, 516, 2, 11926, 0.99, '2007-03-17 14:53:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21881, 516, 2, 11939, 1.99, '2007-03-17 15:24:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21882, 516, 1, 12535, 1.99, '2007-03-18 12:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21883, 516, 1, 13276, 8.99, '2007-03-19 16:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21884, 516, 1, 14932, 0.99, '2007-03-22 04:09:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21885, 516, 1, 15526, 0.99, '2007-03-23 02:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21886, 516, 1, 15701, 0.99, '2007-03-23 08:50:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21887, 517, 2, 10358, 4.99, '2007-03-01 04:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21888, 517, 2, 10433, 4.99, '2007-03-01 07:14:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21889, 517, 1, 11684, 3.99, '2007-03-17 04:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21890, 517, 2, 12705, 0.99, '2007-03-18 19:12:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21891, 517, 1, 13396, 0.99, '2007-03-19 20:34:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21892, 517, 2, 14190, 4.99, '2007-03-21 02:03:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21893, 517, 1, 15559, 5.99, '2007-03-23 03:23:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21894, 518, 1, 10751, 5.99, '2007-03-01 18:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21895, 518, 2, 11433, 3.99, '2007-03-02 18:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21896, 518, 2, 12450, 2.99, '2007-03-18 09:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21897, 518, 2, 12681, 2.99, '2007-03-18 18:16:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21898, 518, 1, 13065, 4.99, '2007-03-19 08:17:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21899, 518, 1, 13539, 6.99, '2007-03-20 02:08:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21900, 518, 1, 14088, 6.99, '2007-03-20 22:25:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21901, 518, 1, 14149, 4.99, '2007-03-21 00:51:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21902, 518, 2, 14980, 0.99, '2007-03-22 05:45:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21903, 518, 2, 15434, 4.99, '2007-03-22 22:56:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21904, 519, 2, 10697, 4.99, '2007-03-01 16:48:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21905, 519, 2, 12648, 7.99, '2007-03-18 16:58:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21906, 519, 2, 12924, 2.99, '2007-03-19 03:20:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21907, 519, 1, 13647, 7.99, '2007-03-20 06:16:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21908, 519, 1, 14182, 2.99, '2007-03-21 01:45:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21909, 519, 2, 15347, 2.99, '2007-03-22 19:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21910, 520, 2, 10530, 4.99, '2007-03-01 10:29:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21911, 520, 1, 11566, 0.99, '2007-03-16 23:57:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21912, 520, 1, 12517, 4.99, '2007-03-18 12:08:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21913, 520, 1, 12628, 5.99, '2007-03-18 16:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21914, 520, 1, 12647, 5.99, '2007-03-18 16:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21915, 520, 1, 13311, 0.99, '2007-03-19 17:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21916, 520, 2, 13438, 2.99, '2007-03-19 22:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21917, 520, 2, 13659, 2.99, '2007-03-20 06:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21918, 520, 2, 13746, 5.99, '2007-03-20 09:23:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21919, 520, 1, 14372, 4.99, '2007-03-21 08:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21920, 520, 1, 14509, 0.99, '2007-03-21 13:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21921, 520, 1, 15465, 0.99, '2007-03-22 23:44:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21922, 520, 2, 15492, 2.99, '2007-03-23 00:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21923, 520, 1, 15948, 7.99, '2007-03-23 17:27:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21924, 521, 1, 10587, 2.99, '2007-03-01 12:32:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21925, 521, 2, 11625, 2.99, '2007-03-17 02:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21926, 521, 1, 11967, 3.99, '2007-03-17 16:13:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21927, 521, 2, 12082, 4.99, '2007-03-17 20:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21928, 521, 1, 12530, 4.99, '2007-03-18 12:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21929, 521, 1, 13527, 2.99, '2007-03-20 01:29:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21930, 521, 1, 14423, 0.99, '2007-03-21 09:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21931, 521, 2, 14551, 3.99, '2007-03-21 14:25:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21932, 521, 2, 14738, 5.99, '2007-03-21 20:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21933, 521, 2, 15170, 4.99, '2007-03-22 13:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21934, 521, 2, 15329, 2.99, '2007-03-22 19:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21935, 522, 1, 10411, 3.99, '2007-03-01 06:24:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21936, 522, 1, 10675, 7.99, '2007-03-01 15:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21937, 522, 2, 10821, 5.99, '2007-03-01 21:22:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21938, 522, 2, 11696, 2.99, '2007-03-17 05:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21939, 522, 2, 11830, 1.99, '2007-03-17 11:21:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21940, 522, 2, 12494, 6.99, '2007-03-18 11:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21941, 522, 2, 13605, 6.99, '2007-03-20 04:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21942, 522, 2, 14467, 2.99, '2007-03-21 11:31:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21943, 522, 1, 15921, 6.99, '2007-03-23 16:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21944, 523, 2, 10470, 1.99, '2007-03-01 08:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21945, 523, 1, 11827, 4.99, '2007-03-17 11:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21946, 523, 1, 12288, 2.99, '2007-03-18 03:29:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21947, 523, 1, 13133, 2.99, '2007-03-19 10:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21948, 523, 1, 14766, 4.99, '2007-03-21 22:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21949, 523, 1, 15040, 2.99, '2007-03-22 08:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21950, 524, 2, 13626, 2.99, '2007-03-20 05:23:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21951, 524, 2, 14046, 4.99, '2007-03-20 20:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21952, 524, 1, 14178, 2.99, '2007-03-21 01:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21953, 524, 1, 14366, 2.99, '2007-03-21 08:00:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21954, 524, 2, 14680, 1.99, '2007-03-21 18:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21955, 524, 2, 15206, 6.99, '2007-03-22 15:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21956, 525, 1, 10496, 2.99, '2007-03-01 09:21:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21957, 525, 2, 11406, 2.99, '2007-03-02 17:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21958, 525, 1, 11660, 1.99, '2007-03-17 03:51:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21959, 525, 1, 15159, 0.99, '2007-03-22 13:00:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21960, 525, 2, 15623, 3.99, '2007-03-23 05:51:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21961, 526, 2, 11046, 4.99, '2007-03-02 04:37:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21962, 526, 1, 11503, 10.99, '2007-03-16 21:39:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21963, 526, 1, 11612, 2.99, '2007-03-17 02:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21964, 526, 2, 11702, 4.99, '2007-03-17 05:47:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21965, 526, 1, 12607, 0.99, '2007-03-18 15:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21966, 526, 2, 13224, 8.99, '2007-03-19 14:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21967, 526, 2, 13580, 0.99, '2007-03-20 03:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21968, 526, 1, 13617, 8.99, '2007-03-20 05:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21969, 526, 2, 14487, 6.99, '2007-03-21 12:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21970, 526, 1, 14590, 7.99, '2007-03-21 15:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21971, 526, 1, 15168, 2.99, '2007-03-22 13:42:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21972, 526, 1, 15395, 4.99, '2007-03-22 21:34:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21973, 526, 1, 16043, 9.99, '2007-03-23 20:49:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21974, 527, 2, 10486, 3.99, '2007-03-01 08:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21975, 527, 2, 10613, 0.99, '2007-03-01 13:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21976, 527, 1, 11013, 5.99, '2007-03-02 03:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21977, 527, 1, 11150, 2.99, '2007-03-02 08:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21978, 527, 1, 11624, 0.99, '2007-03-17 02:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21979, 527, 1, 12136, 7.99, '2007-03-17 22:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21980, 527, 1, 12513, 6.99, '2007-03-18 12:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21981, 527, 1, 14352, 6.99, '2007-03-21 07:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21982, 527, 1, 15144, 2.99, '2007-03-22 12:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21983, 527, 1, 15552, 3.99, '2007-03-23 03:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21984, 528, 1, 10673, 0.99, '2007-03-01 15:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21985, 528, 1, 10880, 2.99, '2007-03-01 23:02:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21986, 528, 1, 12818, 3.99, '2007-03-18 23:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21987, 528, 2, 13518, 2.99, '2007-03-20 01:04:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21988, 528, 1, 13600, 7.99, '2007-03-20 04:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21989, 528, 2, 14148, 2.99, '2007-03-21 00:46:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21990, 528, 2, 15880, 6.99, '2007-03-23 15:12:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21991, 529, 2, 10361, 10.99, '2007-03-01 04:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21992, 529, 1, 11862, 2.99, '2007-03-17 12:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21993, 529, 2, 12356, 2.99, '2007-03-18 06:05:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21994, 529, 1, 12622, 3.99, '2007-03-18 16:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21995, 529, 1, 13011, 4.99, '2007-03-19 06:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21996, 529, 2, 13132, 3.99, '2007-03-19 10:39:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21997, 529, 1, 13797, 2.99, '2007-03-20 11:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21998, 529, 2, 13946, 9.99, '2007-03-20 16:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (21999, 529, 2, 14449, 4.99, '2007-03-21 10:41:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22000, 529, 2, 14764, 0.99, '2007-03-21 22:06:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22001, 529, 1, 14970, 5.99, '2007-03-22 05:17:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22002, 529, 2, 15305, 2.99, '2007-03-22 18:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22003, 530, 2, 10504, 4.99, '2007-03-01 09:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22004, 530, 1, 11326, 0.99, '2007-03-02 15:02:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22005, 530, 1, 12220, 4.99, '2007-03-18 01:18:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22006, 530, 1, 12387, 2.99, '2007-03-18 07:14:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22007, 530, 1, 12649, 4.99, '2007-03-18 17:00:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22008, 530, 1, 13998, 5.99, '2007-03-20 18:21:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22009, 530, 2, 14707, 5.99, '2007-03-21 19:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22010, 530, 2, 15066, 0.99, '2007-03-22 09:17:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22011, 531, 2, 10920, 4.99, '2007-03-02 00:42:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22012, 531, 1, 10941, 5.99, '2007-03-02 01:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22013, 531, 2, 11026, 4.99, '2007-03-02 04:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22014, 531, 1, 11265, 10.99, '2007-03-02 12:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22015, 531, 1, 11666, 2.99, '2007-03-17 04:13:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22016, 531, 1, 12923, 2.99, '2007-03-19 03:18:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22017, 531, 2, 13300, 8.99, '2007-03-19 17:15:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22018, 531, 2, 15360, 0.99, '2007-03-22 20:05:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22019, 532, 2, 10286, 6.99, '2007-03-01 02:04:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22020, 532, 2, 10712, 5.99, '2007-03-01 17:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22021, 532, 1, 10945, 5.99, '2007-03-02 01:48:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22022, 532, 2, 11251, 2.99, '2007-03-02 12:09:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22023, 532, 2, 11318, 4.99, '2007-03-02 14:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22024, 532, 2, 12061, 3.99, '2007-03-17 19:42:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22025, 532, 2, 12295, 5.99, '2007-03-18 03:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22026, 532, 2, 13038, 4.99, '2007-03-19 07:23:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22027, 532, 1, 13192, 8.99, '2007-03-19 12:58:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22028, 532, 1, 13254, 4.99, '2007-03-19 15:22:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22029, 532, 1, 13908, 4.99, '2007-03-20 14:50:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22030, 532, 2, 15180, 0.99, '2007-03-22 14:11:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22031, 532, 2, 15414, 1.99, '2007-03-22 22:12:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22032, 532, 1, 16014, 5.99, '2007-03-23 19:46:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22033, 533, 1, 10380, 2.99, '2007-03-01 05:03:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22034, 533, 1, 10614, 6.99, '2007-03-01 13:25:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22035, 533, 2, 11524, 7.99, '2007-03-16 22:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22036, 533, 1, 11758, 8.99, '2007-03-17 08:01:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22037, 533, 1, 11918, 2.99, '2007-03-17 14:37:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22038, 533, 1, 12602, 0.99, '2007-03-18 15:18:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22039, 533, 1, 12655, 6.99, '2007-03-18 17:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22040, 533, 1, 14263, 7.99, '2007-03-21 04:36:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22041, 533, 1, 14800, 4.99, '2007-03-21 23:14:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22042, 533, 2, 16006, 0.99, '2007-03-23 19:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22043, 534, 2, 10465, 5.99, '2007-03-01 08:13:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22044, 534, 2, 10725, 6.99, '2007-03-01 17:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22045, 534, 1, 10796, 0.99, '2007-03-01 20:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22046, 534, 2, 11180, 5.99, '2007-03-02 09:22:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22047, 534, 2, 12305, 2.99, '2007-03-18 04:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22048, 534, 1, 12691, 5.99, '2007-03-18 18:36:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22049, 534, 2, 12798, 4.99, '2007-03-18 22:52:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22050, 534, 2, 13294, 0.99, '2007-03-19 17:05:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22051, 534, 2, 14816, 1.99, '2007-03-21 23:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22052, 535, 2, 10322, 5.99, '2007-03-01 03:12:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22053, 535, 2, 10353, 3.99, '2007-03-01 04:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22054, 535, 2, 11736, 8.99, '2007-03-17 07:09:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22055, 535, 1, 11855, 7.99, '2007-03-17 12:11:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22056, 535, 2, 12168, 2.99, '2007-03-17 23:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22057, 535, 1, 12233, 0.99, '2007-03-18 01:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22058, 535, 2, 12673, 4.99, '2007-03-18 17:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22059, 535, 1, 12732, 0.99, '2007-03-18 20:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22060, 535, 2, 12750, 1.99, '2007-03-18 21:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22061, 535, 1, 13631, 4.99, '2007-03-20 05:36:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22062, 535, 1, 13852, 0.99, '2007-03-20 13:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22063, 535, 1, 14522, 4.99, '2007-03-21 13:30:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22064, 535, 2, 15075, 5.99, '2007-03-22 09:33:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22065, 535, 1, 15287, 6.99, '2007-03-22 17:48:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22066, 535, 1, 16017, 0.99, '2007-03-23 19:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22067, 536, 1, 11473, 6.99, '2007-03-02 20:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22068, 536, 1, 11826, 2.99, '2007-03-17 11:12:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22069, 536, 2, 11977, 4.99, '2007-03-17 16:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22070, 536, 2, 12052, 8.99, '2007-03-17 19:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22071, 536, 2, 13505, 4.99, '2007-03-20 00:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22072, 536, 1, 15130, 7.99, '2007-03-22 11:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22073, 536, 1, 15978, 8.99, '2007-03-23 18:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22074, 536, 1, 15979, 0.99, '2007-03-23 18:36:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22075, 537, 2, 12984, 4.99, '2007-03-19 05:35:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22076, 537, 2, 13885, 4.99, '2007-03-20 14:00:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22077, 537, 1, 14010, 4.99, '2007-03-20 18:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22078, 537, 2, 14506, 0.99, '2007-03-21 13:00:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22079, 537, 1, 14670, 0.99, '2007-03-21 18:22:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22080, 537, 1, 15149, 2.99, '2007-03-22 12:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22081, 537, 1, 15832, 8.99, '2007-03-23 13:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22082, 538, 2, 10701, 3.99, '2007-03-01 16:56:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22083, 538, 1, 10732, 5.99, '2007-03-01 17:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22084, 538, 1, 10962, 4.99, '2007-03-02 02:16:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22085, 538, 2, 12089, 5.99, '2007-03-17 20:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22086, 538, 1, 13544, 1.99, '2007-03-20 02:12:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22087, 538, 2, 13770, 4.99, '2007-03-20 10:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22088, 538, 2, 14572, 2.99, '2007-03-21 15:12:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22089, 538, 1, 14591, 0.99, '2007-03-21 15:58:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22090, 538, 1, 15343, 6.99, '2007-03-22 19:29:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22091, 539, 2, 10922, 3.99, '2007-03-02 00:43:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22092, 539, 1, 12848, 2.99, '2007-03-19 00:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22093, 539, 2, 13615, 2.99, '2007-03-20 04:57:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22094, 539, 2, 13778, 5.99, '2007-03-20 10:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22095, 539, 1, 15356, 2.99, '2007-03-22 19:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22096, 540, 1, 10924, 8.99, '2007-03-02 00:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22097, 540, 1, 11198, 3.99, '2007-03-02 10:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22098, 540, 2, 11324, 4.99, '2007-03-02 14:59:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22099, 540, 2, 11432, 6.99, '2007-03-02 18:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22100, 540, 2, 12058, 8.99, '2007-03-17 19:36:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22101, 540, 2, 12201, 4.99, '2007-03-18 00:42:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22102, 540, 1, 12300, 6.99, '2007-03-18 04:04:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22103, 540, 2, 14910, 0.99, '2007-03-22 03:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22104, 540, 2, 15079, 2.99, '2007-03-22 09:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22105, 540, 2, 15953, 3.99, '2007-03-23 17:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22106, 541, 1, 10306, 5.99, '2007-03-01 02:47:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22107, 541, 2, 11273, 0.99, '2007-03-02 12:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22108, 541, 1, 12306, 4.99, '2007-03-18 04:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22109, 541, 2, 12395, 4.99, '2007-03-18 07:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22110, 541, 1, 12894, 7.99, '2007-03-19 02:17:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22111, 541, 2, 13239, 4.99, '2007-03-19 14:50:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22112, 541, 2, 13640, 0.99, '2007-03-20 05:51:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22113, 541, 2, 14938, 6.99, '2007-03-22 04:21:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22114, 541, 1, 15071, 4.99, '2007-03-22 09:27:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22115, 541, 2, 15141, 3.99, '2007-03-22 12:10:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22116, 541, 1, 15223, 1.99, '2007-03-22 15:42:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22117, 541, 1, 15421, 0.99, '2007-03-22 22:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22118, 541, 2, 15924, 1.99, '2007-03-23 16:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22119, 542, 1, 10280, 4.99, '2007-03-01 01:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22120, 542, 2, 11583, 0.99, '2007-03-17 00:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22121, 542, 2, 11903, 2.99, '2007-03-17 14:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22122, 542, 1, 12819, 0.99, '2007-03-18 23:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22123, 542, 1, 13447, 0.99, '2007-03-19 22:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22124, 542, 2, 14982, 9.99, '2007-03-22 05:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22125, 543, 2, 10257, 0.99, '2007-03-01 01:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22126, 543, 1, 10520, 4.99, '2007-03-01 10:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22127, 543, 2, 11241, 9.99, '2007-03-02 11:57:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22128, 543, 1, 11681, 2.99, '2007-03-17 04:41:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22129, 543, 1, 13187, 0.99, '2007-03-19 12:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22130, 543, 2, 15281, 1.99, '2007-03-22 17:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22131, 543, 1, 15785, 1.99, '2007-03-23 12:14:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22132, 544, 1, 10735, 0.99, '2007-03-01 17:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22133, 544, 1, 11401, 3.99, '2007-03-02 17:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22134, 544, 2, 11766, 2.99, '2007-03-17 08:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22135, 544, 2, 12640, 3.99, '2007-03-18 16:43:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22136, 544, 2, 14142, 4.99, '2007-03-21 00:36:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22137, 544, 1, 14498, 4.99, '2007-03-21 12:39:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22138, 544, 2, 14651, 8.99, '2007-03-21 17:59:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22139, 544, 1, 14981, 2.99, '2007-03-22 05:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22140, 544, 1, 15219, 6.99, '2007-03-22 15:28:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22141, 544, 1, 15605, 4.99, '2007-03-23 05:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22142, 545, 2, 10931, 2.99, '2007-03-02 01:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22143, 545, 2, 11760, 2.99, '2007-03-17 08:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22144, 545, 1, 12098, 4.99, '2007-03-17 21:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22145, 545, 1, 12349, 2.99, '2007-03-18 05:52:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22146, 545, 2, 12667, 10.99, '2007-03-18 17:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22147, 545, 1, 12800, 2.99, '2007-03-18 22:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22148, 545, 1, 13595, 4.99, '2007-03-20 04:22:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22149, 545, 1, 15585, 0.99, '2007-03-23 04:23:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22150, 545, 2, 15998, 4.99, '2007-03-23 19:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22151, 546, 2, 10370, 0.99, '2007-03-01 04:46:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22152, 546, 2, 11352, 5.99, '2007-03-02 15:58:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22153, 546, 1, 11797, 4.99, '2007-03-17 09:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22154, 546, 2, 12591, 2.99, '2007-03-18 14:45:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22155, 546, 2, 13850, 5.99, '2007-03-20 13:11:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22156, 546, 1, 14797, 4.99, '2007-03-21 23:09:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22157, 546, 1, 14829, 2.99, '2007-03-22 00:04:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22158, 546, 1, 14929, 3.99, '2007-03-22 04:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22159, 546, 2, 15565, 4.99, '2007-03-23 03:41:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22160, 547, 1, 10903, 2.99, '2007-03-02 00:10:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22161, 547, 1, 10980, 4.99, '2007-03-02 02:45:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22162, 547, 2, 11170, 5.99, '2007-03-02 08:50:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22163, 547, 2, 11361, 0.99, '2007-03-02 16:15:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22164, 547, 1, 12579, 0.99, '2007-03-18 14:16:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22165, 547, 2, 12943, 2.99, '2007-03-19 04:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22166, 547, 2, 13307, 2.99, '2007-03-19 17:27:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22167, 547, 1, 14510, 9.99, '2007-03-21 13:13:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22168, 547, 2, 14884, 4.99, '2007-03-22 02:25:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22169, 548, 2, 10318, 0.99, '2007-03-01 03:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22170, 548, 1, 12860, 5.99, '2007-03-19 00:53:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22171, 548, 1, 13691, 3.99, '2007-03-20 07:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22172, 548, 2, 13730, 7.99, '2007-03-20 08:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22173, 548, 2, 14188, 0.99, '2007-03-21 02:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22174, 548, 2, 14723, 6.99, '2007-03-21 20:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22175, 549, 2, 10281, 0.99, '2007-03-01 01:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22176, 549, 2, 11737, 4.99, '2007-03-17 07:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22177, 549, 2, 11878, 2.99, '2007-03-17 12:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22178, 549, 2, 12634, 2.99, '2007-03-18 16:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22179, 549, 2, 12747, 4.99, '2007-03-18 20:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22180, 549, 1, 14434, 0.99, '2007-03-21 10:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22181, 550, 1, 11246, 2.99, '2007-03-02 12:02:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22182, 550, 2, 11320, 0.99, '2007-03-02 14:41:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22183, 550, 1, 11969, 4.99, '2007-03-17 16:18:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22184, 550, 1, 12063, 2.99, '2007-03-17 19:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22185, 550, 2, 12077, 4.99, '2007-03-17 20:27:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22186, 550, 1, 13114, 10.99, '2007-03-19 09:55:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22187, 550, 2, 14071, 2.99, '2007-03-20 21:30:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22188, 550, 2, 14127, 4.99, '2007-03-21 00:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22189, 550, 2, 14375, 6.99, '2007-03-21 08:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22190, 550, 1, 14687, 4.99, '2007-03-21 19:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22191, 550, 2, 15431, 9.99, '2007-03-22 22:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22192, 550, 1, 15883, 0.99, '2007-03-23 15:13:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22193, 550, 2, 15977, 4.99, '2007-03-23 18:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22194, 551, 2, 11380, 0.99, '2007-03-02 16:45:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22195, 551, 2, 11883, 2.99, '2007-03-17 13:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22196, 551, 2, 12208, 4.99, '2007-03-18 00:53:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22197, 551, 2, 12868, 0.99, '2007-03-19 01:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22198, 551, 1, 13439, 3.99, '2007-03-19 22:10:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22199, 551, 1, 14420, 0.99, '2007-03-21 09:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22200, 551, 2, 14609, 4.99, '2007-03-21 16:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22201, 551, 2, 14633, 2.99, '2007-03-21 17:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22202, 551, 1, 14833, 2.99, '2007-03-22 00:13:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22203, 551, 1, 15377, 4.99, '2007-03-22 20:50:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22204, 551, 2, 15390, 6.99, '2007-03-22 21:25:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22205, 552, 1, 11146, 1.99, '2007-03-02 08:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22206, 552, 2, 11205, 4.99, '2007-03-02 10:25:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22207, 552, 2, 11300, 7.99, '2007-03-02 14:06:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22208, 552, 2, 12433, 4.99, '2007-03-18 09:06:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22209, 552, 2, 12880, 2.99, '2007-03-19 01:55:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22210, 552, 2, 13574, 2.99, '2007-03-20 03:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22211, 552, 1, 13693, 0.99, '2007-03-20 07:40:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22212, 552, 2, 14724, 4.99, '2007-03-21 20:22:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22213, 552, 2, 15700, 2.99, '2007-03-23 08:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22214, 553, 2, 11710, 4.99, '2007-03-17 05:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22215, 553, 1, 13972, 2.99, '2007-03-20 17:20:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22216, 553, 1, 15042, 4.99, '2007-03-22 08:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22217, 553, 1, 15506, 0.99, '2007-03-23 01:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22218, 554, 1, 10612, 6.99, '2007-03-01 13:23:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22219, 554, 2, 10829, 7.99, '2007-03-01 21:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22220, 554, 2, 11589, 9.99, '2007-03-17 00:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22221, 554, 1, 11873, 0.99, '2007-03-17 12:43:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22222, 554, 1, 12010, 8.99, '2007-03-17 17:46:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22223, 554, 1, 12014, 0.99, '2007-03-17 17:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22224, 554, 2, 13139, 4.99, '2007-03-19 11:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22225, 554, 2, 14015, 2.99, '2007-03-20 19:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22226, 554, 1, 14098, 3.99, '2007-03-20 22:58:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22227, 554, 1, 14469, 0.99, '2007-03-21 11:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22228, 554, 1, 14626, 2.99, '2007-03-21 17:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22229, 554, 2, 15690, 4.99, '2007-03-23 08:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22230, 555, 1, 10921, 3.99, '2007-03-02 00:42:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22231, 555, 1, 11168, 4.99, '2007-03-02 08:48:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22232, 555, 1, 11718, 4.99, '2007-03-17 06:13:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22233, 555, 2, 11747, 2.99, '2007-03-17 07:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22234, 555, 2, 12091, 4.99, '2007-03-17 20:51:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22235, 555, 2, 12150, 2.99, '2007-03-17 22:42:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22236, 555, 2, 12182, 2.99, '2007-03-17 23:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22237, 555, 1, 12388, 2.99, '2007-03-18 07:16:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22238, 555, 1, 12883, 4.99, '2007-03-19 02:02:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22239, 555, 2, 15102, 6.99, '2007-03-22 10:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22240, 556, 2, 10518, 6.99, '2007-03-01 10:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22241, 556, 1, 11466, 1.99, '2007-03-02 20:15:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22242, 556, 2, 11804, 3.99, '2007-03-17 10:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22243, 556, 1, 12045, 4.99, '2007-03-17 19:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22244, 556, 1, 14176, 2.99, '2007-03-21 01:37:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22245, 556, 1, 15568, 2.99, '2007-03-23 03:52:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22246, 557, 1, 11181, 0.99, '2007-03-02 09:23:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22247, 557, 1, 12555, 1.99, '2007-03-18 13:17:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22248, 557, 1, 12789, 2.99, '2007-03-18 22:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22249, 557, 1, 13540, 2.99, '2007-03-20 02:09:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22250, 557, 2, 13794, 2.99, '2007-03-20 10:53:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22251, 557, 2, 15236, 0.99, '2007-03-22 16:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22252, 557, 2, 15570, 5.99, '2007-03-23 03:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22253, 557, 2, 15914, 0.99, '2007-03-23 16:17:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22254, 558, 2, 10707, 0.99, '2007-03-01 17:10:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22255, 558, 1, 11268, 0.99, '2007-03-02 12:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22256, 558, 2, 11567, 5.99, '2007-03-16 23:57:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22257, 558, 2, 12040, 6.99, '2007-03-17 18:58:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22258, 558, 1, 12194, 1.99, '2007-03-18 00:33:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22259, 558, 2, 13566, 5.99, '2007-03-20 03:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22260, 558, 2, 14235, 7.99, '2007-03-21 03:37:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22261, 558, 1, 14286, 5.99, '2007-03-21 05:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22262, 559, 1, 10377, 3.99, '2007-03-01 04:56:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22263, 559, 1, 10669, 8.99, '2007-03-01 15:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22264, 559, 2, 10876, 0.99, '2007-03-01 23:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22265, 559, 2, 11136, 1.99, '2007-03-02 07:51:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22266, 559, 1, 13234, 1.99, '2007-03-19 14:45:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22267, 559, 2, 13248, 6.99, '2007-03-19 15:16:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22268, 559, 2, 13322, 4.99, '2007-03-19 18:11:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22269, 559, 1, 13845, 5.99, '2007-03-20 12:59:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22270, 559, 1, 14342, 4.99, '2007-03-21 07:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22271, 559, 2, 14622, 4.99, '2007-03-21 16:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22272, 559, 2, 15440, 4.99, '2007-03-22 23:05:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22273, 559, 1, 15877, 4.99, '2007-03-23 15:01:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22274, 560, 2, 10480, 4.99, '2007-03-01 08:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22275, 560, 1, 10702, 4.99, '2007-03-01 17:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22276, 560, 1, 10733, 7.99, '2007-03-01 17:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22277, 560, 1, 11334, 7.99, '2007-03-02 15:21:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22278, 560, 1, 11788, 4.99, '2007-03-17 09:27:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22279, 560, 2, 14008, 5.99, '2007-03-20 18:54:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22280, 560, 1, 14341, 1.99, '2007-03-21 07:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22281, 560, 2, 14363, 4.99, '2007-03-21 07:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22282, 560, 1, 14436, 2.99, '2007-03-21 10:16:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22283, 560, 2, 14785, 2.99, '2007-03-21 22:53:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22284, 560, 1, 15352, 6.99, '2007-03-22 19:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22285, 561, 2, 10317, 2.99, '2007-03-01 03:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22286, 561, 1, 10907, 4.99, '2007-03-02 00:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22287, 561, 1, 11371, 2.99, '2007-03-02 16:36:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22288, 561, 2, 11402, 2.99, '2007-03-02 17:35:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22289, 561, 2, 12441, 2.99, '2007-03-18 09:16:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22290, 561, 2, 14139, 0.99, '2007-03-21 00:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22291, 561, 1, 15573, 0.99, '2007-03-23 03:57:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22292, 561, 1, 15946, 2.99, '2007-03-23 17:22:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22293, 562, 2, 10868, 6.99, '2007-03-01 22:53:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22294, 562, 2, 12008, 4.99, '2007-03-17 17:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22295, 562, 1, 12248, 5.99, '2007-03-18 02:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22296, 562, 2, 13225, 2.99, '2007-03-19 14:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22297, 562, 2, 13347, 10.99, '2007-03-19 18:57:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22298, 562, 2, 13639, 0.99, '2007-03-20 05:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22299, 562, 1, 15212, 2.99, '2007-03-22 15:12:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22300, 562, 2, 15475, 2.99, '2007-03-23 00:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22301, 562, 1, 15900, 1.99, '2007-03-23 15:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22302, 563, 2, 11829, 0.99, '2007-03-17 11:20:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22303, 563, 1, 12039, 1.99, '2007-03-17 18:57:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22304, 563, 1, 12202, 1.99, '2007-03-18 00:42:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22305, 563, 1, 12832, 2.99, '2007-03-19 00:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22306, 563, 2, 13863, 9.99, '2007-03-20 13:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22307, 563, 2, 14592, 4.99, '2007-03-21 15:58:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22308, 563, 2, 15507, 0.99, '2007-03-23 01:16:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22309, 563, 2, 15638, 3.99, '2007-03-23 06:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22310, 563, 1, 15850, 4.99, '2007-03-23 14:14:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22311, 564, 2, 10352, 1.99, '2007-03-01 04:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22312, 564, 2, 10401, 4.99, '2007-03-01 05:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22313, 564, 1, 10528, 2.99, '2007-03-01 10:24:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22314, 564, 2, 11768, 2.99, '2007-03-17 08:30:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22315, 564, 2, 12197, 6.99, '2007-03-18 00:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22316, 564, 2, 12617, 2.99, '2007-03-18 15:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22317, 564, 2, 13324, 0.99, '2007-03-19 18:19:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22318, 564, 2, 13558, 0.99, '2007-03-20 02:41:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22319, 564, 1, 13701, 0.99, '2007-03-20 07:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22320, 564, 2, 14439, 5.99, '2007-03-21 10:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22321, 564, 1, 14593, 0.99, '2007-03-21 16:01:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22322, 564, 2, 15059, 8.99, '2007-03-22 08:50:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22323, 565, 2, 10776, 10.99, '2007-03-01 19:28:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22324, 565, 2, 10913, 3.99, '2007-03-02 00:32:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22325, 565, 2, 11189, 6.99, '2007-03-02 09:45:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22326, 565, 1, 11399, 3.99, '2007-03-02 17:24:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22327, 565, 2, 11506, 4.99, '2007-03-16 21:54:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22328, 565, 1, 11588, 3.99, '2007-03-17 00:54:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22329, 565, 1, 11795, 2.99, '2007-03-17 09:42:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22330, 565, 2, 12743, 5.99, '2007-03-18 20:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22331, 565, 2, 13195, 4.99, '2007-03-19 13:07:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22332, 565, 2, 13217, 4.99, '2007-03-19 14:07:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22333, 565, 1, 13362, 0.99, '2007-03-19 19:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22334, 565, 1, 13925, 8.99, '2007-03-20 15:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22335, 565, 1, 15885, 2.99, '2007-03-23 15:19:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22336, 566, 2, 10259, 2.99, '2007-03-01 01:20:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22337, 566, 2, 10289, 6.99, '2007-03-01 02:08:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22338, 566, 2, 11129, 2.99, '2007-03-02 07:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22339, 566, 1, 11717, 0.99, '2007-03-17 06:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22340, 566, 1, 11941, 1.99, '2007-03-17 15:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22341, 566, 2, 12382, 8.99, '2007-03-18 07:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22342, 566, 2, 12995, 4.99, '2007-03-19 05:54:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22343, 566, 2, 13762, 4.99, '2007-03-20 09:57:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22344, 566, 1, 14277, 3.99, '2007-03-21 05:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22345, 566, 1, 14297, 2.99, '2007-03-21 05:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22346, 567, 2, 10708, 7.99, '2007-03-01 17:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22347, 567, 2, 11749, 2.99, '2007-03-17 07:32:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22348, 567, 1, 12119, 2.99, '2007-03-17 21:45:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22349, 567, 2, 13031, 2.99, '2007-03-19 06:58:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22350, 567, 2, 14839, 2.99, '2007-03-22 00:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22351, 567, 2, 15074, 5.99, '2007-03-22 09:31:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22352, 567, 2, 15594, 10.99, '2007-03-23 04:47:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22353, 568, 1, 10340, 2.99, '2007-03-01 03:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22354, 568, 2, 10689, 0.99, '2007-03-01 16:32:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22355, 568, 2, 10869, 0.99, '2007-03-01 22:55:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22356, 568, 1, 11331, 2.99, '2007-03-02 15:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22357, 568, 1, 13883, 4.99, '2007-03-20 13:57:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22358, 568, 2, 15069, 5.99, '2007-03-22 09:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22359, 568, 1, 15203, 2.99, '2007-03-22 14:56:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22360, 569, 2, 10884, 0.99, '2007-03-01 23:15:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22361, 569, 1, 11030, 1.99, '2007-03-02 04:19:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22362, 569, 2, 11255, 4.99, '2007-03-02 12:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22363, 569, 1, 11354, 6.99, '2007-03-02 16:03:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22364, 569, 1, 11946, 4.99, '2007-03-17 15:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22365, 569, 1, 12157, 2.99, '2007-03-17 23:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22366, 569, 2, 12308, 0.99, '2007-03-18 04:17:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22367, 569, 1, 12568, 3.99, '2007-03-18 13:44:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22368, 569, 2, 12958, 2.99, '2007-03-19 04:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22369, 569, 1, 13287, 7.99, '2007-03-19 16:56:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22370, 569, 2, 13554, 9.99, '2007-03-20 02:37:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22371, 569, 2, 14207, 4.99, '2007-03-21 02:36:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22372, 569, 2, 14400, 0.99, '2007-03-21 09:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22373, 569, 1, 14896, 8.99, '2007-03-22 02:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22374, 569, 1, 14959, 2.99, '2007-03-22 04:58:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22375, 569, 2, 15617, 0.99, '2007-03-23 05:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22376, 569, 2, 16025, 4.99, '2007-03-23 20:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22377, 570, 1, 11098, 3.99, '2007-03-02 06:34:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22378, 570, 2, 12042, 4.99, '2007-03-17 19:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22379, 570, 2, 14768, 3.99, '2007-03-21 22:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22380, 571, 1, 10227, 2.99, '2007-03-01 00:10:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22381, 571, 2, 11080, 2.99, '2007-03-02 05:58:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22382, 571, 2, 11191, 7.99, '2007-03-02 09:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22383, 571, 1, 13228, 2.99, '2007-03-19 14:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22384, 571, 2, 13266, 2.99, '2007-03-19 15:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22385, 571, 1, 14956, 0.99, '2007-03-22 04:54:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22386, 571, 1, 15841, 4.99, '2007-03-23 14:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22387, 572, 1, 11114, 0.99, '2007-03-02 06:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22388, 572, 1, 11121, 4.99, '2007-03-02 07:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22389, 572, 2, 11415, 2.99, '2007-03-02 18:12:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22390, 572, 1, 11426, 4.99, '2007-03-02 18:28:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22391, 572, 1, 11526, 4.99, '2007-03-16 22:46:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22392, 572, 1, 12256, 1.99, '2007-03-18 02:38:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22393, 572, 2, 13377, 1.99, '2007-03-19 20:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22394, 572, 2, 13523, 6.99, '2007-03-20 01:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22395, 572, 1, 13688, 5.99, '2007-03-20 07:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22396, 573, 1, 10296, 0.99, '2007-03-01 02:33:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22397, 573, 1, 10887, 2.99, '2007-03-01 23:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22398, 573, 1, 11043, 0.99, '2007-03-02 04:33:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22399, 573, 2, 11912, 5.99, '2007-03-17 14:20:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22400, 573, 1, 12017, 1.99, '2007-03-17 18:02:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22401, 573, 1, 12125, 1.99, '2007-03-17 21:52:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22402, 573, 1, 12269, 6.99, '2007-03-18 02:56:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22403, 573, 1, 12791, 0.99, '2007-03-18 22:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22404, 573, 2, 13113, 2.99, '2007-03-19 09:55:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22405, 574, 1, 10347, 4.99, '2007-03-01 03:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22406, 574, 2, 11775, 3.99, '2007-03-17 08:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22407, 574, 1, 12462, 2.99, '2007-03-18 09:57:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22408, 574, 1, 13589, 4.99, '2007-03-20 04:15:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22409, 574, 1, 14076, 4.99, '2007-03-20 21:48:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22410, 574, 2, 14941, 2.99, '2007-03-22 04:26:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22411, 574, 2, 15214, 2.99, '2007-03-22 15:21:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22412, 575, 1, 10331, 4.99, '2007-03-01 03:25:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22413, 575, 2, 10629, 7.99, '2007-03-01 14:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22414, 575, 1, 11097, 3.99, '2007-03-02 06:34:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22415, 575, 1, 11458, 4.99, '2007-03-02 19:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22416, 575, 1, 12204, 7.99, '2007-03-18 00:49:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22417, 575, 2, 12289, 8.99, '2007-03-18 03:33:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22418, 575, 2, 12770, 5.99, '2007-03-18 21:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22419, 575, 2, 13408, 4.99, '2007-03-19 21:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22420, 575, 2, 13465, 2.99, '2007-03-19 23:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22421, 575, 2, 14952, 2.99, '2007-03-22 04:48:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22422, 575, 2, 15749, 4.99, '2007-03-23 11:02:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22423, 575, 2, 15857, 0.99, '2007-03-23 14:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22424, 576, 2, 10724, 3.99, '2007-03-01 17:39:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22425, 576, 2, 12112, 5.99, '2007-03-17 21:28:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22426, 576, 1, 12245, 4.99, '2007-03-18 02:15:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22427, 576, 1, 13061, 4.99, '2007-03-19 08:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22428, 576, 1, 13326, 4.99, '2007-03-19 18:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22429, 576, 1, 14501, 4.99, '2007-03-21 12:43:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22430, 576, 1, 14541, 0.99, '2007-03-21 14:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22431, 576, 1, 15634, 0.99, '2007-03-23 06:02:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22432, 577, 2, 10323, 4.99, '2007-03-01 03:13:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22433, 577, 1, 10487, 0.99, '2007-03-01 08:55:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22434, 577, 1, 10782, 4.99, '2007-03-01 19:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22435, 577, 1, 11054, 7.99, '2007-03-02 05:01:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22436, 577, 2, 11464, 0.99, '2007-03-02 20:10:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22437, 577, 1, 12664, 4.99, '2007-03-18 17:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22438, 577, 2, 12671, 0.99, '2007-03-18 17:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22439, 577, 2, 13200, 3.99, '2007-03-19 13:24:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22440, 577, 2, 13500, 3.99, '2007-03-20 00:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22441, 577, 2, 15480, 2.99, '2007-03-23 00:25:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22442, 577, 2, 15873, 2.99, '2007-03-23 14:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22443, 577, 2, 16003, 4.99, '2007-03-23 19:15:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22444, 578, 1, 10779, 7.99, '2007-03-01 19:40:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22445, 578, 1, 11199, 7.99, '2007-03-02 10:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22446, 578, 2, 13071, 5.99, '2007-03-19 08:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22447, 578, 2, 13498, 5.99, '2007-03-20 00:19:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22448, 578, 2, 13552, 2.99, '2007-03-20 02:32:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22449, 578, 1, 15652, 0.99, '2007-03-23 07:02:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22450, 579, 1, 11494, 3.99, '2007-03-02 21:19:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22451, 579, 2, 12051, 6.99, '2007-03-17 19:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22452, 579, 2, 12315, 5.99, '2007-03-18 04:43:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22453, 579, 2, 14047, 2.99, '2007-03-20 20:29:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22454, 579, 1, 14185, 0.99, '2007-03-21 01:57:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22455, 579, 1, 14543, 1.99, '2007-03-21 14:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22456, 579, 2, 14560, 2.99, '2007-03-21 14:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22457, 579, 2, 15601, 0.99, '2007-03-23 05:01:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22458, 579, 1, 15838, 4.99, '2007-03-23 13:59:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22459, 580, 1, 10723, 3.99, '2007-03-01 17:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22460, 580, 2, 10965, 3.99, '2007-03-02 02:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22461, 580, 1, 11164, 8.99, '2007-03-02 08:39:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22462, 580, 2, 12670, 2.99, '2007-03-18 17:46:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22463, 580, 2, 13313, 2.99, '2007-03-19 17:40:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22464, 580, 2, 13742, 2.99, '2007-03-20 09:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22465, 580, 2, 14818, 2.99, '2007-03-21 23:45:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22466, 580, 1, 15157, 6.99, '2007-03-22 12:58:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22467, 580, 1, 15630, 6.99, '2007-03-23 05:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22468, 580, 1, 15947, 4.99, '2007-03-23 17:22:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22469, 581, 2, 11443, 2.99, '2007-03-02 18:57:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22470, 581, 2, 11707, 2.99, '2007-03-17 05:53:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22471, 581, 2, 13621, 0.99, '2007-03-20 05:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22472, 581, 2, 13712, 2.99, '2007-03-20 08:06:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22473, 581, 2, 14070, 8.99, '2007-03-20 21:25:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22474, 581, 1, 14976, 2.99, '2007-03-22 05:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22475, 581, 1, 15403, 0.99, '2007-03-22 21:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22476, 581, 2, 15792, 4.99, '2007-03-23 12:34:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22477, 582, 2, 11290, 7.99, '2007-03-02 13:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22478, 582, 1, 11667, 5.99, '2007-03-17 04:15:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22479, 582, 1, 11708, 2.99, '2007-03-17 05:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22480, 582, 2, 13815, 5.99, '2007-03-20 11:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22481, 582, 1, 14376, 4.99, '2007-03-21 08:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22482, 582, 1, 14568, 0.99, '2007-03-21 14:59:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22483, 582, 1, 15090, 5.99, '2007-03-22 10:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22484, 582, 1, 15503, 2.99, '2007-03-23 01:13:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22485, 582, 1, 15539, 0.99, '2007-03-23 02:37:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22486, 582, 2, 15911, 4.99, '2007-03-23 16:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22487, 583, 2, 10301, 4.99, '2007-03-01 02:38:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22488, 583, 2, 10586, 2.99, '2007-03-01 12:29:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22489, 583, 2, 10800, 4.99, '2007-03-01 20:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22490, 583, 2, 11002, 4.99, '2007-03-02 03:31:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22491, 583, 1, 14259, 0.99, '2007-03-21 04:28:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22492, 584, 1, 10914, 4.99, '2007-03-02 00:33:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22493, 584, 2, 10966, 0.99, '2007-03-02 02:29:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22494, 584, 1, 11213, 4.99, '2007-03-02 10:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22495, 584, 2, 11500, 6.99, '2007-03-16 21:29:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22496, 584, 2, 12507, 8.99, '2007-03-18 11:47:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22497, 584, 2, 12541, 2.99, '2007-03-18 12:46:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22498, 584, 2, 12693, 5.99, '2007-03-18 18:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22499, 584, 1, 12844, 2.99, '2007-03-19 00:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22500, 584, 2, 14102, 5.99, '2007-03-20 23:03:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22501, 584, 2, 14230, 5.99, '2007-03-21 03:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22502, 584, 2, 14447, 4.99, '2007-03-21 10:40:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22503, 584, 1, 14930, 1.99, '2007-03-22 04:06:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22504, 584, 1, 15615, 0.99, '2007-03-23 05:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22505, 585, 2, 10573, 0.99, '2007-03-01 11:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22506, 585, 1, 11285, 9.99, '2007-03-02 13:12:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22507, 585, 2, 13593, 3.99, '2007-03-20 04:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22508, 585, 2, 13939, 0.99, '2007-03-20 15:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22509, 585, 1, 15804, 4.99, '2007-03-23 12:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22510, 585, 1, 15896, 6.99, '2007-03-23 15:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22511, 586, 1, 11034, 2.99, '2007-03-02 04:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22512, 586, 1, 11763, 0.99, '2007-03-17 08:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22513, 586, 1, 12013, 4.99, '2007-03-17 17:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22514, 586, 1, 12898, 0.99, '2007-03-19 02:23:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22515, 586, 2, 14043, 2.99, '2007-03-20 20:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22516, 586, 1, 14392, 1.99, '2007-03-21 08:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22517, 586, 2, 14533, 2.99, '2007-03-21 13:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22518, 586, 1, 15666, 3.99, '2007-03-23 07:29:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22519, 586, 2, 15684, 0.99, '2007-03-23 08:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22520, 587, 2, 10224, 4.99, '2007-03-01 00:00:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22521, 587, 1, 10825, 2.99, '2007-03-01 21:33:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22522, 587, 1, 11078, 2.99, '2007-03-02 05:55:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22523, 587, 2, 11403, 4.99, '2007-03-02 17:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22524, 587, 2, 12164, 4.99, '2007-03-17 23:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22525, 587, 2, 12330, 6.99, '2007-03-18 05:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22526, 587, 2, 14710, 4.99, '2007-03-21 19:43:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22527, 587, 2, 15348, 2.99, '2007-03-22 19:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22528, 587, 2, 15349, 0.99, '2007-03-22 19:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22529, 588, 2, 10373, 4.99, '2007-03-01 04:52:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22530, 588, 1, 12185, 2.99, '2007-03-18 00:08:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22531, 588, 2, 12815, 4.99, '2007-03-18 23:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22532, 588, 1, 13064, 4.99, '2007-03-19 08:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22533, 588, 1, 13923, 1.99, '2007-03-20 15:33:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22534, 588, 1, 15109, 1.99, '2007-03-22 10:41:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22535, 588, 1, 15158, 2.99, '2007-03-22 12:59:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22536, 588, 1, 15209, 4.99, '2007-03-22 15:05:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22537, 589, 2, 10544, 4.99, '2007-03-01 11:04:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22538, 589, 1, 11980, 4.99, '2007-03-17 16:38:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22539, 589, 1, 12738, 7.99, '2007-03-18 20:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22540, 589, 2, 12933, 8.99, '2007-03-19 03:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22541, 589, 1, 14038, 6.99, '2007-03-20 20:07:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22542, 589, 1, 14254, 6.99, '2007-03-21 04:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22543, 589, 1, 14544, 0.99, '2007-03-21 14:09:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22544, 589, 2, 14706, 0.99, '2007-03-21 19:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22545, 589, 2, 15917, 5.99, '2007-03-23 16:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22546, 589, 2, 15992, 0.99, '2007-03-23 18:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22547, 590, 1, 10657, 4.99, '2007-03-01 15:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22548, 590, 2, 11578, 5.99, '2007-03-17 00:22:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22549, 590, 2, 11713, 3.99, '2007-03-17 06:02:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22550, 590, 1, 14830, 2.99, '2007-03-22 00:05:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22551, 591, 1, 10415, 4.99, '2007-03-01 06:34:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22552, 591, 2, 12203, 5.99, '2007-03-18 00:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22553, 591, 2, 12227, 4.99, '2007-03-18 01:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22554, 591, 1, 12547, 4.99, '2007-03-18 12:58:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22555, 591, 1, 12571, 5.99, '2007-03-18 13:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22556, 591, 1, 12934, 5.99, '2007-03-19 03:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22557, 591, 2, 13104, 2.99, '2007-03-19 09:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22558, 591, 2, 13343, 3.99, '2007-03-19 18:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22559, 591, 1, 13867, 9.99, '2007-03-20 13:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22560, 592, 2, 10383, 0.99, '2007-03-01 05:05:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22561, 592, 2, 10634, 2.99, '2007-03-01 14:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22562, 592, 1, 11410, 8.99, '2007-03-02 17:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22563, 592, 2, 12043, 0.99, '2007-03-17 19:06:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22564, 592, 2, 12619, 0.99, '2007-03-18 15:52:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22565, 592, 1, 12976, 1.99, '2007-03-19 05:21:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22566, 592, 1, 13157, 2.99, '2007-03-19 11:40:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22567, 592, 2, 13662, 3.99, '2007-03-20 06:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22568, 593, 1, 10368, 3.99, '2007-03-01 04:42:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22569, 593, 2, 10533, 3.99, '2007-03-01 10:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22570, 593, 1, 10840, 5.99, '2007-03-01 22:07:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22571, 593, 2, 10904, 4.99, '2007-03-02 00:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22572, 593, 2, 12744, 2.99, '2007-03-18 20:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22573, 593, 1, 13524, 6.99, '2007-03-20 01:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22574, 593, 1, 14408, 5.99, '2007-03-21 09:15:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22575, 593, 1, 14653, 0.99, '2007-03-21 18:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22576, 594, 2, 10704, 8.99, '2007-03-01 17:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22577, 594, 2, 14824, 4.99, '2007-03-21 23:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22578, 594, 1, 14999, 4.99, '2007-03-22 06:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22579, 595, 1, 10729, 2.99, '2007-03-01 17:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22580, 595, 1, 10932, 2.99, '2007-03-02 01:14:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22581, 595, 2, 11748, 0.99, '2007-03-17 07:32:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22582, 595, 1, 12235, 0.99, '2007-03-18 01:46:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22583, 595, 1, 14334, 0.99, '2007-03-21 07:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22584, 595, 2, 15576, 2.99, '2007-03-23 04:00:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22585, 595, 2, 15994, 0.99, '2007-03-23 18:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22586, 595, 2, 16016, 2.99, '2007-03-23 19:55:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22587, 596, 2, 10692, 4.99, '2007-03-01 16:41:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22588, 596, 1, 10756, 2.99, '2007-03-01 18:45:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22589, 596, 2, 10804, 0.99, '2007-03-01 20:50:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22590, 596, 2, 11009, 4.99, '2007-03-02 03:34:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22591, 596, 2, 11852, 3.99, '2007-03-17 12:06:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22592, 596, 1, 11934, 0.99, '2007-03-17 15:08:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22593, 596, 2, 12560, 4.99, '2007-03-18 13:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22594, 596, 1, 12878, 4.99, '2007-03-19 01:45:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22595, 596, 1, 13648, 4.99, '2007-03-20 06:16:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22596, 596, 1, 14050, 3.99, '2007-03-20 20:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22597, 596, 1, 14417, 0.99, '2007-03-21 09:42:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22598, 596, 1, 15405, 0.99, '2007-03-22 21:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22599, 596, 1, 15899, 6.99, '2007-03-23 15:44:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22600, 597, 2, 10986, 5.99, '2007-03-02 03:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22601, 597, 2, 11147, 4.99, '2007-03-02 08:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22602, 597, 2, 11223, 2.99, '2007-03-02 11:02:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22603, 597, 1, 11240, 2.99, '2007-03-02 11:56:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22604, 597, 1, 11880, 5.99, '2007-03-17 12:56:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22605, 597, 1, 12081, 4.99, '2007-03-17 20:39:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22606, 597, 1, 12992, 0.99, '2007-03-19 05:51:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22607, 597, 2, 13019, 2.99, '2007-03-19 06:36:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22608, 597, 1, 13152, 6.99, '2007-03-19 11:37:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22609, 597, 2, 15275, 2.99, '2007-03-22 17:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22610, 597, 1, 15469, 4.99, '2007-03-22 23:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22611, 598, 2, 11350, 0.99, '2007-03-02 15:51:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22612, 598, 2, 12601, 2.99, '2007-03-18 15:16:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22613, 598, 2, 14345, 0.99, '2007-03-21 07:09:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22614, 598, 2, 15307, 2.99, '2007-03-22 18:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22615, 598, 1, 15443, 7.99, '2007-03-22 23:12:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22616, 599, 2, 11522, 3.99, '2007-03-16 22:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22617, 599, 1, 14233, 1.99, '2007-03-21 03:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22618, 599, 1, 14599, 4.99, '2007-03-21 16:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22619, 599, 1, 14719, 1.99, '2007-03-21 20:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22620, 599, 2, 15590, 8.99, '2007-03-23 04:38:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22621, 599, 2, 15719, 2.99, '2007-03-23 09:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22622, 599, 2, 15725, 2.99, '2007-03-23 09:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22623, 202, 1, 10375, 2.99, '2007-03-01 04:54:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22624, 202, 1, 11210, 4.99, '2007-03-02 10:44:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22625, 202, 2, 11924, 4.99, '2007-03-17 14:50:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22626, 202, 2, 12801, 8.99, '2007-03-18 22:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22627, 202, 1, 13196, 4.99, '2007-03-19 13:08:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22628, 202, 1, 13528, 3.99, '2007-03-20 01:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22629, 202, 1, 14019, 3.99, '2007-03-20 19:27:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22630, 202, 1, 15095, 0.99, '2007-03-22 10:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22631, 202, 2, 15772, 4.99, '2007-03-23 11:51:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22632, 203, 2, 10700, 3.99, '2007-03-01 16:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22633, 203, 2, 10805, 2.99, '2007-03-01 20:52:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22634, 203, 1, 11712, 2.99, '2007-03-17 06:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22635, 203, 1, 12519, 0.99, '2007-03-18 12:10:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22636, 203, 2, 13841, 4.99, '2007-03-20 12:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22637, 203, 2, 14505, 5.99, '2007-03-21 12:54:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22638, 203, 2, 15798, 2.99, '2007-03-23 12:51:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22639, 203, 2, 15991, 2.99, '2007-03-23 18:56:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22640, 204, 2, 10399, 5.99, '2007-03-01 05:42:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22641, 204, 1, 11261, 7.99, '2007-03-02 12:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22642, 204, 2, 11886, 0.99, '2007-03-17 13:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22643, 204, 1, 12737, 6.99, '2007-03-18 20:40:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22644, 204, 1, 13084, 0.99, '2007-03-19 08:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22645, 204, 1, 13416, 4.99, '2007-03-19 21:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22646, 204, 2, 13899, 2.99, '2007-03-20 14:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22647, 204, 2, 14163, 4.99, '2007-03-21 01:25:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22648, 204, 1, 14871, 0.99, '2007-03-22 01:51:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22649, 204, 1, 15364, 4.99, '2007-03-22 20:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22650, 204, 2, 15415, 11.99, '2007-03-22 22:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22651, 205, 1, 13935, 2.99, '2007-03-20 15:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22652, 205, 1, 14338, 0.99, '2007-03-21 07:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22653, 205, 2, 14391, 4.99, '2007-03-21 08:44:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22654, 205, 1, 14442, 2.99, '2007-03-21 10:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22655, 205, 2, 14490, 6.99, '2007-03-21 12:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22656, 205, 2, 15418, 0.99, '2007-03-22 22:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22657, 206, 2, 10930, 3.99, '2007-03-02 01:06:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22658, 206, 1, 11022, 2.99, '2007-03-02 04:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22659, 206, 2, 11634, 2.99, '2007-03-17 03:00:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22660, 206, 1, 13128, 4.99, '2007-03-19 10:32:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22661, 206, 2, 13232, 2.99, '2007-03-19 14:41:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22662, 206, 2, 13263, 10.99, '2007-03-19 15:55:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22663, 206, 2, 13550, 9.99, '2007-03-20 02:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22664, 206, 2, 13696, 0.99, '2007-03-20 07:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22665, 206, 2, 14695, 0.99, '2007-03-21 19:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22666, 206, 2, 15686, 7.99, '2007-03-23 08:10:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22667, 206, 1, 15709, 4.99, '2007-03-23 09:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22668, 207, 2, 10234, 3.99, '2007-03-01 00:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22669, 207, 2, 10300, 0.99, '2007-03-01 02:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22670, 207, 1, 11112, 2.99, '2007-03-02 06:53:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22671, 207, 2, 11260, 0.99, '2007-03-02 12:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22672, 207, 2, 11286, 5.99, '2007-03-02 13:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22673, 207, 1, 11724, 6.99, '2007-03-17 06:33:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22674, 207, 2, 12108, 6.99, '2007-03-17 21:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22675, 207, 2, 13655, 2.99, '2007-03-20 06:27:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22676, 207, 2, 13809, 8.99, '2007-03-20 11:24:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22677, 207, 2, 13912, 9.99, '2007-03-20 15:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22678, 207, 2, 13954, 3.99, '2007-03-20 16:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22679, 207, 1, 15625, 1.99, '2007-03-23 05:53:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22680, 1, 2, 10437, 4.99, '2007-03-01 07:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22681, 1, 2, 11299, 3.99, '2007-03-02 14:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22682, 1, 1, 11367, 0.99, '2007-03-02 16:30:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22683, 1, 2, 11824, 4.99, '2007-03-17 11:06:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22684, 1, 1, 12250, 0.99, '2007-03-18 02:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22685, 1, 2, 13068, 0.99, '2007-03-19 08:23:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22686, 1, 2, 13176, 2.99, '2007-03-19 12:25:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22687, 1, 1, 14762, 0.99, '2007-03-21 22:02:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22688, 1, 1, 14825, 1.99, '2007-03-21 23:56:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22689, 1, 2, 15298, 2.99, '2007-03-22 18:10:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22690, 1, 1, 15315, 5.99, '2007-03-22 18:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22691, 2, 1, 10466, 0.99, '2007-03-01 08:13:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22692, 2, 1, 10918, 0.99, '2007-03-02 00:39:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22693, 2, 1, 11087, 5.99, '2007-03-02 06:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22694, 2, 1, 11177, 6.99, '2007-03-02 09:12:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22695, 2, 2, 11256, 2.99, '2007-03-02 12:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22696, 2, 1, 11614, 2.99, '2007-03-17 02:20:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22697, 2, 1, 12963, 2.99, '2007-03-19 04:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22698, 2, 1, 14475, 4.99, '2007-03-21 11:52:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22699, 2, 2, 14743, 5.99, '2007-03-21 21:10:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22700, 2, 2, 15145, 4.99, '2007-03-22 12:21:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22701, 2, 2, 15907, 4.99, '2007-03-23 16:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22702, 3, 2, 10597, 5.99, '2007-03-01 12:48:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22703, 3, 2, 12556, 4.99, '2007-03-18 13:18:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22704, 3, 1, 13403, 8.99, '2007-03-19 20:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22705, 3, 2, 13610, 2.99, '2007-03-20 04:42:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22706, 3, 2, 14699, 8.99, '2007-03-21 19:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22707, 3, 2, 15038, 0.99, '2007-03-22 08:05:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22708, 3, 1, 15619, 2.99, '2007-03-23 05:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22709, 4, 2, 11069, 0.99, '2007-03-02 05:38:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22710, 4, 1, 11110, 2.99, '2007-03-02 06:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22711, 4, 2, 11529, 4.99, '2007-03-16 22:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22712, 4, 1, 12151, 2.99, '2007-03-17 22:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22713, 4, 2, 12294, 8.99, '2007-03-18 03:43:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22714, 4, 2, 12856, 1.99, '2007-03-19 00:47:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22715, 4, 1, 13704, 2.99, '2007-03-20 08:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22716, 4, 1, 13807, 6.99, '2007-03-20 11:24:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22717, 4, 2, 14225, 4.99, '2007-03-21 03:22:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22718, 4, 1, 15147, 2.99, '2007-03-22 12:26:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22719, 4, 2, 15635, 1.99, '2007-03-23 06:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22720, 5, 2, 10609, 4.99, '2007-03-01 13:17:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22721, 5, 1, 10625, 0.99, '2007-03-01 13:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22722, 5, 2, 11001, 4.99, '2007-03-02 03:25:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22723, 5, 1, 11179, 4.99, '2007-03-02 09:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22724, 5, 2, 11930, 3.99, '2007-03-17 14:57:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22725, 5, 1, 12145, 9.99, '2007-03-17 22:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22726, 5, 1, 12797, 2.99, '2007-03-18 22:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22727, 5, 1, 13063, 1.99, '2007-03-19 08:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22728, 5, 2, 13877, 0.99, '2007-03-20 13:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22729, 5, 2, 14053, 6.99, '2007-03-20 20:42:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22730, 5, 1, 14430, 6.99, '2007-03-21 09:59:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22731, 5, 2, 14494, 2.99, '2007-03-21 12:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22732, 5, 2, 15232, 0.99, '2007-03-22 16:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22733, 6, 1, 10271, 2.99, '2007-03-01 01:42:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22734, 6, 1, 11023, 2.99, '2007-03-02 04:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22735, 6, 1, 11398, 3.99, '2007-03-02 17:23:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22736, 6, 1, 11591, 6.99, '2007-03-17 00:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22737, 6, 1, 11727, 0.99, '2007-03-17 06:40:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22738, 6, 1, 11853, 0.99, '2007-03-17 12:07:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22739, 6, 2, 12254, 2.99, '2007-03-18 02:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22740, 6, 2, 13451, 6.99, '2007-03-19 22:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22741, 6, 1, 14329, 7.99, '2007-03-21 06:51:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22742, 6, 1, 14377, 4.99, '2007-03-21 08:17:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22743, 6, 1, 15509, 5.99, '2007-03-23 01:19:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22744, 6, 2, 15603, 0.99, '2007-03-23 05:09:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22745, 7, 2, 10330, 6.99, '2007-03-01 03:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22746, 7, 1, 10423, 5.99, '2007-03-01 06:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22747, 7, 1, 10514, 4.99, '2007-03-01 10:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22748, 7, 2, 10644, 4.99, '2007-03-01 14:20:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22749, 7, 2, 10989, 3.99, '2007-03-02 03:09:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22750, 7, 2, 11542, 7.99, '2007-03-16 23:19:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22751, 7, 1, 12367, 8.99, '2007-03-18 06:25:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22752, 7, 1, 12730, 2.99, '2007-03-18 20:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22753, 7, 2, 13373, 2.99, '2007-03-19 19:51:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22754, 7, 1, 13476, 2.99, '2007-03-19 23:34:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22755, 7, 1, 13594, 0.99, '2007-03-20 04:21:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22756, 7, 1, 14222, 5.99, '2007-03-21 03:18:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22757, 8, 2, 10561, 2.99, '2007-03-01 11:34:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22758, 8, 1, 11232, 9.99, '2007-03-02 11:32:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22759, 8, 2, 11284, 2.99, '2007-03-02 13:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22760, 8, 1, 12613, 2.99, '2007-03-18 15:44:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22761, 8, 1, 14114, 0.99, '2007-03-20 23:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22762, 8, 1, 15374, 7.99, '2007-03-22 20:37:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22763, 8, 1, 15764, 2.99, '2007-03-23 11:33:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22764, 8, 1, 15805, 4.99, '2007-03-23 12:59:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22765, 9, 1, 10451, 0.99, '2007-03-01 07:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22766, 9, 1, 10454, 4.99, '2007-03-01 07:42:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22767, 9, 2, 11400, 5.99, '2007-03-02 17:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22768, 9, 1, 11556, 0.99, '2007-03-16 23:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22769, 9, 1, 12228, 2.99, '2007-03-18 01:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22770, 9, 1, 12309, 2.99, '2007-03-18 04:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22771, 9, 2, 12652, 4.99, '2007-03-18 17:17:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22772, 9, 2, 14489, 7.99, '2007-03-21 12:22:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22773, 10, 2, 10671, 8.99, '2007-03-01 15:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22774, 10, 2, 11289, 2.99, '2007-03-02 13:23:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22775, 10, 1, 11405, 0.99, '2007-03-02 17:42:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22776, 10, 2, 12031, 2.99, '2007-03-17 18:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22777, 10, 2, 12400, 2.99, '2007-03-18 07:47:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22778, 10, 2, 13316, 4.99, '2007-03-19 17:51:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22779, 10, 2, 13917, 2.99, '2007-03-20 15:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22780, 10, 1, 15370, 5.99, '2007-03-22 20:27:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22781, 11, 1, 10812, 4.99, '2007-03-01 21:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22782, 11, 2, 11166, 6.99, '2007-03-02 08:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22783, 11, 2, 11502, 0.99, '2007-03-16 21:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22784, 11, 2, 12015, 5.99, '2007-03-17 18:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22785, 11, 2, 13572, 0.99, '2007-03-20 03:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22786, 11, 1, 13790, 4.99, '2007-03-20 10:45:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22787, 11, 1, 15120, 0.99, '2007-03-22 11:11:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22788, 11, 2, 15240, 2.99, '2007-03-22 16:15:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22789, 12, 2, 10392, 10.99, '2007-03-01 05:18:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22790, 12, 2, 11497, 0.99, '2007-03-16 21:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22791, 12, 1, 12604, 4.99, '2007-03-18 15:27:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22792, 12, 2, 13519, 0.99, '2007-03-20 01:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22793, 12, 2, 13895, 2.99, '2007-03-20 14:26:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22794, 12, 2, 14240, 4.99, '2007-03-21 03:48:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22795, 12, 1, 15993, 0.99, '2007-03-23 18:57:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22796, 13, 1, 11292, 4.99, '2007-03-02 13:27:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22797, 13, 2, 11315, 0.99, '2007-03-02 14:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22798, 13, 2, 11761, 5.99, '2007-03-17 08:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22799, 13, 2, 12918, 7.99, '2007-03-19 03:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22800, 13, 2, 13096, 4.99, '2007-03-19 09:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22801, 13, 2, 13213, 0.99, '2007-03-19 13:54:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22802, 13, 1, 13456, 0.99, '2007-03-19 23:01:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22803, 13, 1, 14252, 9.99, '2007-03-21 04:12:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22804, 13, 2, 14545, 7.99, '2007-03-21 14:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22805, 13, 1, 15338, 4.99, '2007-03-22 19:19:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22806, 14, 1, 10348, 2.99, '2007-03-01 03:51:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22807, 14, 2, 10526, 6.99, '2007-03-01 10:23:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22808, 14, 1, 11480, 4.99, '2007-03-02 20:46:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22809, 14, 2, 11528, 3.99, '2007-03-16 22:55:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22810, 14, 1, 12668, 2.99, '2007-03-18 17:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22811, 14, 1, 13757, 4.99, '2007-03-20 09:48:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22812, 14, 2, 15015, 6.99, '2007-03-22 07:12:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22813, 14, 1, 15373, 0.99, '2007-03-22 20:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22814, 14, 1, 16045, 0.99, '2007-03-23 20:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22815, 15, 1, 11118, 2.99, '2007-03-02 07:12:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22816, 15, 1, 11141, 2.99, '2007-03-02 07:57:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22817, 15, 2, 11307, 2.99, '2007-03-02 14:16:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22818, 15, 2, 11341, 2.99, '2007-03-02 15:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22819, 15, 1, 11922, 7.99, '2007-03-17 14:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22820, 15, 2, 12272, 2.99, '2007-03-18 03:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22821, 15, 2, 12551, 2.99, '2007-03-18 13:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22822, 15, 1, 12635, 2.99, '2007-03-18 16:28:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22823, 15, 2, 13339, 8.99, '2007-03-19 18:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22824, 15, 1, 13393, 5.99, '2007-03-19 20:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22825, 15, 2, 13503, 5.99, '2007-03-20 00:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22826, 15, 1, 13541, 4.99, '2007-03-20 02:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22827, 15, 2, 13677, 3.99, '2007-03-20 07:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22828, 15, 2, 14569, 0.99, '2007-03-21 14:59:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22829, 15, 2, 14776, 4.99, '2007-03-21 22:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22830, 15, 2, 14872, 8.99, '2007-03-22 01:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22831, 15, 1, 15178, 0.99, '2007-03-22 14:04:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22832, 15, 1, 15897, 4.99, '2007-03-23 15:40:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22833, 16, 2, 10687, 2.99, '2007-03-01 16:21:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22834, 16, 2, 10727, 2.99, '2007-03-01 17:43:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22835, 16, 2, 11308, 0.99, '2007-03-02 14:19:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22836, 16, 2, 12104, 2.99, '2007-03-17 21:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22837, 16, 1, 12358, 4.99, '2007-03-18 06:10:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22838, 16, 1, 12577, 7.99, '2007-03-18 14:08:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22839, 16, 2, 13151, 4.99, '2007-03-19 11:36:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22840, 16, 1, 13391, 4.99, '2007-03-19 20:30:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22841, 16, 1, 13480, 6.99, '2007-03-19 23:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22842, 16, 1, 14511, 8.99, '2007-03-21 13:14:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22843, 17, 2, 11990, 4.99, '2007-03-17 16:54:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22844, 17, 1, 13732, 2.99, '2007-03-20 08:53:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22845, 17, 1, 14040, 2.99, '2007-03-20 20:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22846, 17, 2, 14326, 2.99, '2007-03-21 06:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22847, 17, 1, 14346, 2.99, '2007-03-21 07:10:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22848, 17, 2, 15752, 5.99, '2007-03-23 11:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22849, 18, 1, 10682, 4.99, '2007-03-01 16:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22850, 18, 2, 10721, 1.99, '2007-03-01 17:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22851, 18, 2, 11094, 4.99, '2007-03-02 06:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22852, 18, 2, 11439, 4.99, '2007-03-02 18:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22853, 18, 2, 12333, 0.99, '2007-03-18 05:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22854, 18, 2, 13490, 0.99, '2007-03-19 23:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22855, 19, 2, 11508, 8.99, '2007-03-16 21:56:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22856, 19, 1, 11869, 5.99, '2007-03-17 12:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22857, 19, 1, 12211, 9.99, '2007-03-18 00:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22858, 19, 2, 12357, 2.99, '2007-03-18 06:09:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22859, 19, 1, 13718, 8.99, '2007-03-20 08:22:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22860, 19, 2, 13804, 8.99, '2007-03-20 11:14:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22861, 19, 1, 14101, 4.99, '2007-03-20 23:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22862, 19, 1, 15047, 2.99, '2007-03-22 08:25:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22863, 19, 2, 15529, 0.99, '2007-03-23 02:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22864, 20, 2, 10284, 4.99, '2007-03-01 02:01:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22865, 20, 1, 10616, 7.99, '2007-03-01 13:28:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22866, 20, 1, 10954, 1.99, '2007-03-02 01:58:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22867, 20, 1, 11821, 0.99, '2007-03-17 10:56:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22868, 20, 1, 12180, 0.99, '2007-03-17 23:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22869, 20, 2, 13036, 4.99, '2007-03-19 07:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22870, 20, 1, 13137, 4.99, '2007-03-19 10:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22871, 20, 2, 13317, 2.99, '2007-03-19 17:54:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22872, 20, 2, 14613, 2.99, '2007-03-21 16:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22873, 20, 2, 15057, 6.99, '2007-03-22 08:48:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22874, 20, 1, 15161, 1.99, '2007-03-22 13:05:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22875, 20, 2, 15248, 0.99, '2007-03-22 16:21:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22876, 20, 1, 15460, 2.99, '2007-03-22 23:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22877, 21, 2, 10570, 4.99, '2007-03-01 11:51:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22878, 21, 1, 10734, 0.99, '2007-03-01 17:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22879, 21, 2, 11072, 0.99, '2007-03-02 05:39:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22880, 21, 2, 11970, 0.99, '2007-03-17 16:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22881, 21, 2, 12131, 2.99, '2007-03-17 22:02:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22882, 21, 2, 12660, 4.99, '2007-03-18 17:35:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22883, 21, 1, 12774, 6.99, '2007-03-18 22:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22884, 21, 1, 13381, 2.99, '2007-03-19 20:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22885, 21, 2, 13399, 4.99, '2007-03-19 20:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22886, 21, 1, 13411, 4.99, '2007-03-19 21:12:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22887, 21, 1, 13463, 8.99, '2007-03-19 23:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22888, 21, 1, 13699, 9.99, '2007-03-20 07:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22889, 21, 1, 13740, 4.99, '2007-03-20 09:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22890, 21, 2, 14077, 8.99, '2007-03-20 21:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22891, 21, 2, 14161, 2.99, '2007-03-21 01:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22892, 21, 2, 14446, 2.99, '2007-03-21 10:39:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22893, 21, 1, 14869, 4.99, '2007-03-22 01:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22894, 22, 1, 12023, 5.99, '2007-03-17 18:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22895, 22, 1, 12124, 2.99, '2007-03-17 21:51:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22896, 22, 2, 12809, 0.99, '2007-03-18 23:10:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22897, 22, 2, 13060, 9.99, '2007-03-19 08:11:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22898, 22, 1, 14056, 2.99, '2007-03-20 20:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22899, 22, 1, 14564, 6.99, '2007-03-21 14:53:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22900, 22, 1, 15134, 7.99, '2007-03-22 11:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22901, 22, 1, 15589, 6.99, '2007-03-23 04:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22902, 22, 1, 15658, 4.99, '2007-03-23 07:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22903, 22, 1, 15793, 4.99, '2007-03-23 12:34:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22904, 23, 1, 10898, 2.99, '2007-03-01 23:58:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22905, 23, 2, 11501, 2.99, '2007-03-16 21:33:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22906, 23, 2, 13290, 2.99, '2007-03-19 17:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22907, 23, 2, 13331, 4.99, '2007-03-19 18:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22908, 23, 2, 13429, 6.99, '2007-03-19 21:54:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22909, 23, 2, 13511, 0.99, '2007-03-20 00:50:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22910, 23, 2, 13557, 0.99, '2007-03-20 02:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22911, 23, 2, 14482, 2.99, '2007-03-21 12:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22912, 24, 2, 10491, 2.99, '2007-03-01 09:06:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22913, 24, 1, 11209, 2.99, '2007-03-02 10:38:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22914, 24, 2, 11546, 2.99, '2007-03-16 23:26:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22915, 24, 2, 12165, 8.99, '2007-03-17 23:22:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22916, 24, 1, 12745, 2.99, '2007-03-18 20:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22917, 24, 1, 12999, 1.99, '2007-03-19 06:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22918, 24, 2, 13058, 4.99, '2007-03-19 08:09:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22919, 24, 1, 13247, 0.99, '2007-03-19 15:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22920, 24, 2, 15357, 4.99, '2007-03-22 19:57:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22921, 25, 1, 10324, 5.99, '2007-03-01 03:17:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22922, 25, 2, 10860, 2.99, '2007-03-01 22:40:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22923, 25, 1, 10916, 2.99, '2007-03-02 00:34:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22924, 25, 1, 11642, 0.99, '2007-03-17 03:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22925, 25, 1, 12922, 0.99, '2007-03-19 03:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22926, 25, 1, 14193, 4.99, '2007-03-21 02:06:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22927, 25, 1, 14236, 4.99, '2007-03-21 03:41:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22928, 25, 1, 15512, 0.99, '2007-03-23 01:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22929, 25, 1, 15972, 5.99, '2007-03-23 18:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22930, 26, 1, 10386, 3.99, '2007-03-01 05:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22931, 26, 1, 10996, 3.99, '2007-03-02 03:16:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22932, 26, 2, 11314, 2.99, '2007-03-02 14:32:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22933, 26, 1, 11338, 0.99, '2007-03-02 15:28:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22934, 26, 1, 11744, 5.99, '2007-03-17 07:22:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22935, 26, 2, 13111, 4.99, '2007-03-19 09:53:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22936, 26, 2, 14183, 4.99, '2007-03-21 01:52:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22937, 26, 2, 14192, 8.99, '2007-03-21 02:06:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22938, 26, 2, 14603, 1.99, '2007-03-21 16:19:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22939, 26, 1, 14677, 7.99, '2007-03-21 18:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22940, 26, 1, 15384, 2.99, '2007-03-22 21:03:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22941, 26, 1, 15722, 7.99, '2007-03-23 09:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22942, 27, 1, 10794, 7.99, '2007-03-01 20:19:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22943, 27, 1, 10852, 4.99, '2007-03-01 22:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22944, 27, 1, 11234, 0.99, '2007-03-02 11:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22945, 27, 1, 11661, 8.99, '2007-03-17 03:54:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22946, 27, 2, 11740, 6.99, '2007-03-17 07:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22947, 27, 2, 12021, 5.99, '2007-03-17 18:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22948, 27, 2, 12461, 0.99, '2007-03-18 09:56:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22949, 27, 1, 12531, 2.99, '2007-03-18 12:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22950, 27, 2, 13816, 4.99, '2007-03-20 11:42:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22951, 27, 1, 15048, 0.99, '2007-03-22 08:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22952, 28, 2, 10294, 6.99, '2007-03-01 02:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22953, 28, 1, 11444, 2.99, '2007-03-02 19:01:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22954, 28, 1, 11856, 3.99, '2007-03-17 12:13:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22955, 28, 2, 12190, 2.99, '2007-03-18 00:23:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22956, 28, 1, 12359, 0.99, '2007-03-18 06:12:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22957, 28, 1, 12708, 2.99, '2007-03-18 19:27:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22958, 28, 2, 13783, 4.99, '2007-03-20 10:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22959, 28, 2, 14540, 2.99, '2007-03-21 14:02:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22960, 28, 1, 15445, 4.99, '2007-03-22 23:16:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22961, 28, 1, 15491, 2.99, '2007-03-23 00:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22962, 29, 1, 10543, 5.99, '2007-03-01 11:04:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22963, 29, 2, 10899, 1.99, '2007-03-01 23:58:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22964, 29, 1, 11079, 4.99, '2007-03-02 05:57:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22965, 29, 2, 11962, 2.99, '2007-03-17 16:03:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22966, 29, 1, 12488, 4.99, '2007-03-18 11:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22967, 29, 1, 12508, 2.99, '2007-03-18 11:48:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22968, 29, 2, 12569, 6.99, '2007-03-18 13:49:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22969, 29, 2, 12615, 6.99, '2007-03-18 15:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22970, 29, 2, 13173, 2.99, '2007-03-19 12:19:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22971, 29, 1, 13436, 0.99, '2007-03-19 22:04:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22972, 29, 2, 13777, 2.99, '2007-03-20 10:32:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22973, 29, 1, 13832, 3.99, '2007-03-20 12:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22974, 29, 1, 14174, 0.99, '2007-03-21 01:30:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22975, 29, 1, 14703, 4.99, '2007-03-21 19:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22976, 29, 1, 14985, 7.99, '2007-03-22 06:04:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22977, 29, 1, 14997, 5.99, '2007-03-22 06:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22978, 30, 1, 10235, 6.99, '2007-03-01 00:26:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22979, 30, 1, 12240, 2.99, '2007-03-18 01:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22980, 30, 1, 12546, 2.99, '2007-03-18 12:58:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22981, 30, 2, 12758, 0.99, '2007-03-18 21:27:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22982, 30, 1, 13435, 0.99, '2007-03-19 22:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22983, 30, 1, 13682, 4.99, '2007-03-20 07:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22984, 30, 1, 14339, 0.99, '2007-03-21 07:05:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22985, 30, 1, 14585, 2.99, '2007-03-21 15:46:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22986, 30, 1, 15063, 4.99, '2007-03-22 09:08:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22987, 30, 1, 15544, 4.99, '2007-03-23 02:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22988, 30, 2, 15829, 2.99, '2007-03-23 13:45:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22989, 31, 2, 12085, 4.99, '2007-03-17 20:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22990, 31, 1, 12377, 0.99, '2007-03-18 06:54:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22991, 31, 2, 15682, 6.99, '2007-03-23 08:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22992, 31, 2, 15816, 6.99, '2007-03-23 13:26:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22993, 32, 1, 11135, 4.99, '2007-03-02 07:50:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22994, 32, 2, 11831, 4.99, '2007-03-17 11:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22995, 32, 2, 12414, 9.99, '2007-03-18 08:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22996, 32, 1, 13736, 8.99, '2007-03-20 08:59:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22997, 32, 1, 13931, 1.99, '2007-03-20 15:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22998, 32, 1, 14075, 0.99, '2007-03-20 21:47:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (22999, 32, 2, 14570, 5.99, '2007-03-21 15:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23000, 33, 2, 10335, 2.99, '2007-03-01 03:27:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23001, 33, 1, 10870, 4.99, '2007-03-01 22:55:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23002, 33, 1, 13241, 7.99, '2007-03-19 14:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23003, 33, 1, 13858, 2.99, '2007-03-20 13:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23004, 33, 1, 13958, 7.99, '2007-03-20 16:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23005, 33, 1, 14002, 0.99, '2007-03-20 18:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23006, 33, 1, 14623, 0.99, '2007-03-21 16:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23007, 33, 1, 15096, 5.99, '2007-03-22 10:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23008, 33, 2, 15115, 2.99, '2007-03-22 10:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23009, 34, 1, 10523, 0.99, '2007-03-01 10:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23010, 34, 1, 10615, 4.99, '2007-03-01 13:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23011, 34, 2, 11096, 0.99, '2007-03-02 06:33:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23012, 34, 1, 11505, 2.99, '2007-03-16 21:47:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23013, 34, 2, 11701, 4.99, '2007-03-17 05:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23014, 34, 2, 12286, 2.99, '2007-03-18 03:26:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23015, 34, 1, 12599, 2.99, '2007-03-18 15:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23016, 34, 1, 12651, 0.99, '2007-03-18 17:04:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23017, 34, 1, 13371, 4.99, '2007-03-19 19:50:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23018, 34, 2, 13949, 2.99, '2007-03-20 16:23:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23019, 34, 1, 14686, 5.99, '2007-03-21 19:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23020, 34, 2, 14701, 7.99, '2007-03-21 19:22:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23021, 35, 1, 11298, 1.99, '2007-03-02 14:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23022, 35, 1, 11452, 7.99, '2007-03-02 19:28:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23023, 35, 1, 11645, 4.99, '2007-03-17 03:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23024, 35, 1, 12055, 4.99, '2007-03-17 19:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23025, 35, 1, 13735, 2.99, '2007-03-20 08:59:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23026, 35, 1, 14110, 0.99, '2007-03-20 23:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23027, 35, 2, 14124, 2.99, '2007-03-21 00:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23028, 35, 2, 14735, 4.99, '2007-03-21 20:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23029, 36, 2, 10525, 2.99, '2007-03-01 10:21:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23030, 36, 2, 10761, 2.99, '2007-03-01 18:54:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23031, 36, 1, 10963, 0.99, '2007-03-02 02:16:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23032, 36, 2, 10964, 6.99, '2007-03-02 02:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23033, 36, 2, 11616, 4.99, '2007-03-17 02:28:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23034, 36, 1, 11813, 4.99, '2007-03-17 10:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23035, 36, 2, 13562, 2.99, '2007-03-20 03:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23036, 36, 2, 13564, 1.99, '2007-03-20 03:03:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23037, 36, 1, 13674, 4.99, '2007-03-20 06:59:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23038, 36, 1, 14647, 9.99, '2007-03-21 17:43:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23039, 36, 2, 15657, 4.99, '2007-03-23 07:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23040, 37, 1, 10538, 2.99, '2007-03-01 10:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23041, 37, 1, 11176, 3.99, '2007-03-02 09:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23042, 37, 1, 13046, 7.99, '2007-03-19 07:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23043, 37, 2, 13147, 4.99, '2007-03-19 11:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23044, 37, 2, 13444, 0.99, '2007-03-19 22:28:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23045, 37, 2, 13493, 3.99, '2007-03-20 00:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23046, 37, 2, 14025, 8.99, '2007-03-20 19:48:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23047, 37, 1, 14084, 0.99, '2007-03-20 22:11:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23048, 37, 2, 14532, 2.99, '2007-03-21 13:43:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23049, 37, 1, 15028, 3.99, '2007-03-22 07:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23050, 37, 1, 15904, 0.99, '2007-03-23 16:00:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23051, 37, 2, 16035, 0.99, '2007-03-23 20:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23052, 38, 2, 10524, 6.99, '2007-03-01 10:21:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23053, 38, 2, 11049, 3.99, '2007-03-02 04:44:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23054, 38, 1, 11344, 2.99, '2007-03-02 15:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23055, 38, 1, 11817, 4.99, '2007-03-17 10:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23056, 38, 2, 12092, 0.99, '2007-03-17 20:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23057, 38, 2, 12187, 1.99, '2007-03-18 00:14:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23058, 38, 1, 14554, 4.99, '2007-03-21 14:31:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23059, 38, 2, 14632, 2.99, '2007-03-21 17:16:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23060, 38, 1, 14787, 6.99, '2007-03-21 22:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23061, 38, 1, 15668, 2.99, '2007-03-23 07:30:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23062, 38, 1, 15738, 5.99, '2007-03-23 10:24:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23063, 39, 1, 10251, 4.99, '2007-03-01 01:07:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23064, 39, 2, 10269, 4.99, '2007-03-01 01:37:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23065, 39, 2, 10630, 0.99, '2007-03-01 14:03:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23066, 39, 1, 10639, 9.99, '2007-03-01 14:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23067, 39, 2, 12268, 0.99, '2007-03-18 02:55:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23068, 39, 2, 12459, 4.99, '2007-03-18 09:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23069, 39, 2, 13101, 7.99, '2007-03-19 09:30:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23070, 39, 2, 15124, 5.99, '2007-03-22 11:20:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23071, 40, 1, 10442, 2.99, '2007-03-01 07:26:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23072, 40, 2, 11919, 0.99, '2007-03-17 14:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23073, 40, 2, 11948, 3.99, '2007-03-17 15:39:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23074, 40, 2, 12396, 9.99, '2007-03-18 07:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23075, 40, 2, 12877, 2.99, '2007-03-19 01:45:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23076, 40, 1, 13149, 6.99, '2007-03-19 11:35:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23077, 40, 1, 13376, 0.99, '2007-03-19 20:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23078, 40, 1, 13840, 5.99, '2007-03-20 12:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23079, 40, 1, 13951, 2.99, '2007-03-20 16:26:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23080, 40, 1, 14260, 6.99, '2007-03-21 04:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23081, 40, 1, 15193, 2.99, '2007-03-22 14:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23082, 41, 2, 10495, 4.99, '2007-03-01 09:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23083, 41, 1, 10853, 5.99, '2007-03-01 22:29:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23084, 41, 2, 12147, 2.99, '2007-03-17 22:38:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23085, 41, 2, 12173, 3.99, '2007-03-17 23:37:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23086, 41, 2, 12821, 0.99, '2007-03-18 23:35:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23087, 41, 2, 14539, 7.99, '2007-03-21 13:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23088, 41, 2, 15860, 4.99, '2007-03-23 14:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23089, 42, 2, 10345, 2.99, '2007-03-01 03:47:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23090, 42, 2, 10845, 2.99, '2007-03-01 22:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23091, 42, 1, 10935, 5.99, '2007-03-02 01:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23092, 42, 1, 12478, 4.99, '2007-03-18 10:53:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23093, 42, 2, 12499, 2.99, '2007-03-18 11:34:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23094, 42, 1, 14461, 7.99, '2007-03-21 11:18:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23095, 42, 1, 15442, 2.99, '2007-03-22 23:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23096, 43, 1, 11753, 4.99, '2007-03-17 07:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23097, 43, 1, 14244, 2.99, '2007-03-21 03:58:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23098, 43, 1, 14649, 4.99, '2007-03-21 17:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23099, 43, 2, 14837, 4.99, '2007-03-22 00:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23100, 43, 2, 15155, 4.99, '2007-03-22 12:56:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23101, 43, 2, 15800, 6.99, '2007-03-23 12:52:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23102, 43, 2, 15945, 2.99, '2007-03-23 17:20:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23103, 44, 1, 11364, 2.99, '2007-03-02 16:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23104, 44, 2, 12345, 3.99, '2007-03-18 05:45:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23105, 44, 1, 12504, 4.99, '2007-03-18 11:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23106, 44, 1, 12790, 6.99, '2007-03-18 22:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23107, 44, 2, 12982, 4.99, '2007-03-19 05:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23108, 44, 2, 15054, 2.99, '2007-03-22 08:42:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23109, 45, 1, 10507, 2.99, '2007-03-01 09:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23110, 45, 2, 10878, 6.99, '2007-03-01 23:01:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23111, 45, 1, 11004, 8.99, '2007-03-02 03:32:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23112, 45, 1, 11029, 4.99, '2007-03-02 04:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23113, 45, 2, 11483, 2.99, '2007-03-02 20:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23114, 45, 2, 11488, 3.99, '2007-03-02 21:03:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23115, 45, 1, 11725, 2.99, '2007-03-17 06:37:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23116, 45, 1, 13340, 3.99, '2007-03-19 18:47:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23117, 45, 2, 13394, 4.99, '2007-03-19 20:33:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23118, 45, 1, 14576, 6.99, '2007-03-21 15:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23119, 45, 1, 15812, 10.99, '2007-03-23 13:15:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23120, 45, 2, 16037, 7.99, '2007-03-23 20:41:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23121, 46, 2, 10428, 4.99, '2007-03-01 06:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23122, 46, 1, 10803, 4.99, '2007-03-01 20:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23123, 46, 1, 10827, 5.99, '2007-03-01 21:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23124, 46, 1, 11721, 0.99, '2007-03-17 06:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23125, 46, 2, 12095, 4.99, '2007-03-17 21:01:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23126, 46, 2, 12238, 2.99, '2007-03-18 01:53:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23127, 46, 2, 12280, 4.99, '2007-03-18 03:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23128, 46, 1, 12298, 2.99, '2007-03-18 03:58:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23129, 46, 2, 12455, 4.99, '2007-03-18 09:48:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23130, 46, 1, 13226, 0.99, '2007-03-19 14:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23131, 46, 2, 14144, 4.99, '2007-03-21 00:39:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23132, 46, 2, 14528, 6.99, '2007-03-21 13:36:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23133, 46, 1, 14940, 4.99, '2007-03-22 04:22:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23134, 46, 1, 15438, 2.99, '2007-03-22 23:00:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23135, 46, 1, 15708, 0.99, '2007-03-23 09:04:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23136, 46, 1, 15758, 5.99, '2007-03-23 11:15:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23137, 47, 1, 11126, 0.99, '2007-03-02 07:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23138, 47, 2, 11477, 5.99, '2007-03-02 20:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23139, 47, 1, 12215, 7.99, '2007-03-18 01:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23140, 47, 2, 12274, 7.99, '2007-03-18 03:10:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23141, 47, 1, 14397, 0.99, '2007-03-21 08:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23142, 47, 2, 15846, 2.99, '2007-03-23 14:07:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23143, 48, 2, 10276, 2.99, '2007-03-01 01:50:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23144, 48, 2, 14450, 1.99, '2007-03-21 10:49:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23145, 48, 2, 14536, 2.99, '2007-03-21 13:51:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23146, 48, 1, 15228, 3.99, '2007-03-22 15:55:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23147, 49, 1, 10266, 0.99, '2007-03-01 01:34:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23148, 49, 1, 10588, 2.99, '2007-03-01 12:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23149, 49, 1, 10814, 2.99, '2007-03-01 21:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23150, 49, 2, 14168, 5.99, '2007-03-21 01:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23151, 49, 1, 14627, 6.99, '2007-03-21 17:04:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23152, 49, 1, 14676, 2.99, '2007-03-21 18:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23153, 50, 2, 10261, 4.99, '2007-03-01 01:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23154, 50, 2, 10485, 7.99, '2007-03-01 08:49:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23155, 50, 2, 11053, 3.99, '2007-03-02 04:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23156, 50, 1, 12766, 6.99, '2007-03-18 21:53:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23157, 50, 2, 13136, 7.99, '2007-03-19 10:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23158, 50, 1, 14054, 4.99, '2007-03-20 20:45:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23159, 50, 2, 15138, 2.99, '2007-03-22 12:04:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23160, 50, 2, 15388, 6.99, '2007-03-22 21:17:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23161, 50, 1, 16015, 4.99, '2007-03-23 19:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23162, 51, 2, 10244, 4.99, '2007-03-01 00:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23163, 51, 1, 10780, 2.99, '2007-03-01 19:42:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23164, 51, 1, 10894, 0.99, '2007-03-01 23:41:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23165, 51, 1, 11302, 2.99, '2007-03-02 14:06:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23166, 51, 2, 11685, 4.99, '2007-03-17 05:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23167, 51, 2, 11751, 6.99, '2007-03-17 07:36:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23168, 51, 1, 12184, 0.99, '2007-03-18 00:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23169, 51, 1, 12725, 4.99, '2007-03-18 20:11:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23170, 51, 2, 13098, 2.99, '2007-03-19 09:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23171, 51, 1, 13302, 2.99, '2007-03-19 17:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23172, 51, 1, 13868, 0.99, '2007-03-20 13:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23173, 51, 2, 13882, 2.99, '2007-03-20 13:51:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23174, 51, 2, 14221, 6.99, '2007-03-21 03:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23175, 51, 2, 14512, 4.99, '2007-03-21 13:15:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23176, 51, 1, 14617, 4.99, '2007-03-21 16:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23177, 51, 1, 14903, 4.99, '2007-03-22 03:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23178, 52, 2, 10591, 0.99, '2007-03-01 12:40:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23179, 52, 1, 10635, 0.99, '2007-03-01 14:06:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23180, 52, 1, 11068, 0.99, '2007-03-02 05:36:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23181, 52, 1, 11731, 3.99, '2007-03-17 06:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23182, 52, 2, 12200, 2.99, '2007-03-18 00:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23183, 52, 2, 12520, 0.99, '2007-03-18 12:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23184, 52, 2, 13090, 5.99, '2007-03-19 09:08:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23185, 52, 2, 14820, 2.99, '2007-03-21 23:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23186, 52, 1, 14822, 5.99, '2007-03-21 23:49:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23187, 52, 2, 14961, 6.99, '2007-03-22 05:04:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23188, 52, 2, 15891, 5.99, '2007-03-23 15:28:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23189, 53, 1, 10594, 3.99, '2007-03-01 12:43:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23190, 53, 1, 12054, 5.99, '2007-03-17 19:28:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23191, 53, 1, 12580, 2.99, '2007-03-18 14:17:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23192, 53, 1, 13049, 5.99, '2007-03-19 07:54:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23193, 53, 2, 13789, 2.99, '2007-03-20 10:45:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23194, 53, 1, 14061, 2.99, '2007-03-20 21:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23195, 53, 2, 14091, 0.99, '2007-03-20 22:39:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23196, 53, 2, 14119, 5.99, '2007-03-20 23:44:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23197, 53, 1, 14671, 4.99, '2007-03-21 18:27:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23198, 53, 2, 14811, 0.99, '2007-03-21 23:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23199, 54, 2, 10489, 5.99, '2007-03-01 08:56:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23200, 54, 2, 10882, 5.99, '2007-03-01 23:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23201, 54, 1, 10956, 4.99, '2007-03-02 02:01:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23202, 54, 1, 11182, 4.99, '2007-03-02 09:23:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23203, 54, 2, 11887, 2.99, '2007-03-17 13:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23204, 54, 1, 12526, 2.99, '2007-03-18 12:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23205, 54, 2, 12775, 5.99, '2007-03-18 22:04:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23206, 54, 1, 12811, 4.99, '2007-03-18 23:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23207, 54, 2, 12872, 0.99, '2007-03-19 01:26:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23208, 54, 2, 13315, 2.99, '2007-03-19 17:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23209, 54, 1, 13890, 0.99, '2007-03-20 14:09:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23210, 54, 1, 14215, 4.99, '2007-03-21 03:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23211, 54, 1, 15226, 10.99, '2007-03-22 15:48:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23212, 54, 1, 15567, 4.99, '2007-03-23 03:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23213, 55, 2, 11287, 1.99, '2007-03-02 13:18:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23214, 55, 1, 12776, 4.99, '2007-03-18 22:05:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23215, 55, 1, 12808, 4.99, '2007-03-18 23:09:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23216, 55, 2, 12972, 1.99, '2007-03-19 05:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23217, 55, 1, 13345, 6.99, '2007-03-19 18:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23218, 55, 1, 14667, 2.99, '2007-03-21 18:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23219, 55, 1, 15296, 4.99, '2007-03-22 18:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23220, 56, 2, 10356, 6.99, '2007-03-01 04:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23221, 56, 2, 10678, 0.99, '2007-03-01 15:54:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23222, 56, 1, 10946, 4.99, '2007-03-02 01:49:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23223, 56, 1, 11358, 5.99, '2007-03-02 16:13:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23224, 56, 1, 11656, 4.99, '2007-03-17 03:39:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23225, 56, 2, 12537, 1.99, '2007-03-18 12:35:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23226, 56, 2, 12713, 4.99, '2007-03-18 19:35:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23227, 56, 2, 13560, 8.99, '2007-03-20 02:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23228, 56, 1, 13769, 5.99, '2007-03-20 10:12:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23229, 56, 2, 14291, 3.99, '2007-03-21 05:31:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23230, 56, 2, 14534, 0.99, '2007-03-21 13:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23231, 56, 2, 15702, 7.99, '2007-03-23 08:51:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23232, 57, 2, 12925, 5.99, '2007-03-19 03:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23233, 57, 2, 13163, 0.99, '2007-03-19 11:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23234, 57, 2, 13743, 0.99, '2007-03-20 09:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23235, 57, 2, 13929, 9.99, '2007-03-20 15:42:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23236, 57, 2, 15571, 0.99, '2007-03-23 03:54:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23237, 57, 2, 15871, 9.99, '2007-03-23 14:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23238, 58, 2, 10256, 4.99, '2007-03-01 01:15:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23239, 58, 1, 10668, 0.99, '2007-03-01 15:28:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23240, 58, 1, 11416, 6.99, '2007-03-02 18:12:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23241, 58, 2, 12292, 8.99, '2007-03-18 03:37:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23242, 58, 1, 13194, 6.99, '2007-03-19 13:02:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23243, 58, 1, 13207, 3.99, '2007-03-19 13:43:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23244, 58, 1, 13930, 2.99, '2007-03-20 15:43:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23245, 58, 2, 13973, 4.99, '2007-03-20 17:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23246, 58, 2, 14305, 5.99, '2007-03-21 05:57:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23247, 58, 1, 14665, 6.99, '2007-03-21 18:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23248, 58, 1, 14989, 4.99, '2007-03-22 06:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23249, 59, 2, 11396, 4.99, '2007-03-02 17:16:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23250, 59, 1, 12833, 5.99, '2007-03-19 00:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23251, 59, 2, 13282, 2.99, '2007-03-19 16:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23252, 59, 1, 13573, 2.99, '2007-03-20 03:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23253, 59, 2, 13921, 4.99, '2007-03-20 15:25:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23254, 59, 1, 14135, 5.99, '2007-03-21 00:22:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23255, 59, 1, 14977, 5.99, '2007-03-22 05:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23256, 59, 2, 15271, 5.99, '2007-03-22 17:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23257, 59, 2, 15744, 4.99, '2007-03-23 10:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23258, 59, 2, 15905, 2.99, '2007-03-23 16:01:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23259, 60, 2, 10680, 0.99, '2007-03-01 15:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23260, 60, 1, 11092, 4.99, '2007-03-02 06:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23261, 60, 1, 11404, 8.99, '2007-03-02 17:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23262, 60, 1, 12084, 1.99, '2007-03-17 20:45:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23263, 60, 2, 12614, 7.99, '2007-03-18 15:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23264, 60, 1, 15093, 2.99, '2007-03-22 10:07:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23265, 60, 1, 15318, 2.99, '2007-03-22 18:43:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23266, 60, 1, 15618, 5.99, '2007-03-23 05:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23267, 60, 1, 15632, 0.99, '2007-03-23 05:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23268, 60, 1, 15649, 2.99, '2007-03-23 06:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23269, 61, 2, 10549, 0.99, '2007-03-01 11:15:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23270, 61, 2, 11379, 2.99, '2007-03-02 16:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23271, 61, 1, 12072, 9.99, '2007-03-17 20:18:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23272, 61, 1, 13450, 0.99, '2007-03-19 22:46:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23273, 61, 1, 13830, 0.99, '2007-03-20 12:26:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23274, 61, 2, 15089, 6.99, '2007-03-22 10:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23275, 61, 1, 15681, 1.99, '2007-03-23 08:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23276, 62, 1, 10815, 2.99, '2007-03-01 21:14:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23277, 62, 1, 11297, 5.99, '2007-03-02 13:51:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23278, 62, 1, 11988, 0.99, '2007-03-17 16:52:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23279, 62, 2, 13512, 8.99, '2007-03-20 00:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23280, 62, 2, 14574, 1.99, '2007-03-21 15:19:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23281, 62, 2, 14594, 2.99, '2007-03-21 16:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23282, 62, 2, 14821, 4.99, '2007-03-21 23:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23283, 62, 1, 15464, 6.99, '2007-03-22 23:43:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23284, 62, 1, 15591, 0.99, '2007-03-23 04:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23285, 63, 1, 10288, 6.99, '2007-03-01 02:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23286, 63, 1, 11902, 4.99, '2007-03-17 14:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23287, 63, 2, 12342, 2.99, '2007-03-18 05:41:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23288, 63, 2, 12515, 0.99, '2007-03-18 12:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23289, 63, 1, 12954, 7.99, '2007-03-19 04:33:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23290, 63, 1, 13089, 0.99, '2007-03-19 09:07:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23291, 63, 1, 13624, 8.99, '2007-03-20 05:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23292, 63, 1, 14931, 3.99, '2007-03-22 04:07:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23293, 63, 1, 15060, 5.99, '2007-03-22 08:52:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23294, 63, 1, 15229, 2.99, '2007-03-22 15:58:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23295, 64, 2, 10714, 4.99, '2007-03-01 17:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23296, 64, 1, 10889, 4.99, '2007-03-01 23:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23297, 64, 1, 12409, 0.99, '2007-03-18 08:12:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23298, 64, 1, 13773, 2.99, '2007-03-20 10:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23299, 64, 1, 13971, 0.99, '2007-03-20 17:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23300, 64, 1, 14167, 5.99, '2007-03-21 01:28:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23301, 64, 2, 14316, 0.99, '2007-03-21 06:28:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23302, 65, 2, 11100, 5.99, '2007-03-02 06:36:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23303, 65, 1, 11227, 8.99, '2007-03-02 11:16:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23304, 65, 2, 11461, 4.99, '2007-03-02 20:03:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23305, 65, 2, 11845, 2.99, '2007-03-17 11:45:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23306, 65, 1, 12114, 7.99, '2007-03-17 21:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23307, 65, 1, 12688, 6.99, '2007-03-18 18:28:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23308, 65, 2, 13692, 0.99, '2007-03-20 07:36:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23309, 65, 2, 14140, 6.99, '2007-03-21 00:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23310, 65, 1, 14356, 0.99, '2007-03-21 07:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23311, 66, 1, 10419, 0.99, '2007-03-01 06:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23312, 66, 2, 11028, 5.99, '2007-03-02 04:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23313, 66, 2, 11360, 2.99, '2007-03-02 16:14:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23314, 66, 1, 11683, 5.99, '2007-03-17 04:43:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23315, 66, 1, 11935, 0.99, '2007-03-17 15:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23316, 66, 1, 12699, 0.99, '2007-03-18 18:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23317, 66, 1, 13900, 2.99, '2007-03-20 14:34:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23318, 66, 2, 14123, 2.99, '2007-03-20 23:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23319, 66, 1, 14217, 6.99, '2007-03-21 03:06:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23320, 66, 2, 14351, 2.99, '2007-03-21 07:32:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23321, 66, 2, 14429, 0.99, '2007-03-21 09:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23322, 66, 2, 15026, 4.99, '2007-03-22 07:30:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23323, 66, 1, 15598, 8.99, '2007-03-23 04:51:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23324, 67, 1, 11295, 8.99, '2007-03-02 13:38:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23325, 67, 1, 11894, 8.99, '2007-03-17 13:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23326, 67, 2, 13437, 4.99, '2007-03-19 22:06:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23327, 67, 1, 13652, 2.99, '2007-03-20 06:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23328, 67, 2, 13791, 4.99, '2007-03-20 10:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23329, 67, 2, 13837, 2.99, '2007-03-20 12:47:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23330, 67, 2, 14967, 4.99, '2007-03-22 05:14:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23331, 67, 2, 15085, 2.99, '2007-03-22 09:47:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23332, 68, 1, 11277, 2.99, '2007-03-02 12:57:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23333, 68, 2, 12742, 2.99, '2007-03-18 20:50:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23334, 68, 2, 13475, 4.99, '2007-03-19 23:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23335, 68, 2, 14242, 0.99, '2007-03-21 03:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23336, 68, 2, 14455, 5.99, '2007-03-21 11:04:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23337, 68, 1, 14947, 1.99, '2007-03-22 04:36:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23338, 68, 1, 15524, 4.99, '2007-03-23 02:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23339, 69, 1, 11943, 3.99, '2007-03-17 15:29:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23340, 69, 1, 12012, 2.99, '2007-03-17 17:49:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23341, 69, 1, 12121, 2.99, '2007-03-17 21:49:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23342, 69, 1, 12966, 5.99, '2007-03-19 05:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23343, 69, 1, 13023, 5.99, '2007-03-19 06:42:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23344, 69, 2, 14311, 3.99, '2007-03-21 06:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23345, 69, 2, 14685, 0.99, '2007-03-21 18:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23346, 69, 2, 14767, 2.99, '2007-03-21 22:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23347, 69, 1, 15547, 2.99, '2007-03-23 02:54:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23348, 70, 1, 11274, 9.99, '2007-03-02 12:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23349, 70, 1, 11901, 2.99, '2007-03-17 14:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23350, 70, 1, 12003, 4.99, '2007-03-17 17:24:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23351, 70, 2, 12218, 4.99, '2007-03-18 01:16:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23352, 70, 1, 12581, 6.99, '2007-03-18 14:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23353, 70, 1, 12951, 3.99, '2007-03-19 04:25:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23354, 70, 2, 13680, 4.99, '2007-03-20 07:12:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23355, 70, 2, 15238, 0.99, '2007-03-22 16:14:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23356, 70, 1, 15616, 3.99, '2007-03-23 05:35:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23357, 71, 1, 12417, 4.99, '2007-03-18 08:25:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23358, 71, 1, 14105, 7.99, '2007-03-20 23:13:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23359, 71, 1, 14228, 3.99, '2007-03-21 03:25:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23360, 71, 2, 14781, 4.99, '2007-03-21 22:43:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23361, 71, 2, 14904, 3.99, '2007-03-22 03:00:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23362, 71, 1, 15704, 4.99, '2007-03-23 08:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23363, 71, 1, 16000, 0.99, '2007-03-23 19:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23364, 72, 2, 10267, 0.99, '2007-03-01 01:35:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23365, 72, 2, 11206, 6.99, '2007-03-02 10:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23366, 72, 2, 11422, 5.99, '2007-03-02 18:20:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23367, 72, 1, 11630, 2.99, '2007-03-17 02:56:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23368, 72, 1, 11679, 4.99, '2007-03-17 04:37:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23369, 72, 1, 11923, 2.99, '2007-03-17 14:50:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23370, 72, 2, 12020, 2.99, '2007-03-17 18:18:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23371, 72, 1, 12448, 0.99, '2007-03-18 09:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23372, 72, 2, 12593, 0.99, '2007-03-18 14:46:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23373, 72, 1, 13145, 0.99, '2007-03-19 11:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23374, 72, 2, 13327, 4.99, '2007-03-19 18:24:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23375, 72, 2, 13597, 0.99, '2007-03-20 04:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23376, 72, 2, 13660, 4.99, '2007-03-20 06:34:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23377, 72, 1, 14020, 0.99, '2007-03-20 19:28:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23378, 72, 2, 15110, 0.99, '2007-03-22 10:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23379, 72, 2, 15146, 2.99, '2007-03-22 12:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23380, 73, 2, 10434, 4.99, '2007-03-01 07:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23381, 73, 1, 11102, 4.99, '2007-03-02 06:36:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23382, 73, 2, 11155, 0.99, '2007-03-02 08:23:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23383, 73, 2, 11349, 4.99, '2007-03-02 15:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23384, 73, 2, 11609, 3.99, '2007-03-17 02:09:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23385, 73, 2, 12291, 4.99, '2007-03-18 03:37:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23386, 73, 1, 13886, 4.99, '2007-03-20 14:03:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23387, 73, 1, 15667, 0.99, '2007-03-23 07:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23388, 73, 2, 16002, 2.99, '2007-03-23 19:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23389, 74, 1, 10624, 0.99, '2007-03-01 13:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23390, 74, 2, 12374, 3.99, '2007-03-18 06:36:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23391, 74, 2, 12477, 3.99, '2007-03-18 10:53:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23392, 74, 2, 13335, 0.99, '2007-03-19 18:31:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23393, 74, 2, 13520, 0.99, '2007-03-20 01:10:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23394, 74, 1, 13583, 1.99, '2007-03-20 03:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23395, 74, 2, 13747, 5.99, '2007-03-20 09:24:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23396, 74, 1, 15286, 4.99, '2007-03-22 17:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23397, 74, 2, 15325, 4.99, '2007-03-22 18:56:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23398, 74, 2, 15500, 0.99, '2007-03-23 01:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23399, 74, 2, 15739, 4.99, '2007-03-23 10:24:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23400, 74, 1, 16046, 0.99, '2007-03-23 20:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23401, 75, 2, 10653, 5.99, '2007-03-01 14:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23402, 75, 1, 10726, 3.99, '2007-03-01 17:43:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23403, 75, 1, 10871, 4.99, '2007-03-01 22:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23404, 75, 1, 11330, 0.99, '2007-03-02 15:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23405, 75, 1, 12002, 2.99, '2007-03-17 17:24:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23406, 75, 2, 12239, 0.99, '2007-03-18 01:55:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23407, 75, 1, 12336, 1.99, '2007-03-18 05:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23408, 75, 1, 12412, 5.99, '2007-03-18 08:18:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23409, 75, 1, 12426, 4.99, '2007-03-18 08:52:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23410, 75, 1, 12662, 0.99, '2007-03-18 17:39:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23411, 75, 2, 15928, 5.99, '2007-03-23 16:51:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23412, 76, 2, 10795, 4.99, '2007-03-01 20:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23413, 76, 2, 11172, 7.99, '2007-03-02 08:56:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23414, 76, 2, 13697, 3.99, '2007-03-20 07:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23415, 76, 1, 14637, 2.99, '2007-03-21 17:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23416, 76, 2, 15169, 4.99, '2007-03-22 13:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23417, 76, 1, 15566, 10.99, '2007-03-23 03:45:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23418, 77, 1, 10886, 2.99, '2007-03-01 23:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23419, 77, 1, 10895, 0.99, '2007-03-01 23:45:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23420, 77, 2, 10991, 0.99, '2007-03-02 03:09:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23421, 77, 1, 11469, 2.99, '2007-03-02 20:16:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23422, 77, 2, 11767, 7.99, '2007-03-17 08:29:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23423, 77, 1, 12065, 6.99, '2007-03-17 20:00:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23424, 77, 2, 12328, 1.99, '2007-03-18 05:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23425, 77, 2, 13752, 9.99, '2007-03-20 09:46:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23426, 77, 2, 14530, 4.99, '2007-03-21 13:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23427, 77, 2, 15359, 2.99, '2007-03-22 20:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23428, 78, 2, 10350, 3.99, '2007-03-01 03:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23429, 78, 1, 10590, 2.99, '2007-03-01 12:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23430, 78, 1, 10831, 7.99, '2007-03-01 21:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23431, 78, 1, 10942, 10.99, '2007-03-02 01:44:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23432, 78, 2, 12474, 8.99, '2007-03-18 10:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23433, 78, 2, 12653, 4.99, '2007-03-18 17:21:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23434, 78, 2, 13124, 5.99, '2007-03-19 10:24:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23435, 78, 1, 13432, 0.99, '2007-03-19 21:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23436, 78, 2, 13792, 5.99, '2007-03-20 10:50:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23437, 78, 2, 14620, 2.99, '2007-03-21 16:39:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23438, 78, 1, 14716, 0.99, '2007-03-21 19:58:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23439, 78, 1, 14810, 2.99, '2007-03-21 23:37:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23440, 78, 2, 14862, 7.99, '2007-03-22 01:20:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23441, 78, 2, 16039, 2.99, '2007-03-23 20:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23442, 79, 1, 10676, 2.99, '2007-03-01 15:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23443, 79, 2, 11641, 4.99, '2007-03-17 03:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23444, 79, 2, 13026, 2.99, '2007-03-19 06:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23445, 79, 1, 14179, 0.99, '2007-03-21 01:42:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23446, 80, 1, 10313, 0.99, '2007-03-01 02:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23447, 80, 1, 10656, 6.99, '2007-03-01 15:06:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23448, 80, 1, 10690, 8.99, '2007-03-01 16:34:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23449, 80, 2, 11101, 5.99, '2007-03-02 06:36:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23450, 80, 2, 11839, 0.99, '2007-03-17 11:37:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23451, 80, 1, 11850, 1.99, '2007-03-17 11:58:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23452, 80, 2, 12468, 2.99, '2007-03-18 10:10:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23453, 80, 1, 13352, 4.99, '2007-03-19 19:20:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23454, 80, 2, 13395, 0.99, '2007-03-19 20:34:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23455, 80, 1, 13724, 4.99, '2007-03-20 08:35:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23456, 80, 2, 13851, 0.99, '2007-03-20 13:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23457, 80, 1, 14916, 0.99, '2007-03-22 03:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23458, 80, 1, 15648, 8.99, '2007-03-23 06:56:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23459, 80, 1, 16012, 5.99, '2007-03-23 19:42:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23460, 81, 2, 10456, 0.99, '2007-03-01 07:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23461, 81, 1, 11837, 5.99, '2007-03-17 11:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23462, 81, 2, 12181, 4.99, '2007-03-17 23:56:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23463, 81, 2, 13820, 5.99, '2007-03-20 11:55:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23464, 81, 1, 14128, 4.99, '2007-03-21 00:04:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23465, 81, 1, 14642, 3.99, '2007-03-21 17:38:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23466, 81, 2, 14748, 7.99, '2007-03-21 21:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23467, 81, 1, 15224, 5.99, '2007-03-22 15:46:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23468, 81, 1, 15602, 4.99, '2007-03-23 05:09:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23469, 81, 1, 15823, 4.99, '2007-03-23 13:36:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23470, 81, 1, 15858, 2.99, '2007-03-23 14:35:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23471, 81, 2, 15884, 1.99, '2007-03-23 15:13:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23472, 82, 1, 11093, 4.99, '2007-03-02 06:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23473, 82, 2, 11688, 5.99, '2007-03-17 05:10:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23474, 82, 1, 12470, 3.99, '2007-03-18 10:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23475, 82, 1, 13032, 0.99, '2007-03-19 07:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23476, 82, 2, 13847, 6.99, '2007-03-20 13:02:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23477, 82, 2, 14518, 0.99, '2007-03-21 13:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23478, 82, 2, 14892, 4.99, '2007-03-22 02:43:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23479, 82, 2, 15516, 3.99, '2007-03-23 01:41:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23480, 83, 1, 11408, 0.99, '2007-03-02 17:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23481, 83, 1, 11565, 5.99, '2007-03-16 23:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23482, 83, 2, 11777, 4.99, '2007-03-17 08:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23483, 83, 1, 12258, 4.99, '2007-03-18 02:39:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23484, 83, 2, 12985, 5.99, '2007-03-19 05:36:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23485, 83, 1, 13875, 4.99, '2007-03-20 13:41:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23486, 83, 2, 15498, 4.99, '2007-03-23 01:01:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23487, 83, 2, 15737, 5.99, '2007-03-23 10:20:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23488, 84, 2, 10540, 0.99, '2007-03-01 10:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23489, 84, 1, 10872, 2.99, '2007-03-01 22:56:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23490, 84, 2, 11220, 4.99, '2007-03-02 11:00:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23491, 84, 2, 11424, 3.99, '2007-03-02 18:26:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23492, 84, 2, 11453, 7.99, '2007-03-02 19:28:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23493, 84, 2, 11899, 0.99, '2007-03-17 13:57:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23494, 84, 2, 11960, 4.99, '2007-03-17 15:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23495, 84, 2, 12364, 4.99, '2007-03-18 06:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23496, 84, 2, 13115, 2.99, '2007-03-19 09:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23497, 84, 1, 14330, 5.99, '2007-03-21 06:57:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23498, 84, 1, 15190, 4.99, '2007-03-22 14:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23499, 84, 1, 15255, 2.99, '2007-03-22 16:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23500, 85, 1, 10328, 4.99, '2007-03-01 03:24:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23501, 85, 1, 10548, 0.99, '2007-03-01 11:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23502, 85, 2, 11067, 8.99, '2007-03-02 05:31:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23503, 85, 2, 12036, 0.99, '2007-03-17 18:47:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23504, 85, 1, 12456, 4.99, '2007-03-18 09:50:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23505, 85, 1, 13727, 3.99, '2007-03-20 08:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23506, 85, 2, 13733, 0.99, '2007-03-20 08:53:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23507, 86, 2, 10252, 8.99, '2007-03-01 01:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23508, 86, 2, 10536, 4.99, '2007-03-01 10:50:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23509, 86, 2, 10584, 6.99, '2007-03-01 12:27:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23510, 86, 2, 11916, 0.99, '2007-03-17 14:34:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23511, 86, 1, 12198, 2.99, '2007-03-18 00:37:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23512, 86, 2, 12870, 3.99, '2007-03-19 01:23:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23513, 86, 2, 13338, 4.99, '2007-03-19 18:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23514, 86, 1, 13535, 4.99, '2007-03-20 01:58:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23515, 86, 1, 13874, 2.99, '2007-03-20 13:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23516, 86, 2, 14122, 1.99, '2007-03-20 23:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23517, 86, 2, 15099, 4.99, '2007-03-22 10:17:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23518, 86, 1, 15715, 1.99, '2007-03-23 09:26:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23519, 86, 2, 15940, 5.99, '2007-03-23 17:13:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23520, 87, 1, 10387, 4.99, '2007-03-01 05:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23521, 87, 1, 12232, 0.99, '2007-03-18 01:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23522, 87, 1, 12257, 8.99, '2007-03-18 02:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23523, 87, 1, 12264, 5.99, '2007-03-18 02:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23524, 87, 1, 13479, 0.99, '2007-03-19 23:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23525, 87, 1, 13906, 0.99, '2007-03-20 14:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23526, 87, 2, 14024, 10.99, '2007-03-20 19:42:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23527, 87, 1, 14566, 2.99, '2007-03-21 14:53:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23528, 87, 1, 15876, 2.99, '2007-03-23 15:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23529, 87, 2, 15890, 4.99, '2007-03-23 15:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23530, 88, 1, 10424, 0.99, '2007-03-01 06:51:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23531, 88, 1, 11056, 6.99, '2007-03-02 05:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23532, 88, 2, 14097, 2.99, '2007-03-20 22:57:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23533, 88, 2, 14827, 5.99, '2007-03-22 00:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23534, 88, 2, 15098, 3.99, '2007-03-22 10:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23535, 88, 1, 15898, 4.99, '2007-03-23 15:41:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23536, 89, 2, 10806, 4.99, '2007-03-01 20:53:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23537, 89, 1, 11090, 3.99, '2007-03-02 06:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23538, 89, 1, 12118, 3.99, '2007-03-17 21:42:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23539, 89, 2, 12431, 2.99, '2007-03-18 09:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23540, 89, 1, 12756, 2.99, '2007-03-18 21:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23541, 89, 1, 13823, 2.99, '2007-03-20 12:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23542, 89, 1, 15845, 2.99, '2007-03-23 14:07:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23543, 90, 1, 10722, 4.99, '2007-03-01 17:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23544, 90, 1, 10835, 4.99, '2007-03-01 21:57:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23545, 90, 2, 11231, 4.99, '2007-03-02 11:30:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23546, 90, 1, 11516, 0.99, '2007-03-16 22:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23547, 90, 2, 12019, 0.99, '2007-03-17 18:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23548, 90, 1, 12788, 2.99, '2007-03-18 22:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23549, 90, 1, 13051, 4.99, '2007-03-19 07:59:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23550, 90, 1, 14608, 1.99, '2007-03-21 16:25:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23551, 90, 1, 14807, 4.99, '2007-03-21 23:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23552, 90, 2, 15061, 0.99, '2007-03-22 08:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23553, 90, 2, 15217, 0.99, '2007-03-22 15:26:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23554, 90, 1, 15674, 7.99, '2007-03-23 07:45:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23555, 91, 2, 11418, 0.99, '2007-03-02 18:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23556, 91, 1, 12847, 0.99, '2007-03-19 00:32:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23557, 91, 2, 13222, 4.99, '2007-03-19 14:16:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23558, 91, 2, 13309, 4.99, '2007-03-19 17:32:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23559, 91, 1, 14132, 0.99, '2007-03-21 00:12:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23560, 91, 2, 14888, 2.99, '2007-03-22 02:37:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23561, 91, 1, 15122, 1.99, '2007-03-22 11:16:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23562, 91, 1, 15341, 4.99, '2007-03-22 19:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23563, 91, 1, 15707, 1.99, '2007-03-23 09:04:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23564, 91, 2, 15886, 4.99, '2007-03-23 15:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23565, 92, 2, 11203, 4.99, '2007-03-02 10:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23566, 92, 2, 11245, 2.99, '2007-03-02 12:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23567, 92, 1, 11849, 4.99, '2007-03-17 11:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23568, 92, 2, 13020, 5.99, '2007-03-19 06:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23569, 92, 1, 13495, 0.99, '2007-03-20 00:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23570, 92, 1, 13620, 2.99, '2007-03-20 05:09:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23571, 92, 1, 14798, 0.99, '2007-03-21 23:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23572, 92, 2, 14998, 4.99, '2007-03-22 06:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23573, 93, 2, 11271, 5.99, '2007-03-02 12:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23574, 93, 1, 12704, 4.99, '2007-03-18 19:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23575, 93, 1, 13555, 2.99, '2007-03-20 02:38:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23576, 93, 2, 13904, 2.99, '2007-03-20 14:40:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23577, 93, 1, 13950, 8.99, '2007-03-20 16:26:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23578, 93, 1, 13993, 4.99, '2007-03-20 18:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23579, 93, 1, 14195, 0.99, '2007-03-21 02:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23580, 93, 2, 14333, 4.99, '2007-03-21 06:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23581, 93, 2, 15324, 5.99, '2007-03-22 18:51:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23582, 93, 2, 15631, 2.99, '2007-03-23 05:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23583, 93, 1, 15696, 0.99, '2007-03-23 08:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23584, 93, 2, 15913, 1.99, '2007-03-23 16:16:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23585, 94, 1, 12316, 2.99, '2007-03-18 04:44:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23586, 94, 1, 13786, 5.99, '2007-03-20 10:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23587, 94, 2, 14804, 1.99, '2007-03-21 23:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23588, 94, 1, 14865, 4.99, '2007-03-22 01:35:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23589, 94, 1, 14978, 0.99, '2007-03-22 05:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23590, 94, 1, 15693, 0.99, '2007-03-23 08:28:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23591, 95, 2, 10446, 0.99, '2007-03-01 07:30:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23592, 95, 2, 12351, 5.99, '2007-03-18 06:00:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23593, 95, 2, 13516, 7.99, '2007-03-20 01:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23594, 95, 2, 14203, 4.99, '2007-03-21 02:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23595, 96, 2, 11864, 4.99, '2007-03-17 12:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23596, 96, 1, 11984, 3.99, '2007-03-17 16:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23597, 96, 1, 12199, 4.99, '2007-03-18 00:37:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23598, 96, 2, 12525, 4.99, '2007-03-18 12:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23599, 96, 1, 13514, 0.99, '2007-03-20 00:56:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23600, 96, 1, 13855, 4.99, '2007-03-20 13:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23601, 96, 1, 14462, 3.99, '2007-03-21 11:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23602, 96, 2, 15989, 4.99, '2007-03-23 18:53:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23603, 97, 1, 10820, 2.99, '2007-03-01 21:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23604, 97, 2, 14323, 4.99, '2007-03-21 06:37:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23605, 97, 1, 15006, 0.99, '2007-03-22 06:48:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23606, 98, 2, 10694, 3.99, '2007-03-01 16:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23607, 98, 1, 10925, 2.99, '2007-03-02 00:53:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23608, 98, 2, 11007, 0.99, '2007-03-02 03:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23609, 98, 2, 11200, 2.99, '2007-03-02 10:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23610, 98, 1, 11635, 5.99, '2007-03-17 03:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23611, 98, 1, 11730, 2.99, '2007-03-17 06:50:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23612, 98, 2, 12221, 5.99, '2007-03-18 01:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23613, 98, 2, 14459, 1.99, '2007-03-21 11:16:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23614, 98, 1, 15536, 7.99, '2007-03-23 02:26:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23615, 99, 2, 10388, 7.99, '2007-03-01 05:11:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23616, 99, 1, 10455, 1.99, '2007-03-01 07:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23617, 99, 2, 11266, 4.99, '2007-03-02 12:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23618, 99, 2, 12379, 0.99, '2007-03-18 06:55:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23619, 99, 2, 12869, 8.99, '2007-03-19 01:19:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23620, 100, 1, 11143, 0.99, '2007-03-02 08:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23621, 100, 2, 11346, 4.99, '2007-03-02 15:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23622, 100, 1, 12657, 0.99, '2007-03-18 17:30:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23623, 100, 1, 15163, 0.99, '2007-03-22 13:11:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23624, 100, 2, 15246, 3.99, '2007-03-22 16:19:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23625, 101, 1, 10253, 6.99, '2007-03-01 01:08:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23626, 101, 1, 10407, 0.99, '2007-03-01 06:06:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23627, 101, 2, 11959, 4.99, '2007-03-17 15:52:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23628, 101, 2, 12174, 2.99, '2007-03-17 23:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23629, 101, 1, 12471, 4.99, '2007-03-18 10:25:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23630, 101, 2, 13370, 1.99, '2007-03-19 19:48:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23631, 101, 1, 14476, 0.99, '2007-03-21 11:59:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23632, 101, 2, 14542, 3.99, '2007-03-21 14:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23633, 101, 2, 15103, 2.99, '2007-03-22 10:29:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23634, 102, 2, 10841, 1.99, '2007-03-01 22:07:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23635, 102, 2, 11099, 4.99, '2007-03-02 06:35:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23636, 102, 1, 11183, 4.99, '2007-03-02 09:28:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23637, 102, 2, 12495, 4.99, '2007-03-18 11:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23638, 102, 1, 13420, 9.99, '2007-03-19 21:25:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23639, 102, 1, 15049, 1.99, '2007-03-22 08:34:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23640, 102, 2, 16031, 3.99, '2007-03-23 20:27:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23641, 103, 2, 12942, 7.99, '2007-03-19 04:09:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23642, 103, 1, 13676, 0.99, '2007-03-20 07:01:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23643, 103, 2, 14064, 2.99, '2007-03-20 21:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23644, 103, 2, 14289, 4.99, '2007-03-21 05:27:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23645, 103, 2, 15401, 8.99, '2007-03-22 21:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23646, 103, 1, 15461, 5.99, '2007-03-22 23:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23647, 103, 1, 15467, 3.99, '2007-03-22 23:50:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23648, 103, 1, 15599, 5.99, '2007-03-23 04:53:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23649, 103, 2, 15679, 0.99, '2007-03-23 07:55:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23650, 103, 2, 16048, 8.99, '2007-03-23 21:11:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23651, 104, 1, 11700, 2.99, '2007-03-17 05:40:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23652, 104, 1, 12453, 3.99, '2007-03-18 09:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23653, 104, 1, 13005, 0.99, '2007-03-19 06:14:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23654, 104, 1, 13017, 1.99, '2007-03-19 06:30:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23655, 104, 1, 13179, 4.99, '2007-03-19 12:28:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23656, 104, 1, 13410, 3.99, '2007-03-19 21:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23657, 104, 1, 14218, 3.99, '2007-03-21 03:12:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23658, 104, 2, 15186, 0.99, '2007-03-22 14:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23659, 105, 1, 10513, 4.99, '2007-03-01 10:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23660, 105, 1, 12217, 0.99, '2007-03-18 01:13:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23661, 105, 2, 12899, 2.99, '2007-03-19 02:32:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23662, 105, 1, 13057, 6.99, '2007-03-19 08:08:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23663, 105, 1, 13751, 2.99, '2007-03-20 09:45:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23664, 105, 2, 14048, 0.99, '2007-03-20 20:31:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23665, 105, 2, 15624, 4.99, '2007-03-23 05:52:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23666, 105, 2, 15688, 4.99, '2007-03-23 08:17:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23667, 105, 2, 15803, 2.99, '2007-03-23 12:55:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23668, 106, 1, 10228, 2.99, '2007-03-01 00:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23669, 106, 1, 10444, 8.99, '2007-03-01 07:30:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23670, 106, 2, 11436, 0.99, '2007-03-02 18:44:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23671, 106, 1, 12159, 7.99, '2007-03-17 23:04:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23672, 106, 1, 12845, 2.99, '2007-03-19 00:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23673, 106, 2, 14431, 2.99, '2007-03-21 09:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23674, 106, 1, 14920, 0.99, '2007-03-22 03:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23675, 106, 1, 15154, 6.99, '2007-03-22 12:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23676, 107, 1, 10226, 4.99, '2007-03-01 00:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23677, 107, 2, 13361, 4.99, '2007-03-19 19:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23678, 107, 1, 13510, 6.99, '2007-03-20 00:46:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23679, 107, 1, 14562, 4.99, '2007-03-21 14:51:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23680, 107, 1, 15560, 3.99, '2007-03-23 03:29:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23681, 108, 1, 11316, 5.99, '2007-03-02 14:36:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23682, 108, 2, 11445, 6.99, '2007-03-02 19:02:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23683, 108, 2, 11759, 2.99, '2007-03-17 08:09:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23684, 108, 1, 12583, 2.99, '2007-03-18 14:20:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23685, 108, 2, 12625, 6.99, '2007-03-18 16:04:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23686, 108, 2, 13754, 2.99, '2007-03-20 09:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23687, 108, 2, 14635, 3.99, '2007-03-21 17:20:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23688, 108, 2, 15556, 8.99, '2007-03-23 03:20:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23689, 108, 1, 16001, 2.99, '2007-03-23 19:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23690, 109, 2, 10240, 0.99, '2007-03-01 00:37:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23691, 109, 2, 10892, 3.99, '2007-03-01 23:40:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23692, 109, 2, 12137, 6.99, '2007-03-17 22:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23693, 109, 1, 13264, 3.99, '2007-03-19 15:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23694, 109, 2, 15398, 7.99, '2007-03-22 21:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23695, 109, 2, 15677, 2.99, '2007-03-23 07:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23696, 110, 1, 11647, 7.99, '2007-03-17 03:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23697, 110, 2, 12585, 3.99, '2007-03-18 14:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23698, 110, 1, 13723, 2.99, '2007-03-20 08:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23699, 110, 2, 15381, 2.99, '2007-03-22 20:57:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23700, 111, 2, 10602, 4.99, '2007-03-01 12:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23701, 111, 1, 10952, 4.99, '2007-03-02 01:56:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23702, 111, 2, 10990, 4.99, '2007-03-02 03:09:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23703, 111, 2, 11239, 2.99, '2007-03-02 11:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23704, 111, 2, 12196, 3.99, '2007-03-18 00:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23705, 111, 2, 13251, 2.99, '2007-03-19 15:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23706, 111, 2, 13525, 5.99, '2007-03-20 01:19:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23707, 111, 1, 14949, 0.99, '2007-03-22 04:40:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23708, 111, 2, 15174, 6.99, '2007-03-22 13:55:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23709, 112, 2, 10596, 5.99, '2007-03-01 12:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23710, 112, 1, 11019, 2.99, '2007-03-02 03:57:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23711, 112, 1, 11599, 7.99, '2007-03-17 01:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23712, 112, 2, 11659, 4.99, '2007-03-17 03:49:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23713, 112, 2, 11863, 3.99, '2007-03-17 12:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23714, 112, 2, 13611, 8.99, '2007-03-20 04:49:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23715, 112, 2, 13879, 2.99, '2007-03-20 13:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23716, 112, 2, 14049, 5.99, '2007-03-20 20:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23717, 112, 1, 14358, 0.99, '2007-03-21 07:42:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23718, 112, 2, 15304, 4.99, '2007-03-22 18:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23719, 112, 1, 15671, 0.99, '2007-03-23 07:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23720, 112, 1, 15687, 8.99, '2007-03-23 08:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23721, 112, 1, 15756, 2.99, '2007-03-23 11:15:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23722, 113, 1, 10378, 0.99, '2007-03-01 04:58:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23723, 113, 2, 10578, 1.99, '2007-03-01 12:16:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23724, 113, 2, 11655, 7.99, '2007-03-17 03:39:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23725, 113, 1, 11872, 5.99, '2007-03-17 12:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23726, 113, 1, 12392, 5.99, '2007-03-18 07:26:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23727, 113, 2, 12817, 3.99, '2007-03-18 23:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23728, 113, 2, 13406, 2.99, '2007-03-19 20:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23729, 113, 1, 15600, 1.99, '2007-03-23 04:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23730, 113, 1, 15770, 2.99, '2007-03-23 11:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23731, 114, 1, 11547, 4.99, '2007-03-16 23:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23732, 114, 2, 12326, 0.99, '2007-03-18 05:10:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23733, 114, 1, 12685, 6.99, '2007-03-18 18:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23734, 114, 2, 13459, 6.99, '2007-03-19 23:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23735, 114, 2, 14158, 5.99, '2007-03-21 01:11:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23736, 114, 1, 14867, 4.99, '2007-03-22 01:43:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23737, 114, 1, 15485, 0.99, '2007-03-23 00:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23738, 114, 1, 15528, 2.99, '2007-03-23 02:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23739, 114, 2, 15646, 3.99, '2007-03-23 06:48:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23740, 114, 1, 16047, 0.99, '2007-03-23 21:11:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23741, 115, 2, 10475, 4.99, '2007-03-01 08:31:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23742, 115, 2, 10647, 2.99, '2007-03-01 14:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23743, 115, 2, 10919, 0.99, '2007-03-02 00:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23744, 115, 1, 11891, 2.99, '2007-03-17 13:40:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23745, 115, 2, 12366, 0.99, '2007-03-18 06:23:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23746, 115, 2, 13977, 0.99, '2007-03-20 17:31:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23747, 115, 1, 15176, 6.99, '2007-03-22 13:58:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23748, 115, 2, 15452, 0.99, '2007-03-22 23:25:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23749, 116, 2, 10250, 1.99, '2007-03-01 01:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23750, 116, 1, 10801, 1.99, '2007-03-01 20:38:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23751, 116, 2, 11016, 4.99, '2007-03-02 03:47:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23752, 116, 2, 12376, 2.99, '2007-03-18 06:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23753, 116, 2, 13146, 7.99, '2007-03-19 11:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23754, 116, 1, 13369, 0.99, '2007-03-19 19:48:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23755, 116, 1, 13474, 0.99, '2007-03-19 23:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23756, 116, 1, 13775, 6.99, '2007-03-20 10:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23757, 116, 2, 14763, 11.99, '2007-03-21 22:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23758, 116, 1, 14907, 2.99, '2007-03-22 03:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23759, 117, 2, 10556, 2.99, '2007-03-01 11:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23760, 117, 1, 10558, 4.99, '2007-03-01 11:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23761, 117, 2, 11467, 3.99, '2007-03-02 20:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23762, 117, 1, 12143, 2.99, '2007-03-17 22:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23763, 117, 1, 12337, 2.99, '2007-03-18 05:30:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23764, 117, 1, 12575, 6.99, '2007-03-18 14:06:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23765, 117, 1, 12618, 4.99, '2007-03-18 15:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23766, 117, 1, 14784, 0.99, '2007-03-21 22:51:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23767, 117, 2, 14854, 2.99, '2007-03-22 00:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23768, 117, 1, 15432, 2.99, '2007-03-22 22:55:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23769, 118, 2, 12538, 2.99, '2007-03-18 12:37:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23770, 118, 2, 13193, 6.99, '2007-03-19 13:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23771, 118, 2, 14394, 5.99, '2007-03-21 08:51:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23772, 118, 2, 14595, 7.99, '2007-03-21 16:03:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23773, 118, 1, 14924, 2.99, '2007-03-22 03:43:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23774, 118, 1, 15731, 0.99, '2007-03-23 10:01:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23775, 119, 1, 10366, 3.99, '2007-03-01 04:38:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23776, 119, 2, 10552, 2.99, '2007-03-01 11:18:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23777, 119, 1, 10681, 4.99, '2007-03-01 15:59:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23778, 119, 2, 11377, 2.99, '2007-03-02 16:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23779, 119, 1, 11520, 5.99, '2007-03-16 22:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23780, 119, 2, 12576, 2.99, '2007-03-18 14:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23781, 119, 2, 12603, 3.99, '2007-03-18 15:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23782, 119, 2, 12842, 6.99, '2007-03-19 00:25:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23783, 119, 1, 13581, 4.99, '2007-03-20 03:54:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23784, 119, 2, 14349, 3.99, '2007-03-21 07:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23785, 119, 2, 14382, 2.99, '2007-03-21 08:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23786, 119, 2, 14643, 6.99, '2007-03-21 17:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23787, 119, 2, 14659, 0.99, '2007-03-21 18:11:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23788, 119, 1, 15111, 4.99, '2007-03-22 10:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23789, 119, 2, 15131, 3.99, '2007-03-22 11:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23790, 119, 2, 15171, 6.99, '2007-03-22 13:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23791, 119, 1, 15844, 2.99, '2007-03-23 14:06:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23792, 119, 2, 16028, 3.99, '2007-03-23 20:21:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23793, 120, 2, 10696, 4.99, '2007-03-01 16:46:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23794, 120, 1, 10940, 3.99, '2007-03-02 01:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23795, 120, 2, 11133, 0.99, '2007-03-02 07:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23796, 120, 2, 13167, 2.99, '2007-03-19 12:05:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23797, 120, 2, 13375, 7.99, '2007-03-19 19:59:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23798, 120, 1, 14001, 2.99, '2007-03-20 18:35:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23799, 120, 1, 14153, 4.99, '2007-03-21 00:52:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23800, 120, 1, 14246, 4.99, '2007-03-21 04:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23801, 120, 2, 14460, 9.99, '2007-03-21 11:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23802, 120, 2, 14969, 6.99, '2007-03-22 05:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23803, 121, 2, 10457, 5.99, '2007-03-01 07:46:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23804, 121, 2, 11720, 8.99, '2007-03-17 06:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23805, 121, 2, 12242, 1.99, '2007-03-18 02:05:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23806, 121, 2, 12428, 3.99, '2007-03-18 08:52:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23807, 121, 2, 12734, 1.99, '2007-03-18 20:33:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23808, 121, 1, 12881, 5.99, '2007-03-19 01:56:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23809, 121, 2, 12892, 0.99, '2007-03-19 02:15:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23810, 121, 1, 14138, 7.99, '2007-03-21 00:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23811, 121, 1, 14177, 4.99, '2007-03-21 01:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23812, 121, 2, 14412, 9.99, '2007-03-21 09:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23813, 121, 1, 14464, 2.99, '2007-03-21 11:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23814, 121, 2, 15114, 7.99, '2007-03-22 10:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23815, 121, 1, 15369, 0.99, '2007-03-22 20:26:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23816, 121, 1, 16041, 2.99, '2007-03-23 20:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23817, 122, 1, 10626, 1.99, '2007-03-01 14:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23818, 122, 2, 11044, 3.99, '2007-03-02 04:33:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23819, 122, 2, 11197, 2.99, '2007-03-02 10:13:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23820, 122, 2, 12476, 4.99, '2007-03-18 10:51:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23821, 122, 2, 12711, 4.99, '2007-03-18 19:31:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23822, 122, 1, 13171, 2.99, '2007-03-19 12:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23823, 122, 1, 13812, 4.99, '2007-03-20 11:30:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23824, 122, 2, 14666, 5.99, '2007-03-21 18:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23825, 123, 2, 10295, 8.99, '2007-03-01 02:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23826, 123, 1, 12360, 2.99, '2007-03-18 06:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23827, 123, 1, 12402, 3.99, '2007-03-18 07:56:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23828, 123, 1, 13668, 2.99, '2007-03-20 06:54:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23829, 123, 2, 15152, 7.99, '2007-03-22 12:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23830, 123, 2, 15525, 4.99, '2007-03-23 02:11:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23831, 123, 1, 15621, 1.99, '2007-03-23 05:42:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23832, 123, 2, 15787, 2.99, '2007-03-23 12:20:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23833, 124, 2, 11493, 5.99, '2007-03-02 21:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23834, 124, 1, 12835, 4.99, '2007-03-19 00:16:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23835, 124, 2, 14737, 0.99, '2007-03-21 20:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23836, 124, 2, 15266, 4.99, '2007-03-22 17:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23837, 124, 2, 16023, 0.99, '2007-03-23 20:13:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23838, 125, 1, 10583, 2.99, '2007-03-01 12:23:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23839, 125, 1, 10699, 2.99, '2007-03-01 16:53:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23840, 125, 2, 11279, 7.99, '2007-03-02 12:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23841, 125, 1, 11806, 4.99, '2007-03-17 10:17:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23842, 125, 1, 11832, 4.99, '2007-03-17 11:23:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23843, 125, 1, 11999, 0.99, '2007-03-17 17:15:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23844, 125, 1, 12075, 4.99, '2007-03-17 20:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23845, 125, 2, 12262, 2.99, '2007-03-18 02:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23846, 125, 2, 13441, 6.99, '2007-03-19 22:16:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23847, 125, 2, 14456, 2.99, '2007-03-21 11:06:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23848, 125, 1, 15055, 2.99, '2007-03-22 08:43:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23849, 126, 1, 11196, 9.99, '2007-03-02 10:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23850, 126, 2, 11613, 4.99, '2007-03-17 02:18:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23851, 126, 1, 11779, 3.99, '2007-03-17 09:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23852, 126, 1, 11801, 0.99, '2007-03-17 09:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23853, 126, 2, 12991, 2.99, '2007-03-19 05:49:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23854, 126, 2, 13015, 7.99, '2007-03-19 06:25:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23855, 126, 2, 13177, 0.99, '2007-03-19 12:25:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23856, 126, 2, 14477, 2.99, '2007-03-21 12:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23857, 126, 2, 14577, 2.99, '2007-03-21 15:20:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23858, 126, 2, 15741, 4.99, '2007-03-23 10:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23859, 126, 1, 16007, 7.99, '2007-03-23 19:31:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23860, 127, 1, 10787, 10.99, '2007-03-01 20:03:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23861, 127, 1, 10973, 7.99, '2007-03-02 02:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23862, 127, 1, 11235, 0.99, '2007-03-02 11:41:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23863, 127, 2, 12060, 4.99, '2007-03-17 19:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23864, 127, 2, 12820, 2.99, '2007-03-18 23:33:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23865, 127, 2, 13043, 4.99, '2007-03-19 07:35:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23866, 127, 1, 13091, 2.99, '2007-03-19 09:08:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23867, 127, 2, 14030, 2.99, '2007-03-20 19:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23868, 127, 1, 14189, 2.99, '2007-03-21 02:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23869, 127, 1, 15463, 5.99, '2007-03-22 23:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23870, 127, 2, 15736, 5.99, '2007-03-23 10:08:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23871, 128, 1, 10394, 2.99, '2007-03-01 05:26:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23872, 128, 2, 12731, 2.99, '2007-03-18 20:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23873, 128, 2, 12843, 2.99, '2007-03-19 00:27:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23874, 128, 2, 12910, 0.99, '2007-03-19 02:51:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23875, 128, 2, 13027, 0.99, '2007-03-19 06:53:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23876, 128, 2, 13181, 5.99, '2007-03-19 12:29:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23877, 128, 1, 13509, 0.99, '2007-03-20 00:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23878, 128, 2, 13964, 2.99, '2007-03-20 16:52:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23879, 128, 2, 14157, 0.99, '2007-03-21 01:11:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23880, 128, 1, 14925, 8.99, '2007-03-22 03:44:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23881, 128, 1, 15220, 3.99, '2007-03-22 15:30:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23882, 128, 1, 15835, 8.99, '2007-03-23 13:53:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23883, 129, 2, 10395, 2.99, '2007-03-01 05:36:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23884, 129, 1, 10468, 0.99, '2007-03-01 08:16:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23885, 129, 1, 10483, 2.99, '2007-03-01 08:48:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23886, 129, 2, 10550, 2.99, '2007-03-01 11:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23887, 129, 2, 10816, 4.99, '2007-03-01 21:17:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23888, 129, 2, 12612, 3.99, '2007-03-18 15:38:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23889, 129, 2, 12728, 4.99, '2007-03-18 20:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23890, 129, 2, 13653, 10.99, '2007-03-20 06:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23891, 129, 1, 13915, 4.99, '2007-03-20 15:11:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23892, 129, 1, 13919, 4.99, '2007-03-20 15:16:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23893, 129, 1, 13961, 0.99, '2007-03-20 16:45:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23894, 129, 1, 14353, 0.99, '2007-03-21 07:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23895, 129, 2, 14968, 1.99, '2007-03-22 05:15:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23896, 130, 2, 10568, 2.99, '2007-03-01 11:45:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23897, 130, 2, 10645, 5.99, '2007-03-01 14:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23898, 130, 1, 11811, 2.99, '2007-03-17 10:27:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23899, 130, 1, 12094, 2.99, '2007-03-17 20:59:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23900, 130, 1, 12777, 6.99, '2007-03-18 22:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23901, 130, 2, 14111, 0.99, '2007-03-20 23:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23902, 130, 2, 15574, 5.99, '2007-03-23 03:57:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23903, 130, 1, 15777, 4.99, '2007-03-23 11:57:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23904, 131, 1, 10459, 4.99, '2007-03-01 07:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23905, 131, 1, 10861, 1.99, '2007-03-01 22:41:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23906, 131, 2, 11971, 0.99, '2007-03-17 16:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23907, 131, 1, 11973, 2.99, '2007-03-17 16:24:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23908, 131, 1, 12216, 0.99, '2007-03-18 01:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23909, 131, 2, 12263, 0.99, '2007-03-18 02:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23910, 131, 1, 12372, 9.99, '2007-03-18 06:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23911, 131, 2, 13050, 6.99, '2007-03-19 07:59:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23912, 131, 2, 13346, 7.99, '2007-03-19 18:56:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23913, 131, 2, 13353, 2.99, '2007-03-19 19:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23914, 131, 1, 13407, 0.99, '2007-03-19 20:54:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23915, 131, 2, 15659, 2.99, '2007-03-23 07:17:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23916, 131, 1, 16042, 2.99, '2007-03-23 20:49:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23917, 132, 2, 10243, 4.99, '2007-03-01 00:47:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23918, 132, 1, 10400, 6.99, '2007-03-01 05:46:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23919, 132, 2, 10619, 3.99, '2007-03-01 13:35:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23920, 132, 1, 10638, 6.99, '2007-03-01 14:12:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23921, 132, 2, 11140, 0.99, '2007-03-02 07:56:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23922, 132, 2, 11812, 0.99, '2007-03-17 10:29:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23923, 132, 2, 12133, 0.99, '2007-03-17 22:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23924, 132, 1, 15874, 4.99, '2007-03-23 14:59:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23925, 133, 1, 10665, 0.99, '2007-03-01 15:24:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23926, 133, 1, 12419, 4.99, '2007-03-18 08:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23927, 133, 1, 12834, 4.99, '2007-03-19 00:15:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23928, 133, 2, 13323, 2.99, '2007-03-19 18:16:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23929, 133, 1, 13455, 1.99, '2007-03-19 23:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23930, 133, 2, 13910, 2.99, '2007-03-20 14:59:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23931, 133, 2, 15080, 0.99, '2007-03-22 09:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23932, 133, 1, 16009, 6.99, '2007-03-23 19:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23933, 134, 1, 10864, 6.99, '2007-03-01 22:47:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23934, 134, 1, 11280, 3.99, '2007-03-02 13:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23935, 134, 1, 11283, 4.99, '2007-03-02 13:08:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23936, 134, 2, 11482, 4.99, '2007-03-02 20:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23937, 134, 1, 12754, 7.99, '2007-03-18 21:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23938, 134, 2, 12987, 2.99, '2007-03-19 05:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23939, 134, 2, 13006, 2.99, '2007-03-19 06:15:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23940, 134, 2, 14265, 2.99, '2007-03-21 04:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23941, 134, 2, 15963, 2.99, '2007-03-23 18:11:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23942, 135, 2, 10471, 0.99, '2007-03-01 08:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23943, 135, 1, 10611, 2.99, '2007-03-01 13:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23944, 135, 1, 10698, 3.99, '2007-03-01 16:53:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23945, 135, 2, 11194, 5.99, '2007-03-02 10:04:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23946, 135, 1, 11704, 7.99, '2007-03-17 05:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23947, 135, 1, 12249, 2.99, '2007-03-18 02:22:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23948, 135, 1, 13035, 0.99, '2007-03-19 07:15:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23949, 135, 1, 14005, 0.99, '2007-03-20 18:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23950, 135, 2, 14136, 5.99, '2007-03-21 00:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23951, 135, 2, 15908, 2.99, '2007-03-23 16:10:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23952, 136, 2, 11992, 10.99, '2007-03-17 16:55:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23953, 136, 1, 12287, 5.99, '2007-03-18 03:26:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23954, 136, 2, 12539, 0.99, '2007-03-18 12:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23955, 136, 2, 13992, 4.99, '2007-03-20 17:59:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23956, 136, 2, 14379, 0.99, '2007-03-21 08:21:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23957, 136, 1, 14437, 2.99, '2007-03-21 10:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23958, 136, 1, 15439, 4.99, '2007-03-22 23:02:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23959, 137, 2, 10595, 4.99, '2007-03-01 12:44:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23960, 137, 2, 10842, 5.99, '2007-03-01 22:09:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23961, 137, 2, 11057, 4.99, '2007-03-02 05:06:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23962, 137, 1, 11281, 3.99, '2007-03-02 13:03:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23963, 137, 2, 11732, 3.99, '2007-03-17 06:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23964, 137, 1, 12078, 2.99, '2007-03-17 20:28:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23965, 137, 1, 13148, 0.99, '2007-03-19 11:23:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23966, 137, 1, 13472, 5.99, '2007-03-19 23:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23967, 137, 1, 13776, 5.99, '2007-03-20 10:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23968, 137, 1, 14754, 7.99, '2007-03-21 21:45:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23969, 137, 2, 15082, 7.99, '2007-03-22 09:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23970, 137, 1, 15133, 0.99, '2007-03-22 11:46:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23971, 137, 2, 15537, 2.99, '2007-03-23 02:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23972, 137, 2, 15889, 4.99, '2007-03-23 15:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23973, 137, 1, 16030, 9.99, '2007-03-23 20:24:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23974, 138, 1, 10268, 3.99, '2007-03-01 01:37:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23975, 138, 1, 10431, 5.99, '2007-03-01 07:10:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23976, 138, 1, 11015, 4.99, '2007-03-02 03:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23977, 138, 1, 11088, 0.99, '2007-03-02 06:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23978, 138, 1, 11463, 0.99, '2007-03-02 20:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23979, 138, 2, 12550, 2.99, '2007-03-18 13:09:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23980, 138, 2, 12873, 2.99, '2007-03-19 01:34:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23981, 138, 1, 14194, 1.99, '2007-03-21 02:08:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23982, 138, 2, 14432, 4.99, '2007-03-21 10:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23983, 138, 2, 14486, 4.99, '2007-03-21 12:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23984, 138, 1, 14987, 4.99, '2007-03-22 06:09:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23985, 138, 1, 15424, 2.99, '2007-03-22 22:31:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23986, 138, 1, 15501, 0.99, '2007-03-23 01:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23987, 139, 1, 10900, 2.99, '2007-03-02 00:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23988, 139, 1, 12859, 6.99, '2007-03-19 00:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23989, 139, 2, 13401, 3.99, '2007-03-19 20:44:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23990, 139, 2, 14736, 5.99, '2007-03-21 20:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23991, 139, 1, 14788, 2.99, '2007-03-21 22:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23992, 139, 1, 15024, 2.99, '2007-03-22 07:25:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23993, 139, 2, 15029, 2.99, '2007-03-22 07:33:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23994, 139, 1, 15062, 2.99, '2007-03-22 09:03:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23995, 139, 1, 15218, 9.99, '2007-03-22 15:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23996, 139, 1, 15471, 3.99, '2007-03-23 00:07:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23997, 139, 1, 15743, 0.99, '2007-03-23 10:40:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23998, 140, 1, 10342, 6.99, '2007-03-01 03:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (23999, 140, 2, 11430, 3.99, '2007-03-02 18:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24000, 140, 1, 12086, 4.99, '2007-03-17 20:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24001, 140, 1, 12675, 4.99, '2007-03-18 18:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24002, 140, 2, 13053, 10.99, '2007-03-19 08:00:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24003, 140, 1, 15261, 2.99, '2007-03-22 16:53:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24004, 140, 1, 15852, 2.99, '2007-03-23 14:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24005, 141, 1, 10287, 3.99, '2007-03-01 02:05:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24006, 141, 1, 10379, 1.99, '2007-03-01 05:02:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24007, 141, 1, 10798, 4.99, '2007-03-01 20:31:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24008, 141, 1, 11411, 2.99, '2007-03-02 17:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24009, 141, 1, 11412, 5.99, '2007-03-02 18:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24010, 141, 1, 12032, 5.99, '2007-03-17 18:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24011, 141, 1, 12093, 2.99, '2007-03-17 20:57:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24012, 141, 2, 12107, 3.99, '2007-03-17 21:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24013, 141, 2, 12353, 2.99, '2007-03-18 06:01:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24014, 141, 1, 13000, 0.99, '2007-03-19 06:05:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24015, 141, 2, 13169, 2.99, '2007-03-19 12:12:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24016, 141, 2, 13470, 4.99, '2007-03-19 23:29:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24017, 141, 2, 14059, 7.99, '2007-03-20 20:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24018, 141, 1, 14112, 2.99, '2007-03-20 23:29:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24019, 141, 1, 15013, 4.99, '2007-03-22 07:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24020, 141, 1, 15309, 0.99, '2007-03-22 18:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24021, 141, 1, 15964, 2.99, '2007-03-23 18:13:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24022, 142, 2, 10934, 5.99, '2007-03-02 01:20:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24023, 142, 2, 11244, 5.99, '2007-03-02 12:01:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24024, 142, 1, 12964, 0.99, '2007-03-19 04:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24025, 142, 1, 13044, 0.99, '2007-03-19 07:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24026, 142, 2, 13745, 0.99, '2007-03-20 09:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24027, 142, 1, 13959, 0.99, '2007-03-20 16:44:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24028, 142, 2, 14116, 4.99, '2007-03-20 23:39:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24029, 142, 2, 14813, 0.99, '2007-03-21 23:40:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24030, 142, 2, 15333, 2.99, '2007-03-22 19:12:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24031, 142, 1, 15477, 1.99, '2007-03-23 00:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24032, 143, 1, 11278, 6.99, '2007-03-02 12:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24033, 143, 2, 11651, 6.99, '2007-03-17 03:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24034, 143, 1, 12408, 2.99, '2007-03-18 08:09:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24035, 143, 2, 13835, 4.99, '2007-03-20 12:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24036, 143, 1, 15250, 5.99, '2007-03-22 16:31:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24037, 143, 1, 16029, 4.99, '2007-03-23 20:22:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24038, 144, 1, 10302, 0.99, '2007-03-01 02:40:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24039, 144, 1, 10593, 4.99, '2007-03-01 12:41:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24040, 144, 1, 10740, 5.99, '2007-03-01 18:18:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24041, 144, 1, 10951, 4.99, '2007-03-02 01:55:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24042, 144, 1, 11228, 2.99, '2007-03-02 11:23:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24043, 144, 2, 11476, 6.99, '2007-03-02 20:32:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24044, 144, 1, 11534, 7.99, '2007-03-16 23:03:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24045, 144, 1, 11859, 4.99, '2007-03-17 12:19:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24046, 144, 2, 12087, 2.99, '2007-03-17 20:48:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24047, 144, 2, 12733, 2.99, '2007-03-18 20:27:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24048, 144, 1, 12858, 3.99, '2007-03-19 00:50:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24049, 144, 2, 12980, 6.99, '2007-03-19 05:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24050, 144, 2, 13881, 2.99, '2007-03-20 13:47:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24051, 144, 2, 14159, 2.99, '2007-03-21 01:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24052, 144, 1, 15017, 1.99, '2007-03-22 07:16:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24053, 144, 1, 15753, 7.99, '2007-03-23 11:11:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24054, 145, 2, 10799, 4.99, '2007-03-01 20:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24055, 145, 2, 11904, 5.99, '2007-03-17 14:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24056, 145, 2, 11954, 2.99, '2007-03-17 15:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24057, 145, 1, 12637, 2.99, '2007-03-18 16:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24058, 145, 2, 12785, 2.99, '2007-03-18 22:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24059, 145, 2, 13012, 7.99, '2007-03-19 06:23:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24060, 145, 1, 13164, 3.99, '2007-03-19 11:59:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24061, 145, 2, 13272, 0.99, '2007-03-19 16:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24062, 145, 2, 14044, 5.99, '2007-03-20 20:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24063, 145, 2, 14389, 6.99, '2007-03-21 08:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24064, 146, 2, 11173, 7.99, '2007-03-02 08:56:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24065, 146, 1, 11221, 2.99, '2007-03-02 11:00:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24066, 146, 2, 11370, 0.99, '2007-03-02 16:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24067, 146, 2, 11392, 5.99, '2007-03-02 17:09:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24068, 146, 1, 11573, 4.99, '2007-03-17 00:06:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24069, 146, 1, 11857, 4.99, '2007-03-17 12:16:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24070, 146, 1, 12129, 7.99, '2007-03-17 21:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24071, 146, 1, 12385, 2.99, '2007-03-18 07:07:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24072, 146, 1, 12888, 4.99, '2007-03-19 02:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24073, 146, 1, 13606, 4.99, '2007-03-20 04:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24074, 146, 2, 13829, 4.99, '2007-03-20 12:18:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24075, 146, 2, 14143, 2.99, '2007-03-21 00:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24076, 146, 1, 15842, 6.99, '2007-03-23 14:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24077, 147, 1, 10706, 7.99, '2007-03-01 17:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24078, 147, 2, 10752, 8.99, '2007-03-01 18:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24079, 147, 1, 12284, 4.99, '2007-03-18 03:24:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24080, 147, 1, 12757, 4.99, '2007-03-18 21:26:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24081, 147, 2, 13542, 4.99, '2007-03-20 02:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24082, 147, 2, 13670, 3.99, '2007-03-20 06:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24083, 147, 2, 14021, 4.99, '2007-03-20 19:30:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24084, 147, 1, 14156, 0.99, '2007-03-21 01:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24085, 147, 2, 14641, 0.99, '2007-03-21 17:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24086, 147, 2, 14960, 4.99, '2007-03-22 05:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24087, 147, 1, 15052, 2.99, '2007-03-22 08:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24088, 147, 2, 15331, 4.99, '2007-03-22 19:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24089, 147, 2, 15513, 4.99, '2007-03-23 01:30:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24090, 147, 1, 15730, 8.99, '2007-03-23 10:01:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24091, 147, 2, 16004, 6.99, '2007-03-23 19:21:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24092, 148, 2, 10830, 6.99, '2007-03-01 21:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24093, 148, 1, 11357, 10.99, '2007-03-02 16:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24094, 148, 1, 12029, 2.99, '2007-03-17 18:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24095, 148, 2, 12038, 0.99, '2007-03-17 18:56:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24096, 148, 2, 12512, 3.99, '2007-03-18 11:56:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24097, 148, 1, 12944, 6.99, '2007-03-19 04:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24098, 148, 1, 12983, 6.99, '2007-03-19 05:35:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24099, 148, 1, 14055, 0.99, '2007-03-20 20:46:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24100, 148, 1, 14155, 4.99, '2007-03-21 01:00:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24101, 148, 2, 14184, 6.99, '2007-03-21 01:53:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24102, 148, 2, 14629, 2.99, '2007-03-21 17:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24103, 148, 2, 14713, 0.99, '2007-03-21 19:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24104, 148, 2, 14879, 5.99, '2007-03-22 02:10:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24105, 148, 2, 14965, 2.99, '2007-03-22 05:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24106, 148, 2, 15237, 4.99, '2007-03-22 16:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24107, 148, 2, 15379, 8.99, '2007-03-22 20:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24108, 148, 1, 15541, 3.99, '2007-03-23 02:42:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24109, 148, 2, 15586, 3.99, '2007-03-23 04:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24110, 149, 2, 10737, 7.99, '2007-03-01 17:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24111, 149, 2, 10967, 0.99, '2007-03-02 02:30:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24112, 149, 1, 11561, 2.99, '2007-03-16 23:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24113, 149, 1, 12000, 4.99, '2007-03-17 17:18:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24114, 149, 1, 14771, 3.99, '2007-03-21 22:18:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24115, 149, 2, 15479, 4.99, '2007-03-23 00:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24116, 149, 2, 15562, 2.99, '2007-03-23 03:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24117, 150, 1, 10686, 2.99, '2007-03-01 16:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24118, 150, 2, 11123, 2.99, '2007-03-02 07:22:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24119, 150, 2, 11789, 6.99, '2007-03-17 09:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24120, 150, 2, 12260, 6.99, '2007-03-18 02:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24121, 150, 2, 12335, 2.99, '2007-03-18 05:27:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24122, 150, 2, 12627, 2.99, '2007-03-18 16:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24123, 150, 1, 12887, 1.99, '2007-03-19 02:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24124, 150, 2, 12890, 0.99, '2007-03-19 02:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24125, 150, 1, 13116, 6.99, '2007-03-19 10:00:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24126, 150, 2, 13255, 8.99, '2007-03-19 15:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24127, 150, 1, 13372, 2.99, '2007-03-19 19:51:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24128, 150, 2, 13599, 5.99, '2007-03-20 04:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24129, 150, 2, 14165, 0.99, '2007-03-21 01:27:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24130, 150, 2, 14454, 2.99, '2007-03-21 11:04:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24131, 150, 2, 14520, 9.99, '2007-03-21 13:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24132, 150, 1, 14663, 0.99, '2007-03-21 18:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24133, 151, 1, 10311, 4.99, '2007-03-01 02:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24134, 151, 1, 10662, 2.99, '2007-03-01 15:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24135, 151, 2, 11714, 2.99, '2007-03-17 06:03:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24136, 151, 2, 13230, 0.99, '2007-03-19 14:40:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24137, 151, 1, 13568, 5.99, '2007-03-20 03:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24138, 151, 1, 14856, 4.99, '2007-03-22 01:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24139, 151, 2, 14922, 3.99, '2007-03-22 03:41:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24140, 151, 1, 15227, 4.99, '2007-03-22 15:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24141, 151, 1, 15926, 2.99, '2007-03-23 16:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24142, 151, 2, 15996, 2.99, '2007-03-23 19:00:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24143, 152, 1, 10320, 6.99, '2007-03-01 03:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24144, 152, 2, 11638, 6.99, '2007-03-17 03:07:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24145, 152, 2, 11783, 0.99, '2007-03-17 09:07:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24146, 152, 1, 12697, 2.99, '2007-03-18 18:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24147, 152, 1, 12917, 4.99, '2007-03-19 02:55:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24148, 152, 2, 12960, 1.99, '2007-03-19 04:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24149, 152, 1, 13204, 4.99, '2007-03-19 13:31:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24150, 152, 2, 13484, 0.99, '2007-03-19 23:45:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24151, 152, 1, 13986, 0.99, '2007-03-20 17:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24152, 152, 1, 14173, 0.99, '2007-03-21 01:29:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24153, 152, 2, 14668, 4.99, '2007-03-21 18:19:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24154, 153, 2, 11368, 4.99, '2007-03-02 16:31:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24155, 153, 1, 12103, 1.99, '2007-03-17 21:17:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24156, 153, 1, 12439, 3.99, '2007-03-18 09:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24157, 153, 1, 12882, 4.99, '2007-03-19 02:02:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24158, 153, 1, 14664, 4.99, '2007-03-21 18:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24159, 153, 1, 14747, 4.99, '2007-03-21 21:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24160, 153, 1, 14944, 4.99, '2007-03-22 04:29:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24161, 153, 2, 15267, 0.99, '2007-03-22 17:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24162, 153, 2, 15444, 7.99, '2007-03-22 23:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24163, 153, 1, 15593, 1.99, '2007-03-23 04:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24164, 154, 1, 10278, 6.99, '2007-03-01 01:53:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24165, 154, 1, 10851, 4.99, '2007-03-01 22:27:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24166, 154, 1, 11296, 5.99, '2007-03-02 13:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24167, 154, 1, 12341, 0.99, '2007-03-18 05:37:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24168, 154, 2, 13861, 4.99, '2007-03-20 13:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24169, 154, 2, 14731, 2.99, '2007-03-21 20:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24170, 154, 2, 14793, 7.99, '2007-03-21 23:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24171, 154, 1, 14918, 6.99, '2007-03-22 03:35:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24172, 154, 1, 15351, 0.99, '2007-03-22 19:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24173, 154, 1, 15721, 2.99, '2007-03-23 09:44:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24174, 155, 1, 11033, 4.99, '2007-03-02 04:22:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24175, 155, 2, 11951, 5.99, '2007-03-17 15:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24176, 155, 1, 14324, 8.99, '2007-03-21 06:39:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24177, 155, 2, 14549, 2.99, '2007-03-21 14:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24178, 155, 1, 14753, 2.99, '2007-03-21 21:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24179, 155, 2, 14909, 0.99, '2007-03-22 03:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24180, 155, 1, 15106, 0.99, '2007-03-22 10:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24181, 156, 2, 10309, 6.99, '2007-03-01 02:52:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24182, 156, 2, 11490, 2.99, '2007-03-02 21:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24183, 156, 1, 11587, 5.99, '2007-03-17 00:49:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24184, 156, 2, 13530, 0.99, '2007-03-20 01:41:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24185, 156, 2, 13531, 2.99, '2007-03-20 01:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24186, 156, 2, 13802, 2.99, '2007-03-20 11:13:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24187, 156, 1, 14794, 1.99, '2007-03-21 23:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24188, 156, 2, 14831, 4.99, '2007-03-22 00:09:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24189, 156, 1, 14914, 0.99, '2007-03-22 03:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24190, 156, 1, 15408, 6.99, '2007-03-22 21:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24191, 157, 2, 11249, 4.99, '2007-03-02 12:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24192, 157, 2, 11335, 4.99, '2007-03-02 15:26:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24193, 157, 1, 12213, 5.99, '2007-03-18 01:02:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24194, 157, 1, 12464, 6.99, '2007-03-18 10:02:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24195, 157, 1, 12916, 0.99, '2007-03-19 02:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24196, 157, 1, 13097, 4.99, '2007-03-19 09:19:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24197, 157, 1, 13214, 4.99, '2007-03-19 13:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24198, 157, 1, 13481, 6.99, '2007-03-19 23:39:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24199, 157, 1, 13728, 2.99, '2007-03-20 08:39:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24200, 157, 2, 14974, 4.99, '2007-03-22 05:32:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24201, 158, 2, 11077, 4.99, '2007-03-02 05:55:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24202, 158, 1, 11103, 6.99, '2007-03-02 06:38:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24203, 158, 1, 11272, 0.99, '2007-03-02 12:48:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24204, 158, 1, 11420, 2.99, '2007-03-02 18:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24205, 158, 2, 12070, 1.99, '2007-03-17 20:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24206, 158, 2, 12421, 5.99, '2007-03-18 08:32:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24207, 158, 2, 13212, 1.99, '2007-03-19 13:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24208, 158, 2, 13854, 2.99, '2007-03-20 13:17:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24209, 158, 1, 13926, 2.99, '2007-03-20 15:37:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24210, 158, 2, 14028, 0.99, '2007-03-20 19:51:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24211, 158, 1, 15763, 2.99, '2007-03-23 11:31:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24212, 158, 1, 15796, 5.99, '2007-03-23 12:40:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24213, 158, 1, 15802, 5.99, '2007-03-23 12:55:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24214, 159, 2, 11225, 4.99, '2007-03-02 11:11:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24215, 159, 2, 13270, 1.99, '2007-03-19 16:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24216, 159, 1, 13933, 0.99, '2007-03-20 15:45:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24217, 159, 2, 14575, 8.99, '2007-03-21 15:20:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24218, 159, 1, 15197, 0.99, '2007-03-22 14:42:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24219, 160, 1, 10305, 2.99, '2007-03-01 02:44:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24220, 160, 2, 10788, 0.99, '2007-03-01 20:05:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24221, 160, 2, 10958, 4.99, '2007-03-02 02:05:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24222, 160, 2, 10979, 5.99, '2007-03-02 02:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24223, 160, 2, 11154, 2.99, '2007-03-02 08:23:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24224, 160, 1, 11803, 2.99, '2007-03-17 10:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24225, 160, 1, 11888, 7.99, '2007-03-17 13:32:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24226, 160, 2, 12334, 2.99, '2007-03-18 05:21:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24227, 160, 1, 12435, 7.99, '2007-03-18 09:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24228, 160, 2, 13093, 6.99, '2007-03-19 09:14:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24229, 160, 1, 14868, 4.99, '2007-03-22 01:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24230, 160, 1, 15112, 2.99, '2007-03-22 10:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24231, 160, 2, 15642, 2.99, '2007-03-23 06:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24232, 160, 1, 15962, 4.99, '2007-03-23 18:10:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24233, 160, 1, 16027, 3.99, '2007-03-23 20:17:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24234, 161, 1, 10241, 5.99, '2007-03-01 00:40:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24235, 161, 1, 10355, 0.99, '2007-03-01 04:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24236, 161, 1, 10637, 2.99, '2007-03-01 14:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24237, 161, 1, 10863, 6.99, '2007-03-01 22:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24238, 161, 2, 10939, 0.99, '2007-03-02 01:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24239, 161, 1, 11838, 2.99, '2007-03-17 11:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24240, 161, 2, 14150, 0.99, '2007-03-21 00:51:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24241, 161, 1, 14370, 7.99, '2007-03-21 08:03:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24242, 161, 1, 15000, 0.99, '2007-03-22 06:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24243, 161, 2, 15045, 5.99, '2007-03-22 08:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24244, 161, 2, 15150, 2.99, '2007-03-22 12:40:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24245, 161, 1, 15420, 5.99, '2007-03-22 22:24:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24246, 162, 2, 11012, 0.99, '2007-03-02 03:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24247, 162, 1, 13288, 4.99, '2007-03-19 16:58:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24248, 162, 2, 14301, 1.99, '2007-03-21 05:48:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24249, 162, 1, 15332, 4.99, '2007-03-22 19:10:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24250, 163, 2, 10245, 0.99, '2007-03-01 00:52:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24251, 163, 2, 11623, 2.99, '2007-03-17 02:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24252, 163, 2, 11940, 4.99, '2007-03-17 15:24:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24253, 163, 1, 12154, 2.99, '2007-03-17 22:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24254, 163, 2, 12973, 2.99, '2007-03-19 05:16:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24255, 163, 2, 13543, 7.99, '2007-03-20 02:11:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24256, 163, 2, 14275, 4.99, '2007-03-21 04:58:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24257, 163, 2, 14427, 5.99, '2007-03-21 09:54:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24258, 163, 1, 15520, 8.99, '2007-03-23 01:59:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24259, 163, 1, 15847, 0.99, '2007-03-23 14:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24260, 164, 2, 11175, 2.99, '2007-03-02 09:07:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24261, 164, 2, 13453, 5.99, '2007-03-19 22:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24262, 165, 1, 10565, 4.99, '2007-03-01 11:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24263, 165, 1, 11484, 2.99, '2007-03-02 20:56:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24264, 165, 2, 12643, 4.99, '2007-03-18 16:49:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24265, 165, 2, 15007, 1.99, '2007-03-22 06:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24266, 165, 1, 15801, 3.99, '2007-03-23 12:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24267, 165, 2, 15834, 5.99, '2007-03-23 13:52:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24268, 166, 2, 10422, 7.99, '2007-03-01 06:45:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24269, 166, 2, 12683, 4.99, '2007-03-18 18:19:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24270, 166, 1, 12968, 4.99, '2007-03-19 05:06:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24271, 166, 2, 13582, 4.99, '2007-03-20 03:56:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24272, 166, 2, 13901, 7.99, '2007-03-20 14:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24273, 166, 2, 14261, 5.99, '2007-03-21 04:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24274, 166, 2, 14281, 2.99, '2007-03-21 05:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24275, 166, 1, 15213, 5.99, '2007-03-22 15:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24276, 166, 2, 15216, 2.99, '2007-03-22 15:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24277, 166, 2, 15806, 1.99, '2007-03-23 13:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24278, 167, 2, 10285, 3.99, '2007-03-01 02:03:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24279, 167, 1, 12642, 4.99, '2007-03-18 16:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24280, 167, 2, 12717, 4.99, '2007-03-18 19:44:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24281, 167, 1, 12978, 4.99, '2007-03-19 05:25:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24282, 167, 1, 13825, 6.99, '2007-03-20 12:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24283, 167, 1, 13870, 1.99, '2007-03-20 13:37:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24284, 167, 1, 15003, 3.99, '2007-03-22 06:39:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24285, 167, 1, 15050, 0.99, '2007-03-22 08:36:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24286, 167, 2, 15478, 0.99, '2007-03-23 00:18:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24287, 167, 2, 15530, 4.99, '2007-03-23 02:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24288, 167, 2, 15915, 4.99, '2007-03-23 16:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24289, 168, 2, 10270, 0.99, '2007-03-01 01:38:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24290, 168, 1, 11551, 0.99, '2007-03-16 23:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24291, 168, 1, 11627, 10.99, '2007-03-17 02:54:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24292, 168, 1, 11631, 1.99, '2007-03-17 02:57:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24293, 168, 1, 12545, 6.99, '2007-03-18 12:56:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24294, 168, 1, 12781, 2.99, '2007-03-18 22:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24295, 168, 1, 13018, 8.99, '2007-03-19 06:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24296, 168, 2, 13532, 4.99, '2007-03-20 01:57:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24297, 168, 2, 13811, 0.99, '2007-03-20 11:28:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24298, 168, 1, 14090, 2.99, '2007-03-20 22:39:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24299, 168, 1, 15033, 3.99, '2007-03-22 07:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24300, 168, 1, 15165, 2.99, '2007-03-22 13:27:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24301, 168, 2, 15683, 2.99, '2007-03-23 08:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24302, 169, 2, 11687, 5.99, '2007-03-17 05:08:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24303, 169, 1, 11898, 5.99, '2007-03-17 13:52:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24304, 169, 2, 13198, 2.99, '2007-03-19 13:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24305, 169, 2, 13237, 1.99, '2007-03-19 14:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24306, 169, 2, 14435, 0.99, '2007-03-21 10:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24307, 169, 2, 14805, 4.99, '2007-03-21 23:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24308, 169, 2, 15534, 0.99, '2007-03-23 02:24:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24309, 169, 2, 15680, 4.99, '2007-03-23 08:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24310, 170, 2, 10481, 5.99, '2007-03-01 08:45:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24311, 170, 1, 11039, 0.99, '2007-03-02 04:29:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24312, 170, 2, 12706, 3.99, '2007-03-18 19:13:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24313, 170, 1, 12967, 3.99, '2007-03-19 05:06:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24314, 170, 1, 13081, 0.99, '2007-03-19 08:47:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24315, 170, 2, 13862, 6.99, '2007-03-20 13:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24316, 170, 2, 14022, 8.99, '2007-03-20 19:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24317, 170, 2, 14675, 2.99, '2007-03-21 18:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24318, 170, 1, 15549, 7.99, '2007-03-23 02:55:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24319, 171, 2, 10622, 4.99, '2007-03-01 13:40:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24320, 171, 1, 12600, 4.99, '2007-03-18 15:12:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24321, 171, 1, 12962, 5.99, '2007-03-19 04:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24322, 171, 2, 13087, 6.99, '2007-03-19 09:02:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24323, 171, 2, 13292, 0.99, '2007-03-19 17:03:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24324, 171, 2, 13433, 0.99, '2007-03-19 21:59:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24325, 171, 1, 14270, 1.99, '2007-03-21 04:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24326, 171, 2, 14615, 9.99, '2007-03-21 16:34:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24327, 171, 2, 15810, 0.99, '2007-03-23 13:11:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24328, 172, 1, 10312, 3.99, '2007-03-01 02:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24329, 172, 2, 10621, 0.99, '2007-03-01 13:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24330, 172, 2, 11499, 6.99, '2007-03-16 21:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24331, 172, 2, 12350, 4.99, '2007-03-18 05:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24332, 172, 2, 12638, 8.99, '2007-03-18 16:40:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24333, 172, 2, 13067, 5.99, '2007-03-19 08:19:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24334, 172, 2, 13320, 4.99, '2007-03-19 18:03:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24335, 172, 1, 13342, 0.99, '2007-03-19 18:50:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24336, 172, 2, 13937, 4.99, '2007-03-20 15:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24337, 172, 1, 14991, 4.99, '2007-03-22 06:19:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24338, 172, 2, 15637, 2.99, '2007-03-23 06:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24339, 172, 1, 15902, 3.99, '2007-03-23 15:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24340, 172, 2, 16038, 3.99, '2007-03-23 20:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24341, 173, 1, 10351, 5.99, '2007-03-01 04:00:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24342, 173, 2, 12073, 2.99, '2007-03-17 20:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24343, 173, 1, 12282, 6.99, '2007-03-18 03:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24344, 173, 2, 12501, 4.99, '2007-03-18 11:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24345, 173, 1, 14654, 2.99, '2007-03-21 18:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24346, 173, 2, 15483, 0.99, '2007-03-23 00:31:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24347, 173, 1, 15775, 8.99, '2007-03-23 11:54:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24348, 173, 1, 16010, 2.99, '2007-03-23 19:38:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24349, 174, 1, 10363, 2.99, '2007-03-01 04:30:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24350, 174, 2, 10398, 4.99, '2007-03-01 05:40:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24351, 174, 1, 10559, 8.99, '2007-03-01 11:31:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24352, 174, 1, 11525, 0.99, '2007-03-16 22:43:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24353, 174, 2, 12886, 5.99, '2007-03-19 02:06:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24354, 174, 1, 13185, 0.99, '2007-03-19 12:50:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24355, 174, 1, 15892, 1.99, '2007-03-23 15:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24356, 174, 1, 15975, 4.99, '2007-03-23 18:34:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24357, 175, 2, 10229, 7.99, '2007-03-01 00:13:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24358, 175, 1, 10875, 0.99, '2007-03-01 23:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24359, 175, 2, 11618, 4.99, '2007-03-17 02:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24360, 175, 1, 12509, 0.99, '2007-03-18 11:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24361, 175, 1, 13016, 4.99, '2007-03-19 06:25:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24362, 175, 2, 13833, 6.99, '2007-03-20 12:28:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24363, 175, 2, 13997, 6.99, '2007-03-20 18:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24364, 175, 2, 14507, 4.99, '2007-03-21 13:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24365, 175, 2, 14897, 2.99, '2007-03-22 02:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24366, 176, 1, 10277, 2.99, '2007-03-01 01:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24367, 176, 2, 10441, 0.99, '2007-03-01 07:24:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24368, 176, 1, 10862, 2.99, '2007-03-01 22:46:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24369, 176, 1, 11678, 5.99, '2007-03-17 04:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24370, 176, 1, 12299, 2.99, '2007-03-18 04:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24371, 176, 1, 12718, 2.99, '2007-03-18 19:50:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24372, 176, 1, 13170, 7.99, '2007-03-19 12:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24373, 176, 2, 13186, 5.99, '2007-03-19 12:51:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24374, 176, 1, 14083, 7.99, '2007-03-20 22:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24375, 176, 2, 14232, 1.99, '2007-03-21 03:35:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24376, 176, 2, 15311, 4.99, '2007-03-22 18:25:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24377, 176, 1, 15933, 4.99, '2007-03-23 17:05:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24378, 177, 2, 10321, 4.99, '2007-03-01 03:08:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24379, 177, 1, 10661, 2.99, '2007-03-01 15:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24380, 177, 1, 10710, 0.99, '2007-03-01 17:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24381, 177, 1, 11195, 0.99, '2007-03-02 10:10:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24382, 177, 1, 11376, 5.99, '2007-03-02 16:44:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24383, 177, 2, 11662, 6.99, '2007-03-17 03:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24384, 177, 1, 12623, 4.99, '2007-03-18 16:02:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24385, 177, 2, 14093, 0.99, '2007-03-20 22:49:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24386, 177, 2, 14310, 0.99, '2007-03-21 06:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24387, 177, 2, 14849, 2.99, '2007-03-22 00:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24388, 177, 2, 14883, 0.99, '2007-03-22 02:23:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24389, 178, 2, 10562, 0.99, '2007-03-01 11:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24390, 178, 1, 10802, 5.99, '2007-03-01 20:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24391, 178, 2, 11319, 6.99, '2007-03-02 14:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24392, 178, 2, 11884, 6.99, '2007-03-17 13:11:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24393, 178, 2, 11927, 3.99, '2007-03-17 14:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24394, 178, 2, 12049, 6.99, '2007-03-17 19:21:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24395, 178, 2, 12727, 2.99, '2007-03-18 20:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24396, 178, 1, 13127, 2.99, '2007-03-19 10:32:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24397, 178, 1, 14104, 4.99, '2007-03-20 23:06:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24398, 178, 1, 14257, 7.99, '2007-03-21 04:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24399, 178, 2, 14314, 2.99, '2007-03-21 06:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24400, 178, 1, 15323, 4.99, '2007-03-22 18:51:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24401, 179, 1, 10385, 4.99, '2007-03-01 05:08:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24402, 179, 2, 10569, 3.99, '2007-03-01 11:46:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24403, 179, 1, 11342, 0.99, '2007-03-02 15:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24404, 179, 2, 13240, 0.99, '2007-03-19 14:50:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24405, 179, 1, 13400, 4.99, '2007-03-19 20:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24406, 179, 2, 13844, 7.99, '2007-03-20 12:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24407, 179, 2, 13957, 0.99, '2007-03-20 16:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24408, 179, 2, 14082, 7.99, '2007-03-20 22:10:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24409, 179, 1, 14589, 0.99, '2007-03-21 15:57:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24410, 179, 1, 15985, 4.99, '2007-03-23 18:48:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24411, 180, 1, 10576, 5.99, '2007-03-01 12:14:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24412, 180, 1, 10992, 8.99, '2007-03-02 03:09:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24413, 180, 1, 12313, 8.99, '2007-03-18 04:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24414, 180, 1, 13283, 2.99, '2007-03-19 16:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24415, 180, 2, 13842, 4.99, '2007-03-20 12:58:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24416, 180, 1, 13994, 2.99, '2007-03-20 18:01:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24417, 180, 1, 14109, 0.99, '2007-03-20 23:21:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24418, 180, 1, 14851, 2.99, '2007-03-22 00:49:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24419, 180, 1, 15039, 4.99, '2007-03-22 08:06:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24420, 181, 2, 10262, 4.99, '2007-03-01 01:29:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24421, 181, 2, 10362, 6.99, '2007-03-01 04:23:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24422, 181, 2, 10703, 2.99, '2007-03-01 17:06:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24423, 181, 1, 10748, 4.99, '2007-03-01 18:29:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24424, 181, 1, 10773, 6.99, '2007-03-01 19:22:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24425, 181, 2, 11224, 4.99, '2007-03-02 11:09:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24426, 181, 1, 12363, 7.99, '2007-03-18 06:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24427, 181, 1, 12411, 0.99, '2007-03-18 08:16:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24428, 181, 1, 12678, 2.99, '2007-03-18 18:09:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24429, 181, 2, 12939, 2.99, '2007-03-19 04:06:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24430, 181, 2, 13118, 4.99, '2007-03-19 10:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24431, 181, 2, 13405, 4.99, '2007-03-19 20:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24432, 181, 2, 13415, 2.99, '2007-03-19 21:16:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24433, 181, 2, 14406, 3.99, '2007-03-21 09:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24434, 181, 2, 15196, 2.99, '2007-03-22 14:39:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24435, 181, 2, 15482, 4.99, '2007-03-23 00:29:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24436, 182, 1, 11055, 4.99, '2007-03-02 05:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24437, 182, 2, 11785, 3.99, '2007-03-17 09:23:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24438, 182, 1, 12573, 4.99, '2007-03-18 14:01:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24439, 182, 1, 12840, 6.99, '2007-03-19 00:22:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24440, 182, 1, 13285, 2.99, '2007-03-19 16:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24441, 182, 1, 14586, 5.99, '2007-03-21 15:47:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24442, 182, 1, 14953, 6.99, '2007-03-22 04:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24443, 182, 1, 15043, 1.99, '2007-03-22 08:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24444, 183, 2, 10620, 5.99, '2007-03-01 13:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24445, 183, 2, 11386, 2.99, '2007-03-02 16:52:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24446, 183, 2, 12451, 0.99, '2007-03-18 09:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24447, 183, 2, 12764, 3.99, '2007-03-18 21:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24448, 183, 2, 12831, 3.99, '2007-03-19 00:09:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24449, 183, 1, 13482, 2.99, '2007-03-19 23:42:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24450, 183, 1, 13536, 4.99, '2007-03-20 02:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24451, 184, 2, 12166, 9.99, '2007-03-17 23:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24452, 184, 2, 12454, 2.99, '2007-03-18 09:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24453, 184, 1, 12532, 2.99, '2007-03-18 12:26:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24454, 184, 1, 13134, 0.99, '2007-03-19 10:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24455, 184, 1, 13262, 5.99, '2007-03-19 15:48:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24456, 184, 1, 13303, 4.99, '2007-03-19 17:23:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24457, 184, 2, 14472, 4.99, '2007-03-21 11:42:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24458, 184, 1, 14801, 5.99, '2007-03-21 23:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24459, 184, 2, 15611, 0.99, '2007-03-23 05:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24460, 185, 2, 11355, 0.99, '2007-03-02 16:06:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24461, 185, 1, 12312, 2.99, '2007-03-18 04:35:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24462, 185, 1, 12674, 5.99, '2007-03-18 17:53:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24463, 185, 1, 12885, 0.99, '2007-03-19 02:05:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24464, 185, 2, 14513, 2.99, '2007-03-21 13:20:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24465, 186, 1, 10985, 0.99, '2007-03-02 02:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24466, 186, 1, 11982, 0.99, '2007-03-17 16:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24467, 186, 1, 12348, 5.99, '2007-03-18 05:50:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24468, 186, 1, 12438, 8.99, '2007-03-18 09:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24469, 186, 1, 13168, 6.99, '2007-03-19 12:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24470, 186, 2, 13517, 4.99, '2007-03-20 01:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24471, 186, 1, 13853, 3.99, '2007-03-20 13:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24472, 186, 1, 14006, 2.99, '2007-03-20 18:50:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24473, 186, 2, 14229, 4.99, '2007-03-21 03:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24474, 186, 2, 14646, 4.99, '2007-03-21 17:43:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24475, 186, 2, 14988, 3.99, '2007-03-22 06:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24476, 186, 2, 15001, 0.99, '2007-03-22 06:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24477, 186, 2, 15295, 3.99, '2007-03-22 18:04:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24478, 186, 1, 15596, 0.99, '2007-03-23 04:48:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24479, 187, 1, 11843, 2.99, '2007-03-17 11:43:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24480, 187, 2, 12307, 8.99, '2007-03-18 04:16:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24481, 187, 2, 12490, 9.99, '2007-03-18 11:17:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24482, 187, 1, 12534, 7.99, '2007-03-18 12:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24483, 187, 2, 13940, 8.99, '2007-03-20 15:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24484, 187, 2, 14855, 8.99, '2007-03-22 00:55:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24485, 187, 2, 15231, 4.99, '2007-03-22 16:01:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24486, 187, 2, 15517, 2.99, '2007-03-23 01:41:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24487, 187, 2, 15971, 7.99, '2007-03-23 18:27:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24488, 188, 2, 10453, 5.99, '2007-03-01 07:41:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24489, 188, 1, 10494, 0.99, '2007-03-01 09:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24490, 188, 2, 10719, 4.99, '2007-03-01 17:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24491, 188, 2, 10757, 4.99, '2007-03-01 18:51:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24492, 188, 2, 11378, 2.99, '2007-03-02 16:45:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24493, 188, 1, 13570, 2.99, '2007-03-20 03:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24494, 188, 1, 13787, 5.99, '2007-03-20 10:43:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24495, 188, 1, 14399, 2.99, '2007-03-21 09:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24496, 188, 2, 14809, 2.99, '2007-03-21 23:29:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24497, 188, 2, 15319, 2.99, '2007-03-22 18:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24498, 188, 2, 15409, 0.99, '2007-03-22 21:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24499, 188, 2, 15474, 4.99, '2007-03-23 00:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24500, 189, 1, 10247, 9.99, '2007-03-01 01:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24501, 189, 2, 11059, 6.99, '2007-03-02 05:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24502, 189, 2, 13601, 6.99, '2007-03-20 04:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24503, 189, 1, 13766, 3.99, '2007-03-20 10:10:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24504, 189, 1, 15773, 1.99, '2007-03-23 11:53:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24505, 189, 1, 16008, 5.99, '2007-03-23 19:33:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24506, 190, 1, 11082, 5.99, '2007-03-02 05:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24507, 190, 2, 11158, 6.99, '2007-03-02 08:26:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24508, 190, 2, 11276, 4.99, '2007-03-02 12:57:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24509, 190, 2, 11312, 6.99, '2007-03-02 14:25:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24510, 190, 2, 11750, 0.99, '2007-03-17 07:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24511, 190, 2, 11950, 9.99, '2007-03-17 15:41:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24512, 190, 1, 12270, 2.99, '2007-03-18 03:00:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24513, 190, 2, 12381, 0.99, '2007-03-18 07:00:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24514, 190, 2, 14065, 0.99, '2007-03-20 21:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24515, 190, 2, 14141, 4.99, '2007-03-21 00:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24516, 190, 2, 14166, 2.99, '2007-03-21 01:27:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24517, 190, 2, 14650, 0.99, '2007-03-21 17:53:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24518, 191, 2, 10532, 2.99, '2007-03-01 10:35:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24519, 191, 2, 15375, 4.99, '2007-03-22 20:40:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24520, 192, 2, 10238, 0.99, '2007-03-01 00:36:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24521, 192, 1, 10843, 7.99, '2007-03-01 22:11:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24522, 192, 1, 11385, 4.99, '2007-03-02 16:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24523, 192, 1, 11815, 4.99, '2007-03-17 10:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24524, 192, 1, 13125, 5.99, '2007-03-19 10:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24525, 192, 2, 14146, 4.99, '2007-03-21 00:41:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24526, 192, 2, 14238, 7.99, '2007-03-21 03:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24527, 192, 1, 14404, 4.99, '2007-03-21 09:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24528, 192, 2, 14692, 6.99, '2007-03-21 19:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24529, 192, 2, 15855, 2.99, '2007-03-23 14:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24530, 193, 2, 10462, 2.99, '2007-03-01 08:06:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24531, 193, 2, 12384, 0.99, '2007-03-18 07:05:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24532, 193, 2, 12658, 4.99, '2007-03-18 17:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24533, 193, 1, 13529, 2.99, '2007-03-20 01:36:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24534, 193, 1, 13608, 0.99, '2007-03-20 04:39:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24535, 193, 1, 14679, 2.99, '2007-03-21 18:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24536, 193, 1, 14927, 4.99, '2007-03-22 04:00:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24537, 193, 2, 15164, 4.99, '2007-03-22 13:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24538, 193, 2, 15344, 6.99, '2007-03-22 19:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24539, 193, 2, 15495, 5.99, '2007-03-23 00:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24540, 194, 2, 11475, 5.99, '2007-03-02 20:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24541, 194, 2, 12851, 3.99, '2007-03-19 00:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24542, 194, 1, 13515, 0.99, '2007-03-20 00:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24543, 194, 2, 13616, 7.99, '2007-03-20 04:58:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24544, 194, 1, 14440, 4.99, '2007-03-21 10:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24545, 194, 2, 15937, 4.99, '2007-03-23 17:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24546, 195, 2, 10911, 4.99, '2007-03-02 00:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24547, 195, 1, 11201, 7.99, '2007-03-02 10:17:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24548, 195, 2, 11787, 2.99, '2007-03-17 09:27:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24549, 195, 2, 12099, 0.99, '2007-03-17 21:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24550, 195, 2, 12941, 0.99, '2007-03-19 04:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24551, 195, 2, 13741, 0.99, '2007-03-20 09:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24552, 195, 2, 14751, 7.99, '2007-03-21 21:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24553, 195, 2, 16040, 11.99, '2007-03-23 20:47:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24554, 196, 1, 11104, 2.99, '2007-03-02 06:38:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24555, 196, 2, 12430, 0.99, '2007-03-18 09:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24556, 196, 2, 12684, 0.99, '2007-03-18 18:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24557, 196, 2, 12836, 0.99, '2007-03-19 00:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24558, 196, 1, 13799, 8.99, '2007-03-20 11:05:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24559, 196, 2, 14410, 5.99, '2007-03-21 09:23:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24560, 196, 1, 14698, 5.99, '2007-03-21 19:18:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24561, 196, 2, 15980, 0.99, '2007-03-23 18:38:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24562, 197, 2, 10460, 3.99, '2007-03-01 07:59:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24563, 197, 2, 10666, 0.99, '2007-03-01 15:25:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24564, 197, 2, 10739, 4.99, '2007-03-01 18:14:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24565, 197, 1, 10743, 2.99, '2007-03-01 18:23:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24566, 197, 1, 11018, 4.99, '2007-03-02 03:56:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24567, 197, 1, 11215, 4.99, '2007-03-02 10:49:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24568, 197, 1, 11311, 4.99, '2007-03-02 14:22:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24569, 197, 1, 11478, 2.99, '2007-03-02 20:37:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24570, 197, 1, 11643, 1.99, '2007-03-17 03:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24571, 197, 1, 12799, 0.99, '2007-03-18 22:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24572, 197, 2, 13913, 3.99, '2007-03-20 15:06:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24573, 197, 1, 14069, 9.99, '2007-03-20 21:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24574, 197, 2, 14951, 4.99, '2007-03-22 04:48:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24575, 197, 1, 15078, 2.99, '2007-03-22 09:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24576, 197, 2, 15233, 0.99, '2007-03-22 16:10:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24577, 197, 1, 15540, 8.99, '2007-03-23 02:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24578, 198, 1, 10679, 0.99, '2007-03-01 15:56:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24579, 198, 1, 11351, 3.99, '2007-03-02 15:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24580, 198, 1, 11594, 6.99, '2007-03-17 01:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24581, 198, 1, 11756, 2.99, '2007-03-17 07:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24582, 198, 1, 11836, 4.99, '2007-03-17 11:32:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24583, 198, 2, 11949, 2.99, '2007-03-17 15:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24584, 198, 1, 11957, 1.99, '2007-03-17 15:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24585, 198, 2, 11985, 2.99, '2007-03-17 16:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24586, 198, 2, 12594, 4.99, '2007-03-18 14:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24587, 198, 1, 12862, 5.99, '2007-03-19 01:00:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24588, 198, 1, 13768, 5.99, '2007-03-20 10:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24589, 198, 1, 14214, 5.99, '2007-03-21 02:59:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24590, 198, 2, 14380, 2.99, '2007-03-21 08:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24591, 198, 2, 14990, 4.99, '2007-03-22 06:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24592, 198, 1, 15256, 6.99, '2007-03-22 16:48:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24593, 198, 1, 15433, 4.99, '2007-03-22 22:55:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24594, 199, 2, 10517, 4.99, '2007-03-01 10:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24595, 199, 1, 10850, 8.99, '2007-03-01 22:22:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24596, 199, 1, 11454, 2.99, '2007-03-02 19:33:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24597, 199, 1, 12386, 0.99, '2007-03-18 07:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24598, 199, 2, 14320, 4.99, '2007-03-21 06:33:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24599, 199, 2, 15412, 0.99, '2007-03-22 22:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24600, 199, 2, 15751, 3.99, '2007-03-23 11:09:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24601, 200, 1, 10685, 2.99, '2007-03-01 16:18:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24602, 200, 1, 11356, 8.99, '2007-03-02 16:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24603, 200, 1, 13737, 5.99, '2007-03-20 09:10:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24604, 200, 1, 14034, 10.99, '2007-03-20 20:00:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24605, 200, 2, 14521, 6.99, '2007-03-21 13:29:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24606, 200, 2, 15691, 4.99, '2007-03-23 08:22:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24607, 200, 2, 15742, 5.99, '2007-03-23 10:40:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24608, 200, 1, 15961, 6.99, '2007-03-23 18:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24609, 201, 2, 10750, 5.99, '2007-03-01 18:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24610, 201, 2, 10865, 3.99, '2007-03-01 22:51:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24611, 201, 1, 10891, 0.99, '2007-03-01 23:38:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24612, 201, 2, 11807, 0.99, '2007-03-17 10:19:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24613, 201, 2, 13076, 4.99, '2007-03-19 08:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24614, 201, 2, 13613, 9.99, '2007-03-20 04:52:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24615, 201, 2, 13671, 3.99, '2007-03-20 06:55:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24616, 201, 2, 13672, 2.99, '2007-03-20 06:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24617, 201, 2, 14656, 2.99, '2007-03-21 18:07:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24618, 201, 1, 14973, 2.99, '2007-03-22 05:27:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24619, 201, 1, 15887, 2.99, '2007-03-23 15:22:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24620, 201, 2, 15974, 5.99, '2007-03-23 18:34:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24621, 208, 2, 10762, 4.99, '2007-03-01 18:57:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24622, 208, 2, 10784, 5.99, '2007-03-01 19:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24623, 208, 2, 11442, 2.99, '2007-03-02 18:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24624, 208, 2, 11805, 6.99, '2007-03-17 10:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24625, 208, 2, 11819, 0.99, '2007-03-17 10:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24626, 209, 2, 10554, 2.99, '2007-03-01 11:24:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24627, 209, 1, 10646, 4.99, '2007-03-01 14:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24628, 209, 2, 10811, 6.99, '2007-03-01 21:09:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24629, 209, 1, 12025, 0.99, '2007-03-17 18:27:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24630, 209, 1, 13796, 8.99, '2007-03-20 11:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24631, 209, 2, 14631, 6.99, '2007-03-21 17:16:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24632, 209, 1, 15254, 2.99, '2007-03-22 16:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24633, 209, 2, 15510, 9.99, '2007-03-23 01:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24634, 210, 2, 10890, 4.99, '2007-03-01 23:27:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24635, 210, 2, 12410, 8.99, '2007-03-18 08:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24636, 210, 1, 12879, 4.99, '2007-03-19 01:51:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24637, 210, 2, 12909, 2.99, '2007-03-19 02:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24638, 210, 2, 12986, 4.99, '2007-03-19 05:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24639, 210, 1, 14181, 7.99, '2007-03-21 01:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24640, 210, 2, 14639, 6.99, '2007-03-21 17:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24641, 210, 2, 14876, 4.99, '2007-03-22 02:07:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24642, 210, 2, 15672, 0.99, '2007-03-23 07:37:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24643, 210, 2, 15942, 8.99, '2007-03-23 17:17:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24644, 211, 1, 10445, 2.99, '2007-03-01 07:30:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24645, 211, 2, 10928, 4.99, '2007-03-02 01:02:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24646, 211, 2, 11076, 8.99, '2007-03-02 05:53:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24647, 211, 2, 11963, 3.99, '2007-03-17 16:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24648, 211, 2, 12311, 0.99, '2007-03-18 04:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24649, 211, 2, 12565, 4.99, '2007-03-18 13:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24650, 211, 2, 12570, 5.99, '2007-03-18 13:51:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24651, 211, 2, 13942, 2.99, '2007-03-20 15:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24652, 211, 1, 13979, 2.99, '2007-03-20 17:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24653, 211, 2, 14782, 0.99, '2007-03-21 22:45:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24654, 211, 2, 14812, 1.99, '2007-03-21 23:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24655, 211, 1, 15404, 7.99, '2007-03-22 21:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24656, 211, 2, 15538, 6.99, '2007-03-23 02:36:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24657, 211, 2, 15670, 5.99, '2007-03-23 07:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24658, 212, 2, 10273, 4.99, '2007-03-01 01:43:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24659, 212, 2, 10567, 0.99, '2007-03-01 11:44:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24660, 212, 1, 12156, 7.99, '2007-03-17 22:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24661, 212, 2, 12467, 0.99, '2007-03-18 10:08:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24662, 212, 2, 12562, 3.99, '2007-03-18 13:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24663, 212, 1, 14563, 2.99, '2007-03-21 14:52:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24664, 212, 2, 14681, 5.99, '2007-03-21 18:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24665, 212, 1, 15872, 4.99, '2007-03-23 14:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24666, 212, 2, 15920, 2.99, '2007-03-23 16:33:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24667, 213, 1, 10449, 2.99, '2007-03-01 07:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24668, 213, 2, 11778, 3.99, '2007-03-17 09:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24669, 213, 1, 13354, 4.99, '2007-03-19 19:23:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24670, 213, 2, 13426, 0.99, '2007-03-19 21:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24671, 213, 1, 14744, 6.99, '2007-03-21 21:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24672, 214, 1, 10563, 3.99, '2007-03-01 11:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24673, 214, 2, 10749, 4.99, '2007-03-01 18:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24674, 214, 2, 11450, 2.99, '2007-03-02 19:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24675, 214, 2, 11474, 4.99, '2007-03-02 20:21:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24676, 214, 2, 12463, 4.99, '2007-03-18 10:00:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24677, 214, 2, 13138, 2.99, '2007-03-19 10:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24678, 214, 2, 13350, 9.99, '2007-03-19 19:12:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24679, 214, 1, 13409, 2.99, '2007-03-19 21:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24680, 214, 1, 13565, 0.99, '2007-03-20 03:07:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24681, 214, 1, 13726, 0.99, '2007-03-20 08:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24682, 214, 1, 13864, 4.99, '2007-03-20 13:28:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24683, 214, 2, 14347, 4.99, '2007-03-21 07:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24684, 214, 1, 14567, 0.99, '2007-03-21 14:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24685, 214, 2, 15639, 2.99, '2007-03-23 06:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24686, 215, 1, 11729, 2.99, '2007-03-17 06:43:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24687, 215, 2, 12285, 2.99, '2007-03-18 03:25:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24688, 215, 1, 12380, 1.99, '2007-03-18 06:55:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24689, 215, 2, 13085, 0.99, '2007-03-19 08:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24690, 215, 2, 14126, 0.99, '2007-03-21 00:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24691, 215, 2, 14817, 4.99, '2007-03-21 23:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24692, 215, 1, 15583, 2.99, '2007-03-23 04:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24693, 215, 2, 15610, 2.99, '2007-03-23 05:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24694, 215, 2, 15799, 2.99, '2007-03-23 12:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24695, 215, 1, 15843, 0.99, '2007-03-23 14:05:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24696, 216, 1, 10506, 4.99, '2007-03-01 09:44:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24697, 216, 1, 11005, 0.99, '2007-03-02 03:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24698, 216, 2, 11621, 7.99, '2007-03-17 02:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24699, 216, 2, 13424, 0.99, '2007-03-19 21:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24700, 216, 2, 14638, 2.99, '2007-03-21 17:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24701, 216, 2, 14726, 4.99, '2007-03-21 20:37:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24702, 216, 1, 15192, 4.99, '2007-03-22 14:34:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24703, 216, 2, 15199, 2.99, '2007-03-22 14:46:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24704, 216, 2, 15934, 4.99, '2007-03-23 17:09:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24705, 217, 1, 10581, 5.99, '2007-03-01 12:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24706, 217, 1, 10836, 6.99, '2007-03-01 21:58:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24707, 217, 1, 11347, 2.99, '2007-03-02 15:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24708, 217, 1, 11649, 2.99, '2007-03-17 03:27:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24709, 217, 1, 11958, 4.99, '2007-03-17 15:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24710, 217, 2, 12210, 4.99, '2007-03-18 00:55:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24711, 217, 1, 12871, 4.99, '2007-03-19 01:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24712, 217, 2, 15116, 0.99, '2007-03-22 11:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24713, 217, 2, 15277, 2.99, '2007-03-22 17:31:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24714, 218, 1, 11654, 2.99, '2007-03-17 03:34:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24715, 218, 2, 12481, 2.99, '2007-03-18 11:00:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24716, 218, 1, 12974, 0.99, '2007-03-19 05:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24717, 218, 2, 13708, 5.99, '2007-03-20 08:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24718, 218, 2, 13947, 5.99, '2007-03-20 16:14:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24719, 218, 2, 14848, 4.99, '2007-03-22 00:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24720, 218, 2, 15575, 0.99, '2007-03-23 03:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24721, 219, 1, 11328, 2.99, '2007-03-02 15:11:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24722, 219, 2, 11791, 0.99, '2007-03-17 09:29:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24723, 219, 1, 13765, 4.99, '2007-03-20 10:07:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24724, 219, 2, 14029, 0.99, '2007-03-20 19:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24725, 219, 1, 14588, 5.99, '2007-03-21 15:54:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24726, 219, 1, 14688, 4.99, '2007-03-21 19:01:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24727, 219, 1, 15283, 4.99, '2007-03-22 17:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24728, 220, 2, 10778, 4.99, '2007-03-01 19:40:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24729, 220, 1, 10948, 4.99, '2007-03-02 01:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24730, 220, 1, 11037, 0.99, '2007-03-02 04:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24731, 220, 1, 11153, 3.99, '2007-03-02 08:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24732, 220, 1, 11622, 4.99, '2007-03-17 02:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24733, 220, 2, 11947, 2.99, '2007-03-17 15:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24734, 220, 1, 12407, 4.99, '2007-03-18 08:07:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24735, 220, 1, 12896, 4.99, '2007-03-19 02:21:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24736, 220, 2, 13123, 2.99, '2007-03-19 10:23:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24737, 220, 1, 13281, 2.99, '2007-03-19 16:36:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24738, 220, 2, 14016, 4.99, '2007-03-20 19:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24739, 220, 2, 15706, 4.99, '2007-03-23 09:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24740, 221, 2, 11680, 4.99, '2007-03-17 04:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24741, 221, 1, 11693, 4.99, '2007-03-17 05:25:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24742, 221, 1, 11802, 2.99, '2007-03-17 10:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24743, 221, 1, 12324, 0.99, '2007-03-18 05:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24744, 221, 2, 12620, 3.99, '2007-03-18 15:55:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24745, 221, 2, 13434, 2.99, '2007-03-19 22:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24746, 221, 2, 14322, 5.99, '2007-03-21 06:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24747, 221, 2, 14371, 0.99, '2007-03-21 08:05:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24748, 221, 1, 14419, 7.99, '2007-03-21 09:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24749, 221, 1, 15125, 8.99, '2007-03-22 11:21:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24750, 222, 2, 12179, 2.99, '2007-03-17 23:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24751, 222, 1, 13477, 2.99, '2007-03-19 23:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24752, 222, 2, 14350, 2.99, '2007-03-21 07:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24753, 223, 2, 11040, 4.99, '2007-03-02 04:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24754, 223, 1, 12927, 5.99, '2007-03-19 03:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24755, 223, 1, 13576, 0.99, '2007-03-20 03:48:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24756, 223, 2, 14496, 4.99, '2007-03-21 12:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24757, 223, 1, 15257, 7.99, '2007-03-22 16:49:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24758, 223, 2, 15546, 5.99, '2007-03-23 02:49:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24759, 223, 1, 15662, 2.99, '2007-03-23 07:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24760, 224, 1, 11816, 0.99, '2007-03-17 10:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24761, 224, 1, 12492, 4.99, '2007-03-18 11:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24762, 224, 1, 12969, 2.99, '2007-03-19 05:07:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24763, 224, 2, 13075, 4.99, '2007-03-19 08:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24764, 224, 2, 14099, 0.99, '2007-03-20 22:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24765, 224, 2, 14271, 5.99, '2007-03-21 04:51:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24766, 224, 2, 14468, 5.99, '2007-03-21 11:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24767, 224, 2, 14880, 2.99, '2007-03-22 02:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24768, 224, 1, 15225, 0.99, '2007-03-22 15:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24769, 224, 1, 15952, 1.99, '2007-03-23 17:39:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24770, 225, 1, 10793, 2.99, '2007-03-01 20:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24771, 225, 2, 11333, 1.99, '2007-03-02 15:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24772, 225, 2, 11384, 0.99, '2007-03-02 16:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24773, 225, 2, 11395, 5.99, '2007-03-02 17:16:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24774, 225, 2, 11437, 4.99, '2007-03-02 18:48:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24775, 225, 2, 14444, 5.99, '2007-03-21 10:35:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24776, 226, 1, 12172, 1.99, '2007-03-17 23:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24777, 226, 1, 14491, 6.99, '2007-03-21 12:24:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24778, 226, 1, 14708, 4.99, '2007-03-21 19:35:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24779, 226, 1, 14712, 0.99, '2007-03-21 19:51:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24780, 226, 2, 14739, 0.99, '2007-03-21 21:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24781, 226, 2, 14934, 4.99, '2007-03-22 04:15:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24782, 226, 2, 15472, 2.99, '2007-03-23 00:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24783, 226, 1, 15901, 4.99, '2007-03-23 15:47:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24784, 226, 1, 15986, 2.99, '2007-03-23 18:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24785, 226, 1, 16033, 5.99, '2007-03-23 20:34:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24786, 227, 2, 10999, 3.99, '2007-03-02 03:21:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24787, 227, 2, 11892, 0.99, '2007-03-17 13:41:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24788, 227, 2, 13379, 4.99, '2007-03-19 20:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24789, 227, 2, 15406, 0.99, '2007-03-22 21:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24790, 227, 2, 15976, 4.99, '2007-03-23 18:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24791, 228, 1, 10585, 4.99, '2007-03-01 12:29:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24792, 228, 1, 12304, 0.99, '2007-03-18 04:12:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24793, 228, 2, 12952, 2.99, '2007-03-19 04:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24794, 228, 2, 13458, 4.99, '2007-03-19 23:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24795, 229, 1, 11521, 4.99, '2007-03-16 22:33:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24796, 229, 1, 12866, 2.99, '2007-03-19 01:08:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24797, 229, 2, 13306, 0.99, '2007-03-19 17:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24798, 229, 2, 13431, 4.99, '2007-03-19 21:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24799, 229, 1, 13679, 5.99, '2007-03-20 07:08:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24800, 229, 1, 15740, 4.99, '2007-03-23 10:36:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24801, 229, 2, 15912, 2.99, '2007-03-23 16:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24802, 230, 2, 10874, 2.99, '2007-03-01 22:59:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24803, 230, 2, 11148, 5.99, '2007-03-02 08:15:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24804, 230, 1, 11552, 5.99, '2007-03-16 23:32:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24805, 230, 2, 11914, 2.99, '2007-03-17 14:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24806, 230, 1, 12079, 1.99, '2007-03-17 20:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24807, 230, 2, 12523, 7.99, '2007-03-18 12:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24808, 230, 2, 12542, 0.99, '2007-03-18 12:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24809, 230, 2, 14017, 0.99, '2007-03-20 19:23:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24810, 230, 1, 14073, 5.99, '2007-03-20 21:41:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24811, 230, 1, 14340, 2.99, '2007-03-21 07:06:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24812, 231, 2, 11113, 2.99, '2007-03-02 06:54:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24813, 231, 1, 11202, 7.99, '2007-03-02 10:20:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24814, 231, 1, 11581, 5.99, '2007-03-17 00:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24815, 231, 1, 12214, 0.99, '2007-03-18 01:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24816, 231, 2, 12230, 8.99, '2007-03-18 01:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24817, 231, 1, 12231, 3.99, '2007-03-18 01:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24818, 231, 2, 13983, 6.99, '2007-03-20 17:36:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24819, 231, 1, 14026, 0.99, '2007-03-20 19:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24820, 231, 1, 14478, 4.99, '2007-03-21 12:01:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24821, 231, 2, 14806, 2.99, '2007-03-21 23:21:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24822, 231, 1, 15389, 3.99, '2007-03-22 21:19:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24823, 232, 1, 10539, 6.99, '2007-03-01 10:51:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24824, 232, 2, 11861, 0.99, '2007-03-17 12:22:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24825, 232, 2, 12853, 2.99, '2007-03-19 00:43:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24826, 232, 2, 13707, 2.99, '2007-03-20 08:02:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24827, 232, 2, 14527, 0.99, '2007-03-21 13:36:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24828, 232, 2, 14857, 0.99, '2007-03-22 01:11:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24829, 232, 2, 15553, 2.99, '2007-03-23 03:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24830, 233, 1, 10582, 4.99, '2007-03-01 12:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24831, 233, 1, 12443, 5.99, '2007-03-18 09:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24832, 233, 2, 14357, 2.99, '2007-03-21 07:41:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24833, 233, 2, 15285, 2.99, '2007-03-22 17:45:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24834, 233, 1, 15790, 1.99, '2007-03-23 12:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24835, 233, 2, 15821, 0.99, '2007-03-23 13:32:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24836, 234, 2, 10541, 0.99, '2007-03-01 10:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24837, 234, 2, 10580, 6.99, '2007-03-01 12:19:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24838, 234, 2, 10968, 7.99, '2007-03-02 02:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24839, 234, 1, 11050, 4.99, '2007-03-02 04:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24840, 234, 1, 11073, 0.99, '2007-03-02 05:41:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24841, 234, 1, 11481, 3.99, '2007-03-02 20:47:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24842, 234, 1, 11882, 3.99, '2007-03-17 13:02:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24843, 234, 1, 12226, 0.99, '2007-03-18 01:29:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24844, 234, 2, 12863, 4.99, '2007-03-19 01:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24845, 234, 1, 12921, 5.99, '2007-03-19 03:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24846, 234, 2, 13349, 2.99, '2007-03-19 19:11:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24847, 234, 2, 15037, 5.99, '2007-03-22 08:04:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24848, 234, 1, 15129, 2.99, '2007-03-22 11:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24849, 235, 2, 12332, 2.99, '2007-03-18 05:19:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24850, 235, 1, 12502, 4.99, '2007-03-18 11:44:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24851, 235, 2, 13070, 0.99, '2007-03-19 08:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24852, 235, 1, 13469, 0.99, '2007-03-19 23:28:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24853, 235, 2, 14749, 3.99, '2007-03-21 21:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24854, 235, 1, 15034, 6.99, '2007-03-22 08:01:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24855, 236, 2, 11139, 6.99, '2007-03-02 07:56:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24856, 236, 2, 11486, 3.99, '2007-03-02 21:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24857, 236, 2, 11507, 5.99, '2007-03-16 21:55:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24858, 236, 1, 11895, 4.99, '2007-03-17 13:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24859, 236, 1, 12975, 2.99, '2007-03-19 05:19:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24860, 236, 1, 13364, 2.99, '2007-03-19 19:37:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24861, 236, 1, 13443, 7.99, '2007-03-19 22:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24862, 236, 2, 14321, 4.99, '2007-03-21 06:33:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24863, 236, 1, 14364, 7.99, '2007-03-21 07:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24864, 236, 2, 14722, 4.99, '2007-03-21 20:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24865, 237, 2, 11125, 4.99, '2007-03-02 07:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24866, 237, 2, 11479, 11.99, '2007-03-02 20:46:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24867, 237, 2, 11772, 5.99, '2007-03-17 08:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24868, 237, 1, 12469, 0.99, '2007-03-18 10:21:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24869, 237, 2, 13914, 6.99, '2007-03-20 15:07:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24870, 237, 2, 13922, 6.99, '2007-03-20 15:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24871, 237, 2, 13969, 6.99, '2007-03-20 17:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24872, 237, 2, 14453, 3.99, '2007-03-21 11:02:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24873, 237, 2, 15139, 8.99, '2007-03-22 12:06:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24874, 237, 1, 15337, 0.99, '2007-03-22 19:18:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24875, 237, 2, 15931, 1.99, '2007-03-23 16:56:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24876, 238, 1, 10659, 5.99, '2007-03-01 15:09:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24877, 238, 2, 11543, 5.99, '2007-03-16 23:22:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24878, 238, 2, 11632, 2.99, '2007-03-17 02:57:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24879, 238, 1, 11897, 2.99, '2007-03-17 13:52:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24880, 238, 1, 14312, 4.99, '2007-03-21 06:17:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24881, 238, 1, 14343, 8.99, '2007-03-21 07:08:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24882, 238, 1, 15455, 0.99, '2007-03-22 23:33:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24883, 239, 1, 10755, 0.99, '2007-03-01 18:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24884, 239, 2, 10923, 2.99, '2007-03-02 00:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24885, 239, 1, 11487, 2.99, '2007-03-02 21:03:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24886, 239, 2, 11900, 4.99, '2007-03-17 13:59:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24887, 239, 1, 11968, 0.99, '2007-03-17 16:16:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24888, 239, 1, 12340, 4.99, '2007-03-18 05:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24889, 239, 1, 12721, 1.99, '2007-03-18 19:58:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24890, 239, 1, 13175, 4.99, '2007-03-19 12:23:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24891, 239, 2, 13427, 4.99, '2007-03-19 21:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24892, 239, 2, 13999, 3.99, '2007-03-20 18:21:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24893, 239, 2, 14062, 1.99, '2007-03-20 21:03:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24894, 240, 1, 10308, 7.99, '2007-03-01 02:51:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24895, 240, 1, 11745, 3.99, '2007-03-17 07:28:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24896, 240, 2, 12283, 6.99, '2007-03-18 03:22:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24897, 240, 2, 13030, 2.99, '2007-03-19 06:56:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24898, 240, 2, 13119, 4.99, '2007-03-19 10:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24899, 240, 1, 13663, 8.99, '2007-03-20 06:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24900, 240, 2, 14573, 2.99, '2007-03-21 15:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24901, 240, 2, 15641, 0.99, '2007-03-23 06:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24902, 241, 2, 10447, 3.99, '2007-03-01 07:33:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24903, 241, 1, 10652, 2.99, '2007-03-01 14:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24904, 241, 1, 11423, 1.99, '2007-03-02 18:25:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24905, 241, 2, 12418, 4.99, '2007-03-18 08:28:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24906, 241, 1, 12956, 4.99, '2007-03-19 04:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24907, 241, 2, 13077, 2.99, '2007-03-19 08:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24908, 241, 2, 14269, 7.99, '2007-03-21 04:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24909, 241, 2, 14485, 2.99, '2007-03-21 12:20:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24910, 241, 1, 14936, 0.99, '2007-03-22 04:19:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24911, 241, 2, 15137, 2.99, '2007-03-22 11:48:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24912, 241, 1, 15429, 2.99, '2007-03-22 22:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24913, 241, 1, 15767, 4.99, '2007-03-23 11:42:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24914, 242, 2, 10367, 0.99, '2007-03-01 04:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24915, 242, 2, 10382, 4.99, '2007-03-01 05:05:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24916, 242, 2, 10650, 9.99, '2007-03-01 14:47:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24917, 242, 2, 11020, 0.99, '2007-03-02 03:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24918, 242, 1, 11258, 4.99, '2007-03-02 12:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24919, 242, 2, 11607, 0.99, '2007-03-17 02:04:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24920, 242, 1, 11931, 4.99, '2007-03-17 15:03:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24921, 242, 2, 12724, 7.99, '2007-03-18 20:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24922, 242, 1, 12855, 4.99, '2007-03-19 00:47:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24923, 242, 1, 13271, 9.99, '2007-03-19 16:10:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24924, 242, 2, 13567, 0.99, '2007-03-20 03:17:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24925, 242, 2, 13646, 5.99, '2007-03-20 06:15:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24926, 242, 1, 14515, 0.99, '2007-03-21 13:20:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24927, 242, 1, 15002, 0.99, '2007-03-22 06:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24928, 243, 1, 12209, 2.99, '2007-03-18 00:55:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24929, 243, 1, 13291, 2.99, '2007-03-19 17:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24930, 243, 1, 14033, 2.99, '2007-03-20 19:59:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24931, 243, 1, 14108, 0.99, '2007-03-20 23:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24932, 243, 1, 14272, 3.99, '2007-03-21 04:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24933, 243, 2, 14581, 1.99, '2007-03-21 15:35:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24934, 243, 2, 14705, 2.99, '2007-03-21 19:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24935, 244, 2, 10684, 6.99, '2007-03-01 16:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24936, 244, 2, 10969, 2.99, '2007-03-02 02:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24937, 244, 2, 11157, 0.99, '2007-03-02 08:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24938, 244, 1, 11267, 9.99, '2007-03-02 12:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24939, 244, 1, 11762, 9.99, '2007-03-17 08:16:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24940, 244, 1, 13630, 4.99, '2007-03-20 05:34:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24941, 244, 2, 13774, 0.99, '2007-03-20 10:22:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24942, 244, 1, 13928, 0.99, '2007-03-20 15:40:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24943, 244, 1, 14367, 0.99, '2007-03-21 08:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24944, 244, 2, 14657, 0.99, '2007-03-21 18:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24945, 244, 1, 14919, 1.99, '2007-03-22 03:35:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24946, 244, 1, 14975, 3.99, '2007-03-22 05:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24947, 245, 2, 11061, 0.99, '2007-03-02 05:18:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24948, 245, 1, 11105, 0.99, '2007-03-02 06:41:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24949, 245, 1, 11211, 0.99, '2007-03-02 10:45:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24950, 245, 1, 12303, 7.99, '2007-03-18 04:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24951, 245, 1, 13286, 0.99, '2007-03-19 16:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24952, 245, 1, 15782, 6.99, '2007-03-23 12:11:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24953, 246, 2, 10683, 2.99, '2007-03-01 16:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24954, 246, 2, 13418, 5.99, '2007-03-19 21:22:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24955, 246, 1, 13750, 6.99, '2007-03-20 09:40:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24956, 246, 1, 13987, 4.99, '2007-03-20 17:47:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24957, 246, 1, 14360, 6.99, '2007-03-21 07:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24958, 246, 1, 15746, 2.99, '2007-03-23 10:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24959, 247, 1, 10279, 1.99, '2007-03-01 01:55:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24960, 247, 1, 10410, 6.99, '2007-03-01 06:21:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24961, 247, 2, 11204, 2.99, '2007-03-02 10:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24962, 247, 2, 11306, 2.99, '2007-03-02 14:13:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24963, 247, 1, 11495, 0.99, '2007-03-16 21:19:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24964, 247, 2, 12265, 4.99, '2007-03-18 02:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24965, 247, 1, 12482, 7.99, '2007-03-18 11:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24966, 247, 1, 12491, 4.99, '2007-03-18 11:17:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24967, 247, 1, 12824, 4.99, '2007-03-18 23:46:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24968, 247, 1, 14041, 4.99, '2007-03-20 20:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24969, 247, 1, 15783, 4.99, '2007-03-23 12:14:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24970, 248, 2, 10418, 4.99, '2007-03-01 06:39:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24971, 248, 1, 12241, 0.99, '2007-03-18 02:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24972, 248, 1, 13918, 0.99, '2007-03-20 15:15:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24973, 248, 2, 14704, 0.99, '2007-03-21 19:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24974, 248, 2, 14885, 5.99, '2007-03-22 02:26:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24975, 249, 1, 11124, 1.99, '2007-03-02 07:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24976, 249, 1, 11159, 4.99, '2007-03-02 08:29:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24977, 249, 2, 11668, 0.99, '2007-03-17 04:15:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24978, 249, 2, 13981, 4.99, '2007-03-20 17:35:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24979, 249, 2, 14285, 0.99, '2007-03-21 05:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24980, 249, 1, 15160, 6.99, '2007-03-22 13:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24981, 250, 2, 10604, 4.99, '2007-03-01 13:03:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24982, 250, 1, 12361, 0.99, '2007-03-18 06:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24983, 250, 1, 12810, 0.99, '2007-03-18 23:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24984, 250, 2, 14565, 4.99, '2007-03-21 14:53:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24985, 250, 1, 14587, 5.99, '2007-03-21 15:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24986, 250, 2, 14814, 4.99, '2007-03-21 23:40:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24987, 250, 2, 15247, 6.99, '2007-03-22 16:20:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24988, 251, 1, 10575, 7.99, '2007-03-01 12:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24989, 251, 1, 11733, 0.99, '2007-03-17 06:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24990, 251, 2, 12047, 3.99, '2007-03-17 19:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24991, 251, 2, 12666, 4.99, '2007-03-18 17:40:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24992, 251, 2, 13121, 2.99, '2007-03-19 10:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24993, 251, 1, 13243, 2.99, '2007-03-19 15:01:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24994, 251, 2, 13260, 6.99, '2007-03-19 15:37:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24995, 251, 1, 14292, 0.99, '2007-03-21 05:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24996, 251, 2, 15647, 2.99, '2007-03-23 06:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24997, 251, 2, 15870, 4.99, '2007-03-23 14:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24998, 252, 2, 10314, 0.99, '2007-03-01 02:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (24999, 252, 2, 10834, 2.99, '2007-03-01 21:56:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25000, 252, 2, 11764, 0.99, '2007-03-17 08:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25001, 252, 1, 13385, 4.99, '2007-03-19 20:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25002, 252, 2, 13989, 5.99, '2007-03-20 17:56:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25003, 252, 1, 14774, 4.99, '2007-03-21 22:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25004, 253, 2, 10404, 4.99, '2007-03-01 05:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25005, 253, 1, 10660, 2.99, '2007-03-01 15:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25006, 253, 2, 10881, 6.99, '2007-03-01 23:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25007, 253, 1, 12572, 0.99, '2007-03-18 14:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25008, 253, 2, 12827, 5.99, '2007-03-18 23:55:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25009, 253, 1, 13126, 5.99, '2007-03-19 10:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25010, 253, 2, 14086, 3.99, '2007-03-20 22:16:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25011, 253, 2, 14283, 4.99, '2007-03-21 05:12:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25012, 253, 1, 14640, 7.99, '2007-03-21 17:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25013, 253, 2, 14655, 4.99, '2007-03-21 18:05:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25014, 253, 2, 15221, 2.99, '2007-03-22 15:40:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25015, 254, 1, 10522, 4.99, '2007-03-01 10:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25016, 254, 1, 11190, 0.99, '2007-03-02 09:50:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25017, 254, 1, 11665, 6.99, '2007-03-17 04:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25018, 254, 2, 12148, 0.99, '2007-03-17 22:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25019, 254, 1, 12206, 0.99, '2007-03-18 00:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25020, 254, 1, 12247, 2.99, '2007-03-18 02:20:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25021, 254, 1, 12874, 0.99, '2007-03-19 01:36:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25022, 254, 2, 13001, 4.99, '2007-03-19 06:05:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25023, 254, 1, 13045, 4.99, '2007-03-19 07:46:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25024, 254, 2, 13130, 2.99, '2007-03-19 10:35:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25025, 254, 2, 14497, 4.99, '2007-03-21 12:38:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25026, 254, 1, 15774, 0.99, '2007-03-23 11:53:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25027, 255, 2, 11979, 4.99, '2007-03-17 16:35:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25028, 255, 2, 12176, 7.99, '2007-03-17 23:38:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25029, 255, 2, 13154, 2.99, '2007-03-19 11:38:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25030, 255, 1, 13268, 0.99, '2007-03-19 16:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25031, 255, 2, 13683, 0.99, '2007-03-20 07:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25032, 255, 1, 13758, 8.99, '2007-03-20 09:49:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25033, 255, 2, 14600, 3.99, '2007-03-21 16:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25034, 256, 2, 10759, 4.99, '2007-03-01 18:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25035, 256, 2, 11011, 2.99, '2007-03-02 03:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25036, 256, 2, 11628, 8.99, '2007-03-17 02:55:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25037, 256, 2, 13457, 0.99, '2007-03-19 23:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25038, 256, 1, 13651, 0.99, '2007-03-20 06:18:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25039, 256, 1, 14003, 6.99, '2007-03-20 18:44:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25040, 256, 2, 14036, 4.99, '2007-03-20 20:03:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25041, 256, 2, 14445, 2.99, '2007-03-21 10:36:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25042, 256, 2, 14458, 3.99, '2007-03-21 11:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25043, 256, 2, 15609, 2.99, '2007-03-23 05:24:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25044, 256, 2, 15861, 4.99, '2007-03-23 14:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25045, 256, 1, 15864, 7.99, '2007-03-23 14:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25046, 257, 1, 11230, 4.99, '2007-03-02 11:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25047, 257, 1, 11394, 0.99, '2007-03-02 17:13:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25048, 257, 2, 11545, 6.99, '2007-03-16 23:24:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25049, 257, 2, 11860, 1.99, '2007-03-17 12:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25050, 257, 2, 12841, 2.99, '2007-03-19 00:24:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25051, 257, 1, 12904, 5.99, '2007-03-19 02:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25052, 257, 2, 13203, 7.99, '2007-03-19 13:29:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25053, 257, 2, 13218, 0.99, '2007-03-19 14:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25054, 257, 1, 13389, 2.99, '2007-03-19 20:21:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25055, 257, 2, 13846, 5.99, '2007-03-20 13:00:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25056, 257, 2, 14115, 0.99, '2007-03-20 23:38:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25057, 257, 1, 15025, 0.99, '2007-03-22 07:25:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25058, 257, 1, 15967, 2.99, '2007-03-23 18:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25059, 257, 2, 15968, 0.99, '2007-03-23 18:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25060, 258, 2, 10293, 1.99, '2007-03-01 02:12:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25061, 258, 2, 10315, 4.99, '2007-03-01 03:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25062, 258, 1, 10325, 5.99, '2007-03-01 03:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25063, 258, 2, 10332, 6.99, '2007-03-01 03:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25064, 258, 1, 10393, 0.99, '2007-03-01 05:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25065, 258, 1, 12246, 5.99, '2007-03-18 02:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25066, 258, 2, 12296, 3.99, '2007-03-18 03:44:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25067, 258, 1, 13491, 4.99, '2007-03-19 23:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25068, 258, 1, 13695, 6.99, '2007-03-20 07:41:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25069, 258, 2, 13897, 2.99, '2007-03-20 14:30:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25070, 258, 2, 14901, 6.99, '2007-03-22 03:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25071, 259, 1, 10510, 3.99, '2007-03-01 09:56:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25072, 259, 1, 10781, 2.99, '2007-03-01 19:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25073, 259, 1, 11184, 3.99, '2007-03-02 09:29:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25074, 259, 2, 12680, 6.99, '2007-03-18 18:12:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25075, 259, 1, 13109, 4.99, '2007-03-19 09:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25076, 259, 2, 13112, 2.99, '2007-03-19 09:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25077, 259, 2, 13366, 4.99, '2007-03-19 19:43:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25078, 259, 1, 13598, 5.99, '2007-03-20 04:27:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25079, 259, 2, 13649, 4.99, '2007-03-20 06:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25080, 259, 2, 14067, 6.99, '2007-03-20 21:17:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25081, 259, 2, 14170, 4.99, '2007-03-21 01:29:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25082, 259, 2, 14966, 2.99, '2007-03-22 05:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25083, 259, 1, 15425, 10.99, '2007-03-22 22:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25084, 259, 1, 15473, 2.99, '2007-03-23 00:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25085, 259, 1, 15689, 2.99, '2007-03-23 08:21:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25086, 260, 2, 10970, 8.99, '2007-03-02 02:35:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25087, 260, 1, 12852, 0.99, '2007-03-19 00:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25088, 260, 2, 13440, 2.99, '2007-03-19 22:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25089, 260, 1, 13685, 3.99, '2007-03-20 07:25:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25090, 260, 1, 13966, 2.99, '2007-03-20 16:56:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25091, 260, 2, 13978, 0.99, '2007-03-20 17:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25092, 260, 2, 14035, 2.99, '2007-03-20 20:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25093, 260, 2, 14441, 2.99, '2007-03-21 10:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25094, 260, 1, 14579, 7.99, '2007-03-21 15:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25095, 260, 1, 14610, 6.99, '2007-03-21 16:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25096, 261, 2, 10246, 1.99, '2007-03-01 00:58:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25097, 261, 1, 11834, 1.99, '2007-03-17 11:29:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25098, 261, 2, 11928, 2.99, '2007-03-17 14:56:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25099, 261, 1, 12327, 6.99, '2007-03-18 05:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25100, 261, 2, 13245, 4.99, '2007-03-19 15:12:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25101, 261, 2, 13506, 5.99, '2007-03-20 00:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25102, 261, 1, 13669, 2.99, '2007-03-20 06:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25103, 261, 1, 13849, 4.99, '2007-03-20 13:11:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25104, 261, 2, 15397, 4.99, '2007-03-22 21:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25105, 262, 2, 10421, 0.99, '2007-03-01 06:42:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25106, 262, 2, 10770, 0.99, '2007-03-01 19:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25107, 262, 2, 13466, 2.99, '2007-03-19 23:23:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25108, 262, 1, 13808, 5.99, '2007-03-20 11:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25109, 262, 1, 14180, 4.99, '2007-03-21 01:44:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25110, 262, 2, 14465, 3.99, '2007-03-21 11:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25111, 262, 2, 14834, 6.99, '2007-03-22 00:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25112, 262, 2, 15270, 3.99, '2007-03-22 17:17:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25113, 262, 1, 15456, 0.99, '2007-03-22 23:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25114, 262, 1, 15640, 4.99, '2007-03-23 06:33:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25115, 262, 2, 15771, 4.99, '2007-03-23 11:47:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25116, 262, 1, 15918, 3.99, '2007-03-23 16:26:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25117, 263, 1, 10476, 6.99, '2007-03-01 08:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25118, 263, 1, 10775, 2.99, '2007-03-01 19:28:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25119, 263, 1, 11339, 2.99, '2007-03-02 15:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25120, 263, 1, 11822, 0.99, '2007-03-17 11:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25121, 263, 2, 12057, 9.99, '2007-03-17 19:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25122, 263, 2, 12432, 5.99, '2007-03-18 09:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25123, 263, 2, 12919, 6.99, '2007-03-19 03:00:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25124, 263, 1, 14335, 3.99, '2007-03-21 07:01:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25125, 263, 2, 14448, 6.99, '2007-03-21 10:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25126, 263, 1, 15322, 4.99, '2007-03-22 18:48:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25127, 263, 2, 15922, 7.99, '2007-03-23 16:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25128, 264, 2, 10792, 2.99, '2007-03-01 20:12:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25129, 264, 1, 11527, 3.99, '2007-03-16 22:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25130, 264, 2, 11533, 0.99, '2007-03-16 23:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25131, 264, 1, 11539, 2.99, '2007-03-16 23:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25132, 264, 1, 12518, 4.99, '2007-03-18 12:09:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25133, 264, 2, 13590, 2.99, '2007-03-20 04:17:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25134, 264, 1, 13664, 5.99, '2007-03-20 06:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25135, 264, 1, 15595, 4.99, '2007-03-23 04:47:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25136, 265, 2, 10592, 3.99, '2007-03-01 12:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25137, 265, 2, 11000, 3.99, '2007-03-02 03:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25138, 265, 1, 12207, 1.99, '2007-03-18 00:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25139, 265, 2, 12346, 4.99, '2007-03-18 05:46:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25140, 265, 2, 13700, 8.99, '2007-03-20 07:54:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25141, 265, 2, 14125, 4.99, '2007-03-21 00:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25142, 265, 1, 14547, 6.99, '2007-03-21 14:20:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25143, 265, 2, 14556, 6.99, '2007-03-21 14:31:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25144, 265, 1, 14943, 2.99, '2007-03-22 04:28:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25145, 266, 2, 10747, 4.99, '2007-03-01 18:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25146, 266, 2, 10910, 5.99, '2007-03-02 00:23:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25147, 266, 2, 11233, 5.99, '2007-03-02 11:34:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25148, 266, 1, 11321, 4.99, '2007-03-02 14:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25149, 266, 2, 11626, 0.99, '2007-03-17 02:54:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25150, 266, 1, 11726, 0.99, '2007-03-17 06:39:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25151, 266, 1, 12255, 4.99, '2007-03-18 02:35:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25152, 266, 2, 12378, 0.99, '2007-03-18 06:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25153, 266, 1, 12405, 6.99, '2007-03-18 08:05:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25154, 266, 1, 12715, 4.99, '2007-03-18 19:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25155, 266, 1, 13468, 8.99, '2007-03-19 23:25:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25156, 266, 1, 13556, 6.99, '2007-03-20 02:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25157, 266, 1, 14080, 1.99, '2007-03-20 21:58:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25158, 266, 1, 14492, 2.99, '2007-03-21 12:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25159, 266, 1, 14877, 0.99, '2007-03-22 02:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25160, 266, 1, 15181, 2.99, '2007-03-22 14:14:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25161, 266, 1, 15346, 4.99, '2007-03-22 19:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25162, 259, 2, 4591, 1.99, '2007-03-23 04:41:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25163, 267, 2, 9807, 2.99, '2007-04-30 09:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25164, 267, 2, 10048, 4.99, '2007-04-30 17:37:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25165, 268, 2, 3670, 4.99, '2007-04-06 07:25:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25166, 268, 2, 4626, 4.99, '2007-04-08 06:46:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25167, 268, 1, 5039, 7.99, '2007-04-09 01:43:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25168, 268, 2, 5671, 2.99, '2007-04-10 06:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25169, 268, 2, 5793, 2.99, '2007-04-10 13:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25170, 268, 2, 5888, 6.99, '2007-04-10 18:20:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25171, 268, 1, 6120, 3.99, '2007-04-11 06:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25172, 268, 2, 6489, 1.99, '2007-04-12 00:51:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25173, 268, 1, 8931, 2.99, '2007-04-30 00:58:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25174, 268, 2, 9436, 7.99, '2007-04-30 20:01:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25175, 268, 2, 9531, 3.99, '2007-04-30 23:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25176, 268, 1, 10040, 1.99, '2007-04-30 17:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25177, 269, 1, 4125, 9.99, '2007-04-07 05:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25178, 269, 2, 4804, 0.99, '2007-04-08 15:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25179, 269, 2, 4880, 6.99, '2007-04-08 18:04:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25180, 269, 1, 6440, 2.99, '2007-04-11 22:53:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25181, 269, 1, 6626, 5.99, '2007-04-12 07:44:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25182, 269, 2, 6804, 4.99, '2007-04-12 15:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25183, 269, 1, 7032, 4.99, '2007-04-27 01:31:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25184, 269, 1, 7537, 6.99, '2007-04-27 20:04:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25185, 269, 1, 7972, 2.99, '2007-04-28 12:36:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25186, 270, 1, 3501, 3.99, '2007-04-05 22:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25187, 270, 1, 3987, 9.99, '2007-04-06 21:56:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25188, 270, 2, 5533, 0.99, '2007-04-10 00:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25189, 270, 2, 6520, 4.99, '2007-04-12 02:33:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25190, 270, 1, 8355, 2.99, '2007-04-29 03:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25191, 270, 2, 8618, 3.99, '2007-04-29 12:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25192, 270, 1, 10069, 3.99, '2007-04-30 18:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25193, 271, 1, 3640, 1.99, '2007-04-06 05:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25194, 271, 2, 4545, 2.99, '2007-04-08 02:46:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25195, 271, 2, 5878, 1.99, '2007-04-10 17:38:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25196, 271, 1, 5922, 2.99, '2007-04-10 20:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25197, 271, 1, 6024, 2.99, '2007-04-11 00:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25198, 271, 1, 7618, 3.99, '2007-04-27 22:52:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25199, 271, 1, 8592, 0.99, '2007-04-29 11:02:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25200, 271, 1, 9821, 4.99, '2007-04-30 10:16:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25201, 271, 2, 10143, 7.99, '2007-04-30 20:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25202, 272, 2, 5047, 3.99, '2007-04-09 02:12:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25203, 272, 2, 5158, 2.99, '2007-04-09 07:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25204, 272, 2, 7300, 7.99, '2007-04-27 11:18:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25205, 272, 2, 7658, 2.99, '2007-04-28 00:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25206, 272, 1, 8248, 7.99, '2007-04-28 23:10:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25207, 272, 2, 9787, 10.99, '2007-04-30 08:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25208, 273, 2, 3556, 2.99, '2007-04-06 01:14:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25209, 273, 1, 4937, 5.99, '2007-04-08 20:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25210, 273, 1, 5256, 7.99, '2007-04-09 12:24:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25211, 273, 2, 5435, 7.99, '2007-04-09 19:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25212, 273, 1, 5605, 2.99, '2007-04-10 03:35:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25213, 273, 1, 6592, 8.99, '2007-04-12 05:48:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25214, 273, 1, 6635, 1.99, '2007-04-12 08:16:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25215, 273, 2, 6696, 2.99, '2007-04-12 11:12:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25216, 273, 1, 6717, 5.99, '2007-04-12 12:03:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25217, 273, 1, 8449, 2.99, '2007-04-29 06:10:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25218, 273, 1, 9186, 4.99, '2007-04-30 10:42:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25219, 273, 2, 9285, 5.99, '2007-04-30 13:54:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25220, 273, 2, 9391, 0.99, '2007-04-30 18:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25221, 273, 2, 9693, 3.99, '2007-04-30 05:40:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25222, 273, 2, 9729, 0.99, '2007-04-30 07:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25223, 274, 2, 3532, 5.99, '2007-04-05 23:53:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25224, 274, 1, 4147, 2.99, '2007-04-07 07:00:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25225, 274, 2, 4582, 2.99, '2007-04-08 04:37:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25226, 274, 2, 6389, 3.99, '2007-04-11 20:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25227, 274, 2, 8259, 0.99, '2007-04-28 23:33:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25228, 274, 2, 8406, 5.99, '2007-04-29 05:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25229, 274, 2, 8517, 7.99, '2007-04-29 08:29:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25230, 274, 1, 9331, 4.99, '2007-04-30 16:15:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25231, 274, 1, 9677, 4.99, '2007-04-30 05:08:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25232, 274, 2, 10059, 4.99, '2007-04-30 17:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25233, 275, 2, 4396, 0.99, '2007-04-07 19:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25234, 275, 1, 4634, 0.99, '2007-04-08 07:08:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25235, 275, 2, 4912, 9.99, '2007-04-08 19:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25236, 275, 2, 6301, 5.99, '2007-04-11 16:22:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25237, 275, 2, 6856, 0.99, '2007-04-12 18:18:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25238, 275, 1, 7553, 2.99, '2007-04-27 20:40:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25239, 275, 2, 7596, 4.99, '2007-04-27 22:02:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25240, 275, 1, 8746, 2.99, '2007-04-29 17:31:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25241, 275, 2, 9258, 2.99, '2007-04-30 12:59:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25242, 276, 2, 3714, 2.99, '2007-04-06 09:19:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25243, 276, 1, 4715, 0.99, '2007-04-08 10:44:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25244, 276, 2, 5186, 4.99, '2007-04-09 08:47:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25245, 276, 2, 5246, 4.99, '2007-04-09 11:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25246, 276, 2, 7282, 5.99, '2007-04-27 10:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25247, 276, 2, 7842, 2.99, '2007-04-28 07:38:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25248, 276, 1, 9070, 0.99, '2007-04-30 06:09:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25249, 276, 1, 9080, 1.99, '2007-04-30 06:31:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25250, 276, 1, 9102, 4.99, '2007-04-30 07:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25251, 276, 1, 9229, 8.99, '2007-04-30 12:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25252, 276, 2, 10149, 5.99, '2007-04-30 20:49:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25253, 277, 2, 3740, 5.99, '2007-04-06 10:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25254, 277, 2, 3897, 2.99, '2007-04-06 17:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25255, 277, 1, 4290, 4.99, '2007-04-07 14:15:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25256, 277, 2, 4987, 5.99, '2007-04-08 23:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25257, 277, 1, 5861, 0.99, '2007-04-10 16:42:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25258, 277, 1, 5913, 2.99, '2007-04-10 19:27:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25259, 277, 2, 6455, 2.99, '2007-04-11 23:30:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25260, 277, 1, 6487, 5.99, '2007-04-12 00:45:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25261, 277, 2, 7423, 4.99, '2007-04-27 15:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25262, 277, 2, 8410, 2.99, '2007-04-29 05:10:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25263, 277, 2, 9669, 4.99, '2007-04-30 05:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25264, 277, 1, 9901, 0.99, '2007-04-30 12:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25265, 278, 1, 3776, 2.99, '2007-04-06 12:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25266, 278, 1, 4430, 4.99, '2007-04-07 21:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25267, 278, 2, 4866, 8.99, '2007-04-08 17:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25268, 278, 2, 6869, 4.99, '2007-04-12 18:40:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25269, 278, 1, 7239, 0.99, '2007-04-27 08:48:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25270, 278, 2, 7834, 0.99, '2007-04-28 07:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25271, 278, 2, 8222, 5.99, '2007-04-28 22:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25272, 278, 1, 8953, 4.99, '2007-04-30 01:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25273, 278, 2, 9448, 2.99, '2007-04-30 20:24:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25274, 279, 1, 4476, 4.99, '2007-04-07 23:02:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25275, 279, 1, 4978, 7.99, '2007-04-08 22:50:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25276, 279, 2, 5248, 2.99, '2007-04-09 11:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25277, 279, 1, 5361, 9.99, '2007-04-09 16:43:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25278, 279, 1, 6176, 0.99, '2007-04-11 09:16:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25279, 279, 1, 7947, 2.99, '2007-04-28 11:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25280, 279, 2, 8559, 3.99, '2007-04-29 09:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25281, 279, 2, 9820, 5.99, '2007-04-30 10:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25282, 279, 2, 10177, 2.99, '2007-04-30 22:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25283, 280, 1, 4616, 4.99, '2007-04-08 06:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25284, 280, 2, 6851, 0.99, '2007-04-12 18:00:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25285, 280, 1, 7070, 4.99, '2007-04-27 02:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25286, 280, 2, 7901, 0.99, '2007-04-28 09:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25287, 280, 2, 8319, 0.99, '2007-04-29 02:13:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25288, 280, 1, 8365, 0.99, '2007-04-29 03:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25289, 280, 1, 8565, 7.99, '2007-04-29 10:03:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25290, 280, 2, 8695, 6.99, '2007-04-29 15:13:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25291, 280, 2, 8744, 3.99, '2007-04-29 17:26:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25292, 280, 1, 8912, 0.99, '2007-04-29 23:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25293, 280, 2, 9103, 0.99, '2007-04-30 07:17:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25294, 281, 1, 4607, 0.99, '2007-04-08 05:43:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25295, 281, 2, 4864, 6.99, '2007-04-08 17:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25296, 281, 2, 5410, 5.99, '2007-04-09 18:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25297, 281, 2, 6825, 0.99, '2007-04-12 16:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25298, 281, 2, 7034, 2.99, '2007-04-27 01:32:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25299, 281, 1, 7525, 3.99, '2007-04-27 19:41:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25300, 281, 2, 8131, 0.99, '2007-04-28 18:23:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25301, 281, 2, 8180, 4.99, '2007-04-28 20:33:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25302, 282, 2, 3675, 2.99, '2007-04-06 07:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25303, 282, 1, 3885, 2.99, '2007-04-06 17:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25304, 282, 1, 4359, 2.99, '2007-04-07 17:58:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25305, 282, 2, 4412, 4.99, '2007-04-07 20:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25306, 282, 1, 5113, 0.99, '2007-04-09 05:34:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25307, 282, 2, 5319, 8.99, '2007-04-09 14:46:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25308, 282, 1, 5926, 6.99, '2007-04-10 20:22:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25309, 282, 1, 7433, 2.99, '2007-04-27 16:00:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25310, 282, 2, 7534, 3.99, '2007-04-27 19:54:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25311, 282, 1, 8223, 6.99, '2007-04-28 22:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25312, 282, 2, 8270, 4.99, '2007-04-28 23:55:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25313, 282, 2, 8468, 1.99, '2007-04-29 06:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25314, 282, 2, 8743, 0.99, '2007-04-29 17:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25315, 282, 2, 8973, 1.99, '2007-04-30 02:37:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25316, 282, 2, 9658, 9.99, '2007-04-30 04:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25317, 283, 1, 3534, 4.99, '2007-04-06 00:00:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25318, 283, 1, 3568, 6.99, '2007-04-06 01:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25319, 283, 2, 3590, 4.99, '2007-04-06 03:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25320, 283, 2, 3672, 0.99, '2007-04-06 07:30:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25321, 283, 2, 4683, 2.99, '2007-04-08 09:06:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25322, 283, 2, 4876, 1.99, '2007-04-08 17:56:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25323, 283, 2, 5989, 2.99, '2007-04-10 23:26:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25324, 283, 1, 6075, 0.99, '2007-04-11 03:31:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25325, 283, 1, 6300, 1.99, '2007-04-11 16:18:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25326, 283, 2, 6313, 0.99, '2007-04-11 16:58:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25327, 283, 1, 6827, 4.99, '2007-04-12 17:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25328, 283, 1, 7504, 0.99, '2007-04-27 18:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25329, 283, 1, 7816, 0.99, '2007-04-28 06:42:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25330, 283, 2, 9353, 4.99, '2007-04-30 16:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25331, 283, 2, 9478, 2.99, '2007-04-30 21:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25332, 283, 2, 9572, 2.99, '2007-04-30 01:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25333, 283, 2, 9918, 2.99, '2007-04-30 13:23:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25334, 284, 1, 3572, 0.99, '2007-04-06 02:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25335, 284, 2, 4081, 2.99, '2007-04-07 03:38:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25336, 284, 1, 4759, 7.99, '2007-04-08 13:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25337, 284, 2, 4931, 7.99, '2007-04-08 20:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25338, 284, 1, 5161, 6.99, '2007-04-09 07:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25339, 284, 1, 6276, 5.99, '2007-04-11 14:44:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25340, 284, 2, 6982, 2.99, '2007-04-26 23:22:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25341, 284, 1, 7164, 6.99, '2007-04-27 06:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25342, 284, 1, 7463, 4.99, '2007-04-27 17:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25343, 284, 2, 7716, 8.99, '2007-04-28 03:01:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25344, 284, 1, 8888, 2.99, '2007-04-29 23:08:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25345, 284, 1, 9790, 0.99, '2007-04-30 09:02:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25346, 285, 2, 4007, 6.99, '2007-04-06 22:54:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25347, 285, 2, 5112, 2.99, '2007-04-09 05:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25348, 285, 1, 5683, 9.99, '2007-04-10 07:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25349, 285, 1, 6010, 0.99, '2007-04-11 00:20:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25350, 285, 2, 6083, 3.99, '2007-04-11 03:41:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25351, 285, 1, 6094, 4.99, '2007-04-11 04:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25352, 285, 2, 6333, 4.99, '2007-04-11 17:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25353, 285, 2, 6644, 0.99, '2007-04-12 09:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25354, 285, 1, 7211, 6.99, '2007-04-27 07:48:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25355, 285, 1, 7452, 9.99, '2007-04-27 16:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25356, 285, 1, 7745, 9.99, '2007-04-28 04:14:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25357, 285, 1, 8154, 4.99, '2007-04-28 19:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25358, 285, 2, 8466, 0.99, '2007-04-29 06:53:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25359, 286, 2, 3592, 4.99, '2007-04-06 03:07:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25360, 286, 2, 3692, 3.99, '2007-04-06 08:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25361, 286, 2, 4242, 6.99, '2007-04-07 12:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25362, 286, 2, 4461, 9.99, '2007-04-07 22:28:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25363, 286, 1, 4707, 4.99, '2007-04-08 10:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25364, 286, 1, 4894, 2.99, '2007-04-08 18:49:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25365, 286, 1, 5796, 4.99, '2007-04-10 13:11:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25366, 286, 2, 6611, 2.99, '2007-04-12 06:48:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25367, 286, 1, 7254, 2.99, '2007-04-27 09:17:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25368, 286, 1, 7299, 2.99, '2007-04-27 11:18:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25369, 286, 1, 7368, 0.99, '2007-04-27 13:34:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25370, 286, 1, 7422, 2.99, '2007-04-27 15:39:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25371, 286, 1, 7719, 6.99, '2007-04-28 03:07:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25372, 286, 2, 8399, 0.99, '2007-04-29 04:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25373, 286, 2, 9280, 6.99, '2007-04-30 13:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25374, 286, 1, 9809, 3.99, '2007-04-30 09:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25375, 286, 2, 10105, 5.99, '2007-04-30 19:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25376, 287, 2, 4877, 4.99, '2007-04-08 17:59:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25377, 287, 2, 5346, 1.99, '2007-04-09 15:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25378, 287, 1, 5593, 3.99, '2007-04-10 03:01:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25379, 287, 2, 5761, 0.99, '2007-04-10 11:14:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25380, 287, 2, 6379, 3.99, '2007-04-11 20:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25381, 287, 1, 6397, 2.99, '2007-04-11 21:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25382, 287, 2, 7402, 2.99, '2007-04-27 14:48:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25383, 287, 2, 7777, 2.99, '2007-04-28 05:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25384, 287, 2, 8994, 6.99, '2007-04-30 03:19:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25385, 287, 2, 9716, 1.99, '2007-04-30 06:52:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25386, 287, 1, 10027, 6.99, '2007-04-30 17:02:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25387, 288, 1, 3958, 3.99, '2007-04-06 20:35:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25388, 288, 1, 4692, 2.99, '2007-04-08 09:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25389, 288, 2, 4758, 0.99, '2007-04-08 13:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25390, 288, 1, 6399, 2.99, '2007-04-11 21:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25391, 288, 2, 6518, 3.99, '2007-04-12 02:28:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25392, 288, 2, 7744, 0.99, '2007-04-28 04:06:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25393, 288, 2, 7855, 2.99, '2007-04-28 08:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25394, 288, 2, 9429, 2.99, '2007-04-30 19:47:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25395, 288, 1, 9732, 0.99, '2007-04-30 07:24:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25396, 289, 1, 3588, 2.99, '2007-04-06 02:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25397, 289, 2, 4622, 0.99, '2007-04-08 06:31:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25398, 289, 1, 5089, 4.99, '2007-04-09 04:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25399, 289, 2, 5342, 8.99, '2007-04-09 15:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25400, 289, 2, 5584, 4.99, '2007-04-10 02:43:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25401, 289, 2, 5724, 0.99, '2007-04-10 09:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25402, 289, 2, 6007, 3.99, '2007-04-11 00:11:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25403, 289, 2, 6536, 7.99, '2007-04-12 03:12:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25404, 289, 1, 7151, 4.99, '2007-04-27 05:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25405, 289, 1, 7162, 4.99, '2007-04-27 06:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25406, 289, 2, 7325, 0.99, '2007-04-27 12:15:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25407, 289, 1, 9498, 2.99, '2007-04-30 22:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25408, 290, 2, 4039, 4.99, '2007-04-07 01:26:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25409, 290, 1, 4073, 0.99, '2007-04-07 03:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25410, 290, 2, 4416, 0.99, '2007-04-07 20:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25411, 290, 1, 5105, 2.99, '2007-04-09 05:07:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25412, 290, 2, 5214, 5.99, '2007-04-09 10:11:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25413, 290, 2, 5827, 2.99, '2007-04-10 14:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25414, 290, 2, 6816, 4.99, '2007-04-12 16:47:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25415, 290, 1, 6952, 4.99, '2007-04-26 22:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25416, 290, 2, 7265, 2.99, '2007-04-27 09:47:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25417, 290, 1, 7650, 1.99, '2007-04-28 00:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25418, 290, 1, 8639, 4.99, '2007-04-29 12:58:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25419, 290, 1, 9000, 7.99, '2007-04-30 03:27:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25420, 290, 1, 9413, 0.99, '2007-04-30 19:13:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25421, 290, 2, 10096, 3.99, '2007-04-30 19:07:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25422, 290, 1, 10194, 1.99, '2007-04-30 23:02:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25423, 291, 2, 3512, 4.99, '2007-04-05 23:11:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25424, 291, 2, 4862, 3.99, '2007-04-08 17:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25425, 291, 2, 5754, 2.99, '2007-04-10 11:01:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25426, 291, 2, 6516, 4.99, '2007-04-12 02:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25427, 291, 1, 6796, 2.99, '2007-04-12 15:12:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25428, 291, 1, 7561, 5.99, '2007-04-27 20:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25429, 291, 2, 7564, 0.99, '2007-04-27 20:59:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25430, 291, 1, 8690, 0.99, '2007-04-29 15:07:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25431, 291, 2, 8697, 4.99, '2007-04-29 15:14:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25432, 291, 1, 9165, 5.99, '2007-04-30 09:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25433, 291, 2, 9201, 5.99, '2007-04-30 11:10:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25434, 291, 2, 9919, 7.99, '2007-04-30 13:24:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25435, 292, 2, 3557, 0.99, '2007-04-06 01:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25436, 292, 1, 4200, 4.99, '2007-04-07 09:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25437, 292, 2, 5095, 4.99, '2007-04-09 04:36:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25438, 292, 2, 5257, 0.99, '2007-04-09 12:25:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25439, 292, 1, 5940, 4.99, '2007-04-10 20:59:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25440, 292, 1, 6270, 8.99, '2007-04-11 14:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25441, 292, 1, 6900, 6.99, '2007-04-12 20:13:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25442, 292, 2, 7199, 5.99, '2007-04-27 07:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25443, 292, 1, 7216, 2.99, '2007-04-27 07:56:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25444, 292, 1, 7545, 2.99, '2007-04-27 20:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25445, 292, 1, 7766, 4.99, '2007-04-28 05:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25446, 292, 1, 8047, 2.99, '2007-04-28 15:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25447, 292, 2, 8842, 4.99, '2007-04-29 21:32:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25448, 292, 1, 8990, 8.99, '2007-04-30 03:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25449, 292, 1, 9792, 5.99, '2007-04-30 09:12:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25450, 292, 2, 9819, 1.99, '2007-04-30 10:07:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25451, 293, 1, 3906, 3.99, '2007-04-06 18:04:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25452, 293, 2, 4343, 0.99, '2007-04-07 17:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25453, 293, 2, 4542, 4.99, '2007-04-08 02:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25454, 293, 2, 4944, 6.99, '2007-04-08 21:12:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25455, 293, 2, 5765, 3.99, '2007-04-10 11:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25456, 293, 1, 6432, 9.99, '2007-04-11 22:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25457, 293, 2, 7607, 4.99, '2007-04-27 22:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25458, 293, 1, 8589, 4.99, '2007-04-29 10:56:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25459, 293, 1, 8745, 2.99, '2007-04-29 17:31:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25460, 293, 2, 9123, 2.99, '2007-04-30 08:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25461, 294, 1, 3681, 4.99, '2007-04-06 07:47:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25462, 294, 2, 4019, 4.99, '2007-04-06 23:56:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25463, 294, 1, 4786, 7.99, '2007-04-08 14:41:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25464, 294, 2, 6185, 5.99, '2007-04-11 09:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25465, 294, 2, 7415, 6.99, '2007-04-27 15:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25466, 294, 1, 7765, 4.99, '2007-04-28 05:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25467, 294, 2, 8843, 4.99, '2007-04-29 21:32:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25468, 294, 2, 9194, 2.99, '2007-04-30 10:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25469, 294, 1, 9522, 2.99, '2007-04-30 23:23:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25470, 294, 2, 9607, 0.99, '2007-04-30 02:19:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25471, 294, 2, 10186, 0.99, '2007-04-30 22:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25472, 294, 2, 10220, 4.99, '2007-04-30 23:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25473, 295, 2, 3496, 1.99, '2007-04-05 22:27:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25474, 295, 1, 3876, 9.99, '2007-04-06 16:49:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25475, 295, 1, 4164, 1.99, '2007-04-07 07:48:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25476, 295, 1, 4432, 1.99, '2007-04-07 21:08:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25477, 295, 1, 5019, 2.99, '2007-04-09 00:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25478, 295, 2, 5053, 4.99, '2007-04-09 02:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25479, 295, 2, 5283, 2.99, '2007-04-09 13:35:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25480, 295, 2, 5994, 4.99, '2007-04-10 23:42:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25481, 295, 1, 6252, 2.99, '2007-04-11 13:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25482, 295, 2, 6331, 3.99, '2007-04-11 17:45:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25483, 295, 2, 8087, 0.99, '2007-04-28 16:49:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25484, 295, 1, 8108, 7.99, '2007-04-28 17:36:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25485, 295, 1, 8840, 9.99, '2007-04-29 21:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25486, 295, 2, 8932, 2.99, '2007-04-30 00:59:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25487, 295, 1, 9425, 7.99, '2007-04-30 19:39:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25488, 295, 2, 9692, 8.99, '2007-04-30 05:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25489, 295, 2, 9793, 4.99, '2007-04-30 09:13:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25490, 295, 2, 10160, 4.99, '2007-04-30 21:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25491, 295, 2, 10222, 0.99, '2007-04-30 23:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25492, 296, 2, 3486, 7.99, '2007-04-05 21:58:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25493, 296, 1, 3810, 2.99, '2007-04-06 13:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25494, 296, 1, 4480, 4.99, '2007-04-07 23:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25495, 296, 2, 5090, 0.99, '2007-04-09 04:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25496, 296, 1, 5589, 4.99, '2007-04-10 02:51:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25497, 296, 2, 6016, 4.99, '2007-04-11 00:33:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25498, 296, 1, 6398, 5.99, '2007-04-11 21:03:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25499, 296, 1, 6967, 6.99, '2007-04-26 22:44:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25500, 296, 2, 7568, 4.99, '2007-04-27 21:07:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25501, 296, 2, 8171, 0.99, '2007-04-28 20:01:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25502, 296, 1, 9249, 5.99, '2007-04-30 12:43:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25503, 296, 1, 9304, 2.99, '2007-04-30 15:10:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25504, 297, 1, 3582, 0.99, '2007-04-06 02:39:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25505, 297, 2, 4621, 2.99, '2007-04-08 06:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25506, 297, 1, 4929, 5.99, '2007-04-08 20:34:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25507, 297, 1, 5743, 8.99, '2007-04-10 10:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25508, 297, 2, 6036, 2.99, '2007-04-11 01:30:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25509, 297, 1, 6064, 6.99, '2007-04-11 02:51:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25510, 297, 1, 6156, 4.99, '2007-04-11 08:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25511, 297, 1, 6984, 2.99, '2007-04-26 23:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25512, 297, 2, 7867, 0.99, '2007-04-28 08:37:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25513, 297, 1, 7933, 0.99, '2007-04-28 10:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25514, 297, 2, 9014, 2.99, '2007-04-30 03:47:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25515, 297, 2, 9674, 5.99, '2007-04-30 05:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25516, 297, 1, 10153, 0.99, '2007-04-30 20:58:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25517, 298, 2, 3479, 0.99, '2007-04-05 21:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25518, 298, 1, 3728, 2.99, '2007-04-06 09:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25519, 298, 2, 4291, 2.99, '2007-04-07 14:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25520, 298, 1, 4936, 3.99, '2007-04-08 20:53:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25521, 298, 2, 5166, 2.99, '2007-04-09 07:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25522, 298, 1, 5247, 2.99, '2007-04-09 11:54:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25523, 298, 2, 6802, 0.99, '2007-04-12 15:42:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25524, 298, 2, 7802, 0.99, '2007-04-28 06:20:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25525, 298, 1, 7869, 7.99, '2007-04-28 08:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25526, 298, 2, 8737, 5.99, '2007-04-29 17:00:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25527, 299, 2, 3497, 0.99, '2007-04-05 22:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25528, 299, 2, 4153, 5.99, '2007-04-07 07:21:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25529, 299, 1, 4350, 2.99, '2007-04-07 17:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25530, 299, 2, 5033, 1.99, '2007-04-09 01:10:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25531, 299, 1, 5642, 2.99, '2007-04-10 05:14:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25532, 299, 2, 6732, 0.99, '2007-04-12 12:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25533, 299, 1, 6853, 7.99, '2007-04-12 18:06:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25534, 299, 1, 7264, 4.99, '2007-04-27 09:47:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25535, 299, 1, 7746, 2.99, '2007-04-28 04:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25536, 299, 2, 7862, 9.99, '2007-04-28 08:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25537, 299, 1, 9520, 2.99, '2007-04-30 23:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25538, 299, 1, 10201, 0.99, '2007-04-30 23:10:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25539, 300, 1, 3775, 0.99, '2007-04-06 11:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25540, 300, 1, 4030, 0.99, '2007-04-07 00:54:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25541, 300, 2, 5562, 2.99, '2007-04-10 01:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25542, 300, 1, 5705, 10.99, '2007-04-10 08:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25543, 300, 2, 6111, 4.99, '2007-04-11 05:55:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25544, 300, 1, 6822, 5.99, '2007-04-12 16:52:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25545, 300, 1, 6998, 4.99, '2007-04-26 23:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25546, 300, 1, 7815, 4.99, '2007-04-28 06:42:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25547, 300, 1, 8117, 6.99, '2007-04-28 17:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25548, 300, 1, 8210, 6.99, '2007-04-28 21:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25549, 300, 1, 8283, 3.99, '2007-04-29 00:20:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25550, 300, 1, 9078, 0.99, '2007-04-30 06:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25551, 300, 2, 9127, 2.99, '2007-04-30 08:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25552, 300, 2, 9791, 0.99, '2007-04-30 09:03:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25553, 301, 2, 4316, 4.99, '2007-04-07 16:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25554, 301, 2, 4834, 3.99, '2007-04-08 16:36:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25555, 301, 1, 5119, 6.99, '2007-04-09 05:42:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25556, 301, 2, 5511, 4.99, '2007-04-09 23:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25557, 301, 2, 5730, 2.99, '2007-04-10 09:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25558, 301, 2, 5807, 2.99, '2007-04-10 13:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25559, 301, 2, 6833, 6.99, '2007-04-12 17:22:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25560, 301, 2, 7318, 4.99, '2007-04-27 11:53:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25561, 301, 2, 7818, 4.99, '2007-04-28 06:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25562, 301, 2, 9435, 4.99, '2007-04-30 19:59:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25563, 302, 2, 4676, 4.99, '2007-04-08 08:54:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25564, 302, 2, 5498, 0.99, '2007-04-09 22:55:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25565, 302, 2, 5682, 2.99, '2007-04-10 07:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25566, 302, 2, 5709, 0.99, '2007-04-10 09:00:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25567, 302, 2, 5821, 4.99, '2007-04-10 14:35:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25568, 302, 2, 6623, 7.99, '2007-04-12 07:34:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25569, 302, 1, 7183, 0.99, '2007-04-27 06:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25570, 302, 1, 7411, 6.99, '2007-04-27 15:10:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25571, 302, 1, 8363, 6.99, '2007-04-29 03:38:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25572, 302, 2, 8646, 0.99, '2007-04-29 13:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25573, 302, 1, 8795, 2.99, '2007-04-29 19:32:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25574, 302, 1, 9146, 7.99, '2007-04-30 09:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25575, 302, 2, 9358, 2.99, '2007-04-30 17:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25576, 302, 1, 9374, 8.99, '2007-04-30 17:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25577, 302, 2, 9581, 5.99, '2007-04-30 01:31:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25578, 303, 1, 5140, 4.99, '2007-04-09 06:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25579, 303, 1, 6205, 4.99, '2007-04-11 10:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25580, 303, 2, 6219, 4.99, '2007-04-11 11:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25581, 303, 1, 6464, 4.99, '2007-04-11 23:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25582, 303, 1, 7023, 4.99, '2007-04-27 01:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25583, 303, 2, 7502, 2.99, '2007-04-27 18:47:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25584, 303, 1, 8409, 0.99, '2007-04-29 05:09:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25585, 303, 2, 8734, 6.99, '2007-04-29 16:56:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25586, 303, 2, 8764, 0.99, '2007-04-29 18:07:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25587, 303, 2, 10209, 2.99, '2007-04-30 23:25:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25588, 304, 1, 4466, 6.99, '2007-04-07 22:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25589, 304, 2, 4812, 8.99, '2007-04-08 15:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25590, 304, 1, 5411, 2.99, '2007-04-09 18:52:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25591, 304, 1, 5712, 4.99, '2007-04-10 09:08:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25592, 304, 2, 5749, 3.99, '2007-04-10 10:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25593, 304, 2, 5795, 0.99, '2007-04-10 13:04:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25594, 304, 2, 6107, 0.99, '2007-04-11 05:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25595, 304, 1, 6737, 4.99, '2007-04-12 12:45:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25596, 304, 2, 7551, 4.99, '2007-04-27 20:27:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25597, 304, 2, 8055, 4.99, '2007-04-28 15:30:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25598, 304, 1, 9930, 0.99, '2007-04-30 13:46:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25599, 304, 1, 9992, 6.99, '2007-04-30 15:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25600, 305, 2, 4260, 4.99, '2007-04-07 12:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25601, 305, 1, 4638, 2.99, '2007-04-08 07:25:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25602, 305, 2, 5041, 0.99, '2007-04-09 01:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25603, 305, 1, 5052, 2.99, '2007-04-09 02:28:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25604, 305, 2, 5582, 4.99, '2007-04-10 02:36:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25605, 305, 1, 5745, 8.99, '2007-04-10 10:38:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25606, 305, 1, 6134, 7.99, '2007-04-11 06:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25607, 305, 2, 6619, 0.99, '2007-04-12 07:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25608, 305, 2, 8865, 4.99, '2007-04-29 22:23:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25609, 305, 2, 9119, 4.99, '2007-04-30 07:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25610, 306, 1, 3814, 6.99, '2007-04-06 13:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25611, 306, 2, 4484, 5.99, '2007-04-07 23:34:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25612, 306, 2, 4596, 1.99, '2007-04-08 05:09:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25613, 306, 2, 5581, 2.99, '2007-04-10 02:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25614, 306, 2, 6868, 2.99, '2007-04-12 18:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25615, 306, 1, 6953, 4.99, '2007-04-26 22:21:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25616, 306, 1, 7225, 6.99, '2007-04-27 08:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25617, 306, 1, 7232, 4.99, '2007-04-27 08:32:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25618, 306, 2, 7701, 2.99, '2007-04-28 02:22:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25619, 306, 2, 8620, 0.99, '2007-04-29 12:19:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25620, 306, 1, 8702, 0.99, '2007-04-29 15:33:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25621, 306, 2, 9242, 4.99, '2007-04-30 12:32:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25622, 306, 2, 9395, 4.99, '2007-04-30 18:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25623, 306, 1, 9774, 0.99, '2007-04-30 08:26:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25624, 306, 1, 10202, 6.99, '2007-04-30 23:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25625, 307, 1, 3962, 6.99, '2007-04-06 20:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25626, 307, 1, 3985, 4.99, '2007-04-06 21:52:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25627, 307, 1, 4522, 2.99, '2007-04-08 01:31:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25628, 307, 1, 4868, 4.99, '2007-04-08 17:42:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25629, 307, 1, 5871, 3.99, '2007-04-10 17:14:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25630, 307, 2, 6125, 6.99, '2007-04-11 06:32:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25631, 307, 1, 6256, 0.99, '2007-04-11 13:47:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25632, 307, 1, 6991, 10.99, '2007-04-26 23:31:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25633, 307, 1, 7536, 2.99, '2007-04-27 20:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25634, 307, 1, 7760, 3.99, '2007-04-28 04:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25635, 307, 1, 7929, 0.99, '2007-04-28 10:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25636, 307, 1, 8647, 6.99, '2007-04-29 13:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25637, 307, 1, 10135, 4.99, '2007-04-30 20:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25638, 308, 1, 4002, 3.99, '2007-04-06 22:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25639, 308, 1, 4285, 8.99, '2007-04-07 14:03:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25640, 308, 1, 5946, 2.99, '2007-04-10 21:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25641, 308, 2, 8869, 0.99, '2007-04-29 22:34:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25642, 308, 1, 9479, 2.99, '2007-04-30 21:50:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25643, 308, 1, 9746, 7.99, '2007-04-30 07:45:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25644, 309, 2, 3837, 4.99, '2007-04-06 14:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25645, 309, 2, 3896, 7.99, '2007-04-06 17:37:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25646, 309, 2, 4172, 4.99, '2007-04-07 08:17:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25647, 309, 1, 4540, 4.99, '2007-04-08 02:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25648, 309, 2, 5305, 8.99, '2007-04-09 14:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25649, 309, 1, 5980, 4.99, '2007-04-10 22:46:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25650, 309, 2, 6480, 4.99, '2007-04-12 00:17:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25651, 309, 2, 7214, 5.99, '2007-04-27 07:51:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25652, 309, 2, 7722, 4.99, '2007-04-28 03:13:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25653, 309, 1, 7846, 5.99, '2007-04-28 07:49:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25654, 309, 1, 8341, 4.99, '2007-04-29 03:10:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25655, 309, 1, 8501, 2.99, '2007-04-29 07:41:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25656, 309, 1, 8681, 2.99, '2007-04-29 14:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25657, 309, 1, 8917, 2.99, '2007-04-30 00:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25658, 309, 2, 9945, 2.99, '2007-04-30 14:16:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25659, 309, 1, 9949, 0.99, '2007-04-30 14:18:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25660, 310, 2, 3830, 10.99, '2007-04-06 14:29:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25661, 310, 1, 4072, 0.99, '2007-04-07 03:16:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25662, 310, 1, 5621, 5.99, '2007-04-10 04:02:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25663, 310, 2, 5836, 0.99, '2007-04-10 15:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25664, 310, 1, 7648, 5.99, '2007-04-28 00:03:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25665, 310, 2, 8637, 5.99, '2007-04-29 12:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25666, 310, 1, 8981, 7.99, '2007-04-30 02:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25667, 310, 1, 9536, 2.99, '2007-04-30 23:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25668, 311, 2, 4836, 3.99, '2007-04-08 16:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25669, 311, 2, 5224, 5.99, '2007-04-09 10:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25670, 311, 2, 6419, 4.99, '2007-04-11 22:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25671, 311, 2, 8167, 6.99, '2007-04-28 19:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25672, 311, 1, 8473, 2.99, '2007-04-29 07:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25673, 311, 1, 9503, 6.99, '2007-04-30 22:31:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25674, 311, 2, 9882, 8.99, '2007-04-30 12:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25675, 311, 1, 10134, 4.99, '2007-04-30 20:24:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25676, 312, 1, 3766, 2.99, '2007-04-06 11:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25677, 312, 1, 3792, 1.99, '2007-04-06 12:55:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25678, 312, 1, 4647, 3.99, '2007-04-08 07:56:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25679, 312, 1, 5031, 5.99, '2007-04-09 01:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25680, 312, 2, 6751, 2.99, '2007-04-12 13:19:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25681, 312, 1, 6866, 2.99, '2007-04-12 18:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25682, 312, 1, 8137, 4.99, '2007-04-28 18:35:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25683, 312, 1, 8412, 6.99, '2007-04-29 05:13:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25684, 312, 1, 8721, 4.99, '2007-04-29 16:24:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25685, 312, 1, 9016, 6.99, '2007-04-30 03:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25686, 312, 1, 9154, 3.99, '2007-04-30 09:28:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25687, 313, 2, 4552, 2.99, '2007-04-08 03:05:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25688, 313, 1, 5255, 5.99, '2007-04-09 12:19:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25689, 313, 1, 6384, 2.99, '2007-04-11 20:35:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25690, 313, 2, 7294, 0.99, '2007-04-27 11:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25691, 313, 2, 8381, 4.99, '2007-04-29 04:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25692, 313, 1, 8970, 3.99, '2007-04-30 02:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25693, 313, 2, 9836, 2.99, '2007-04-30 10:40:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25694, 314, 1, 3517, 0.99, '2007-04-05 23:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25695, 314, 1, 3656, 2.99, '2007-04-06 06:23:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25696, 314, 1, 3808, 0.99, '2007-04-06 13:44:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25697, 314, 2, 4386, 0.99, '2007-04-07 19:23:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25698, 314, 2, 5241, 4.99, '2007-04-09 11:47:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25699, 314, 2, 5856, 0.99, '2007-04-10 16:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25700, 314, 1, 6192, 5.99, '2007-04-11 10:13:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25701, 314, 1, 6666, 2.99, '2007-04-12 10:00:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25702, 314, 1, 6763, 3.99, '2007-04-12 13:55:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25703, 314, 2, 7004, 4.99, '2007-04-27 00:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25704, 314, 1, 7276, 2.99, '2007-04-27 10:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25705, 314, 2, 8022, 6.99, '2007-04-28 14:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25706, 314, 1, 8073, 3.99, '2007-04-28 15:57:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25707, 314, 2, 8105, 0.99, '2007-04-28 17:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25708, 314, 2, 8328, 6.99, '2007-04-29 02:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25709, 314, 2, 8644, 4.99, '2007-04-29 13:14:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25710, 314, 2, 9191, 3.99, '2007-04-30 10:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25711, 314, 2, 9318, 6.99, '2007-04-30 15:42:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25712, 315, 1, 4021, 2.99, '2007-04-07 00:15:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25713, 315, 1, 4992, 4.99, '2007-04-08 23:18:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25714, 315, 2, 5126, 6.99, '2007-04-09 05:54:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25715, 315, 1, 6661, 4.99, '2007-04-12 09:49:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25716, 315, 1, 6894, 4.99, '2007-04-12 19:49:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25717, 315, 1, 8416, 5.99, '2007-04-29 05:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25718, 315, 2, 8677, 6.99, '2007-04-29 14:29:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25719, 315, 2, 9735, 9.99, '2007-04-30 07:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25720, 316, 1, 4379, 2.99, '2007-04-07 19:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25721, 316, 2, 5102, 3.99, '2007-04-09 04:54:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25722, 316, 2, 5544, 7.99, '2007-04-10 01:16:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25723, 316, 1, 5618, 5.99, '2007-04-10 03:57:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25724, 316, 2, 6988, 4.99, '2007-04-26 23:28:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25725, 316, 2, 7339, 2.99, '2007-04-27 12:46:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25726, 316, 2, 7586, 2.99, '2007-04-27 21:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25727, 316, 1, 7592, 4.99, '2007-04-27 21:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25728, 316, 1, 7945, 1.99, '2007-04-28 11:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25729, 316, 1, 8564, 4.99, '2007-04-29 10:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25730, 316, 1, 9508, 4.99, '2007-04-30 22:51:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25731, 316, 2, 9903, 6.99, '2007-04-30 13:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25732, 317, 1, 4138, 0.99, '2007-04-07 06:45:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25733, 317, 1, 4177, 8.99, '2007-04-07 08:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25734, 317, 2, 4700, 0.99, '2007-04-08 10:05:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25735, 317, 1, 5548, 0.99, '2007-04-10 01:25:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25736, 317, 2, 5942, 7.99, '2007-04-10 21:15:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25737, 317, 1, 7309, 2.99, '2007-04-27 11:28:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25738, 317, 2, 8062, 2.99, '2007-04-28 15:43:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25739, 317, 1, 8327, 2.99, '2007-04-29 02:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25740, 317, 1, 8458, 4.99, '2007-04-29 06:33:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25741, 317, 1, 9110, 2.99, '2007-04-30 07:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25742, 317, 2, 9513, 4.99, '2007-04-30 22:56:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25743, 317, 1, 9770, 8.99, '2007-04-30 08:21:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25744, 318, 1, 3732, 4.99, '2007-04-06 10:02:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25745, 318, 2, 3974, 2.99, '2007-04-06 21:27:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25746, 318, 1, 4356, 8.99, '2007-04-07 17:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25747, 318, 1, 7649, 0.99, '2007-04-28 00:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25748, 318, 2, 7853, 0.99, '2007-04-28 08:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25749, 318, 2, 10023, 5.99, '2007-04-30 16:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25750, 319, 2, 4119, 3.99, '2007-04-07 05:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25751, 319, 2, 4295, 2.99, '2007-04-07 14:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25752, 319, 1, 4630, 4.99, '2007-04-08 07:02:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25753, 319, 1, 5791, 8.99, '2007-04-10 12:44:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25754, 319, 1, 5882, 2.99, '2007-04-10 17:49:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25755, 319, 2, 6132, 2.99, '2007-04-11 06:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25756, 319, 1, 6195, 4.99, '2007-04-11 10:28:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25757, 319, 1, 6255, 4.99, '2007-04-11 13:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25758, 319, 1, 6485, 6.99, '2007-04-12 00:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25759, 319, 2, 7953, 2.99, '2007-04-28 11:52:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25760, 319, 2, 9017, 4.99, '2007-04-30 03:54:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25761, 319, 2, 9044, 0.99, '2007-04-30 05:03:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25762, 320, 2, 3519, 0.99, '2007-04-05 23:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25763, 320, 2, 3756, 4.99, '2007-04-06 11:09:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25764, 320, 2, 4173, 2.99, '2007-04-07 08:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25765, 320, 2, 7057, 4.99, '2007-04-27 02:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25766, 320, 2, 7064, 3.99, '2007-04-27 02:21:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25767, 320, 2, 7930, 4.99, '2007-04-28 10:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25768, 320, 2, 8144, 4.99, '2007-04-28 18:59:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25769, 320, 2, 8235, 4.99, '2007-04-28 22:51:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25770, 320, 1, 8238, 0.99, '2007-04-28 22:58:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25771, 320, 2, 8794, 4.99, '2007-04-29 19:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25772, 320, 1, 9509, 0.99, '2007-04-30 22:51:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25773, 321, 2, 3901, 5.99, '2007-04-06 17:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25774, 321, 1, 3920, 4.99, '2007-04-06 18:55:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25775, 321, 2, 4281, 4.99, '2007-04-07 13:46:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25776, 321, 1, 4318, 5.99, '2007-04-07 16:16:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25777, 321, 2, 5202, 2.99, '2007-04-09 09:22:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25778, 321, 2, 5867, 8.99, '2007-04-10 17:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25779, 321, 2, 6190, 2.99, '2007-04-11 10:04:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25780, 321, 1, 6859, 5.99, '2007-04-12 18:22:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25781, 321, 2, 8685, 6.99, '2007-04-29 14:45:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25782, 321, 1, 9981, 0.99, '2007-04-30 15:36:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25783, 322, 1, 3478, 0.99, '2007-04-05 21:34:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25784, 322, 2, 3627, 1.99, '2007-04-06 04:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25785, 322, 1, 3646, 4.99, '2007-04-06 05:57:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25786, 322, 2, 6033, 2.99, '2007-04-11 01:28:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25787, 322, 1, 6511, 3.99, '2007-04-12 02:07:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25788, 322, 2, 6673, 0.99, '2007-04-12 10:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25789, 322, 2, 6709, 4.99, '2007-04-12 11:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25790, 322, 1, 7091, 4.99, '2007-04-27 03:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25791, 322, 2, 8142, 4.99, '2007-04-28 18:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25792, 322, 1, 9104, 7.99, '2007-04-30 07:18:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25793, 322, 1, 9115, 4.99, '2007-04-30 07:42:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25794, 322, 1, 9252, 1.99, '2007-04-30 12:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25795, 323, 2, 3704, 6.99, '2007-04-06 08:45:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25796, 323, 2, 4572, 1.99, '2007-04-08 04:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25797, 323, 2, 5669, 4.99, '2007-04-10 06:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25798, 323, 2, 5906, 1.99, '2007-04-10 19:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25799, 323, 1, 6840, 3.99, '2007-04-12 17:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25800, 323, 2, 7146, 7.99, '2007-04-27 05:30:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25801, 323, 2, 7275, 2.99, '2007-04-27 10:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25802, 323, 2, 7695, 5.99, '2007-04-28 02:09:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25803, 323, 1, 7847, 1.99, '2007-04-28 07:51:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25804, 323, 2, 7937, 4.99, '2007-04-28 11:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25805, 323, 2, 8474, 0.99, '2007-04-29 07:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25806, 323, 1, 8790, 0.99, '2007-04-29 19:20:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25807, 323, 1, 9363, 2.99, '2007-04-30 17:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25808, 323, 2, 10002, 4.99, '2007-04-30 16:16:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25809, 323, 1, 10028, 4.99, '2007-04-30 17:04:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25810, 324, 1, 3947, 4.99, '2007-04-06 20:10:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25811, 324, 1, 4197, 0.99, '2007-04-07 09:36:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25812, 324, 2, 4368, 4.99, '2007-04-07 18:23:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25813, 324, 2, 5702, 2.99, '2007-04-10 08:28:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25814, 324, 1, 5778, 0.99, '2007-04-10 12:10:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25815, 324, 1, 6034, 2.99, '2007-04-11 01:29:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25816, 324, 2, 6299, 4.99, '2007-04-11 16:13:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25817, 324, 2, 7240, 3.99, '2007-04-27 08:49:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25818, 324, 1, 7263, 7.99, '2007-04-27 09:45:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25819, 324, 2, 7960, 6.99, '2007-04-28 12:15:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25820, 324, 1, 8698, 3.99, '2007-04-29 15:20:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25821, 324, 1, 9651, 4.99, '2007-04-30 04:17:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25822, 324, 2, 10212, 2.99, '2007-04-30 23:30:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25823, 325, 1, 5470, 5.99, '2007-04-09 21:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25824, 325, 2, 5740, 2.99, '2007-04-10 10:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25825, 325, 1, 5775, 4.99, '2007-04-10 12:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25826, 325, 2, 6135, 4.99, '2007-04-11 07:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25827, 325, 2, 6622, 0.99, '2007-04-12 07:32:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25828, 325, 2, 7223, 9.99, '2007-04-27 08:10:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25829, 325, 2, 7687, 2.99, '2007-04-28 01:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25830, 325, 2, 8539, 0.99, '2007-04-29 09:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25831, 325, 2, 10030, 2.99, '2007-04-30 17:08:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25832, 325, 1, 10070, 4.99, '2007-04-30 18:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25833, 326, 2, 3886, 0.99, '2007-04-06 17:12:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25834, 326, 1, 4160, 7.99, '2007-04-07 07:41:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25835, 326, 1, 5147, 5.99, '2007-04-09 06:46:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25836, 326, 1, 7117, 2.99, '2007-04-27 04:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25837, 326, 2, 7725, 2.99, '2007-04-28 03:15:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25838, 326, 2, 7931, 4.99, '2007-04-28 10:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25839, 326, 1, 8467, 5.99, '2007-04-29 06:54:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25840, 326, 1, 8604, 4.99, '2007-04-29 11:35:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25841, 326, 2, 8739, 2.99, '2007-04-29 17:02:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25842, 326, 2, 9855, 0.99, '2007-04-30 11:28:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25843, 326, 1, 10108, 0.99, '2007-04-30 19:30:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25844, 326, 2, 10173, 4.99, '2007-04-30 22:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25845, 327, 1, 4445, 4.99, '2007-04-07 21:36:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25846, 327, 1, 4521, 0.99, '2007-04-08 01:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25847, 327, 1, 6618, 2.99, '2007-04-12 07:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25848, 327, 2, 7458, 1.99, '2007-04-27 17:04:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25849, 327, 2, 7808, 1.99, '2007-04-28 06:27:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25850, 328, 1, 5450, 4.99, '2007-04-09 20:41:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25851, 328, 1, 8017, 1.99, '2007-04-28 14:04:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25852, 328, 1, 8577, 6.99, '2007-04-29 10:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25853, 328, 2, 8780, 4.99, '2007-04-29 18:48:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25854, 328, 2, 9557, 2.99, '2007-04-30 00:42:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25855, 328, 1, 9835, 2.99, '2007-04-30 10:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25856, 329, 2, 3976, 2.99, '2007-04-06 21:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25857, 329, 2, 4076, 4.99, '2007-04-07 03:20:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25858, 329, 1, 4415, 4.99, '2007-04-07 20:30:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25859, 329, 1, 4465, 1.99, '2007-04-07 22:36:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25860, 329, 2, 4674, 2.99, '2007-04-08 08:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25861, 329, 1, 7980, 4.99, '2007-04-28 12:45:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25862, 329, 2, 8172, 7.99, '2007-04-28 20:03:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25863, 329, 1, 8460, 6.99, '2007-04-29 06:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25864, 329, 2, 8941, 0.99, '2007-04-30 01:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25865, 329, 2, 9024, 4.99, '2007-04-30 04:13:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25866, 329, 2, 9219, 0.99, '2007-04-30 11:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25867, 329, 1, 9381, 0.99, '2007-04-30 17:51:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25868, 329, 1, 9827, 6.99, '2007-04-30 10:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25869, 330, 2, 3603, 4.99, '2007-04-06 03:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25870, 330, 2, 3659, 2.99, '2007-04-06 06:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25871, 330, 2, 3760, 2.99, '2007-04-06 11:17:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25872, 330, 1, 4124, 1.99, '2007-04-07 05:48:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25873, 330, 2, 5149, 2.99, '2007-04-09 06:56:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25874, 330, 1, 5750, 5.99, '2007-04-10 10:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25875, 330, 1, 6656, 0.99, '2007-04-12 09:38:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25876, 330, 2, 6678, 2.99, '2007-04-12 10:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25877, 330, 1, 6719, 2.99, '2007-04-12 12:09:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25878, 330, 2, 7894, 2.99, '2007-04-28 09:22:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25879, 330, 1, 8680, 4.99, '2007-04-29 14:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25880, 330, 2, 10100, 4.99, '2007-04-30 19:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25881, 331, 1, 3505, 4.99, '2007-04-05 22:47:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25882, 331, 1, 3613, 4.99, '2007-04-06 04:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25883, 331, 2, 3871, 8.99, '2007-04-06 16:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25884, 331, 1, 4051, 4.99, '2007-04-07 02:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25885, 331, 2, 4063, 5.99, '2007-04-07 02:52:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25886, 331, 1, 4326, 10.99, '2007-04-07 16:29:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25887, 331, 1, 5152, 2.99, '2007-04-09 07:03:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25888, 331, 1, 5885, 1.99, '2007-04-10 18:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25889, 331, 1, 5947, 5.99, '2007-04-10 21:36:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25890, 331, 1, 8231, 0.99, '2007-04-28 22:43:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25891, 331, 2, 8995, 4.99, '2007-04-30 03:21:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25892, 331, 1, 9401, 5.99, '2007-04-30 18:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25893, 331, 2, 10188, 6.99, '2007-04-30 22:48:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25894, 332, 1, 4100, 6.99, '2007-04-07 04:49:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25895, 332, 1, 4302, 6.99, '2007-04-07 15:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25896, 332, 2, 5116, 2.99, '2007-04-09 05:38:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25897, 332, 1, 5277, 1.99, '2007-04-09 13:09:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25898, 332, 2, 5381, 2.99, '2007-04-09 17:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25899, 332, 2, 5388, 0.99, '2007-04-09 17:53:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25900, 332, 1, 5440, 0.99, '2007-04-09 20:13:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25901, 332, 2, 7049, 7.99, '2007-04-27 02:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25902, 332, 2, 7418, 2.99, '2007-04-27 15:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25903, 332, 2, 7577, 8.99, '2007-04-27 21:24:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25904, 332, 2, 7578, 4.99, '2007-04-27 21:26:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25905, 332, 2, 7934, 8.99, '2007-04-28 11:01:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25906, 332, 2, 8173, 6.99, '2007-04-28 20:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25907, 332, 1, 9324, 1.99, '2007-04-30 15:57:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25908, 332, 1, 9388, 5.99, '2007-04-30 17:55:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25909, 332, 1, 9921, 0.99, '2007-04-30 13:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25910, 332, 1, 10026, 4.99, '2007-04-30 17:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25911, 333, 2, 5032, 0.99, '2007-04-09 01:08:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25912, 333, 1, 5645, 1.99, '2007-04-10 05:26:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25913, 333, 2, 5892, 4.99, '2007-04-10 18:31:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25914, 333, 2, 6275, 0.99, '2007-04-11 14:40:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25915, 333, 2, 6931, 4.99, '2007-04-26 21:31:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25916, 333, 2, 6958, 0.99, '2007-04-26 22:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25917, 333, 2, 7076, 6.99, '2007-04-27 02:40:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25918, 333, 2, 7246, 0.99, '2007-04-27 08:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25919, 333, 1, 8719, 4.99, '2007-04-29 16:14:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25920, 333, 2, 9148, 4.99, '2007-04-30 09:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25921, 333, 2, 9338, 10.99, '2007-04-30 16:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25922, 333, 2, 10035, 4.99, '2007-04-30 17:15:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25923, 333, 1, 10062, 2.99, '2007-04-30 17:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25924, 334, 1, 3662, 4.99, '2007-04-06 06:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25925, 334, 1, 4603, 6.99, '2007-04-08 05:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25926, 334, 2, 5014, 4.99, '2007-04-09 00:20:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25927, 334, 2, 5434, 0.99, '2007-04-09 19:53:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25928, 334, 2, 5818, 5.99, '2007-04-10 14:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25929, 334, 1, 5845, 4.99, '2007-04-10 15:51:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25930, 334, 2, 6641, 5.99, '2007-04-12 09:01:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25931, 334, 2, 6749, 4.99, '2007-04-12 13:11:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25932, 334, 1, 6987, 2.99, '2007-04-26 23:28:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25933, 334, 1, 8977, 7.99, '2007-04-30 02:42:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25934, 334, 1, 9633, 2.99, '2007-04-30 03:32:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25935, 334, 1, 10207, 3.99, '2007-04-30 23:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25936, 335, 1, 3607, 0.99, '2007-04-06 03:58:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25937, 335, 2, 4016, 0.99, '2007-04-06 23:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25938, 335, 2, 4032, 2.99, '2007-04-07 01:02:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25939, 335, 1, 4279, 4.99, '2007-04-07 13:30:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25940, 335, 1, 4387, 8.99, '2007-04-07 19:25:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25941, 335, 1, 5024, 4.99, '2007-04-09 00:53:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25942, 335, 1, 5252, 0.99, '2007-04-09 12:09:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25943, 335, 2, 5728, 2.99, '2007-04-10 09:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25944, 335, 1, 6624, 7.99, '2007-04-12 07:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25945, 335, 1, 6906, 0.99, '2007-04-12 20:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25946, 335, 2, 8634, 3.99, '2007-04-29 12:48:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25947, 335, 1, 8855, 2.99, '2007-04-29 22:08:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25948, 335, 1, 9125, 5.99, '2007-04-30 08:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25949, 335, 2, 9361, 4.99, '2007-04-30 17:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25950, 335, 1, 9428, 0.99, '2007-04-30 19:47:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25951, 336, 2, 4323, 5.99, '2007-04-07 16:24:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25952, 336, 1, 4595, 2.99, '2007-04-08 05:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25953, 336, 2, 5649, 2.99, '2007-04-10 05:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25954, 336, 2, 5667, 0.99, '2007-04-10 06:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25955, 336, 2, 6263, 4.99, '2007-04-11 14:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25956, 336, 2, 6382, 6.99, '2007-04-11 20:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25957, 336, 2, 8275, 4.99, '2007-04-29 00:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25958, 336, 1, 8407, 6.99, '2007-04-29 05:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25959, 336, 2, 8607, 4.99, '2007-04-29 11:46:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25960, 336, 2, 8951, 8.99, '2007-04-30 01:46:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25961, 336, 2, 9306, 0.99, '2007-04-30 15:15:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25962, 336, 1, 10055, 0.99, '2007-04-30 17:44:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25963, 337, 1, 3626, 5.99, '2007-04-06 04:44:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25964, 337, 1, 4091, 6.99, '2007-04-07 04:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25965, 337, 2, 4093, 4.99, '2007-04-07 04:23:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25966, 337, 2, 4855, 4.99, '2007-04-08 17:14:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25967, 337, 1, 5050, 2.99, '2007-04-09 02:23:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25968, 337, 1, 6212, 0.99, '2007-04-11 11:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25969, 337, 2, 6305, 7.99, '2007-04-11 16:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25970, 337, 1, 6620, 2.99, '2007-04-12 07:19:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25971, 337, 1, 7410, 4.99, '2007-04-27 15:10:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25972, 337, 1, 8516, 4.99, '2007-04-29 08:28:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25973, 337, 2, 8919, 8.99, '2007-04-30 00:25:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25974, 337, 2, 9051, 5.99, '2007-04-30 05:34:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25975, 338, 1, 3516, 0.99, '2007-04-05 23:18:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25976, 338, 2, 3772, 2.99, '2007-04-06 11:51:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25977, 338, 2, 4104, 5.99, '2007-04-07 04:54:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25978, 338, 2, 4779, 4.99, '2007-04-08 14:22:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25979, 338, 1, 5309, 4.99, '2007-04-09 14:28:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25980, 338, 1, 6236, 2.99, '2007-04-11 12:46:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25981, 338, 1, 6360, 4.99, '2007-04-11 19:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25982, 338, 2, 7584, 3.99, '2007-04-27 21:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25983, 338, 1, 8766, 0.99, '2007-04-29 18:09:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25984, 338, 1, 9485, 7.99, '2007-04-30 22:01:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25985, 339, 2, 3536, 2.99, '2007-04-06 00:04:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25986, 339, 1, 4243, 4.99, '2007-04-07 12:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25987, 339, 1, 4467, 0.99, '2007-04-07 22:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25988, 339, 2, 4967, 3.99, '2007-04-08 22:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25989, 339, 1, 5720, 3.99, '2007-04-10 09:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25990, 339, 1, 6072, 6.99, '2007-04-11 03:21:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25991, 339, 1, 6425, 0.99, '2007-04-11 22:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25992, 339, 2, 6682, 7.99, '2007-04-12 10:41:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25993, 339, 2, 7244, 2.99, '2007-04-27 08:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25994, 339, 2, 7973, 4.99, '2007-04-28 12:38:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25995, 339, 1, 8968, 0.99, '2007-04-30 02:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25996, 339, 2, 9208, 5.99, '2007-04-30 11:22:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25997, 339, 1, 9663, 4.99, '2007-04-30 04:39:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25998, 340, 2, 4475, 2.99, '2007-04-07 22:55:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (25999, 340, 1, 4742, 0.99, '2007-04-08 12:03:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26000, 340, 2, 6381, 4.99, '2007-04-11 20:27:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26001, 340, 2, 7617, 2.99, '2007-04-27 22:47:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26002, 340, 2, 8274, 4.99, '2007-04-29 00:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26003, 340, 1, 8541, 0.99, '2007-04-29 09:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26004, 340, 2, 8551, 4.99, '2007-04-29 09:41:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26005, 340, 1, 8606, 4.99, '2007-04-29 11:42:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26006, 340, 1, 9834, 2.99, '2007-04-30 10:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26007, 341, 2, 3938, 4.99, '2007-04-06 19:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26008, 341, 1, 4624, 2.99, '2007-04-08 06:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26009, 341, 2, 5487, 4.99, '2007-04-09 22:30:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26010, 341, 2, 5931, 0.99, '2007-04-10 20:32:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26011, 341, 2, 7473, 2.99, '2007-04-27 17:34:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26012, 341, 1, 8661, 2.99, '2007-04-29 13:56:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26013, 341, 1, 8728, 9.99, '2007-04-29 16:41:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26014, 342, 1, 5617, 0.99, '2007-04-10 03:57:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26015, 342, 2, 6060, 4.99, '2007-04-11 02:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26016, 342, 2, 6429, 8.99, '2007-04-11 22:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26017, 342, 1, 6736, 2.99, '2007-04-12 12:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26018, 342, 2, 6787, 7.99, '2007-04-12 15:01:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26019, 342, 2, 6997, 0.99, '2007-04-26 23:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26020, 342, 2, 7280, 2.99, '2007-04-27 10:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26021, 342, 1, 9164, 2.99, '2007-04-30 09:52:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26022, 342, 1, 9526, 0.99, '2007-04-30 23:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26023, 342, 2, 9948, 5.99, '2007-04-30 14:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26024, 342, 1, 9955, 0.99, '2007-04-30 14:29:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26025, 342, 2, 9956, 4.99, '2007-04-30 14:32:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26026, 343, 1, 3978, 5.99, '2007-04-06 21:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26027, 343, 1, 4472, 7.99, '2007-04-07 22:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26028, 343, 2, 5097, 4.99, '2007-04-09 04:38:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26029, 343, 1, 5337, 3.99, '2007-04-09 15:32:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26030, 343, 1, 7069, 6.99, '2007-04-27 02:28:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26031, 343, 2, 8012, 5.99, '2007-04-28 13:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26032, 343, 2, 8088, 9.99, '2007-04-28 16:52:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26033, 343, 2, 9458, 5.99, '2007-04-30 20:53:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26034, 343, 2, 9739, 2.99, '2007-04-30 07:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26035, 344, 2, 4028, 5.99, '2007-04-07 00:47:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26036, 344, 2, 4347, 3.99, '2007-04-07 17:27:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26037, 344, 2, 6363, 5.99, '2007-04-11 19:41:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26038, 344, 2, 7480, 4.99, '2007-04-27 17:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26039, 344, 2, 8561, 2.99, '2007-04-29 09:57:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26040, 344, 2, 9788, 4.99, '2007-04-30 08:56:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26041, 345, 2, 4422, 2.99, '2007-04-07 20:38:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26042, 345, 1, 4425, 2.99, '2007-04-07 20:51:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26043, 345, 2, 4450, 4.99, '2007-04-07 21:48:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26044, 345, 2, 5508, 3.99, '2007-04-09 23:18:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26045, 345, 1, 6307, 7.99, '2007-04-11 16:32:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26046, 345, 1, 7092, 6.99, '2007-04-27 03:14:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26047, 345, 2, 8129, 2.99, '2007-04-28 18:15:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26048, 345, 2, 8694, 8.99, '2007-04-29 15:13:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26049, 345, 1, 9163, 4.99, '2007-04-30 09:51:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26050, 345, 2, 9207, 2.99, '2007-04-30 11:18:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26051, 345, 2, 10215, 8.99, '2007-04-30 23:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26052, 346, 2, 4420, 4.99, '2007-04-07 20:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26053, 346, 1, 4958, 8.99, '2007-04-08 21:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26054, 346, 1, 5428, 4.99, '2007-04-09 19:41:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26055, 346, 2, 5557, 4.99, '2007-04-10 01:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26056, 346, 2, 6136, 4.99, '2007-04-11 07:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26057, 346, 2, 6323, 2.99, '2007-04-11 17:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26058, 346, 2, 6881, 8.99, '2007-04-12 19:15:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26059, 346, 2, 7943, 6.99, '2007-04-28 11:19:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26060, 346, 2, 8272, 5.99, '2007-04-28 23:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26061, 346, 1, 8505, 6.99, '2007-04-29 07:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26062, 346, 2, 8543, 0.99, '2007-04-29 09:30:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26063, 346, 2, 8732, 8.99, '2007-04-29 16:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26064, 346, 2, 9566, 4.99, '2007-04-30 01:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26065, 346, 1, 9848, 4.99, '2007-04-30 11:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26066, 346, 1, 9927, 2.99, '2007-04-30 13:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26067, 347, 2, 3605, 0.99, '2007-04-06 03:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26068, 347, 2, 3666, 4.99, '2007-04-06 06:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26069, 347, 1, 4232, 5.99, '2007-04-07 11:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26070, 347, 1, 4523, 6.99, '2007-04-08 01:35:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26071, 347, 2, 5471, 0.99, '2007-04-09 21:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26072, 347, 1, 5819, 2.99, '2007-04-10 14:24:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26073, 347, 2, 6121, 1.99, '2007-04-11 06:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26074, 347, 1, 7811, 0.99, '2007-04-28 06:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26075, 347, 2, 8148, 4.99, '2007-04-28 19:08:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26076, 347, 2, 8153, 4.99, '2007-04-28 19:24:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26077, 347, 2, 8176, 4.99, '2007-04-28 20:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26078, 347, 2, 8378, 4.99, '2007-04-29 03:57:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26079, 347, 2, 8771, 2.99, '2007-04-29 18:23:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26080, 347, 1, 9013, 4.99, '2007-04-30 03:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26081, 347, 1, 9582, 4.99, '2007-04-30 01:33:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26082, 347, 1, 9856, 3.99, '2007-04-30 11:29:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26083, 347, 1, 9876, 2.99, '2007-04-30 12:06:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26084, 348, 2, 3494, 4.99, '2007-04-05 22:15:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26085, 348, 2, 3610, 4.99, '2007-04-06 04:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26086, 348, 2, 4556, 9.99, '2007-04-08 03:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26087, 348, 2, 4633, 0.99, '2007-04-08 07:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26088, 348, 1, 4699, 0.99, '2007-04-08 10:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26089, 348, 1, 4807, 8.99, '2007-04-08 15:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26090, 348, 1, 5345, 4.99, '2007-04-09 15:56:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26091, 348, 2, 5965, 0.99, '2007-04-10 22:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26092, 348, 2, 6776, 2.99, '2007-04-12 14:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26093, 348, 2, 7380, 2.99, '2007-04-27 14:05:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26094, 348, 1, 7482, 6.99, '2007-04-27 17:52:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26095, 348, 2, 7825, 4.99, '2007-04-28 07:03:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26096, 348, 1, 8500, 2.99, '2007-04-29 07:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26097, 348, 1, 8569, 4.99, '2007-04-29 10:07:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26098, 348, 2, 8682, 4.99, '2007-04-29 14:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26099, 348, 2, 9482, 2.99, '2007-04-30 21:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26100, 349, 2, 3488, 3.99, '2007-04-05 22:01:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26101, 349, 1, 4190, 2.99, '2007-04-07 09:21:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26102, 349, 2, 4494, 5.99, '2007-04-08 00:11:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26103, 349, 1, 4881, 0.99, '2007-04-08 18:09:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26104, 349, 1, 5433, 4.99, '2007-04-09 19:50:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26105, 349, 1, 7002, 4.99, '2007-04-26 23:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26106, 349, 1, 7046, 4.99, '2007-04-27 01:56:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26107, 349, 2, 7702, 2.99, '2007-04-28 02:24:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26108, 349, 2, 8297, 4.99, '2007-04-29 01:14:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26109, 349, 1, 9262, 1.99, '2007-04-30 13:13:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26110, 349, 1, 9670, 5.99, '2007-04-30 05:01:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26111, 349, 1, 9731, 0.99, '2007-04-30 07:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26112, 350, 1, 3529, 0.99, '2007-04-05 23:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26113, 350, 1, 3893, 5.99, '2007-04-06 17:27:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26114, 350, 1, 4767, 2.99, '2007-04-08 13:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26115, 350, 1, 5240, 0.99, '2007-04-09 11:43:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26116, 350, 1, 5303, 2.99, '2007-04-09 14:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26117, 350, 1, 5786, 1.99, '2007-04-10 12:35:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26118, 350, 2, 6408, 3.99, '2007-04-11 21:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26119, 350, 2, 7416, 4.99, '2007-04-27 15:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26120, 351, 1, 3836, 2.99, '2007-04-06 14:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26121, 351, 1, 4544, 0.99, '2007-04-08 02:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26122, 351, 1, 4756, 1.99, '2007-04-08 12:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26123, 351, 2, 4761, 5.99, '2007-04-08 13:20:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26124, 351, 1, 5280, 0.99, '2007-04-09 13:23:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26125, 351, 1, 5912, 3.99, '2007-04-10 19:26:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26126, 351, 2, 6180, 3.99, '2007-04-11 09:35:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26127, 351, 1, 6664, 4.99, '2007-04-12 09:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26128, 351, 2, 6777, 5.99, '2007-04-12 14:33:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26129, 351, 2, 7630, 4.99, '2007-04-27 23:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26130, 351, 2, 8512, 4.99, '2007-04-29 08:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26131, 351, 1, 9707, 7.99, '2007-04-30 06:12:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26132, 351, 2, 10119, 0.99, '2007-04-30 19:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26133, 352, 2, 4116, 4.99, '2007-04-07 05:24:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26134, 352, 2, 6329, 5.99, '2007-04-11 17:39:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26135, 352, 1, 7033, 2.99, '2007-04-27 01:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26136, 352, 1, 7419, 7.99, '2007-04-27 15:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26137, 352, 2, 7512, 6.99, '2007-04-27 19:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26138, 352, 1, 7579, 4.99, '2007-04-27 21:35:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26139, 352, 1, 7845, 5.99, '2007-04-28 07:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26140, 352, 1, 7886, 2.99, '2007-04-28 09:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26141, 352, 1, 9463, 0.99, '2007-04-30 20:59:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26142, 353, 2, 4380, 5.99, '2007-04-07 19:03:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26143, 353, 2, 6559, 1.99, '2007-04-12 03:49:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26144, 353, 1, 6610, 3.99, '2007-04-12 06:48:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26145, 353, 2, 7993, 3.99, '2007-04-28 13:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26146, 353, 2, 10071, 2.99, '2007-04-30 18:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26147, 354, 2, 3821, 2.99, '2007-04-06 14:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26148, 354, 2, 4034, 0.99, '2007-04-07 01:04:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26149, 354, 1, 4449, 5.99, '2007-04-07 21:47:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26150, 354, 2, 4745, 2.99, '2007-04-08 12:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26151, 354, 1, 5354, 4.99, '2007-04-09 16:32:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26152, 354, 2, 5556, 4.99, '2007-04-10 01:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26153, 354, 1, 5873, 3.99, '2007-04-10 17:30:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26154, 354, 1, 6054, 0.99, '2007-04-11 02:27:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26155, 354, 1, 6838, 4.99, '2007-04-12 17:29:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26156, 354, 1, 6926, 0.99, '2007-04-26 21:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26157, 354, 1, 6939, 5.99, '2007-04-26 21:46:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26158, 354, 2, 7148, 0.99, '2007-04-27 05:32:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26159, 354, 2, 7235, 2.99, '2007-04-27 08:37:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26160, 354, 2, 7241, 0.99, '2007-04-27 08:54:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26161, 354, 2, 8321, 4.99, '2007-04-29 02:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26162, 354, 2, 8477, 8.99, '2007-04-29 07:09:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26163, 354, 1, 8609, 4.99, '2007-04-29 11:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26164, 354, 2, 8921, 0.99, '2007-04-30 00:32:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26165, 354, 1, 9130, 2.99, '2007-04-30 08:23:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26166, 355, 1, 3567, 5.99, '2007-04-06 01:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26167, 355, 1, 3730, 6.99, '2007-04-06 09:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26168, 355, 1, 5210, 4.99, '2007-04-09 09:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26169, 355, 1, 5564, 5.99, '2007-04-10 01:51:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26170, 355, 1, 6127, 0.99, '2007-04-11 06:35:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26171, 355, 2, 6262, 6.99, '2007-04-11 14:01:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26172, 355, 1, 6437, 2.99, '2007-04-11 22:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26173, 355, 2, 6669, 4.99, '2007-04-12 10:08:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26174, 355, 2, 7108, 4.99, '2007-04-27 03:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26175, 355, 2, 7477, 5.99, '2007-04-27 17:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26176, 355, 2, 8418, 1.99, '2007-04-29 05:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26177, 356, 2, 3829, 6.99, '2007-04-06 14:28:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26178, 356, 2, 4599, 4.99, '2007-04-08 05:16:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26179, 356, 1, 5513, 0.99, '2007-04-09 23:34:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26180, 356, 1, 6593, 4.99, '2007-04-12 05:49:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26181, 356, 1, 6648, 0.99, '2007-04-12 09:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26182, 356, 1, 7079, 2.99, '2007-04-27 02:50:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26183, 356, 1, 7758, 1.99, '2007-04-28 04:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26184, 356, 1, 7902, 0.99, '2007-04-28 09:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26185, 356, 1, 8198, 3.99, '2007-04-28 21:36:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26186, 356, 1, 8975, 5.99, '2007-04-30 02:38:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26187, 356, 2, 9037, 4.99, '2007-04-30 04:51:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26188, 356, 2, 9523, 3.99, '2007-04-30 23:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26189, 356, 2, 9883, 6.99, '2007-04-30 12:22:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26190, 357, 1, 3865, 3.99, '2007-04-06 16:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26191, 357, 1, 4478, 0.99, '2007-04-07 23:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26192, 357, 1, 5896, 0.99, '2007-04-10 18:44:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26193, 357, 1, 6288, 8.99, '2007-04-11 15:30:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26194, 357, 2, 6367, 4.99, '2007-04-11 19:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26195, 357, 2, 6405, 2.99, '2007-04-11 21:21:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26196, 357, 1, 6839, 0.99, '2007-04-12 17:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26197, 357, 1, 7353, 2.99, '2007-04-27 13:07:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26198, 357, 1, 7366, 5.99, '2007-04-27 13:29:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26199, 357, 2, 8041, 2.99, '2007-04-28 15:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26200, 357, 1, 8124, 2.99, '2007-04-28 17:57:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26201, 357, 2, 9233, 3.99, '2007-04-30 12:12:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26202, 358, 1, 3753, 2.99, '2007-04-06 11:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26203, 358, 1, 3809, 2.99, '2007-04-06 13:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26204, 358, 2, 5023, 5.99, '2007-04-09 00:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26205, 358, 1, 6362, 2.99, '2007-04-11 19:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26206, 358, 1, 8621, 2.99, '2007-04-29 12:21:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26207, 358, 2, 9062, 0.99, '2007-04-30 05:51:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26208, 358, 1, 9568, 0.99, '2007-04-30 01:06:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26209, 358, 1, 10193, 2.99, '2007-04-30 23:01:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26210, 359, 2, 4830, 7.99, '2007-04-08 16:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26211, 359, 2, 6424, 9.99, '2007-04-11 22:18:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26212, 359, 1, 6542, 2.99, '2007-04-12 03:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26213, 359, 2, 6741, 0.99, '2007-04-12 12:52:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26214, 359, 2, 7098, 0.99, '2007-04-27 03:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26215, 359, 1, 7115, 0.99, '2007-04-27 04:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26216, 359, 1, 8174, 4.99, '2007-04-28 20:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26217, 359, 1, 9898, 4.99, '2007-04-30 12:40:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26218, 359, 2, 10174, 5.99, '2007-04-30 22:08:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26219, 360, 1, 4056, 4.99, '2007-04-07 02:26:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26220, 360, 1, 4487, 7.99, '2007-04-07 23:48:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26221, 360, 2, 5456, 2.99, '2007-04-09 21:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26222, 360, 1, 5834, 1.99, '2007-04-10 15:12:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26223, 360, 1, 5995, 3.99, '2007-04-10 23:44:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26224, 360, 1, 6442, 0.99, '2007-04-11 22:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26225, 360, 2, 6770, 5.99, '2007-04-12 14:18:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26226, 360, 1, 7251, 2.99, '2007-04-27 09:13:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26227, 360, 2, 7588, 9.99, '2007-04-27 21:51:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26228, 360, 1, 7654, 4.99, '2007-04-28 00:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26229, 360, 2, 7908, 3.99, '2007-04-28 10:01:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26230, 360, 1, 8220, 2.99, '2007-04-28 22:15:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26231, 360, 2, 8361, 2.99, '2007-04-29 03:37:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26232, 360, 1, 9283, 4.99, '2007-04-30 13:53:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26233, 360, 2, 9352, 0.99, '2007-04-30 16:57:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26234, 360, 1, 9623, 2.99, '2007-04-30 02:58:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26235, 360, 2, 9659, 3.99, '2007-04-30 04:30:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26236, 361, 2, 5154, 2.99, '2007-04-09 07:14:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26237, 361, 1, 6152, 0.99, '2007-04-11 07:54:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26238, 361, 2, 6829, 4.99, '2007-04-12 17:07:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26239, 361, 2, 6911, 0.99, '2007-04-12 20:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26240, 361, 1, 6914, 1.99, '2007-04-12 20:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26241, 361, 1, 7538, 2.99, '2007-04-27 20:06:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26242, 361, 2, 7712, 2.99, '2007-04-28 02:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26243, 361, 2, 8189, 4.99, '2007-04-28 21:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26244, 361, 1, 10145, 1.99, '2007-04-30 20:43:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26245, 361, 1, 10151, 4.99, '2007-04-30 20:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26246, 362, 2, 4646, 8.99, '2007-04-08 07:51:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26247, 362, 1, 5227, 4.99, '2007-04-09 10:45:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26248, 362, 2, 5563, 1.99, '2007-04-10 01:49:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26249, 362, 2, 5690, 5.99, '2007-04-10 07:55:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26250, 362, 1, 6204, 4.99, '2007-04-11 10:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26251, 362, 2, 6576, 4.99, '2007-04-12 04:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26252, 362, 1, 6981, 4.99, '2007-04-26 23:20:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26253, 362, 1, 7172, 1.99, '2007-04-27 06:27:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26254, 362, 1, 7485, 2.99, '2007-04-27 17:57:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26255, 362, 1, 8081, 2.99, '2007-04-28 16:35:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26256, 362, 2, 8325, 2.99, '2007-04-29 02:25:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26257, 362, 2, 8364, 4.99, '2007-04-29 03:38:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26258, 362, 1, 8662, 0.99, '2007-04-29 13:59:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26259, 362, 1, 8714, 2.99, '2007-04-29 16:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26260, 362, 1, 9784, 4.99, '2007-04-30 08:49:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26261, 363, 1, 3726, 3.99, '2007-04-06 09:44:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26262, 363, 2, 5687, 3.99, '2007-04-10 07:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26263, 363, 1, 5758, 6.99, '2007-04-10 11:11:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26264, 363, 2, 6140, 4.99, '2007-04-11 07:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26265, 363, 2, 6705, 4.99, '2007-04-12 11:21:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26266, 363, 2, 6821, 2.99, '2007-04-12 16:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26267, 363, 2, 6878, 4.99, '2007-04-12 19:05:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26268, 363, 1, 7256, 2.99, '2007-04-27 09:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26269, 363, 2, 7708, 4.99, '2007-04-28 02:47:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26270, 363, 2, 8121, 2.99, '2007-04-28 17:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26271, 363, 2, 8522, 3.99, '2007-04-29 08:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26272, 363, 2, 8804, 2.99, '2007-04-29 19:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26273, 363, 2, 8841, 4.99, '2007-04-29 21:24:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26274, 363, 1, 9968, 4.99, '2007-04-30 15:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26275, 363, 1, 9977, 8.99, '2007-04-30 15:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26276, 364, 1, 3678, 4.99, '2007-04-06 07:43:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26277, 364, 2, 3961, 4.99, '2007-04-06 20:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26278, 364, 1, 4047, 0.99, '2007-04-07 01:57:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26279, 364, 2, 4689, 4.99, '2007-04-08 09:32:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26280, 364, 1, 5872, 10.99, '2007-04-10 17:22:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26281, 364, 1, 7272, 2.99, '2007-04-27 09:58:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26282, 364, 2, 9266, 4.99, '2007-04-30 13:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26283, 364, 1, 10092, 0.99, '2007-04-30 18:56:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26284, 365, 1, 4583, 1.99, '2007-04-08 04:38:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26285, 365, 1, 6604, 4.99, '2007-04-12 06:26:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26286, 365, 1, 7488, 7.99, '2007-04-27 18:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26287, 365, 2, 7634, 4.99, '2007-04-27 23:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26288, 365, 1, 8168, 4.99, '2007-04-28 19:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26289, 365, 2, 8782, 4.99, '2007-04-29 18:58:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26290, 365, 1, 8856, 3.99, '2007-04-29 22:10:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26291, 365, 1, 9122, 2.99, '2007-04-30 08:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26292, 365, 2, 9184, 4.99, '2007-04-30 10:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26293, 365, 2, 9540, 2.99, '2007-04-30 00:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26294, 366, 2, 3632, 4.99, '2007-04-06 05:06:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26295, 366, 1, 3834, 2.99, '2007-04-06 14:48:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26296, 366, 2, 4276, 2.99, '2007-04-07 13:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26297, 366, 1, 4569, 5.99, '2007-04-08 03:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26298, 366, 2, 5364, 0.99, '2007-04-09 16:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26299, 366, 1, 6112, 6.99, '2007-04-11 05:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26300, 366, 1, 6366, 4.99, '2007-04-11 19:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26301, 366, 2, 6533, 6.99, '2007-04-12 03:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26302, 366, 2, 6738, 5.99, '2007-04-12 12:46:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26303, 366, 1, 6842, 0.99, '2007-04-12 17:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26304, 366, 2, 6971, 4.99, '2007-04-26 22:54:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26305, 366, 1, 7344, 1.99, '2007-04-27 12:57:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26306, 366, 1, 7562, 2.99, '2007-04-27 20:53:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26307, 366, 2, 7602, 4.99, '2007-04-27 22:17:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26308, 366, 1, 7805, 6.99, '2007-04-28 06:25:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26309, 366, 2, 8169, 4.99, '2007-04-28 19:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26310, 366, 2, 8260, 1.99, '2007-04-28 23:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26311, 366, 2, 8928, 2.99, '2007-04-30 00:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26312, 366, 1, 9316, 6.99, '2007-04-30 15:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26313, 366, 1, 10198, 2.99, '2007-04-30 23:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26314, 367, 1, 4251, 8.99, '2007-04-07 12:40:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26315, 367, 2, 5490, 4.99, '2007-04-09 22:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26316, 367, 2, 5538, 4.99, '2007-04-10 01:08:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26317, 367, 2, 5839, 2.99, '2007-04-10 15:36:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26318, 367, 2, 6228, 2.99, '2007-04-11 12:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26319, 367, 1, 6716, 0.99, '2007-04-12 12:03:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26320, 367, 2, 6835, 5.99, '2007-04-12 17:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26321, 367, 2, 8490, 0.99, '2007-04-29 07:27:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26322, 367, 1, 9030, 3.99, '2007-04-30 04:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26323, 367, 1, 9430, 4.99, '2007-04-30 19:48:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26324, 367, 1, 9912, 4.99, '2007-04-30 13:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26325, 368, 2, 3608, 4.99, '2007-04-06 04:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26326, 368, 2, 4066, 0.99, '2007-04-07 03:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26327, 368, 1, 4584, 0.99, '2007-04-08 04:39:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26328, 368, 2, 4913, 8.99, '2007-04-08 19:56:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26329, 368, 1, 6124, 4.99, '2007-04-11 06:30:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26330, 368, 1, 6154, 5.99, '2007-04-11 08:00:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26331, 368, 1, 6681, 2.99, '2007-04-12 10:32:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26332, 368, 2, 7571, 4.99, '2007-04-27 21:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26333, 368, 1, 8045, 0.99, '2007-04-28 15:18:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26334, 368, 2, 8226, 2.99, '2007-04-28 22:29:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26335, 368, 1, 9400, 5.99, '2007-04-30 18:44:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26336, 368, 1, 9833, 6.99, '2007-04-30 10:33:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26337, 369, 1, 3490, 6.99, '2007-04-05 22:05:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26338, 369, 2, 3903, 2.99, '2007-04-06 17:55:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26339, 369, 2, 4859, 4.99, '2007-04-08 17:22:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26340, 369, 1, 5043, 1.99, '2007-04-09 01:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26341, 369, 2, 5496, 7.99, '2007-04-09 22:48:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26342, 369, 2, 5561, 2.99, '2007-04-10 01:43:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26343, 369, 1, 8236, 2.99, '2007-04-28 22:55:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26344, 369, 2, 8826, 2.99, '2007-04-29 20:58:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26345, 369, 2, 9032, 4.99, '2007-04-30 04:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26346, 369, 1, 9089, 0.99, '2007-04-30 06:52:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26347, 369, 2, 9543, 0.99, '2007-04-30 00:12:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26348, 369, 1, 9973, 4.99, '2007-04-30 15:17:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26349, 370, 2, 4400, 7.99, '2007-04-07 19:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26350, 370, 2, 6714, 0.99, '2007-04-12 11:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26351, 370, 1, 6968, 0.99, '2007-04-26 22:45:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26352, 370, 2, 7152, 7.99, '2007-04-27 05:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26353, 370, 1, 7226, 6.99, '2007-04-27 08:16:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26354, 370, 2, 7797, 0.99, '2007-04-28 06:09:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26355, 370, 2, 8258, 0.99, '2007-04-28 23:32:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26356, 370, 2, 10095, 0.99, '2007-04-30 19:07:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26357, 371, 2, 4115, 8.99, '2007-04-07 05:20:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26358, 371, 1, 4612, 1.99, '2007-04-08 06:09:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26359, 371, 1, 5171, 4.99, '2007-04-09 07:55:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26360, 371, 2, 5614, 0.99, '2007-04-10 03:45:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26361, 371, 1, 6000, 2.99, '2007-04-10 23:51:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26362, 371, 1, 6460, 1.99, '2007-04-11 23:42:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26363, 371, 1, 6922, 0.99, '2007-04-12 21:08:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26364, 371, 1, 7408, 3.99, '2007-04-27 15:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26365, 371, 1, 8138, 4.99, '2007-04-28 18:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26366, 371, 1, 9008, 4.99, '2007-04-30 03:38:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26367, 371, 1, 9117, 8.99, '2007-04-30 07:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26368, 371, 1, 9635, 0.99, '2007-04-30 03:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26369, 372, 1, 5229, 4.99, '2007-04-09 10:58:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26370, 372, 1, 5314, 2.99, '2007-04-09 14:33:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26371, 372, 1, 5352, 2.99, '2007-04-09 16:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26372, 372, 1, 5501, 6.99, '2007-04-09 23:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26373, 372, 2, 5914, 7.99, '2007-04-10 19:29:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26374, 372, 2, 6692, 4.99, '2007-04-12 11:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26375, 372, 1, 7190, 4.99, '2007-04-27 07:04:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26376, 372, 2, 7234, 5.99, '2007-04-27 08:37:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26377, 372, 2, 7735, 4.99, '2007-04-28 03:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26378, 372, 2, 8009, 7.99, '2007-04-28 13:54:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26379, 372, 1, 8059, 2.99, '2007-04-28 15:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26380, 372, 1, 8358, 0.99, '2007-04-29 03:29:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26381, 372, 1, 8724, 0.99, '2007-04-29 16:33:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26382, 372, 1, 8755, 2.99, '2007-04-29 17:46:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26383, 372, 2, 8837, 8.99, '2007-04-29 21:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26384, 372, 1, 9128, 5.99, '2007-04-30 08:19:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26385, 373, 2, 3609, 2.99, '2007-04-06 04:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26386, 373, 2, 3667, 4.99, '2007-04-06 07:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26387, 373, 1, 4325, 7.99, '2007-04-07 16:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26388, 373, 1, 5120, 5.99, '2007-04-09 05:42:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26389, 373, 1, 6202, 3.99, '2007-04-11 10:52:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26390, 373, 2, 6311, 0.99, '2007-04-11 16:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26391, 373, 1, 6944, 4.99, '2007-04-26 22:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26392, 373, 1, 7094, 0.99, '2007-04-27 03:15:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26393, 373, 2, 7206, 3.99, '2007-04-27 07:35:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26394, 373, 1, 7615, 0.99, '2007-04-27 22:43:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26395, 373, 1, 8611, 3.99, '2007-04-29 11:54:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26396, 373, 2, 9327, 8.99, '2007-04-30 15:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26397, 373, 1, 9397, 4.99, '2007-04-30 18:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26398, 373, 2, 9480, 0.99, '2007-04-30 21:54:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26399, 373, 1, 9966, 4.99, '2007-04-30 14:55:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26400, 373, 1, 10010, 6.99, '2007-04-30 16:30:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26401, 373, 1, 10221, 4.99, '2007-04-30 23:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26402, 374, 1, 3797, 1.99, '2007-04-06 13:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26403, 374, 1, 5463, 4.99, '2007-04-09 21:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26404, 374, 1, 5570, 6.99, '2007-04-10 02:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26405, 374, 2, 5591, 3.99, '2007-04-10 02:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26406, 374, 2, 5945, 2.99, '2007-04-10 21:21:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26407, 374, 2, 6315, 0.99, '2007-04-11 17:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26408, 374, 2, 7837, 0.99, '2007-04-28 07:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26409, 374, 2, 8586, 7.99, '2007-04-29 10:45:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26410, 374, 2, 9113, 0.99, '2007-04-30 07:37:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26411, 374, 1, 9866, 6.99, '2007-04-30 11:42:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26412, 375, 1, 3981, 6.99, '2007-04-06 21:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26413, 375, 2, 4335, 4.99, '2007-04-07 17:02:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26414, 375, 2, 5474, 2.99, '2007-04-09 21:52:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26415, 375, 1, 7856, 4.99, '2007-04-28 08:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26416, 375, 2, 8900, 2.99, '2007-04-29 23:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26417, 376, 2, 3719, 2.99, '2007-04-06 09:34:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26418, 376, 1, 4163, 0.99, '2007-04-07 07:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26419, 376, 2, 4166, 8.99, '2007-04-07 08:01:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26420, 376, 1, 4320, 3.99, '2007-04-07 16:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26421, 376, 1, 4554, 5.99, '2007-04-08 03:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26422, 376, 1, 4869, 4.99, '2007-04-08 17:42:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26423, 376, 1, 5675, 4.99, '2007-04-10 06:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26424, 376, 1, 6524, 6.99, '2007-04-12 02:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26425, 376, 1, 6545, 8.99, '2007-04-12 03:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26426, 376, 2, 6807, 2.99, '2007-04-12 16:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26427, 376, 1, 8269, 2.99, '2007-04-28 23:55:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26428, 376, 1, 8420, 5.99, '2007-04-29 05:29:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26429, 376, 1, 9773, 4.99, '2007-04-30 08:25:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26430, 376, 1, 9828, 2.99, '2007-04-30 10:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26431, 376, 1, 9872, 0.99, '2007-04-30 11:56:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26432, 377, 1, 3858, 2.99, '2007-04-06 15:46:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26433, 377, 2, 4053, 0.99, '2007-04-07 02:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26434, 377, 1, 4077, 0.99, '2007-04-07 03:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26435, 377, 1, 4225, 0.99, '2007-04-07 10:53:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26436, 377, 2, 6893, 7.99, '2007-04-12 19:48:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26437, 377, 1, 7697, 1.99, '2007-04-28 02:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26438, 377, 2, 8018, 10.99, '2007-04-28 14:05:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26439, 377, 2, 8916, 4.99, '2007-04-30 00:10:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26440, 377, 2, 9461, 3.99, '2007-04-30 20:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26441, 377, 1, 9564, 0.99, '2007-04-30 01:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26442, 377, 1, 10013, 4.99, '2007-04-30 16:36:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26443, 377, 1, 10183, 8.99, '2007-04-30 22:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26444, 378, 1, 3759, 4.99, '2007-04-06 11:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26445, 378, 2, 4755, 0.99, '2007-04-08 12:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26446, 378, 1, 5578, 1.99, '2007-04-10 02:28:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26447, 378, 2, 6233, 1.99, '2007-04-11 12:39:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26448, 378, 1, 7888, 0.99, '2007-04-28 09:08:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26449, 378, 2, 8740, 2.99, '2007-04-29 17:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26450, 378, 2, 9668, 3.99, '2007-04-30 04:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26451, 378, 1, 9868, 2.99, '2007-04-30 11:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26452, 379, 1, 3788, 4.99, '2007-04-06 12:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26453, 379, 2, 4740, 2.99, '2007-04-08 11:59:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26454, 379, 1, 5402, 4.99, '2007-04-09 18:30:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26455, 379, 1, 6235, 7.99, '2007-04-11 12:46:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26456, 379, 2, 7041, 4.99, '2007-04-27 01:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26457, 379, 1, 10041, 4.99, '2007-04-30 17:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26458, 380, 1, 3637, 2.99, '2007-04-06 05:34:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26459, 380, 1, 3688, 4.99, '2007-04-06 08:10:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26460, 380, 1, 4675, 2.99, '2007-04-08 08:52:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26461, 380, 2, 4706, 4.99, '2007-04-08 10:20:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26462, 380, 2, 5339, 0.99, '2007-04-09 15:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26463, 380, 2, 7021, 8.99, '2007-04-27 00:55:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26464, 380, 2, 7167, 2.99, '2007-04-27 06:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26465, 380, 2, 7435, 0.99, '2007-04-27 16:07:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26466, 380, 2, 7443, 2.99, '2007-04-27 16:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26467, 380, 1, 7773, 2.99, '2007-04-28 05:30:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26468, 380, 1, 7974, 3.99, '2007-04-28 12:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26469, 380, 1, 9056, 0.99, '2007-04-30 05:41:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26470, 380, 1, 9261, 6.99, '2007-04-30 13:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26471, 380, 1, 9710, 10.99, '2007-04-30 06:33:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26472, 381, 2, 3812, 0.99, '2007-04-06 13:50:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26473, 381, 2, 3970, 2.99, '2007-04-06 21:16:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26474, 381, 1, 4735, 0.99, '2007-04-08 11:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26475, 381, 2, 5689, 0.99, '2007-04-10 07:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26476, 381, 2, 6116, 2.99, '2007-04-11 06:06:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26477, 381, 2, 6451, 4.99, '2007-04-11 23:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26478, 381, 2, 6778, 2.99, '2007-04-12 14:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26479, 381, 1, 7375, 2.99, '2007-04-27 13:50:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26480, 381, 1, 7645, 2.99, '2007-04-27 23:56:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26481, 381, 2, 8688, 0.99, '2007-04-29 14:59:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26482, 381, 2, 9144, 0.99, '2007-04-30 08:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26483, 381, 2, 9173, 4.99, '2007-04-30 10:08:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26484, 381, 1, 9822, 2.99, '2007-04-30 10:16:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26485, 381, 2, 10033, 4.99, '2007-04-30 17:12:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26486, 382, 2, 3480, 3.99, '2007-04-05 21:40:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26487, 382, 2, 4351, 4.99, '2007-04-07 17:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26488, 382, 1, 5004, 4.99, '2007-04-08 23:49:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26489, 382, 1, 5816, 0.99, '2007-04-10 14:17:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26490, 382, 2, 7625, 0.99, '2007-04-27 23:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26491, 382, 2, 8777, 0.99, '2007-04-29 18:38:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26492, 382, 1, 8871, 9.99, '2007-04-29 22:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26493, 382, 1, 8993, 4.99, '2007-04-30 03:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26494, 382, 1, 9067, 6.99, '2007-04-30 05:59:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26495, 382, 2, 9555, 0.99, '2007-04-30 00:39:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26496, 383, 2, 4747, 5.99, '2007-04-08 12:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26497, 383, 2, 6091, 4.99, '2007-04-11 04:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26498, 383, 2, 6244, 0.99, '2007-04-11 13:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26499, 383, 1, 6775, 4.99, '2007-04-12 14:30:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26500, 383, 1, 7367, 3.99, '2007-04-27 13:34:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26501, 383, 2, 8367, 2.99, '2007-04-29 03:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26502, 383, 1, 8635, 0.99, '2007-04-29 12:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26503, 383, 1, 9653, 0.99, '2007-04-30 04:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26504, 383, 1, 9678, 0.99, '2007-04-30 05:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26505, 384, 2, 4424, 0.99, '2007-04-07 20:43:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26506, 384, 2, 5250, 0.99, '2007-04-09 12:03:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26507, 384, 1, 5608, 4.99, '2007-04-10 03:36:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26508, 384, 2, 5797, 4.99, '2007-04-10 13:12:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26509, 384, 2, 5966, 2.99, '2007-04-10 22:27:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26510, 384, 2, 6387, 0.99, '2007-04-11 20:44:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26511, 384, 2, 7799, 0.99, '2007-04-28 06:10:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26512, 384, 1, 8445, 1.99, '2007-04-29 06:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26513, 385, 2, 3878, 8.99, '2007-04-06 16:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26514, 385, 2, 3953, 0.99, '2007-04-06 20:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26515, 385, 1, 4714, 6.99, '2007-04-08 10:41:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26516, 385, 1, 5783, 2.99, '2007-04-10 12:23:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26517, 385, 1, 6445, 4.99, '2007-04-11 23:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26518, 385, 2, 6933, 4.99, '2007-04-26 21:37:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26519, 385, 2, 7776, 0.99, '2007-04-28 05:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26520, 385, 1, 8346, 2.99, '2007-04-29 03:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26521, 385, 1, 8518, 2.99, '2007-04-29 08:33:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26522, 385, 1, 9570, 2.99, '2007-04-30 01:09:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26523, 385, 1, 9704, 4.99, '2007-04-30 06:07:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26524, 386, 2, 3783, 6.99, '2007-04-06 12:25:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26525, 386, 1, 4189, 8.99, '2007-04-07 09:19:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26526, 386, 1, 5524, 0.99, '2007-04-10 00:17:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26527, 386, 1, 5953, 2.99, '2007-04-10 21:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26528, 386, 1, 6037, 4.99, '2007-04-11 01:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26529, 386, 1, 6222, 2.99, '2007-04-11 11:54:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26530, 386, 2, 6261, 2.99, '2007-04-11 13:57:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26531, 386, 1, 6324, 3.99, '2007-04-11 17:31:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26532, 386, 2, 6715, 4.99, '2007-04-12 12:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26533, 386, 2, 8340, 4.99, '2007-04-29 03:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26534, 386, 1, 8751, 2.99, '2007-04-29 17:43:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26535, 386, 2, 9602, 0.99, '2007-04-30 02:11:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26536, 386, 1, 9686, 5.99, '2007-04-30 05:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26537, 387, 2, 6216, 4.99, '2007-04-11 11:25:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26538, 387, 2, 6456, 6.99, '2007-04-11 23:33:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26539, 387, 1, 6517, 5.99, '2007-04-12 02:21:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26540, 387, 1, 7497, 0.99, '2007-04-27 18:33:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26541, 387, 1, 8090, 2.99, '2007-04-28 16:55:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26542, 388, 2, 4947, 5.99, '2007-04-08 21:18:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26543, 388, 2, 5899, 2.99, '2007-04-10 18:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26544, 388, 2, 6321, 2.99, '2007-04-11 17:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26545, 388, 1, 6452, 2.99, '2007-04-11 23:25:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26546, 388, 2, 7985, 5.99, '2007-04-28 12:57:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26547, 388, 2, 8456, 3.99, '2007-04-29 06:26:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26548, 388, 2, 9213, 0.99, '2007-04-30 11:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26549, 388, 2, 9368, 2.99, '2007-04-30 17:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26550, 388, 2, 9840, 2.99, '2007-04-30 10:51:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26551, 388, 2, 9940, 0.99, '2007-04-30 13:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26552, 388, 2, 10044, 2.99, '2007-04-30 17:30:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26553, 389, 2, 3527, 0.99, '2007-04-05 23:39:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26554, 389, 1, 4443, 6.99, '2007-04-07 21:34:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26555, 389, 1, 5249, 0.99, '2007-04-09 12:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26556, 389, 2, 5626, 3.99, '2007-04-10 04:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26557, 389, 2, 6104, 2.99, '2007-04-11 05:30:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26558, 389, 1, 6600, 3.99, '2007-04-12 06:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26559, 389, 1, 7029, 4.99, '2007-04-27 01:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26560, 389, 1, 7896, 8.99, '2007-04-28 09:29:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26561, 389, 2, 7977, 4.99, '2007-04-28 12:44:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26562, 389, 1, 8338, 6.99, '2007-04-29 03:09:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26563, 389, 1, 8887, 4.99, '2007-04-29 23:05:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26564, 389, 1, 10217, 4.99, '2007-04-30 23:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26565, 390, 1, 3999, 2.99, '2007-04-06 22:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26566, 390, 1, 4022, 4.99, '2007-04-07 00:18:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26567, 390, 2, 4191, 3.99, '2007-04-07 09:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26568, 390, 2, 4310, 2.99, '2007-04-07 15:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26569, 390, 1, 4968, 5.99, '2007-04-08 22:17:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26570, 390, 1, 6215, 4.99, '2007-04-11 11:21:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26571, 390, 1, 6430, 0.99, '2007-04-11 22:32:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26572, 390, 2, 7515, 3.99, '2007-04-27 19:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26573, 390, 1, 7595, 5.99, '2007-04-27 22:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26574, 390, 1, 8493, 0.99, '2007-04-29 07:32:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26575, 390, 1, 9251, 5.99, '2007-04-30 12:47:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26576, 390, 2, 9314, 2.99, '2007-04-30 15:33:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26577, 390, 1, 9825, 4.99, '2007-04-30 10:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26578, 390, 1, 10061, 4.99, '2007-04-30 17:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26579, 391, 1, 4188, 5.99, '2007-04-07 09:13:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26580, 391, 1, 4716, 0.99, '2007-04-08 10:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26581, 391, 2, 4753, 0.99, '2007-04-08 12:47:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26582, 391, 2, 5583, 7.99, '2007-04-10 02:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26583, 391, 1, 5599, 4.99, '2007-04-10 03:20:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26584, 391, 1, 6302, 3.99, '2007-04-11 16:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26585, 391, 1, 6463, 2.99, '2007-04-11 23:44:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26586, 391, 2, 8016, 0.99, '2007-04-28 14:04:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26587, 391, 1, 8908, 0.99, '2007-04-29 23:54:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26588, 391, 2, 8913, 6.99, '2007-04-30 00:03:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26589, 391, 1, 9225, 0.99, '2007-04-30 11:58:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26590, 391, 1, 10210, 7.99, '2007-04-30 23:27:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26591, 392, 1, 3566, 2.99, '2007-04-06 01:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26592, 392, 2, 6061, 0.99, '2007-04-11 02:34:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26593, 392, 2, 6406, 2.99, '2007-04-11 21:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26594, 392, 1, 7692, 2.99, '2007-04-28 01:58:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26595, 392, 1, 7981, 1.99, '2007-04-28 12:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26596, 392, 1, 8254, 0.99, '2007-04-28 23:27:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26597, 392, 2, 8612, 9.99, '2007-04-29 11:56:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26598, 392, 2, 10085, 0.99, '2007-04-30 18:40:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26599, 393, 2, 4275, 2.99, '2007-04-07 13:12:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26600, 393, 2, 4546, 8.99, '2007-04-08 02:47:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26601, 393, 2, 4632, 5.99, '2007-04-08 07:07:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26602, 393, 2, 4791, 7.99, '2007-04-08 14:55:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26603, 393, 1, 5099, 4.99, '2007-04-09 04:42:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26604, 393, 1, 6221, 2.99, '2007-04-11 11:52:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26605, 393, 2, 6513, 0.99, '2007-04-12 02:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26606, 393, 1, 6930, 8.99, '2007-04-26 21:28:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26607, 393, 2, 7486, 0.99, '2007-04-27 17:57:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26608, 393, 2, 8004, 4.99, '2007-04-28 13:42:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26609, 393, 2, 8448, 0.99, '2007-04-29 06:10:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26610, 393, 2, 9763, 7.99, '2007-04-30 08:02:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26611, 393, 1, 10158, 1.99, '2007-04-30 21:08:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26612, 394, 2, 3543, 0.99, '2007-04-06 00:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26613, 394, 1, 3873, 6.99, '2007-04-06 16:31:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26614, 394, 2, 4009, 2.99, '2007-04-06 22:57:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26615, 394, 1, 4307, 6.99, '2007-04-07 15:49:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26616, 394, 2, 5183, 4.99, '2007-04-09 08:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26617, 394, 1, 5535, 4.99, '2007-04-10 00:56:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26618, 394, 2, 6059, 4.99, '2007-04-11 02:32:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26619, 394, 2, 7445, 3.99, '2007-04-27 16:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26620, 394, 1, 9147, 0.99, '2007-04-30 09:07:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26621, 394, 2, 9864, 0.99, '2007-04-30 11:35:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26622, 395, 2, 3684, 0.99, '2007-04-06 07:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26623, 395, 1, 4185, 5.99, '2007-04-07 08:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26624, 395, 1, 4393, 4.99, '2007-04-07 19:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26625, 395, 1, 5087, 0.99, '2007-04-09 04:12:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26626, 395, 2, 5136, 0.99, '2007-04-09 06:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26627, 395, 1, 7740, 2.99, '2007-04-28 03:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26628, 395, 2, 7986, 7.99, '2007-04-28 12:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26629, 396, 2, 3909, 6.99, '2007-04-06 18:23:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26630, 396, 1, 5059, 1.99, '2007-04-09 02:56:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26631, 396, 2, 6335, 2.99, '2007-04-11 17:53:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26632, 396, 2, 6764, 4.99, '2007-04-12 13:57:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26633, 396, 2, 6771, 2.99, '2007-04-12 14:23:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26634, 396, 2, 7142, 0.99, '2007-04-27 05:24:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26635, 396, 2, 7313, 2.99, '2007-04-27 11:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26636, 396, 2, 8371, 2.99, '2007-04-29 03:45:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26637, 396, 2, 8807, 2.99, '2007-04-29 20:05:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26638, 396, 1, 9344, 5.99, '2007-04-30 16:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26639, 396, 2, 10120, 2.99, '2007-04-30 19:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26640, 396, 2, 10124, 0.99, '2007-04-30 20:00:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26641, 396, 2, 10195, 6.99, '2007-04-30 23:03:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26642, 397, 1, 3489, 5.99, '2007-04-05 22:02:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26643, 397, 1, 4036, 0.99, '2007-04-07 01:16:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26644, 397, 2, 5103, 4.99, '2007-04-09 05:03:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26645, 397, 2, 5598, 4.99, '2007-04-10 03:16:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26646, 397, 2, 5763, 4.99, '2007-04-10 11:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26647, 397, 2, 6014, 2.99, '2007-04-11 00:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26648, 397, 2, 6266, 2.99, '2007-04-11 14:14:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26649, 397, 1, 6471, 4.99, '2007-04-11 23:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26650, 397, 2, 7356, 2.99, '2007-04-27 13:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26651, 397, 2, 7892, 4.99, '2007-04-28 09:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26652, 397, 1, 8103, 6.99, '2007-04-28 17:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26653, 397, 1, 9495, 0.99, '2007-04-30 22:22:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26654, 397, 2, 9608, 1.99, '2007-04-30 02:20:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26655, 398, 2, 5234, 5.99, '2007-04-09 11:13:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26656, 398, 2, 8119, 3.99, '2007-04-28 17:51:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26657, 398, 2, 8204, 4.99, '2007-04-28 21:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26658, 398, 1, 8428, 7.99, '2007-04-29 05:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26659, 398, 1, 9042, 2.99, '2007-04-30 05:02:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26660, 398, 2, 9281, 5.99, '2007-04-30 13:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26661, 398, 1, 9771, 1.99, '2007-04-30 08:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26662, 399, 2, 4957, 0.99, '2007-04-08 21:47:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26663, 399, 2, 4981, 4.99, '2007-04-08 22:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26664, 399, 1, 5507, 0.99, '2007-04-09 23:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26665, 399, 2, 6006, 2.99, '2007-04-11 00:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26666, 399, 2, 6229, 6.99, '2007-04-11 12:28:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26667, 399, 2, 6674, 4.99, '2007-04-12 10:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26668, 399, 2, 8461, 5.99, '2007-04-29 06:39:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26669, 399, 2, 9728, 2.99, '2007-04-30 07:09:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26670, 400, 1, 4573, 6.99, '2007-04-08 04:07:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26671, 400, 1, 4645, 2.99, '2007-04-08 07:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26672, 400, 2, 5212, 6.99, '2007-04-09 10:06:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26673, 400, 2, 5222, 5.99, '2007-04-09 10:34:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26674, 400, 2, 6790, 5.99, '2007-04-12 15:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26675, 400, 2, 6994, 2.99, '2007-04-26 23:36:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26676, 400, 2, 7296, 2.99, '2007-04-27 11:08:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26677, 400, 1, 7682, 5.99, '2007-04-28 01:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26678, 400, 2, 9177, 5.99, '2007-04-30 10:21:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26679, 400, 2, 9756, 4.99, '2007-04-30 07:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26680, 400, 1, 10187, 2.99, '2007-04-30 22:44:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26681, 401, 1, 4059, 0.99, '2007-04-07 02:32:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26682, 401, 2, 4292, 7.99, '2007-04-07 14:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26683, 401, 2, 5923, 0.99, '2007-04-10 20:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26684, 267, 2, 9059, 3.99, '2007-04-30 05:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26685, 401, 2, 7651, 4.99, '2007-04-28 00:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26686, 401, 1, 8450, 2.99, '2007-04-29 06:12:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26687, 401, 2, 8669, 2.99, '2007-04-29 14:13:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26688, 401, 1, 8722, 8.99, '2007-04-29 16:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26689, 401, 2, 9701, 4.99, '2007-04-30 06:00:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26690, 401, 2, 10171, 0.99, '2007-04-30 21:57:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26691, 402, 2, 3564, 6.99, '2007-04-06 01:30:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26692, 402, 2, 3612, 3.99, '2007-04-06 04:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26693, 402, 2, 3755, 5.99, '2007-04-06 11:05:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26694, 402, 1, 4399, 2.99, '2007-04-07 19:48:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26695, 402, 2, 4604, 3.99, '2007-04-08 05:27:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26696, 402, 2, 5329, 4.99, '2007-04-09 15:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26697, 402, 2, 6183, 2.99, '2007-04-11 09:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26698, 402, 1, 6283, 3.99, '2007-04-11 15:15:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26699, 402, 1, 7633, 0.99, '2007-04-27 23:32:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26700, 402, 2, 8521, 7.99, '2007-04-29 08:41:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26701, 402, 1, 9657, 6.99, '2007-04-30 04:29:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26702, 402, 2, 9779, 0.99, '2007-04-30 08:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26703, 403, 1, 3644, 6.99, '2007-04-06 05:48:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26704, 403, 2, 3737, 3.99, '2007-04-06 10:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26705, 403, 2, 4096, 4.99, '2007-04-07 04:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26706, 403, 1, 5982, 4.99, '2007-04-10 22:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26707, 403, 2, 6322, 2.99, '2007-04-11 17:26:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26708, 403, 1, 6342, 4.99, '2007-04-11 18:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26709, 403, 1, 7103, 4.99, '2007-04-27 03:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26710, 403, 2, 8013, 5.99, '2007-04-28 13:58:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26711, 403, 1, 9058, 2.99, '2007-04-30 05:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26712, 403, 2, 9486, 7.99, '2007-04-30 22:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26713, 403, 2, 9794, 4.99, '2007-04-30 09:15:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26714, 403, 2, 10109, 5.99, '2007-04-30 19:33:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26715, 404, 1, 3927, 2.99, '2007-04-06 19:16:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26716, 404, 1, 4495, 2.99, '2007-04-08 00:12:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26717, 404, 2, 4615, 8.99, '2007-04-08 06:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26718, 404, 1, 4653, 4.99, '2007-04-08 08:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26719, 404, 1, 4963, 4.99, '2007-04-08 22:07:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26720, 404, 1, 5632, 3.99, '2007-04-10 04:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26721, 404, 1, 6114, 1.99, '2007-04-11 06:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26722, 404, 2, 6779, 0.99, '2007-04-12 14:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26723, 404, 1, 6964, 4.99, '2007-04-26 22:43:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26724, 404, 1, 8058, 5.99, '2007-04-28 15:36:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26725, 404, 1, 8455, 3.99, '2007-04-29 06:21:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26726, 404, 1, 9206, 4.99, '2007-04-30 11:15:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26727, 404, 1, 9472, 4.99, '2007-04-30 21:31:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26728, 404, 2, 9824, 2.99, '2007-04-30 10:18:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26729, 405, 2, 4223, 0.99, '2007-04-07 10:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26730, 405, 2, 4401, 0.99, '2007-04-07 19:54:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26731, 405, 2, 5040, 7.99, '2007-04-09 01:45:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26732, 405, 1, 5231, 0.99, '2007-04-09 11:03:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26733, 405, 2, 5512, 1.99, '2007-04-09 23:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26734, 405, 1, 6110, 2.99, '2007-04-11 05:52:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26735, 405, 1, 7455, 2.99, '2007-04-27 17:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26736, 405, 1, 7759, 0.99, '2007-04-28 04:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26737, 405, 2, 8482, 2.99, '2007-04-29 07:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26738, 405, 1, 8955, 5.99, '2007-04-30 01:56:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26739, 405, 1, 9569, 0.99, '2007-04-30 01:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26740, 406, 2, 4264, 4.99, '2007-04-07 12:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26741, 406, 2, 5098, 4.99, '2007-04-09 04:42:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26742, 406, 2, 5263, 0.99, '2007-04-09 12:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26743, 406, 1, 5766, 0.99, '2007-04-10 11:35:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26744, 406, 2, 6439, 2.99, '2007-04-11 22:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26745, 406, 2, 7109, 5.99, '2007-04-27 03:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26746, 406, 1, 7171, 4.99, '2007-04-27 06:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26747, 406, 1, 7259, 4.99, '2007-04-27 09:34:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26748, 406, 2, 7604, 7.99, '2007-04-27 22:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26749, 406, 2, 8080, 4.99, '2007-04-28 16:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26750, 406, 2, 8295, 2.99, '2007-04-29 01:10:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26751, 406, 2, 8630, 0.99, '2007-04-29 12:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26752, 406, 1, 8903, 0.99, '2007-04-29 23:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26753, 406, 2, 8962, 1.99, '2007-04-30 02:12:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26754, 406, 2, 9224, 0.99, '2007-04-30 11:54:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26755, 406, 1, 9291, 4.99, '2007-04-30 14:32:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26756, 406, 2, 9487, 2.99, '2007-04-30 22:08:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26757, 406, 1, 9660, 8.99, '2007-04-30 04:31:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26758, 407, 1, 4296, 0.99, '2007-04-07 14:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26759, 407, 1, 5070, 4.99, '2007-04-09 03:26:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26760, 407, 2, 5590, 9.99, '2007-04-10 02:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26761, 407, 1, 6727, 0.99, '2007-04-12 12:22:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26762, 407, 1, 7363, 5.99, '2007-04-27 13:26:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26763, 407, 2, 7643, 4.99, '2007-04-27 23:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26764, 407, 1, 8078, 2.99, '2007-04-28 16:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26765, 407, 1, 8109, 4.99, '2007-04-28 17:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26766, 407, 1, 8197, 9.99, '2007-04-28 21:32:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26767, 407, 2, 8571, 0.99, '2007-04-29 10:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26768, 407, 1, 8802, 2.99, '2007-04-29 19:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26769, 408, 2, 4330, 3.99, '2007-04-07 16:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26770, 408, 2, 5073, 0.99, '2007-04-09 03:31:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26771, 408, 1, 6062, 0.99, '2007-04-11 02:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26772, 408, 2, 6203, 4.99, '2007-04-11 10:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26773, 408, 2, 6826, 2.99, '2007-04-12 17:00:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26774, 408, 1, 7053, 4.99, '2007-04-27 02:07:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26775, 408, 2, 7996, 4.99, '2007-04-28 13:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26776, 408, 2, 8251, 4.99, '2007-04-28 23:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26777, 408, 2, 8469, 3.99, '2007-04-29 06:54:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26778, 408, 2, 8902, 6.99, '2007-04-29 23:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26779, 408, 1, 9052, 0.99, '2007-04-30 05:34:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26780, 408, 2, 9757, 4.99, '2007-04-30 07:53:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26781, 409, 1, 3866, 5.99, '2007-04-06 16:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26782, 409, 2, 4550, 4.99, '2007-04-08 03:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26783, 409, 1, 5175, 3.99, '2007-04-09 08:02:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26784, 409, 2, 5306, 5.99, '2007-04-09 14:25:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26785, 409, 1, 5422, 0.99, '2007-04-09 19:24:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26786, 409, 1, 5848, 2.99, '2007-04-10 15:56:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26787, 409, 1, 5955, 7.99, '2007-04-10 21:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26788, 409, 2, 6026, 4.99, '2007-04-11 00:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26789, 409, 1, 6596, 2.99, '2007-04-12 06:01:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26790, 409, 2, 7673, 2.99, '2007-04-28 01:22:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26791, 409, 2, 7940, 0.99, '2007-04-28 11:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26792, 409, 1, 8037, 4.99, '2007-04-28 14:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26793, 409, 2, 8265, 5.99, '2007-04-28 23:48:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26794, 409, 1, 8726, 1.99, '2007-04-29 16:37:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26795, 409, 2, 9267, 0.99, '2007-04-30 13:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26796, 410, 2, 4062, 0.99, '2007-04-07 02:50:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26797, 410, 1, 4267, 0.99, '2007-04-07 13:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26798, 410, 1, 5150, 3.99, '2007-04-09 06:57:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26799, 410, 1, 5192, 4.99, '2007-04-09 08:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26800, 410, 2, 5330, 5.99, '2007-04-09 15:22:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26801, 410, 1, 5336, 2.99, '2007-04-09 15:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26802, 410, 1, 6148, 4.99, '2007-04-11 07:42:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26803, 410, 2, 6218, 5.99, '2007-04-11 11:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26804, 410, 2, 7350, 4.99, '2007-04-27 13:02:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26805, 410, 2, 7407, 5.99, '2007-04-27 14:57:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26806, 410, 1, 7523, 4.99, '2007-04-27 19:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26807, 410, 2, 8625, 3.99, '2007-04-29 12:27:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26808, 410, 1, 8882, 0.99, '2007-04-29 22:52:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26809, 410, 1, 9263, 2.99, '2007-04-30 13:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26810, 411, 1, 3928, 2.99, '2007-04-06 19:20:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26811, 411, 2, 4146, 0.99, '2007-04-07 06:58:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26812, 411, 1, 4246, 2.99, '2007-04-07 12:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26813, 411, 2, 5357, 5.99, '2007-04-09 16:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26814, 411, 1, 5800, 2.99, '2007-04-10 13:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26815, 411, 1, 7102, 1.99, '2007-04-27 03:35:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26816, 411, 2, 7395, 0.99, '2007-04-27 14:31:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26817, 411, 1, 7513, 2.99, '2007-04-27 19:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26818, 411, 1, 7813, 2.99, '2007-04-28 06:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26819, 411, 1, 8023, 0.99, '2007-04-28 14:21:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26820, 411, 2, 8613, 5.99, '2007-04-29 11:59:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26821, 411, 2, 9622, 0.99, '2007-04-30 02:50:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26822, 412, 2, 3888, 0.99, '2007-04-06 17:22:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26823, 412, 2, 4074, 0.99, '2007-04-07 03:18:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26824, 412, 1, 8036, 0.99, '2007-04-28 14:56:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26825, 412, 2, 8330, 8.99, '2007-04-29 02:37:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26826, 412, 1, 8411, 8.99, '2007-04-29 05:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26827, 412, 1, 8674, 0.99, '2007-04-29 14:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26828, 412, 1, 9881, 4.99, '2007-04-30 12:19:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26829, 413, 1, 3762, 4.99, '2007-04-06 11:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26830, 413, 2, 4491, 0.99, '2007-04-07 23:59:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26831, 413, 1, 5897, 7.99, '2007-04-10 18:44:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26832, 413, 2, 7100, 4.99, '2007-04-27 03:33:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26833, 413, 1, 7635, 0.99, '2007-04-27 23:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26834, 413, 2, 7731, 0.99, '2007-04-28 03:29:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26835, 414, 1, 3957, 10.99, '2007-04-06 20:34:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26836, 414, 1, 4437, 3.99, '2007-04-07 21:24:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26837, 414, 2, 6462, 7.99, '2007-04-11 23:43:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26838, 414, 2, 6728, 0.99, '2007-04-12 12:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26839, 414, 2, 6845, 0.99, '2007-04-12 17:49:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26840, 414, 1, 7009, 0.99, '2007-04-27 00:14:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26841, 414, 1, 7779, 2.99, '2007-04-28 05:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26842, 414, 1, 9650, 2.99, '2007-04-30 04:15:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26843, 414, 2, 9991, 2.99, '2007-04-30 15:54:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26844, 414, 2, 10107, 5.99, '2007-04-30 19:30:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26845, 415, 2, 4926, 8.99, '2007-04-08 20:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26846, 415, 2, 5665, 0.99, '2007-04-10 06:38:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26847, 415, 2, 5733, 0.99, '2007-04-10 10:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26848, 415, 2, 6491, 5.99, '2007-04-12 00:56:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26849, 415, 1, 6505, 3.99, '2007-04-12 01:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26850, 415, 1, 7379, 4.99, '2007-04-27 14:05:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26851, 415, 2, 7624, 0.99, '2007-04-27 23:06:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26852, 415, 1, 7748, 4.99, '2007-04-28 04:20:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26853, 415, 2, 8317, 2.99, '2007-04-29 02:07:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26854, 415, 2, 9586, 2.99, '2007-04-30 01:35:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26855, 415, 1, 9852, 2.99, '2007-04-30 11:20:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26856, 416, 1, 3833, 3.99, '2007-04-06 14:46:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26857, 416, 1, 3868, 2.99, '2007-04-06 16:22:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26858, 416, 1, 6097, 2.99, '2007-04-11 04:50:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26859, 416, 1, 6879, 7.99, '2007-04-12 19:06:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26860, 416, 1, 7889, 0.99, '2007-04-28 09:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26861, 416, 1, 7917, 2.99, '2007-04-28 10:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26862, 416, 2, 8349, 5.99, '2007-04-29 03:18:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26863, 416, 2, 8588, 2.99, '2007-04-29 10:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26864, 416, 2, 8648, 2.99, '2007-04-29 13:24:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26865, 416, 2, 9383, 2.99, '2007-04-30 17:53:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26866, 417, 1, 3952, 4.99, '2007-04-06 20:19:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26867, 417, 1, 4418, 2.99, '2007-04-07 20:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26868, 417, 1, 4421, 9.99, '2007-04-07 20:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26869, 417, 2, 6258, 6.99, '2007-04-11 13:52:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26870, 417, 1, 6312, 4.99, '2007-04-11 16:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26871, 417, 1, 8877, 2.99, '2007-04-29 22:43:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26872, 417, 2, 9049, 2.99, '2007-04-30 05:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26873, 418, 1, 3805, 0.99, '2007-04-06 13:37:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26874, 418, 2, 4852, 7.99, '2007-04-08 17:11:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26875, 418, 1, 4865, 2.99, '2007-04-08 17:37:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26876, 418, 1, 4938, 0.99, '2007-04-08 21:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26877, 418, 1, 6150, 4.99, '2007-04-11 07:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26878, 418, 1, 6970, 4.99, '2007-04-26 22:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26879, 418, 2, 8546, 5.99, '2007-04-29 09:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26880, 418, 2, 8591, 0.99, '2007-04-29 11:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26881, 418, 2, 8886, 10.99, '2007-04-29 23:04:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26882, 418, 1, 9558, 4.99, '2007-04-30 00:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26883, 419, 1, 3596, 0.99, '2007-04-06 03:31:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26884, 419, 1, 3694, 4.99, '2007-04-06 08:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26885, 419, 1, 4224, 0.99, '2007-04-07 10:52:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26886, 419, 2, 5333, 5.99, '2007-04-09 15:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26887, 419, 2, 5863, 0.99, '2007-04-10 16:53:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26888, 419, 1, 5900, 3.99, '2007-04-10 18:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26889, 419, 2, 5933, 0.99, '2007-04-10 20:35:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26890, 419, 2, 6173, 0.99, '2007-04-11 09:01:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26891, 419, 2, 6587, 3.99, '2007-04-12 05:24:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26892, 419, 1, 7362, 4.99, '2007-04-27 13:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26893, 419, 1, 7619, 2.99, '2007-04-27 22:54:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26894, 419, 1, 7796, 4.99, '2007-04-28 06:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26895, 419, 1, 10150, 2.99, '2007-04-30 20:50:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26896, 420, 1, 4176, 4.99, '2007-04-07 08:32:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26897, 420, 2, 5081, 4.99, '2007-04-09 03:53:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26898, 420, 1, 5168, 4.99, '2007-04-09 07:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26899, 420, 2, 5911, 0.99, '2007-04-10 19:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26900, 420, 2, 6086, 3.99, '2007-04-11 03:57:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26901, 420, 2, 6096, 4.99, '2007-04-11 04:46:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26902, 420, 2, 6582, 4.99, '2007-04-12 04:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26903, 420, 1, 6588, 4.99, '2007-04-12 05:26:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26904, 420, 2, 7081, 2.99, '2007-04-27 02:54:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26905, 420, 2, 8485, 0.99, '2007-04-29 07:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26906, 420, 1, 9362, 0.99, '2007-04-30 17:12:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26907, 421, 1, 3491, 7.99, '2007-04-05 22:09:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26908, 421, 2, 3703, 5.99, '2007-04-06 08:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26909, 421, 1, 3988, 8.99, '2007-04-06 21:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26910, 421, 2, 4456, 5.99, '2007-04-07 22:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26911, 421, 1, 6220, 0.99, '2007-04-11 11:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26912, 421, 2, 6960, 3.99, '2007-04-26 22:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26913, 421, 2, 7449, 4.99, '2007-04-27 16:46:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26914, 421, 2, 8025, 2.99, '2007-04-28 14:31:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26915, 421, 1, 8268, 4.99, '2007-04-28 23:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26916, 421, 1, 8725, 4.99, '2007-04-29 16:37:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26917, 421, 2, 9377, 4.99, '2007-04-30 17:40:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26918, 421, 2, 9875, 0.99, '2007-04-30 12:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26919, 421, 1, 10200, 4.99, '2007-04-30 23:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26920, 422, 1, 3553, 4.99, '2007-04-06 01:04:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26921, 422, 2, 4463, 2.99, '2007-04-07 22:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26922, 422, 2, 4504, 0.99, '2007-04-08 00:47:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26923, 422, 1, 5784, 1.99, '2007-04-10 12:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26924, 422, 2, 7827, 0.99, '2007-04-28 07:05:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26925, 422, 2, 8206, 4.99, '2007-04-28 21:48:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26926, 422, 2, 9541, 4.99, '2007-04-30 00:08:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26927, 423, 2, 4105, 0.99, '2007-04-07 04:59:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26928, 423, 1, 4250, 0.99, '2007-04-07 12:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26929, 423, 1, 4679, 2.99, '2007-04-08 09:01:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26930, 423, 1, 6506, 1.99, '2007-04-12 01:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26931, 423, 1, 7016, 5.99, '2007-04-27 00:43:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26932, 423, 2, 7141, 2.99, '2007-04-27 05:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26933, 423, 1, 7157, 4.99, '2007-04-27 05:48:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26934, 423, 1, 7290, 0.99, '2007-04-27 10:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26935, 423, 2, 7539, 9.99, '2007-04-27 20:08:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26936, 423, 1, 7849, 9.99, '2007-04-28 07:58:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26937, 423, 2, 8082, 3.99, '2007-04-28 16:36:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26938, 423, 2, 8595, 9.99, '2007-04-29 11:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26939, 423, 2, 9026, 2.99, '2007-04-30 04:23:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26940, 424, 2, 3746, 0.99, '2007-04-06 10:39:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26941, 424, 2, 4512, 0.99, '2007-04-08 01:07:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26942, 424, 2, 4559, 0.99, '2007-04-08 03:25:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26943, 424, 2, 4696, 5.99, '2007-04-08 09:40:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26944, 424, 1, 5568, 0.99, '2007-04-10 02:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26945, 424, 1, 5611, 3.99, '2007-04-10 03:42:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26946, 424, 1, 6589, 2.99, '2007-04-12 05:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26947, 424, 1, 7594, 2.99, '2007-04-27 21:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26948, 424, 2, 8194, 2.99, '2007-04-28 21:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26949, 424, 1, 8918, 4.99, '2007-04-30 00:24:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26950, 424, 2, 8964, 1.99, '2007-04-30 02:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26951, 424, 2, 8999, 2.99, '2007-04-30 03:24:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26952, 424, 1, 9471, 4.99, '2007-04-30 21:31:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26953, 424, 1, 9516, 8.99, '2007-04-30 23:09:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26954, 424, 2, 9878, 4.99, '2007-04-30 12:10:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26955, 424, 1, 10017, 6.99, '2007-04-30 16:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26956, 425, 1, 3807, 4.99, '2007-04-06 13:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26957, 425, 2, 4361, 2.99, '2007-04-07 18:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26958, 425, 2, 4362, 5.99, '2007-04-07 18:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26959, 425, 2, 4483, 8.99, '2007-04-07 23:31:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26960, 425, 1, 4659, 2.99, '2007-04-08 08:21:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26961, 425, 1, 4884, 7.99, '2007-04-08 18:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26962, 425, 1, 4939, 7.99, '2007-04-08 21:03:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26963, 425, 2, 5363, 2.99, '2007-04-09 16:47:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26964, 425, 1, 5371, 4.99, '2007-04-09 17:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26965, 425, 2, 6318, 2.99, '2007-04-11 17:16:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26966, 425, 1, 6603, 2.99, '2007-04-12 06:21:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26967, 425, 1, 7249, 4.99, '2007-04-27 09:08:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26968, 425, 1, 8974, 0.99, '2007-04-30 02:37:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26969, 425, 1, 9170, 0.99, '2007-04-30 10:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26970, 425, 2, 9682, 2.99, '2007-04-30 05:15:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26971, 425, 1, 10121, 0.99, '2007-04-30 19:53:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26972, 425, 2, 10163, 0.99, '2007-04-30 21:41:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26973, 426, 2, 4114, 2.99, '2007-04-07 05:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26974, 426, 2, 4398, 4.99, '2007-04-07 19:47:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26975, 426, 1, 4900, 4.99, '2007-04-08 19:06:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26976, 426, 1, 5725, 3.99, '2007-04-10 09:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26977, 426, 1, 7495, 4.99, '2007-04-27 18:29:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26978, 426, 1, 7527, 10.99, '2007-04-27 19:42:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26979, 426, 1, 7711, 4.99, '2007-04-28 02:55:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26980, 426, 1, 7789, 5.99, '2007-04-28 05:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26981, 426, 1, 9185, 5.99, '2007-04-30 10:39:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26982, 426, 2, 9247, 4.99, '2007-04-30 12:42:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26983, 426, 2, 10172, 10.99, '2007-04-30 21:58:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26984, 427, 1, 4793, 3.99, '2007-04-08 14:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26985, 427, 2, 5476, 2.99, '2007-04-09 22:05:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26986, 427, 2, 5586, 5.99, '2007-04-10 02:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26987, 427, 1, 6423, 6.99, '2007-04-11 22:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26988, 427, 1, 6509, 2.99, '2007-04-12 02:03:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26989, 427, 2, 6938, 7.99, '2007-04-26 21:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26990, 427, 2, 8182, 3.99, '2007-04-28 20:47:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26991, 427, 1, 8531, 5.99, '2007-04-29 08:54:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26992, 427, 2, 8658, 5.99, '2007-04-29 13:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26993, 427, 2, 9978, 2.99, '2007-04-30 15:28:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26994, 428, 1, 3702, 2.99, '2007-04-06 08:42:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26995, 428, 1, 3925, 5.99, '2007-04-06 19:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26996, 428, 1, 4151, 0.99, '2007-04-07 07:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26997, 428, 1, 5373, 4.99, '2007-04-09 17:17:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26998, 428, 1, 6735, 5.99, '2007-04-12 12:36:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (26999, 428, 1, 7823, 6.99, '2007-04-28 07:01:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27000, 428, 1, 8155, 2.99, '2007-04-28 19:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27001, 428, 2, 8387, 4.99, '2007-04-29 04:15:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27002, 428, 2, 8528, 4.99, '2007-04-29 08:52:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27003, 428, 1, 9904, 5.99, '2007-04-30 13:02:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27004, 428, 2, 9982, 2.99, '2007-04-30 15:37:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27005, 429, 2, 5868, 4.99, '2007-04-10 17:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27006, 429, 2, 6196, 7.99, '2007-04-11 10:34:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27007, 429, 2, 6886, 6.99, '2007-04-12 19:26:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27008, 429, 1, 6977, 6.99, '2007-04-26 23:09:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27009, 429, 2, 7352, 4.99, '2007-04-27 13:06:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27010, 429, 2, 8136, 1.99, '2007-04-28 18:34:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27011, 429, 2, 8143, 2.99, '2007-04-28 18:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27012, 429, 2, 8175, 7.99, '2007-04-28 20:06:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27013, 429, 1, 9849, 0.99, '2007-04-30 11:13:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27014, 430, 1, 5002, 4.99, '2007-04-08 23:45:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27015, 430, 1, 5217, 5.99, '2007-04-09 10:25:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27016, 430, 2, 5879, 6.99, '2007-04-10 17:41:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27017, 430, 1, 5958, 6.99, '2007-04-10 22:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27018, 430, 2, 6043, 0.99, '2007-04-11 01:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27019, 430, 1, 8560, 4.99, '2007-04-29 09:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27020, 430, 2, 9450, 2.99, '2007-04-30 20:32:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27021, 431, 1, 4144, 3.99, '2007-04-07 06:54:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27022, 431, 1, 4801, 2.99, '2007-04-08 15:20:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27023, 431, 1, 4863, 0.99, '2007-04-08 17:31:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27024, 431, 2, 7978, 4.99, '2007-04-28 12:44:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27025, 431, 2, 8810, 4.99, '2007-04-29 20:13:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27026, 432, 1, 4965, 5.99, '2007-04-08 22:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27027, 432, 1, 4973, 4.99, '2007-04-08 22:26:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27028, 432, 1, 5204, 2.99, '2007-04-09 09:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27029, 432, 1, 5322, 6.99, '2007-04-09 14:56:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27030, 432, 1, 5944, 4.99, '2007-04-10 21:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27031, 432, 1, 5990, 4.99, '2007-04-10 23:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27032, 432, 2, 7326, 4.99, '2007-04-27 12:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27033, 432, 2, 7681, 0.99, '2007-04-28 01:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27034, 432, 2, 8079, 4.99, '2007-04-28 16:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27035, 432, 2, 8094, 6.99, '2007-04-28 16:58:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27036, 432, 2, 9916, 4.99, '2007-04-30 13:23:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27037, 432, 2, 9984, 2.99, '2007-04-30 15:40:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27038, 433, 2, 4087, 6.99, '2007-04-07 03:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27039, 433, 2, 4158, 0.99, '2007-04-07 07:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27040, 433, 2, 4988, 7.99, '2007-04-08 23:14:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27041, 433, 2, 5457, 0.99, '2007-04-09 21:01:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27042, 433, 1, 5969, 8.99, '2007-04-10 22:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27043, 433, 1, 6765, 5.99, '2007-04-12 13:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27044, 433, 1, 6848, 0.99, '2007-04-12 17:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27045, 433, 1, 6850, 4.99, '2007-04-12 17:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27046, 433, 1, 7821, 4.99, '2007-04-28 06:59:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27047, 433, 2, 7907, 4.99, '2007-04-28 10:00:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27048, 433, 1, 8414, 5.99, '2007-04-29 05:17:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27049, 433, 1, 8713, 2.99, '2007-04-29 15:59:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27050, 433, 2, 9161, 4.99, '2007-04-30 09:47:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27051, 433, 1, 9294, 3.99, '2007-04-30 14:43:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27052, 434, 1, 4414, 2.99, '2007-04-07 20:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27053, 434, 2, 4654, 6.99, '2007-04-08 08:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27054, 434, 2, 4960, 10.99, '2007-04-08 21:55:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27055, 434, 2, 5464, 2.99, '2007-04-09 21:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27056, 434, 2, 6972, 0.99, '2007-04-26 22:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27057, 434, 1, 7260, 6.99, '2007-04-27 09:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27058, 434, 2, 7479, 2.99, '2007-04-27 17:46:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27059, 434, 1, 8205, 0.99, '2007-04-28 21:47:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27060, 434, 1, 9350, 4.99, '2007-04-30 16:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27061, 435, 1, 3690, 0.99, '2007-04-06 08:14:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27062, 435, 1, 3918, 8.99, '2007-04-06 18:54:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27063, 435, 2, 5220, 4.99, '2007-04-09 10:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27064, 435, 2, 6051, 4.99, '2007-04-11 02:15:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27065, 435, 1, 6935, 2.99, '2007-04-26 21:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27066, 435, 1, 8386, 5.99, '2007-04-29 04:13:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27067, 435, 2, 8891, 4.99, '2007-04-29 23:15:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27068, 435, 2, 9269, 0.99, '2007-04-30 13:30:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27069, 435, 1, 9655, 3.99, '2007-04-30 04:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27070, 435, 2, 9829, 4.99, '2007-04-30 10:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27071, 436, 2, 3851, 1.99, '2007-04-06 15:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27072, 436, 2, 3944, 2.99, '2007-04-06 20:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27073, 436, 2, 4643, 0.99, '2007-04-08 07:42:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27074, 436, 2, 4751, 2.99, '2007-04-08 12:36:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27075, 436, 1, 4782, 4.99, '2007-04-08 14:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27076, 436, 1, 5959, 0.99, '2007-04-10 22:04:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27077, 436, 1, 7593, 4.99, '2007-04-27 21:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27078, 436, 2, 8027, 5.99, '2007-04-28 14:38:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27079, 436, 2, 8097, 9.99, '2007-04-28 17:01:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27080, 436, 1, 9345, 9.99, '2007-04-30 16:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27081, 436, 1, 9539, 0.99, '2007-04-30 00:04:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27082, 436, 1, 9638, 5.99, '2007-04-30 03:58:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27083, 436, 2, 10216, 3.99, '2007-04-30 23:34:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27084, 437, 1, 3747, 4.99, '2007-04-06 10:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27085, 437, 2, 4765, 4.99, '2007-04-08 13:37:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27086, 437, 2, 5085, 4.99, '2007-04-09 04:05:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27087, 437, 1, 5167, 1.99, '2007-04-09 07:47:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27088, 437, 2, 5744, 2.99, '2007-04-10 10:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27089, 437, 2, 5864, 6.99, '2007-04-10 16:58:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27090, 437, 2, 8215, 2.99, '2007-04-28 22:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27091, 437, 2, 9172, 2.99, '2007-04-30 10:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27092, 437, 2, 9333, 2.99, '2007-04-30 16:22:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27093, 437, 2, 10009, 8.99, '2007-04-30 16:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27094, 438, 1, 4355, 4.99, '2007-04-07 17:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27095, 438, 2, 4446, 2.99, '2007-04-07 21:40:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27096, 438, 2, 5316, 4.99, '2007-04-09 14:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27097, 438, 2, 5426, 4.99, '2007-04-09 19:33:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27098, 438, 1, 5870, 2.99, '2007-04-10 17:08:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27099, 438, 2, 6138, 4.99, '2007-04-11 07:04:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27100, 438, 1, 6563, 3.99, '2007-04-12 04:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27101, 438, 2, 6615, 4.99, '2007-04-12 07:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27102, 438, 2, 7357, 1.99, '2007-04-27 13:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27103, 438, 2, 7374, 8.99, '2007-04-27 13:49:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27104, 438, 1, 7598, 0.99, '2007-04-27 22:04:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27105, 438, 2, 8547, 2.99, '2007-04-29 09:38:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27106, 438, 1, 9082, 3.99, '2007-04-30 06:39:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27107, 438, 2, 9782, 0.99, '2007-04-30 08:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27108, 439, 2, 3774, 5.99, '2007-04-06 11:53:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27109, 439, 1, 4528, 2.99, '2007-04-08 01:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27110, 439, 1, 4813, 4.99, '2007-04-08 15:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27111, 439, 2, 5801, 5.99, '2007-04-10 13:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27112, 439, 1, 5893, 2.99, '2007-04-10 18:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27113, 439, 1, 6577, 2.99, '2007-04-12 04:43:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27114, 439, 2, 6672, 2.99, '2007-04-12 10:17:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27115, 439, 1, 8343, 2.99, '2007-04-29 03:13:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27116, 439, 1, 8624, 2.99, '2007-04-29 12:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27117, 439, 2, 8703, 2.99, '2007-04-29 15:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27118, 439, 1, 9275, 0.99, '2007-04-30 13:37:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27119, 439, 1, 9322, 6.99, '2007-04-30 15:50:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27120, 440, 1, 4301, 2.99, '2007-04-07 15:05:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27121, 440, 1, 4946, 7.99, '2007-04-08 21:14:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27122, 440, 2, 5423, 2.99, '2007-04-09 19:25:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27123, 440, 2, 5594, 0.99, '2007-04-10 03:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27124, 440, 2, 5731, 2.99, '2007-04-10 10:00:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27125, 440, 2, 5782, 0.99, '2007-04-10 12:21:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27126, 440, 2, 7585, 4.99, '2007-04-27 21:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27127, 440, 1, 7614, 0.99, '2007-04-27 22:43:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27128, 440, 1, 7806, 9.99, '2007-04-28 06:26:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27129, 440, 1, 9001, 4.99, '2007-04-30 03:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27130, 440, 1, 9195, 2.99, '2007-04-30 10:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27131, 440, 1, 9547, 4.99, '2007-04-30 00:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27132, 441, 2, 3629, 0.99, '2007-04-06 04:51:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27133, 441, 2, 3695, 2.99, '2007-04-06 08:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27134, 441, 1, 4084, 8.99, '2007-04-07 03:44:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27135, 441, 2, 4208, 0.99, '2007-04-07 10:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27136, 441, 2, 5129, 2.99, '2007-04-09 05:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27137, 441, 1, 5811, 0.99, '2007-04-10 13:55:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27138, 441, 2, 6636, 2.99, '2007-04-12 08:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27139, 441, 1, 6642, 4.99, '2007-04-12 09:06:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27140, 441, 1, 6941, 5.99, '2007-04-26 21:47:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27141, 441, 2, 8237, 2.99, '2007-04-28 22:58:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27142, 441, 1, 8281, 0.99, '2007-04-29 00:14:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27143, 441, 1, 8427, 4.99, '2007-04-29 05:37:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27144, 441, 1, 8575, 4.99, '2007-04-29 10:21:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27145, 441, 2, 8617, 4.99, '2007-04-29 12:14:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27146, 441, 2, 9644, 10.99, '2007-04-30 04:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27147, 441, 2, 9854, 2.99, '2007-04-30 11:28:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27148, 441, 2, 10139, 1.99, '2007-04-30 20:30:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27149, 442, 2, 3545, 4.99, '2007-04-06 00:44:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27150, 442, 1, 3661, 2.99, '2007-04-06 06:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27151, 442, 1, 4052, 5.99, '2007-04-07 02:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27152, 442, 1, 4058, 2.99, '2007-04-07 02:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27153, 442, 2, 4365, 2.99, '2007-04-07 18:16:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27154, 442, 2, 4577, 3.99, '2007-04-08 04:27:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27155, 442, 2, 6590, 4.99, '2007-04-12 05:36:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27156, 442, 2, 6632, 2.99, '2007-04-12 08:01:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27157, 442, 2, 7427, 2.99, '2007-04-27 15:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27158, 442, 1, 7460, 0.99, '2007-04-27 17:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27159, 442, 1, 7671, 2.99, '2007-04-28 01:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27160, 442, 1, 8044, 2.99, '2007-04-28 15:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27161, 442, 1, 8758, 4.99, '2007-04-29 17:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27162, 442, 1, 9180, 4.99, '2007-04-30 10:31:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27163, 442, 2, 9873, 5.99, '2007-04-30 12:00:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27164, 442, 1, 10034, 2.99, '2007-04-30 17:13:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27165, 443, 2, 3510, 5.99, '2007-04-05 22:56:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27166, 443, 2, 6625, 5.99, '2007-04-12 07:35:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27167, 443, 1, 6913, 4.99, '2007-04-12 20:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27168, 443, 2, 6983, 2.99, '2007-04-26 23:23:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27169, 443, 1, 7317, 2.99, '2007-04-27 11:48:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27170, 443, 1, 7667, 8.99, '2007-04-28 01:05:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27171, 443, 1, 7987, 9.99, '2007-04-28 13:05:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27172, 443, 2, 9740, 1.99, '2007-04-30 07:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27173, 443, 1, 10014, 4.99, '2007-04-30 16:39:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27174, 443, 2, 10081, 5.99, '2007-04-30 18:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27175, 444, 2, 3498, 4.99, '2007-04-05 22:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27176, 444, 1, 3539, 0.99, '2007-04-06 00:07:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27177, 444, 2, 4648, 6.99, '2007-04-08 07:59:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27178, 444, 1, 5753, 2.99, '2007-04-10 10:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27179, 444, 2, 5825, 2.99, '2007-04-10 14:48:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27180, 444, 2, 6285, 2.99, '2007-04-11 15:20:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27181, 444, 2, 7679, 3.99, '2007-04-28 01:27:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27182, 444, 2, 9634, 1.99, '2007-04-30 03:34:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27183, 445, 1, 4041, 0.99, '2007-04-07 01:31:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27184, 445, 1, 4193, 0.99, '2007-04-07 09:25:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27185, 445, 2, 5225, 2.99, '2007-04-09 10:38:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27186, 445, 1, 6346, 0.99, '2007-04-11 18:37:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27187, 445, 2, 7351, 2.99, '2007-04-27 13:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27188, 445, 2, 7971, 4.99, '2007-04-28 12:29:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27189, 445, 1, 8851, 8.99, '2007-04-29 21:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27190, 445, 2, 8911, 0.99, '2007-04-29 23:59:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27191, 445, 2, 9625, 4.99, '2007-04-30 02:59:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27192, 445, 1, 10007, 0.99, '2007-04-30 16:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27193, 446, 2, 4358, 4.99, '2007-04-07 17:55:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27194, 446, 2, 5393, 4.99, '2007-04-09 18:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27195, 446, 2, 5409, 2.99, '2007-04-09 18:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27196, 446, 2, 6454, 0.99, '2007-04-11 23:28:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27197, 446, 1, 6510, 4.99, '2007-04-12 02:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27198, 446, 1, 6535, 0.99, '2007-04-12 03:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27199, 446, 1, 6734, 6.99, '2007-04-12 12:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27200, 446, 1, 7005, 5.99, '2007-04-27 00:07:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27201, 446, 2, 7089, 0.99, '2007-04-27 03:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27202, 446, 1, 7576, 4.99, '2007-04-27 21:23:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27203, 446, 2, 8284, 6.99, '2007-04-29 00:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27204, 446, 1, 8309, 4.99, '2007-04-29 01:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27205, 446, 2, 8670, 4.99, '2007-04-29 14:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27206, 446, 2, 8691, 0.99, '2007-04-29 15:09:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27207, 446, 2, 8922, 9.99, '2007-04-30 00:36:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27208, 446, 1, 8923, 3.99, '2007-04-30 00:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27209, 446, 1, 9116, 0.99, '2007-04-30 07:48:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27210, 447, 2, 4403, 4.99, '2007-04-07 19:58:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27211, 447, 1, 4858, 6.99, '2007-04-08 17:21:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27212, 447, 1, 5331, 4.99, '2007-04-09 15:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27213, 447, 1, 5734, 0.99, '2007-04-10 10:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27214, 447, 2, 5987, 2.99, '2007-04-10 23:23:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27215, 447, 1, 6651, 0.99, '2007-04-12 09:25:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27216, 447, 1, 6690, 1.99, '2007-04-12 10:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27217, 447, 1, 8537, 8.99, '2007-04-29 09:13:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27218, 447, 2, 8945, 4.99, '2007-04-30 01:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27219, 447, 2, 9076, 5.99, '2007-04-30 06:26:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27220, 447, 1, 9288, 6.99, '2007-04-30 14:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27221, 448, 2, 3959, 5.99, '2007-04-06 20:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27222, 448, 2, 3992, 6.99, '2007-04-06 22:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27223, 448, 2, 4024, 0.99, '2007-04-07 00:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27224, 448, 2, 4206, 2.99, '2007-04-07 10:00:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27225, 448, 1, 4406, 1.99, '2007-04-07 20:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27226, 448, 2, 4537, 2.99, '2007-04-08 02:17:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27227, 448, 2, 4558, 2.99, '2007-04-08 03:23:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27228, 448, 2, 6341, 2.99, '2007-04-11 18:16:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27229, 448, 2, 6985, 4.99, '2007-04-26 23:26:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27230, 448, 1, 9178, 10.99, '2007-04-30 10:27:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27231, 449, 1, 3503, 0.99, '2007-04-05 22:45:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27232, 449, 1, 3977, 8.99, '2007-04-06 21:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27233, 449, 2, 4433, 3.99, '2007-04-07 21:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27234, 449, 1, 5824, 2.99, '2007-04-10 14:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27235, 449, 2, 7755, 6.99, '2007-04-28 04:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27236, 449, 2, 7803, 3.99, '2007-04-28 06:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27237, 449, 2, 8002, 2.99, '2007-04-28 13:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27238, 449, 2, 10083, 5.99, '2007-04-30 18:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27239, 450, 1, 3570, 3.99, '2007-04-06 01:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27240, 450, 1, 5999, 7.99, '2007-04-10 23:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27241, 450, 1, 6028, 4.99, '2007-04-11 01:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27242, 450, 2, 7365, 2.99, '2007-04-27 13:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27243, 450, 1, 7610, 0.99, '2007-04-27 22:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27244, 450, 1, 7626, 0.99, '2007-04-27 23:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27245, 450, 2, 8733, 4.99, '2007-04-29 16:55:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27246, 451, 2, 3826, 4.99, '2007-04-06 14:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27247, 451, 1, 4538, 2.99, '2007-04-08 02:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27248, 451, 1, 4794, 8.99, '2007-04-08 14:58:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27249, 451, 2, 4930, 4.99, '2007-04-08 20:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27250, 451, 1, 5005, 3.99, '2007-04-08 23:50:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27251, 451, 2, 5518, 8.99, '2007-04-09 23:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27252, 451, 1, 7018, 2.99, '2007-04-27 00:48:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27253, 452, 2, 3638, 3.99, '2007-04-06 05:36:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27254, 452, 1, 3791, 2.99, '2007-04-06 12:53:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27255, 452, 2, 3907, 6.99, '2007-04-06 18:07:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27256, 452, 1, 4348, 0.99, '2007-04-07 17:30:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27257, 452, 2, 4353, 4.99, '2007-04-07 17:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27258, 452, 2, 4417, 2.99, '2007-04-07 20:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27259, 452, 1, 4720, 0.99, '2007-04-08 11:03:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27260, 452, 1, 5177, 1.99, '2007-04-09 08:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27261, 452, 2, 5480, 0.99, '2007-04-09 22:17:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27262, 452, 2, 6959, 2.99, '2007-04-26 22:36:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27263, 452, 2, 7899, 6.99, '2007-04-28 09:38:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27264, 452, 1, 8898, 1.99, '2007-04-29 23:30:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27265, 452, 2, 9379, 6.99, '2007-04-30 17:41:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27266, 453, 2, 3929, 0.99, '2007-04-06 19:21:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27267, 453, 2, 4033, 8.99, '2007-04-07 01:04:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27268, 453, 1, 4717, 4.99, '2007-04-08 10:51:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27269, 453, 2, 4805, 2.99, '2007-04-08 15:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27270, 453, 2, 5359, 6.99, '2007-04-09 16:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27271, 453, 1, 6752, 4.99, '2007-04-12 13:21:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27272, 453, 1, 7563, 0.99, '2007-04-27 20:54:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27273, 453, 2, 9289, 6.99, '2007-04-30 14:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27274, 453, 2, 9406, 6.99, '2007-04-30 18:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27275, 453, 2, 9900, 1.99, '2007-04-30 12:43:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27276, 454, 1, 3622, 7.99, '2007-04-06 04:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27277, 454, 2, 4562, 4.99, '2007-04-08 03:36:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27278, 454, 2, 5088, 4.99, '2007-04-09 04:13:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27279, 454, 2, 5446, 2.99, '2007-04-09 20:28:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27280, 454, 2, 6260, 4.99, '2007-04-11 13:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27281, 454, 2, 6701, 0.99, '2007-04-12 11:16:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27282, 454, 2, 8481, 2.99, '2007-04-29 07:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27283, 454, 1, 8806, 0.99, '2007-04-29 20:05:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27284, 454, 2, 9041, 0.99, '2007-04-30 05:01:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27285, 454, 1, 9372, 9.99, '2007-04-30 17:32:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27286, 454, 1, 10005, 3.99, '2007-04-30 16:22:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27287, 455, 2, 4195, 2.99, '2007-04-07 09:28:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27288, 455, 1, 4861, 8.99, '2007-04-08 17:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27289, 455, 1, 4964, 2.99, '2007-04-08 22:15:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27290, 455, 1, 5504, 6.99, '2007-04-09 23:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27291, 455, 2, 6729, 4.99, '2007-04-12 12:26:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27292, 455, 1, 7388, 4.99, '2007-04-27 14:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27293, 455, 2, 7498, 4.99, '2007-04-27 18:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27294, 455, 2, 7905, 5.99, '2007-04-28 09:55:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27295, 455, 2, 8291, 2.99, '2007-04-29 00:56:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27296, 456, 1, 3743, 7.99, '2007-04-06 10:32:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27297, 456, 2, 3881, 2.99, '2007-04-06 17:04:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27298, 456, 1, 4141, 3.99, '2007-04-07 06:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27299, 456, 2, 5964, 0.99, '2007-04-10 22:15:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27300, 456, 2, 6023, 0.99, '2007-04-11 00:44:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27301, 456, 2, 7248, 2.99, '2007-04-27 09:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27302, 456, 1, 8749, 4.99, '2007-04-29 17:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27303, 457, 2, 4600, 5.99, '2007-04-08 05:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27304, 457, 1, 5500, 0.99, '2007-04-09 22:56:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27305, 457, 1, 6467, 7.99, '2007-04-11 23:50:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27306, 457, 1, 7184, 1.99, '2007-04-27 06:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27307, 457, 2, 8373, 4.99, '2007-04-29 03:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27308, 457, 1, 8502, 2.99, '2007-04-29 07:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27309, 457, 1, 10049, 2.99, '2007-04-30 17:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27310, 458, 2, 4525, 2.99, '2007-04-08 01:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27311, 458, 1, 5412, 2.99, '2007-04-09 18:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27312, 458, 1, 5572, 0.99, '2007-04-10 02:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27313, 458, 2, 6250, 3.99, '2007-04-11 13:30:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27314, 458, 1, 6431, 5.99, '2007-04-11 22:32:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27315, 458, 2, 6595, 7.99, '2007-04-12 05:54:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27316, 458, 1, 6654, 1.99, '2007-04-12 09:34:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27317, 458, 2, 7923, 3.99, '2007-04-28 10:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27318, 458, 1, 8158, 0.99, '2007-04-28 19:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27319, 459, 1, 3506, 2.99, '2007-04-05 22:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27320, 459, 2, 4519, 2.99, '2007-04-08 01:19:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27321, 459, 1, 5301, 3.99, '2007-04-09 14:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27322, 459, 1, 5695, 0.99, '2007-04-10 08:12:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27323, 459, 1, 6206, 0.99, '2007-04-11 11:00:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27324, 459, 2, 6750, 3.99, '2007-04-12 13:18:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27325, 459, 1, 7623, 6.99, '2007-04-27 23:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27326, 459, 2, 7639, 4.99, '2007-04-27 23:43:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27327, 459, 1, 7717, 4.99, '2007-04-28 03:02:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27328, 459, 1, 7820, 5.99, '2007-04-28 06:57:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27329, 459, 1, 7913, 6.99, '2007-04-28 10:15:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27330, 459, 1, 8289, 9.99, '2007-04-29 00:51:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27331, 459, 2, 8557, 10.99, '2007-04-29 09:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27332, 459, 1, 8897, 2.99, '2007-04-29 23:28:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27333, 459, 1, 9137, 6.99, '2007-04-30 08:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27334, 459, 2, 9639, 2.99, '2007-04-30 04:00:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27335, 459, 1, 9744, 4.99, '2007-04-30 07:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27336, 459, 2, 10117, 4.99, '2007-04-30 19:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27337, 460, 2, 3820, 4.99, '2007-04-06 14:03:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27338, 460, 1, 4452, 7.99, '2007-04-07 22:00:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27339, 460, 2, 5482, 3.99, '2007-04-09 22:21:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27340, 460, 1, 6613, 4.99, '2007-04-12 06:58:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27341, 460, 1, 6788, 5.99, '2007-04-12 15:02:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27342, 460, 1, 7125, 6.99, '2007-04-27 04:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27343, 460, 1, 7785, 3.99, '2007-04-28 05:44:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27344, 460, 2, 8656, 2.99, '2007-04-29 13:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27345, 461, 2, 3698, 0.99, '2007-04-06 08:37:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27346, 461, 2, 4586, 2.99, '2007-04-08 04:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27347, 461, 1, 5650, 0.99, '2007-04-10 05:45:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27348, 461, 1, 5809, 2.99, '2007-04-10 13:47:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27349, 461, 2, 7334, 2.99, '2007-04-27 12:28:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27350, 461, 2, 7664, 2.99, '2007-04-28 00:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27351, 461, 2, 8133, 0.99, '2007-04-28 18:29:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27352, 461, 2, 8164, 0.99, '2007-04-28 19:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27353, 461, 2, 9499, 4.99, '2007-04-30 22:26:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27354, 461, 1, 9885, 0.99, '2007-04-30 12:27:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27355, 461, 2, 10113, 4.99, '2007-04-30 19:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27356, 462, 1, 4500, 4.99, '2007-04-08 00:38:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27357, 462, 2, 4728, 3.99, '2007-04-08 11:27:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27358, 462, 1, 6583, 4.99, '2007-04-12 05:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27359, 462, 1, 6630, 0.99, '2007-04-12 07:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27360, 462, 1, 6710, 7.99, '2007-04-12 11:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27361, 462, 1, 6721, 6.99, '2007-04-12 12:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27362, 462, 2, 7295, 8.99, '2007-04-27 11:07:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27363, 462, 1, 7324, 6.99, '2007-04-27 12:11:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27364, 462, 1, 7762, 8.99, '2007-04-28 05:02:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27365, 462, 1, 7932, 4.99, '2007-04-28 10:53:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27366, 462, 2, 7935, 2.99, '2007-04-28 11:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27367, 462, 1, 8066, 2.99, '2007-04-28 15:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27368, 462, 1, 8282, 0.99, '2007-04-29 00:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27369, 462, 1, 8290, 3.99, '2007-04-29 00:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27370, 462, 2, 8757, 2.99, '2007-04-29 17:47:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27371, 462, 1, 9891, 0.99, '2007-04-30 12:34:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27372, 463, 1, 5026, 2.99, '2007-04-09 01:01:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27373, 463, 1, 5157, 2.99, '2007-04-09 07:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27374, 463, 1, 5448, 0.99, '2007-04-09 20:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27375, 463, 2, 6294, 0.99, '2007-04-11 15:54:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27376, 463, 1, 6932, 6.99, '2007-04-26 21:36:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27377, 463, 1, 7013, 0.99, '2007-04-27 00:31:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27378, 463, 1, 7361, 0.99, '2007-04-27 13:22:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27379, 463, 1, 8762, 2.99, '2007-04-29 17:58:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27380, 463, 2, 9405, 7.99, '2007-04-30 18:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27381, 463, 1, 9954, 2.99, '2007-04-30 14:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27382, 464, 1, 3761, 4.99, '2007-04-06 11:21:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27383, 464, 1, 4337, 5.99, '2007-04-07 17:05:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27384, 464, 2, 5455, 6.99, '2007-04-09 20:57:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27385, 464, 1, 5910, 4.99, '2007-04-10 19:20:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27386, 464, 2, 6601, 3.99, '2007-04-12 06:13:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27387, 464, 1, 9600, 5.99, '2007-04-30 02:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27388, 465, 1, 4763, 0.99, '2007-04-08 13:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27389, 465, 2, 6904, 3.99, '2007-04-12 20:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27390, 465, 2, 7508, 2.99, '2007-04-27 19:01:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27391, 466, 2, 5048, 0.99, '2007-04-09 02:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27392, 466, 1, 5691, 4.99, '2007-04-10 07:58:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27393, 466, 1, 6073, 6.99, '2007-04-11 03:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27394, 466, 2, 7080, 2.99, '2007-04-27 02:53:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27395, 466, 2, 8276, 0.99, '2007-04-29 00:07:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27396, 466, 1, 9202, 3.99, '2007-04-30 11:11:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27397, 466, 1, 9257, 2.99, '2007-04-30 12:59:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27398, 467, 1, 4216, 0.99, '2007-04-07 10:30:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27399, 467, 2, 4222, 4.99, '2007-04-07 10:48:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27400, 467, 1, 4259, 4.99, '2007-04-07 12:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27401, 467, 2, 5160, 4.99, '2007-04-09 07:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27402, 467, 2, 6271, 6.99, '2007-04-11 14:30:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27403, 467, 2, 7360, 2.99, '2007-04-27 13:20:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27404, 467, 2, 7573, 5.99, '2007-04-27 21:14:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27405, 467, 1, 7611, 2.99, '2007-04-27 22:40:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27406, 467, 1, 8010, 7.99, '2007-04-28 13:54:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27407, 467, 2, 8061, 6.99, '2007-04-28 15:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27408, 467, 2, 8224, 2.99, '2007-04-28 22:27:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27409, 467, 2, 8480, 8.99, '2007-04-29 07:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27410, 467, 1, 8767, 4.99, '2007-04-29 18:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27411, 468, 2, 3724, 2.99, '2007-04-06 09:41:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27412, 468, 1, 3840, 5.99, '2007-04-06 14:59:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27413, 468, 2, 4184, 3.99, '2007-04-07 08:58:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27414, 468, 2, 4527, 3.99, '2007-04-08 01:48:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27415, 468, 1, 5285, 2.99, '2007-04-09 13:39:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27416, 468, 1, 6392, 0.99, '2007-04-11 20:53:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27417, 468, 1, 6581, 4.99, '2007-04-12 04:55:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27418, 468, 2, 6815, 5.99, '2007-04-12 16:42:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27419, 468, 2, 7292, 4.99, '2007-04-27 11:02:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27420, 468, 1, 7685, 0.99, '2007-04-28 01:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27421, 468, 2, 8423, 5.99, '2007-04-29 05:31:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27422, 468, 2, 8768, 6.99, '2007-04-29 18:11:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27423, 468, 1, 9598, 0.99, '2007-04-30 01:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27424, 468, 1, 9690, 6.99, '2007-04-30 05:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27425, 469, 2, 3522, 4.99, '2007-04-05 23:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27426, 469, 1, 3526, 10.99, '2007-04-05 23:31:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27427, 469, 2, 4067, 3.99, '2007-04-07 03:02:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27428, 469, 2, 4123, 0.99, '2007-04-07 05:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27429, 469, 1, 5133, 0.99, '2007-04-09 06:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27430, 469, 1, 5299, 3.99, '2007-04-09 14:06:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27431, 469, 2, 5664, 6.99, '2007-04-10 06:33:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27432, 469, 2, 6022, 0.99, '2007-04-11 00:44:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27433, 469, 2, 6099, 4.99, '2007-04-11 04:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27434, 469, 1, 6797, 4.99, '2007-04-12 15:15:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27435, 469, 1, 6955, 3.99, '2007-04-26 22:24:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27436, 469, 2, 7062, 6.99, '2007-04-27 02:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27437, 469, 2, 7271, 6.99, '2007-04-27 09:57:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27438, 469, 2, 7756, 4.99, '2007-04-28 04:51:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27439, 469, 1, 7914, 4.99, '2007-04-28 10:16:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27440, 469, 2, 8791, 0.99, '2007-04-29 19:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27441, 469, 1, 9187, 2.99, '2007-04-30 10:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27442, 469, 2, 10075, 4.99, '2007-04-30 18:27:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27443, 470, 1, 3764, 5.99, '2007-04-06 11:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27444, 470, 1, 3841, 4.99, '2007-04-06 15:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27445, 470, 1, 3922, 4.99, '2007-04-06 19:00:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27446, 470, 1, 4373, 4.99, '2007-04-07 18:39:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27447, 470, 2, 4502, 6.99, '2007-04-08 00:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27448, 470, 2, 5082, 4.99, '2007-04-09 03:57:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27449, 470, 1, 6009, 3.99, '2007-04-11 00:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27450, 470, 1, 6198, 2.99, '2007-04-11 10:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27451, 470, 2, 6703, 4.99, '2007-04-12 11:18:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27452, 470, 1, 6927, 10.99, '2007-04-26 21:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27453, 470, 1, 6942, 5.99, '2007-04-26 21:56:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27454, 470, 1, 7663, 4.99, '2007-04-28 00:48:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27455, 470, 2, 8476, 8.99, '2007-04-29 07:07:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27456, 470, 1, 8890, 6.99, '2007-04-29 23:10:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27457, 470, 1, 9422, 5.99, '2007-04-30 19:37:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27458, 470, 1, 9687, 2.99, '2007-04-30 05:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27459, 470, 1, 10006, 4.99, '2007-04-30 16:23:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27460, 471, 1, 3917, 0.99, '2007-04-06 18:47:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27461, 471, 1, 4020, 2.99, '2007-04-07 00:10:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27462, 471, 2, 6293, 2.99, '2007-04-11 15:53:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27463, 471, 1, 6336, 8.99, '2007-04-11 17:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27464, 471, 1, 6912, 5.99, '2007-04-12 20:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27465, 471, 1, 8199, 0.99, '2007-04-28 21:38:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27466, 471, 1, 9077, 2.99, '2007-04-30 06:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27467, 471, 1, 9502, 0.99, '2007-04-30 22:30:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27468, 471, 2, 9560, 2.99, '2007-04-30 00:45:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27469, 472, 2, 3815, 6.99, '2007-04-06 13:55:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27470, 472, 2, 5318, 2.99, '2007-04-09 14:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27471, 472, 1, 5612, 3.99, '2007-04-10 03:43:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27472, 472, 1, 6119, 6.99, '2007-04-11 06:13:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27473, 472, 2, 6274, 5.99, '2007-04-11 14:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27474, 472, 1, 6308, 5.99, '2007-04-11 16:37:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27475, 472, 1, 6584, 2.99, '2007-04-12 05:12:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27476, 472, 2, 8929, 5.99, '2007-04-30 00:56:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27477, 472, 2, 9926, 6.99, '2007-04-30 13:40:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27478, 473, 1, 3971, 0.99, '2007-04-06 21:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27479, 473, 2, 4006, 4.99, '2007-04-06 22:53:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27480, 473, 2, 4625, 4.99, '2007-04-08 06:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27481, 473, 1, 4873, 0.99, '2007-04-08 17:51:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27482, 473, 2, 5447, 5.99, '2007-04-09 20:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27483, 473, 1, 6446, 2.99, '2007-04-11 23:12:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27484, 473, 2, 6890, 4.99, '2007-04-12 19:31:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27485, 473, 1, 7111, 4.99, '2007-04-27 04:06:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27486, 473, 1, 7215, 2.99, '2007-04-27 07:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27487, 473, 2, 7918, 1.99, '2007-04-28 10:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27488, 473, 2, 7928, 7.99, '2007-04-28 10:44:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27489, 473, 1, 9025, 4.99, '2007-04-30 04:18:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27490, 473, 2, 9120, 8.99, '2007-04-30 07:54:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27491, 474, 2, 3787, 4.99, '2007-04-06 12:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27492, 474, 2, 4048, 1.99, '2007-04-07 01:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27493, 474, 1, 4481, 2.99, '2007-04-07 23:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27494, 474, 1, 4533, 0.99, '2007-04-08 02:00:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27495, 474, 2, 4785, 0.99, '2007-04-08 14:38:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27496, 474, 1, 4809, 2.99, '2007-04-08 15:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27497, 474, 2, 4886, 4.99, '2007-04-08 18:21:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27498, 474, 1, 5251, 0.99, '2007-04-09 12:04:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27499, 474, 1, 6499, 7.99, '2007-04-12 01:39:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27500, 474, 1, 8991, 2.99, '2007-04-30 03:11:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27501, 475, 2, 3980, 5.99, '2007-04-06 21:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27502, 475, 1, 4013, 6.99, '2007-04-06 23:26:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27503, 475, 1, 4617, 4.99, '2007-04-08 06:23:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27504, 475, 2, 5379, 0.99, '2007-04-09 17:36:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27505, 475, 1, 5407, 0.99, '2007-04-09 18:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27506, 475, 2, 5415, 9.99, '2007-04-09 18:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27507, 475, 2, 5469, 2.99, '2007-04-09 21:36:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27508, 475, 1, 6224, 4.99, '2007-04-11 12:10:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27509, 475, 1, 7641, 7.99, '2007-04-27 23:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27510, 475, 1, 7775, 1.99, '2007-04-28 05:33:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27511, 475, 2, 8207, 5.99, '2007-04-28 21:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27512, 475, 1, 9183, 7.99, '2007-04-30 10:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27513, 475, 1, 9647, 2.99, '2007-04-30 04:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27514, 475, 1, 9737, 2.99, '2007-04-30 07:27:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27515, 475, 2, 10162, 3.99, '2007-04-30 21:39:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27516, 476, 2, 3477, 7.99, '2007-04-05 21:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27517, 476, 1, 4010, 5.99, '2007-04-06 23:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27518, 476, 2, 4171, 4.99, '2007-04-07 08:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27519, 476, 2, 5644, 4.99, '2007-04-10 05:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27520, 476, 1, 6151, 2.99, '2007-04-11 07:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27521, 476, 1, 7461, 0.99, '2007-04-27 17:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27522, 476, 1, 8146, 0.99, '2007-04-28 19:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27523, 476, 2, 9325, 6.99, '2007-04-30 15:57:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27524, 476, 2, 9743, 3.99, '2007-04-30 07:41:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27525, 477, 2, 4237, 5.99, '2007-04-07 11:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27526, 477, 1, 4283, 2.99, '2007-04-07 13:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27527, 477, 2, 4956, 7.99, '2007-04-08 21:45:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27528, 477, 2, 6265, 2.99, '2007-04-11 14:12:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27529, 477, 2, 7302, 2.99, '2007-04-27 11:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27530, 477, 2, 7904, 10.99, '2007-04-28 09:54:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27531, 477, 1, 8515, 6.99, '2007-04-29 08:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27532, 477, 1, 8821, 5.99, '2007-04-29 20:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27533, 477, 2, 8857, 2.99, '2007-04-29 22:12:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27534, 477, 2, 9446, 8.99, '2007-04-30 20:21:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27535, 478, 1, 3691, 4.99, '2007-04-06 08:14:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27536, 478, 1, 5837, 4.99, '2007-04-10 15:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27537, 478, 1, 7522, 2.99, '2007-04-27 19:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27538, 478, 2, 8488, 4.99, '2007-04-29 07:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27539, 478, 1, 9665, 4.99, '2007-04-30 04:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27540, 478, 2, 10016, 4.99, '2007-04-30 16:41:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27541, 478, 2, 10127, 0.99, '2007-04-30 20:08:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27542, 479, 2, 3537, 6.99, '2007-04-06 00:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27543, 479, 1, 3798, 0.99, '2007-04-06 13:26:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27544, 479, 2, 4183, 8.99, '2007-04-07 08:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27545, 479, 1, 5481, 0.99, '2007-04-09 22:20:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27546, 479, 1, 5751, 4.99, '2007-04-10 10:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27547, 479, 2, 6084, 7.99, '2007-04-11 03:44:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27548, 479, 1, 6421, 1.99, '2007-04-11 22:13:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27549, 479, 1, 6597, 0.99, '2007-04-12 06:05:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27550, 479, 2, 6849, 8.99, '2007-04-12 17:57:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27551, 479, 1, 7060, 7.99, '2007-04-27 02:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27552, 479, 2, 7893, 2.99, '2007-04-28 09:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27553, 479, 1, 9347, 5.99, '2007-04-30 16:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27554, 479, 1, 9439, 8.99, '2007-04-30 20:06:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27555, 479, 2, 9697, 2.99, '2007-04-30 05:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27556, 479, 2, 9754, 7.99, '2007-04-30 07:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27557, 480, 2, 3507, 7.99, '2007-04-05 22:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27558, 480, 2, 5633, 2.99, '2007-04-10 04:50:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27559, 480, 1, 6191, 2.99, '2007-04-11 10:06:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27560, 480, 1, 7257, 2.99, '2007-04-27 09:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27561, 480, 2, 7910, 9.99, '2007-04-28 10:13:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27562, 480, 2, 8847, 4.99, '2007-04-29 21:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27563, 480, 1, 8967, 6.99, '2007-04-30 02:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27564, 480, 2, 9332, 4.99, '2007-04-30 16:22:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27565, 481, 1, 3863, 0.99, '2007-04-06 16:08:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27566, 481, 1, 4473, 2.99, '2007-04-07 22:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27567, 481, 1, 4505, 1.99, '2007-04-08 00:48:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27568, 481, 1, 4532, 0.99, '2007-04-08 01:59:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27569, 481, 1, 4668, 10.99, '2007-04-08 08:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27570, 481, 2, 5711, 2.99, '2007-04-10 09:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27571, 481, 1, 6044, 0.99, '2007-04-11 01:47:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27572, 481, 1, 7228, 4.99, '2007-04-27 08:23:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27573, 481, 2, 7836, 7.99, '2007-04-28 07:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27574, 481, 1, 8243, 6.99, '2007-04-28 23:03:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27575, 481, 2, 8271, 6.99, '2007-04-28 23:56:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27576, 481, 1, 9481, 4.99, '2007-04-30 21:54:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27577, 481, 1, 10018, 3.99, '2007-04-30 16:43:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27578, 482, 2, 3650, 2.99, '2007-04-06 06:02:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27579, 482, 1, 4768, 4.99, '2007-04-08 13:56:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27580, 482, 1, 5334, 4.99, '2007-04-09 15:28:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27581, 482, 1, 5466, 4.99, '2007-04-09 21:31:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27582, 482, 2, 5810, 8.99, '2007-04-10 13:50:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27583, 482, 2, 5880, 2.99, '2007-04-10 17:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27584, 482, 1, 6355, 8.99, '2007-04-11 19:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27585, 482, 2, 6447, 7.99, '2007-04-11 23:13:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27586, 482, 2, 6844, 5.99, '2007-04-12 17:43:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27587, 482, 2, 7840, 6.99, '2007-04-28 07:31:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27588, 482, 2, 8584, 2.99, '2007-04-29 10:36:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27589, 482, 2, 9874, 6.99, '2007-04-30 12:00:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27590, 483, 2, 3559, 4.99, '2007-04-06 01:18:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27591, 483, 1, 5823, 4.99, '2007-04-10 14:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27592, 483, 2, 6478, 4.99, '2007-04-12 00:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27593, 483, 2, 6899, 9.99, '2007-04-12 20:12:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27594, 483, 2, 7137, 0.99, '2007-04-27 05:09:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27595, 483, 1, 7381, 4.99, '2007-04-27 14:08:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27596, 483, 1, 7669, 4.99, '2007-04-28 01:12:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27597, 483, 1, 8057, 7.99, '2007-04-28 15:35:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27598, 483, 1, 8356, 4.99, '2007-04-29 03:27:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27599, 484, 1, 4214, 4.99, '2007-04-07 10:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27600, 484, 1, 5389, 2.99, '2007-04-09 17:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27601, 484, 2, 5708, 6.99, '2007-04-10 08:57:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27602, 484, 1, 5852, 0.99, '2007-04-10 16:11:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27603, 484, 2, 5866, 6.99, '2007-04-10 17:03:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27604, 484, 2, 5977, 5.99, '2007-04-10 22:45:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27605, 484, 2, 6296, 2.99, '2007-04-11 16:02:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27606, 484, 1, 6863, 6.99, '2007-04-12 18:27:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27607, 484, 2, 7440, 4.99, '2007-04-27 16:11:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27608, 484, 2, 7548, 2.99, '2007-04-27 20:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27609, 484, 2, 8508, 0.99, '2007-04-29 08:03:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27610, 484, 2, 9141, 5.99, '2007-04-30 08:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27611, 484, 2, 9414, 9.99, '2007-04-30 19:14:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27612, 484, 1, 9769, 4.99, '2007-04-30 08:20:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27613, 484, 2, 10166, 8.99, '2007-04-30 21:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27614, 485, 2, 3579, 0.99, '2007-04-06 02:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27615, 485, 1, 3899, 1.99, '2007-04-06 17:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27616, 485, 1, 3904, 0.99, '2007-04-06 17:59:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27617, 485, 2, 4137, 3.99, '2007-04-07 06:45:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27618, 485, 2, 4667, 2.99, '2007-04-08 08:34:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27619, 485, 1, 5193, 2.99, '2007-04-09 08:56:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27620, 485, 1, 5343, 3.99, '2007-04-09 15:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27621, 485, 1, 5367, 3.99, '2007-04-09 17:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27622, 485, 1, 5820, 4.99, '2007-04-10 14:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27623, 485, 2, 6810, 4.99, '2007-04-12 16:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27624, 485, 2, 6902, 4.99, '2007-04-12 20:25:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27625, 485, 1, 7144, 4.99, '2007-04-27 05:29:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27626, 485, 2, 8984, 6.99, '2007-04-30 03:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27627, 485, 2, 9039, 2.99, '2007-04-30 04:52:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27628, 485, 1, 9053, 4.99, '2007-04-30 05:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27629, 485, 2, 9189, 2.99, '2007-04-30 10:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27630, 485, 1, 9535, 2.99, '2007-04-30 23:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27631, 485, 1, 9565, 0.99, '2007-04-30 01:00:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27632, 486, 1, 3835, 4.99, '2007-04-06 14:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27633, 486, 2, 4110, 4.99, '2007-04-07 05:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27634, 486, 1, 4205, 4.99, '2007-04-07 09:54:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27635, 486, 1, 4381, 2.99, '2007-04-07 19:06:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27636, 486, 1, 4772, 7.99, '2007-04-08 14:09:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27637, 486, 2, 5006, 4.99, '2007-04-08 23:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27638, 486, 2, 6383, 4.99, '2007-04-11 20:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27639, 486, 2, 7127, 4.99, '2007-04-27 04:42:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27640, 486, 2, 7446, 4.99, '2007-04-27 16:28:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27641, 486, 2, 8425, 8.99, '2007-04-29 05:34:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27642, 486, 2, 9142, 0.99, '2007-04-30 08:49:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27643, 486, 1, 10079, 2.99, '2007-04-30 18:34:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27644, 487, 2, 3994, 1.99, '2007-04-06 22:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27645, 487, 2, 4854, 2.99, '2007-04-08 17:13:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27646, 487, 1, 5634, 3.99, '2007-04-10 04:54:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27647, 487, 1, 6928, 2.99, '2007-04-26 21:24:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27648, 487, 1, 7097, 2.99, '2007-04-27 03:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27649, 487, 1, 7788, 0.99, '2007-04-28 05:50:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27650, 487, 2, 7949, 4.99, '2007-04-28 11:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27651, 487, 2, 8510, 1.99, '2007-04-29 08:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27652, 487, 2, 8689, 2.99, '2007-04-29 15:07:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27653, 487, 1, 8814, 4.99, '2007-04-29 20:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27654, 487, 1, 8988, 7.99, '2007-04-30 03:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27655, 487, 2, 9457, 2.99, '2007-04-30 20:51:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27656, 487, 1, 9490, 3.99, '2007-04-30 22:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27657, 487, 2, 10123, 0.99, '2007-04-30 19:59:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27658, 488, 2, 4133, 6.99, '2007-04-07 06:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27659, 488, 2, 4233, 5.99, '2007-04-07 11:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27660, 488, 1, 5141, 8.99, '2007-04-09 06:33:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27661, 488, 2, 6548, 5.99, '2007-04-12 03:29:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27662, 488, 1, 7373, 5.99, '2007-04-27 13:47:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27663, 488, 1, 8005, 2.99, '2007-04-28 13:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27664, 488, 2, 8050, 0.99, '2007-04-28 15:24:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27665, 488, 2, 8064, 2.99, '2007-04-28 15:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27666, 488, 2, 9083, 5.99, '2007-04-30 06:42:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27667, 488, 1, 9532, 2.99, '2007-04-30 23:45:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27668, 488, 1, 9537, 0.99, '2007-04-30 23:51:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27669, 489, 2, 3816, 2.99, '2007-04-06 13:55:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27670, 489, 1, 4774, 3.99, '2007-04-08 14:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27671, 489, 1, 6963, 4.99, '2007-04-26 22:41:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27672, 489, 2, 9231, 0.99, '2007-04-30 12:10:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27673, 489, 1, 9459, 4.99, '2007-04-30 20:53:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27674, 490, 1, 3476, 4.99, '2007-04-05 21:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27675, 490, 2, 3932, 4.99, '2007-04-06 19:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27676, 490, 1, 4083, 2.99, '2007-04-07 03:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27677, 490, 1, 4906, 5.99, '2007-04-08 19:27:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27678, 490, 2, 5173, 7.99, '2007-04-09 08:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27679, 490, 2, 5489, 0.99, '2007-04-09 22:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27680, 490, 1, 5654, 4.99, '2007-04-10 05:53:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27681, 490, 2, 6230, 2.99, '2007-04-11 12:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27682, 490, 1, 6803, 4.99, '2007-04-12 15:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27683, 490, 2, 6888, 2.99, '2007-04-12 19:29:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27684, 490, 2, 6923, 8.99, '2007-04-12 21:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27685, 490, 1, 8552, 5.99, '2007-04-29 09:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27686, 490, 2, 9108, 4.99, '2007-04-30 07:25:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27687, 490, 1, 9554, 0.99, '2007-04-30 00:35:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27688, 491, 1, 4046, 8.99, '2007-04-07 01:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27689, 491, 1, 4392, 2.99, '2007-04-07 19:39:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27690, 491, 2, 5134, 6.99, '2007-04-09 06:21:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27691, 491, 1, 5889, 4.99, '2007-04-10 18:23:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27692, 491, 2, 6171, 2.99, '2007-04-11 08:58:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27693, 491, 2, 7019, 3.99, '2007-04-27 00:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27694, 491, 2, 7281, 6.99, '2007-04-27 10:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27695, 491, 2, 7688, 7.99, '2007-04-28 01:49:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27696, 491, 1, 7871, 6.99, '2007-04-28 08:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27697, 491, 2, 10036, 2.99, '2007-04-30 17:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27698, 491, 2, 10178, 4.99, '2007-04-30 22:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27699, 492, 2, 4128, 8.99, '2007-04-07 06:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27700, 492, 1, 4142, 2.99, '2007-04-07 06:48:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27701, 492, 2, 4258, 6.99, '2007-04-07 12:49:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27702, 492, 2, 5325, 0.99, '2007-04-09 15:04:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27703, 492, 1, 5609, 0.99, '2007-04-10 03:38:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27704, 492, 1, 6257, 2.99, '2007-04-11 13:52:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27705, 492, 2, 7203, 2.99, '2007-04-27 07:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27706, 493, 2, 3586, 4.99, '2007-04-06 02:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27707, 493, 1, 3655, 5.99, '2007-04-06 06:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27708, 493, 1, 6549, 7.99, '2007-04-12 03:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27709, 493, 1, 6552, 4.99, '2007-04-12 03:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27710, 493, 1, 7026, 2.99, '2007-04-27 01:17:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27711, 493, 2, 7043, 7.99, '2007-04-27 01:52:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27712, 493, 1, 8298, 4.99, '2007-04-29 01:16:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27713, 493, 1, 8616, 2.99, '2007-04-29 12:07:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27714, 494, 1, 3511, 0.99, '2007-04-05 23:10:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27715, 494, 2, 3803, 2.99, '2007-04-06 13:35:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27716, 494, 2, 3913, 0.99, '2007-04-06 18:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27717, 494, 1, 4086, 3.99, '2007-04-07 03:54:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27718, 494, 2, 4397, 5.99, '2007-04-07 19:43:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27719, 494, 2, 4551, 7.99, '2007-04-08 03:04:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27720, 494, 2, 5083, 4.99, '2007-04-09 03:58:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27721, 494, 1, 5180, 2.99, '2007-04-09 08:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27722, 494, 2, 7258, 3.99, '2007-04-27 09:34:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27723, 494, 2, 7546, 8.99, '2007-04-27 20:18:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27724, 494, 2, 7737, 1.99, '2007-04-28 03:43:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27725, 494, 2, 8333, 2.99, '2007-04-29 02:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27726, 494, 2, 8895, 2.99, '2007-04-29 23:17:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27727, 494, 1, 8934, 4.99, '2007-04-30 01:05:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27728, 494, 2, 9012, 4.99, '2007-04-30 03:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27729, 494, 2, 9510, 7.99, '2007-04-30 22:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27730, 494, 1, 9799, 2.99, '2007-04-30 09:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27731, 494, 2, 9943, 7.99, '2007-04-30 14:05:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27732, 495, 2, 3966, 2.99, '2007-04-06 21:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27733, 495, 2, 5484, 7.99, '2007-04-09 22:23:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27734, 495, 2, 6426, 7.99, '2007-04-11 22:25:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27735, 495, 2, 7191, 2.99, '2007-04-27 07:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27736, 495, 1, 8151, 0.99, '2007-04-28 19:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27737, 495, 1, 8383, 1.99, '2007-04-29 04:05:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27738, 495, 1, 8451, 5.99, '2007-04-29 06:13:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27739, 495, 1, 8672, 5.99, '2007-04-29 14:18:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27740, 495, 1, 9387, 9.99, '2007-04-30 17:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27741, 495, 1, 9741, 4.99, '2007-04-30 07:37:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27742, 495, 2, 10065, 4.99, '2007-04-30 17:56:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27743, 496, 2, 3569, 3.99, '2007-04-06 01:45:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27744, 496, 1, 4070, 2.99, '2007-04-07 03:05:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27745, 496, 1, 4261, 4.99, '2007-04-07 12:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27746, 496, 1, 4269, 0.99, '2007-04-07 13:06:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27747, 496, 1, 5559, 5.99, '2007-04-10 01:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27748, 496, 2, 5949, 4.99, '2007-04-10 21:41:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27749, 496, 1, 7133, 2.99, '2007-04-27 04:57:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27750, 496, 2, 8221, 2.99, '2007-04-28 22:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27751, 497, 1, 3696, 2.99, '2007-04-06 08:33:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27752, 497, 2, 4218, 7.99, '2007-04-07 10:38:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27753, 497, 1, 4516, 4.99, '2007-04-08 01:12:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27754, 497, 1, 4578, 0.99, '2007-04-08 04:28:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27755, 497, 2, 4795, 0.99, '2007-04-08 15:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27756, 497, 1, 5030, 4.99, '2007-04-09 01:04:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27757, 497, 1, 5239, 4.99, '2007-04-09 11:41:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27758, 497, 2, 7603, 2.99, '2007-04-27 22:23:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27759, 497, 2, 8011, 2.99, '2007-04-28 13:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27760, 497, 1, 8150, 6.99, '2007-04-28 19:19:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27761, 497, 2, 8813, 6.99, '2007-04-29 20:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27762, 497, 2, 8867, 4.99, '2007-04-29 22:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27763, 497, 1, 9273, 9.99, '2007-04-30 13:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27764, 497, 2, 9850, 4.99, '2007-04-30 11:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27765, 498, 2, 3828, 0.99, '2007-04-06 14:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27766, 498, 2, 3856, 2.99, '2007-04-06 15:33:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27767, 498, 1, 4311, 4.99, '2007-04-07 15:59:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27768, 498, 2, 4972, 2.99, '2007-04-08 22:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27769, 498, 1, 5286, 2.99, '2007-04-09 13:40:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27770, 498, 2, 5884, 0.99, '2007-04-10 18:00:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27771, 498, 1, 6058, 2.99, '2007-04-11 02:32:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27772, 498, 1, 6088, 1.99, '2007-04-11 04:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27773, 498, 1, 7285, 4.99, '2007-04-27 10:42:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27774, 498, 1, 7286, 6.99, '2007-04-27 10:52:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27775, 498, 1, 7341, 4.99, '2007-04-27 12:52:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27776, 498, 2, 8020, 4.99, '2007-04-28 14:11:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27777, 498, 1, 8229, 2.99, '2007-04-28 22:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27778, 498, 2, 9021, 0.99, '2007-04-30 04:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27779, 498, 2, 9689, 4.99, '2007-04-30 05:28:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27780, 499, 1, 3794, 4.99, '2007-04-06 13:03:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27781, 499, 1, 5022, 2.99, '2007-04-09 00:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27782, 499, 2, 5392, 2.99, '2007-04-09 18:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27783, 499, 2, 5427, 3.99, '2007-04-09 19:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27784, 499, 1, 5956, 4.99, '2007-04-10 21:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27785, 499, 2, 6723, 4.99, '2007-04-12 12:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27786, 499, 1, 7800, 0.99, '2007-04-28 06:19:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27787, 499, 1, 7831, 0.99, '2007-04-28 07:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27788, 499, 1, 7898, 6.99, '2007-04-28 09:36:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27789, 499, 2, 8130, 4.99, '2007-04-28 18:16:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27790, 499, 1, 8770, 3.99, '2007-04-29 18:22:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27791, 499, 1, 9588, 0.99, '2007-04-30 01:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27792, 500, 2, 3926, 4.99, '2007-04-06 19:11:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27793, 500, 1, 4561, 0.99, '2007-04-08 03:31:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27794, 500, 2, 4790, 4.99, '2007-04-08 14:53:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27795, 500, 2, 6018, 4.99, '2007-04-11 00:35:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27796, 500, 2, 6187, 2.99, '2007-04-11 09:57:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27797, 500, 2, 6801, 3.99, '2007-04-12 15:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27798, 500, 1, 7857, 0.99, '2007-04-28 08:18:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27799, 500, 1, 7925, 2.99, '2007-04-28 10:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27800, 500, 1, 8538, 6.99, '2007-04-29 09:13:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27801, 500, 1, 8925, 0.99, '2007-04-30 00:37:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27802, 500, 2, 9290, 3.99, '2007-04-30 14:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27803, 501, 2, 3541, 6.99, '2007-04-06 00:18:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27804, 501, 2, 3723, 6.99, '2007-04-06 09:40:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27805, 501, 2, 4769, 2.99, '2007-04-08 13:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27806, 501, 2, 5520, 1.99, '2007-04-09 23:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27807, 501, 2, 6095, 7.99, '2007-04-11 04:35:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27808, 501, 1, 7456, 0.99, '2007-04-27 17:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27809, 501, 1, 8021, 2.99, '2007-04-28 14:13:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27810, 501, 2, 8529, 2.99, '2007-04-29 08:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27811, 501, 1, 9359, 2.99, '2007-04-30 17:07:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27812, 502, 2, 3614, 2.99, '2007-04-06 04:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27813, 502, 1, 4606, 2.99, '2007-04-08 05:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27814, 502, 2, 5368, 5.99, '2007-04-09 17:10:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27815, 502, 2, 5662, 2.99, '2007-04-10 06:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27816, 502, 2, 6414, 7.99, '2007-04-11 21:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27817, 502, 1, 6760, 8.99, '2007-04-12 13:44:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27818, 502, 2, 6828, 2.99, '2007-04-12 17:07:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27819, 502, 2, 6924, 8.99, '2007-04-26 21:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27820, 502, 2, 7213, 3.99, '2007-04-27 07:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27821, 502, 1, 7255, 4.99, '2007-04-27 09:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27822, 502, 1, 7757, 4.99, '2007-04-28 04:51:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27823, 502, 1, 7884, 4.99, '2007-04-28 09:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27824, 502, 2, 8034, 4.99, '2007-04-28 14:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27825, 502, 2, 9232, 0.99, '2007-04-30 12:11:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27826, 502, 1, 9599, 4.99, '2007-04-30 02:00:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27827, 503, 2, 3935, 6.99, '2007-04-06 19:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27828, 503, 2, 4570, 2.99, '2007-04-08 04:02:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27829, 503, 2, 5465, 2.99, '2007-04-09 21:29:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27830, 503, 1, 5925, 6.99, '2007-04-10 20:09:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27831, 503, 1, 6166, 4.99, '2007-04-11 08:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27832, 503, 1, 6529, 2.99, '2007-04-12 02:59:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27833, 503, 2, 6950, 4.99, '2007-04-26 22:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27834, 503, 1, 8178, 2.99, '2007-04-28 20:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27835, 503, 2, 9725, 0.99, '2007-04-30 07:03:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27836, 503, 1, 9974, 4.99, '2007-04-30 15:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27837, 504, 2, 3712, 9.99, '2007-04-06 09:16:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27838, 504, 1, 3713, 6.99, '2007-04-06 09:17:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27839, 504, 1, 4329, 5.99, '2007-04-07 16:32:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27840, 504, 1, 4757, 0.99, '2007-04-08 13:05:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27841, 504, 2, 5153, 6.99, '2007-04-09 07:03:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27842, 504, 2, 7342, 3.99, '2007-04-27 12:53:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27843, 504, 1, 7567, 2.99, '2007-04-27 21:06:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27844, 504, 2, 7807, 2.99, '2007-04-28 06:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27845, 504, 2, 7875, 1.99, '2007-04-28 08:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27846, 504, 2, 7944, 4.99, '2007-04-28 11:19:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27847, 504, 1, 8393, 9.99, '2007-04-29 04:30:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27848, 505, 2, 4008, 5.99, '2007-04-06 22:55:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27849, 505, 1, 4507, 6.99, '2007-04-08 00:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27850, 505, 2, 5976, 9.99, '2007-04-10 22:45:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27851, 505, 2, 6292, 4.99, '2007-04-11 15:51:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27852, 505, 1, 6441, 0.99, '2007-04-11 22:55:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27853, 505, 1, 7784, 4.99, '2007-04-28 05:43:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27854, 505, 2, 10219, 5.99, '2007-04-30 23:38:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27855, 506, 2, 4594, 7.99, '2007-04-08 05:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27856, 506, 2, 4640, 6.99, '2007-04-08 07:28:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27857, 506, 2, 4806, 8.99, '2007-04-08 15:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27858, 506, 2, 5985, 0.99, '2007-04-10 23:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27859, 506, 1, 6783, 2.99, '2007-04-12 14:56:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27860, 506, 1, 7020, 0.99, '2007-04-27 00:52:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27861, 506, 2, 8096, 9.99, '2007-04-28 17:01:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27862, 506, 2, 8506, 0.99, '2007-04-29 07:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27863, 506, 2, 9654, 3.99, '2007-04-30 04:26:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27864, 506, 2, 9972, 2.99, '2007-04-30 15:11:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27865, 507, 1, 3660, 4.99, '2007-04-06 06:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27866, 507, 1, 3880, 2.99, '2007-04-06 17:01:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27867, 507, 2, 4440, 0.99, '2007-04-07 21:29:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27868, 507, 2, 4455, 2.99, '2007-04-07 22:12:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27869, 507, 2, 4744, 0.99, '2007-04-08 12:12:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27870, 507, 2, 4901, 2.99, '2007-04-08 19:13:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27871, 507, 1, 5962, 0.99, '2007-04-10 22:13:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27872, 507, 1, 6351, 6.99, '2007-04-11 19:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27873, 507, 1, 6396, 1.99, '2007-04-11 20:59:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27874, 507, 1, 6891, 2.99, '2007-04-12 19:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27875, 507, 2, 7770, 5.99, '2007-04-28 05:18:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27876, 507, 1, 7970, 5.99, '2007-04-28 12:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27877, 507, 2, 8369, 2.99, '2007-04-29 03:44:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27878, 507, 2, 8976, 2.99, '2007-04-30 02:40:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27879, 507, 1, 9003, 2.99, '2007-04-30 03:31:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27880, 508, 2, 5657, 9.99, '2007-04-10 06:02:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27881, 508, 2, 5978, 6.99, '2007-04-10 22:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27882, 508, 1, 6101, 4.99, '2007-04-11 05:18:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27883, 508, 2, 6646, 0.99, '2007-04-12 09:10:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27884, 508, 2, 6929, 8.99, '2007-04-26 21:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27885, 508, 1, 7283, 5.99, '2007-04-27 10:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27886, 508, 2, 7322, 3.99, '2007-04-27 12:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27887, 508, 2, 7327, 7.99, '2007-04-27 12:21:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27888, 508, 2, 7668, 2.99, '2007-04-28 01:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27889, 508, 2, 7676, 4.99, '2007-04-28 01:23:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27890, 508, 2, 8191, 4.99, '2007-04-28 21:15:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27891, 508, 2, 9694, 5.99, '2007-04-30 05:41:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27892, 508, 1, 9706, 2.99, '2007-04-30 06:11:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27893, 508, 2, 10128, 2.99, '2007-04-30 20:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27894, 509, 2, 4139, 1.99, '2007-04-07 06:46:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27895, 509, 2, 4266, 4.99, '2007-04-07 13:03:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27896, 509, 2, 4832, 2.99, '2007-04-08 16:35:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27897, 509, 2, 5008, 2.99, '2007-04-09 00:00:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27898, 509, 1, 6591, 5.99, '2007-04-12 05:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27899, 509, 1, 7848, 6.99, '2007-04-28 07:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27900, 509, 1, 8114, 8.99, '2007-04-28 17:42:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27901, 509, 1, 8214, 5.99, '2007-04-28 22:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27902, 509, 2, 8240, 0.99, '2007-04-28 23:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27903, 509, 1, 10189, 4.99, '2007-04-30 22:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27904, 510, 2, 3744, 2.99, '2007-04-06 10:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27905, 510, 1, 4014, 4.99, '2007-04-06 23:27:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27906, 510, 2, 5851, 4.99, '2007-04-10 16:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27907, 510, 1, 6531, 1.99, '2007-04-12 03:03:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27908, 510, 1, 7457, 2.99, '2007-04-27 17:03:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27909, 510, 1, 7678, 8.99, '2007-04-28 01:26:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27910, 510, 2, 7794, 9.99, '2007-04-28 05:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27911, 510, 2, 8763, 3.99, '2007-04-29 18:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27912, 510, 1, 8926, 4.99, '2007-04-30 00:38:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27913, 510, 1, 10131, 0.99, '2007-04-30 20:13:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27914, 511, 2, 3600, 4.99, '2007-04-06 03:48:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27915, 511, 1, 3852, 0.99, '2007-04-06 15:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27916, 511, 1, 4482, 4.99, '2007-04-07 23:29:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27917, 511, 2, 5164, 3.99, '2007-04-09 07:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27918, 511, 1, 5601, 0.99, '2007-04-10 03:25:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27919, 511, 2, 6040, 0.99, '2007-04-11 01:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27920, 511, 1, 6320, 0.99, '2007-04-11 17:19:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27921, 511, 1, 8026, 4.99, '2007-04-28 14:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27922, 511, 1, 9095, 0.99, '2007-04-30 07:07:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27923, 511, 1, 9143, 6.99, '2007-04-30 08:50:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27924, 511, 1, 9760, 4.99, '2007-04-30 07:57:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27925, 512, 1, 4752, 5.99, '2007-04-08 12:43:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27926, 512, 1, 4799, 0.99, '2007-04-08 15:17:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27927, 512, 1, 5064, 6.99, '2007-04-09 03:07:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27928, 512, 2, 5813, 3.99, '2007-04-10 14:03:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27929, 512, 1, 7219, 2.99, '2007-04-27 08:04:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27930, 512, 1, 7507, 0.99, '2007-04-27 19:00:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27931, 512, 1, 7715, 6.99, '2007-04-28 03:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27932, 512, 2, 8868, 4.99, '2007-04-29 22:30:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27933, 512, 1, 9055, 2.99, '2007-04-30 05:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27934, 513, 2, 3872, 0.99, '2007-04-06 16:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27935, 513, 2, 4055, 2.99, '2007-04-07 02:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27936, 513, 2, 4178, 4.99, '2007-04-07 08:42:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27937, 513, 2, 4220, 4.99, '2007-04-07 10:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27938, 513, 1, 5741, 7.99, '2007-04-10 10:24:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27939, 513, 1, 6027, 4.99, '2007-04-11 00:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27940, 513, 1, 7655, 0.99, '2007-04-28 00:29:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27941, 513, 2, 8320, 4.99, '2007-04-29 02:18:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27942, 513, 1, 8350, 4.99, '2007-04-29 03:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27943, 513, 2, 8683, 9.99, '2007-04-29 14:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27944, 513, 1, 8798, 5.99, '2007-04-29 19:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27945, 513, 2, 9862, 2.99, '2007-04-30 11:33:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27946, 513, 1, 10012, 3.99, '2007-04-30 16:34:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27947, 514, 2, 3668, 5.99, '2007-04-06 07:05:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27948, 514, 2, 3860, 2.99, '2007-04-06 15:48:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27949, 514, 1, 7791, 4.99, '2007-04-28 05:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27950, 514, 1, 9038, 3.99, '2007-04-30 04:52:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27951, 515, 2, 3782, 0.99, '2007-04-06 12:25:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27952, 515, 2, 4111, 6.99, '2007-04-07 05:16:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27953, 515, 2, 5216, 0.99, '2007-04-09 10:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27954, 515, 2, 5546, 2.99, '2007-04-10 01:19:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27955, 515, 2, 5697, 4.99, '2007-04-10 08:13:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27956, 515, 2, 7429, 3.99, '2007-04-27 15:53:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27957, 515, 1, 8706, 4.99, '2007-04-29 15:47:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27958, 515, 1, 10159, 4.99, '2007-04-30 21:22:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27959, 516, 2, 5780, 3.99, '2007-04-10 12:14:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27960, 516, 2, 6677, 6.99, '2007-04-12 10:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27961, 516, 1, 6858, 6.99, '2007-04-12 18:22:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27962, 516, 1, 7628, 4.99, '2007-04-27 23:26:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27963, 516, 1, 7882, 4.99, '2007-04-28 09:02:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27964, 516, 2, 8396, 4.99, '2007-04-29 04:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27965, 516, 2, 8534, 5.99, '2007-04-29 08:58:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27966, 516, 2, 8585, 2.99, '2007-04-29 10:42:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27967, 516, 2, 9243, 4.99, '2007-04-30 12:34:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27968, 517, 2, 4094, 2.99, '2007-04-07 04:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27969, 517, 1, 4109, 4.99, '2007-04-07 05:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27970, 517, 1, 4369, 4.99, '2007-04-07 18:30:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27971, 517, 2, 4374, 4.99, '2007-04-07 18:42:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27972, 517, 2, 4934, 0.99, '2007-04-08 20:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27973, 517, 1, 4993, 2.99, '2007-04-08 23:18:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27974, 517, 1, 5206, 7.99, '2007-04-09 09:39:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27975, 517, 2, 5974, 5.99, '2007-04-10 22:39:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27976, 517, 2, 6594, 4.99, '2007-04-12 05:54:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27977, 517, 2, 6903, 0.99, '2007-04-12 20:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27978, 517, 2, 7988, 3.99, '2007-04-28 13:05:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27979, 517, 1, 10063, 4.99, '2007-04-30 17:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27980, 518, 1, 3652, 0.99, '2007-04-06 06:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27981, 518, 2, 4029, 7.99, '2007-04-07 00:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27982, 518, 2, 4661, 4.99, '2007-04-08 08:23:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27983, 518, 2, 4948, 6.99, '2007-04-08 21:22:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27984, 518, 1, 6652, 2.99, '2007-04-12 09:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27985, 518, 1, 6957, 2.99, '2007-04-26 22:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27986, 518, 2, 7038, 3.99, '2007-04-27 01:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27987, 518, 2, 7154, 4.99, '2007-04-27 05:44:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27988, 518, 2, 7382, 2.99, '2007-04-27 14:11:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27989, 518, 1, 7657, 2.99, '2007-04-28 00:37:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27990, 518, 2, 7839, 6.99, '2007-04-28 07:29:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27991, 518, 1, 8107, 3.99, '2007-04-28 17:31:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27992, 518, 1, 8397, 2.99, '2007-04-29 04:38:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27993, 519, 2, 4564, 0.99, '2007-04-08 03:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27994, 519, 2, 4773, 2.99, '2007-04-08 14:10:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27995, 519, 2, 5236, 0.99, '2007-04-09 11:24:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27996, 519, 2, 5547, 5.99, '2007-04-10 01:21:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27997, 519, 2, 6063, 0.99, '2007-04-11 02:45:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27998, 519, 1, 6599, 3.99, '2007-04-12 06:09:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (27999, 519, 1, 9417, 6.99, '2007-04-30 19:23:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28000, 519, 2, 9441, 4.99, '2007-04-30 20:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28001, 519, 2, 9534, 7.99, '2007-04-30 23:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28002, 519, 2, 9645, 0.99, '2007-04-30 04:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28003, 519, 2, 9886, 7.99, '2007-04-30 12:28:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28004, 519, 1, 9905, 0.99, '2007-04-30 13:05:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28005, 519, 1, 10097, 5.99, '2007-04-30 19:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28006, 520, 2, 3482, 4.99, '2007-04-05 21:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28007, 520, 1, 3499, 7.99, '2007-04-05 22:32:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28008, 520, 2, 4346, 2.99, '2007-04-07 17:27:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28009, 520, 2, 5799, 4.99, '2007-04-10 13:22:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28010, 520, 1, 5802, 10.99, '2007-04-10 13:30:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28011, 520, 1, 5853, 3.99, '2007-04-10 16:13:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28012, 520, 1, 6029, 2.99, '2007-04-11 01:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28013, 520, 2, 7198, 5.99, '2007-04-27 07:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28014, 520, 1, 7720, 4.99, '2007-04-28 03:10:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28015, 520, 1, 7936, 0.99, '2007-04-28 11:01:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28016, 520, 1, 8294, 2.99, '2007-04-29 01:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28017, 520, 2, 8435, 2.99, '2007-04-29 05:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28018, 520, 1, 9803, 2.99, '2007-04-30 09:34:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28019, 520, 1, 10072, 0.99, '2007-04-30 18:19:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28020, 521, 2, 4284, 0.99, '2007-04-07 14:00:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28021, 521, 2, 4439, 2.99, '2007-04-07 21:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28022, 521, 1, 5276, 2.99, '2007-04-09 13:03:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28023, 521, 2, 5458, 4.99, '2007-04-09 21:04:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28024, 521, 2, 5580, 6.99, '2007-04-10 02:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28025, 521, 2, 5686, 0.99, '2007-04-10 07:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28026, 521, 1, 7478, 1.99, '2007-04-27 17:44:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28027, 521, 1, 9556, 7.99, '2007-04-30 00:41:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28028, 521, 2, 9937, 1.99, '2007-04-30 13:56:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28029, 522, 1, 3594, 0.99, '2007-04-06 03:11:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28030, 522, 2, 4078, 4.99, '2007-04-07 03:33:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28031, 522, 2, 4563, 9.99, '2007-04-08 03:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28032, 522, 2, 4701, 4.99, '2007-04-08 10:07:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28033, 522, 2, 5271, 6.99, '2007-04-09 12:53:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28034, 522, 2, 5514, 6.99, '2007-04-09 23:38:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28035, 522, 2, 5532, 4.99, '2007-04-10 00:45:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28036, 522, 2, 5936, 0.99, '2007-04-10 20:42:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28037, 522, 2, 7262, 4.99, '2007-04-27 09:44:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28038, 522, 1, 7955, 2.99, '2007-04-28 12:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28039, 522, 2, 8181, 4.99, '2007-04-28 20:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28040, 522, 1, 8642, 6.99, '2007-04-29 13:06:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28041, 522, 1, 8966, 2.99, '2007-04-30 02:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28042, 522, 1, 9047, 7.99, '2007-04-30 05:24:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28043, 522, 2, 9227, 7.99, '2007-04-30 12:04:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28044, 522, 1, 9335, 4.99, '2007-04-30 16:29:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28045, 522, 1, 9412, 5.99, '2007-04-30 19:12:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28046, 522, 2, 9533, 5.99, '2007-04-30 23:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28047, 522, 2, 10223, 0.99, '2007-04-30 23:51:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28048, 523, 1, 4605, 4.99, '2007-04-08 05:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28049, 523, 2, 5155, 2.99, '2007-04-09 07:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28050, 523, 1, 5287, 6.99, '2007-04-09 13:40:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28051, 523, 2, 5932, 2.99, '2007-04-10 20:33:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28052, 523, 2, 6675, 4.99, '2007-04-12 10:21:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28053, 523, 2, 7642, 1.99, '2007-04-27 23:45:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28054, 523, 2, 8141, 0.99, '2007-04-28 18:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28055, 523, 1, 8372, 5.99, '2007-04-29 03:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28056, 523, 1, 9071, 2.99, '2007-04-30 06:09:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28057, 523, 2, 9667, 6.99, '2007-04-30 04:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28058, 524, 1, 4366, 5.99, '2007-04-07 18:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28059, 524, 2, 5037, 4.99, '2007-04-09 01:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28060, 524, 2, 6161, 4.99, '2007-04-11 08:40:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28061, 524, 1, 6240, 6.99, '2007-04-11 13:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28062, 524, 2, 6745, 4.99, '2007-04-12 12:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28063, 524, 2, 7014, 8.99, '2007-04-27 00:43:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28064, 524, 1, 7040, 4.99, '2007-04-27 01:45:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28065, 524, 1, 8507, 6.99, '2007-04-29 07:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28066, 525, 1, 3993, 6.99, '2007-04-06 22:05:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28067, 525, 1, 5841, 2.99, '2007-04-10 15:39:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28068, 525, 2, 6098, 7.99, '2007-04-11 04:51:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28069, 525, 2, 6388, 6.99, '2007-04-11 20:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28070, 525, 1, 6689, 1.99, '2007-04-12 10:50:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28071, 525, 2, 7337, 4.99, '2007-04-27 12:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28072, 525, 2, 7591, 4.99, '2007-04-27 21:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28073, 525, 1, 8007, 0.99, '2007-04-28 13:50:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28074, 525, 1, 8960, 4.99, '2007-04-30 02:04:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28075, 525, 2, 9507, 5.99, '2007-04-30 22:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28076, 525, 1, 9702, 0.99, '2007-04-30 06:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28077, 526, 1, 3619, 1.99, '2007-04-06 04:28:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28078, 526, 2, 3905, 5.99, '2007-04-06 18:02:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28079, 526, 1, 4423, 6.99, '2007-04-07 20:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28080, 526, 2, 5056, 2.99, '2007-04-09 02:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28081, 526, 2, 5121, 3.99, '2007-04-09 05:46:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28082, 526, 1, 6316, 7.99, '2007-04-11 17:13:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28083, 526, 1, 6404, 4.99, '2007-04-11 21:18:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28084, 526, 2, 6650, 2.99, '2007-04-12 09:25:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28085, 526, 1, 6671, 3.99, '2007-04-12 10:17:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28086, 526, 2, 7270, 7.99, '2007-04-27 09:57:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28087, 526, 2, 7343, 0.99, '2007-04-27 12:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28088, 526, 2, 7399, 1.99, '2007-04-27 14:44:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28089, 526, 2, 7543, 5.99, '2007-04-27 20:12:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28090, 526, 2, 7883, 2.99, '2007-04-28 09:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28091, 526, 1, 8053, 4.99, '2007-04-28 15:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28092, 526, 1, 8232, 4.99, '2007-04-28 22:43:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28093, 526, 1, 8441, 2.99, '2007-04-29 06:01:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28094, 526, 2, 9577, 6.99, '2007-04-30 01:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28095, 526, 2, 10020, 4.99, '2007-04-30 16:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28096, 526, 2, 10199, 2.99, '2007-04-30 23:07:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28097, 527, 1, 4888, 0.99, '2007-04-08 18:32:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28098, 527, 1, 5365, 0.99, '2007-04-09 16:55:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28099, 527, 2, 6003, 3.99, '2007-04-10 23:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28100, 527, 2, 6011, 4.99, '2007-04-11 00:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28101, 527, 1, 6050, 2.99, '2007-04-11 02:02:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28102, 527, 2, 6975, 1.99, '2007-04-26 23:08:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28103, 527, 1, 7506, 8.99, '2007-04-27 18:57:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28104, 527, 1, 8854, 0.99, '2007-04-29 22:08:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28105, 527, 2, 9750, 0.99, '2007-04-30 07:48:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28106, 528, 2, 3654, 4.99, '2007-04-06 06:13:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28107, 528, 1, 3664, 0.99, '2007-04-06 06:44:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28108, 528, 2, 4050, 9.99, '2007-04-07 02:03:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28109, 528, 1, 4593, 5.99, '2007-04-08 05:06:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28110, 528, 2, 5215, 3.99, '2007-04-09 10:16:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28111, 528, 2, 6561, 0.99, '2007-04-12 03:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28112, 528, 1, 7569, 7.99, '2007-04-27 21:07:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28113, 528, 2, 8112, 4.99, '2007-04-28 17:39:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28114, 528, 1, 8727, 3.99, '2007-04-29 16:38:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28115, 528, 2, 9488, 8.99, '2007-04-30 22:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28116, 528, 1, 10084, 3.99, '2007-04-30 18:39:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28117, 529, 2, 4045, 0.99, '2007-04-07 01:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28118, 529, 2, 4254, 0.99, '2007-04-07 12:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28119, 529, 2, 4444, 5.99, '2007-04-07 21:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28120, 529, 1, 4553, 0.99, '2007-04-08 03:12:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28121, 529, 1, 5993, 4.99, '2007-04-10 23:35:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28122, 529, 2, 6538, 6.99, '2007-04-12 03:18:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28123, 529, 2, 6541, 5.99, '2007-04-12 03:22:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28124, 529, 1, 6908, 7.99, '2007-04-12 20:37:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28125, 529, 1, 7128, 3.99, '2007-04-27 04:43:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28126, 529, 2, 8708, 2.99, '2007-04-29 15:52:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28127, 529, 1, 8979, 5.99, '2007-04-30 02:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28128, 529, 2, 9310, 4.99, '2007-04-30 15:25:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28129, 529, 2, 9375, 0.99, '2007-04-30 17:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28130, 530, 2, 3669, 2.99, '2007-04-06 07:06:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28131, 530, 2, 3887, 4.99, '2007-04-06 17:15:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28132, 530, 2, 5663, 0.99, '2007-04-10 06:29:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28133, 530, 1, 7031, 3.99, '2007-04-27 01:30:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28134, 530, 2, 7075, 1.99, '2007-04-27 02:40:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28135, 530, 1, 7218, 4.99, '2007-04-27 08:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28136, 530, 2, 8208, 4.99, '2007-04-28 21:55:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28137, 530, 1, 8736, 0.99, '2007-04-29 16:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28138, 530, 1, 9914, 4.99, '2007-04-30 13:19:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28139, 530, 2, 10211, 3.99, '2007-04-30 23:29:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28140, 531, 2, 3921, 5.99, '2007-04-06 18:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28141, 531, 1, 5587, 5.99, '2007-04-10 02:45:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28142, 531, 2, 5850, 0.99, '2007-04-10 16:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28143, 531, 2, 5904, 4.99, '2007-04-10 19:08:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28144, 531, 1, 6756, 4.99, '2007-04-12 13:36:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28145, 531, 1, 6876, 4.99, '2007-04-12 19:01:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28146, 531, 2, 7204, 2.99, '2007-04-27 07:30:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28147, 531, 1, 7391, 6.99, '2007-04-27 14:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28148, 531, 2, 7444, 2.99, '2007-04-27 16:17:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28149, 531, 2, 7753, 6.99, '2007-04-28 04:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28150, 531, 2, 8359, 5.99, '2007-04-29 03:30:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28151, 531, 2, 8860, 4.99, '2007-04-29 22:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28152, 531, 2, 8943, 0.99, '2007-04-30 01:35:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28153, 531, 2, 9107, 4.99, '2007-04-30 07:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28154, 532, 1, 4336, 2.99, '2007-04-07 17:03:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28155, 532, 2, 4962, 4.99, '2007-04-08 22:04:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28156, 532, 2, 5190, 2.99, '2007-04-09 08:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28157, 532, 1, 5253, 7.99, '2007-04-09 12:09:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28158, 532, 2, 5278, 4.99, '2007-04-09 13:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28159, 532, 2, 5805, 8.99, '2007-04-10 13:37:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28160, 532, 1, 5887, 2.99, '2007-04-10 18:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28161, 532, 2, 6345, 7.99, '2007-04-11 18:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28162, 532, 2, 6598, 4.99, '2007-04-12 06:06:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28163, 532, 1, 6730, 3.99, '2007-04-12 12:26:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28164, 532, 1, 7192, 4.99, '2007-04-27 07:05:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28165, 532, 2, 7572, 2.99, '2007-04-27 21:12:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28166, 532, 1, 8273, 5.99, '2007-04-29 00:01:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28167, 532, 1, 9843, 2.99, '2007-04-30 10:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28168, 533, 1, 4112, 8.99, '2007-04-07 05:17:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28169, 533, 1, 4788, 4.99, '2007-04-08 14:46:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28170, 533, 2, 6781, 2.99, '2007-04-12 14:50:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28171, 533, 2, 6834, 0.99, '2007-04-12 17:22:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28172, 533, 2, 6837, 9.99, '2007-04-12 17:28:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28173, 533, 2, 7555, 4.99, '2007-04-27 20:45:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28174, 533, 1, 8093, 8.99, '2007-04-28 16:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28175, 533, 2, 8104, 2.99, '2007-04-28 17:28:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28176, 533, 2, 8250, 2.99, '2007-04-28 23:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28177, 533, 1, 8471, 2.99, '2007-04-29 07:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28178, 533, 1, 8676, 1.99, '2007-04-29 14:27:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28179, 533, 2, 8786, 1.99, '2007-04-29 19:08:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28180, 533, 2, 10090, 3.99, '2007-04-30 18:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28181, 534, 1, 3735, 2.99, '2007-04-06 10:10:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28182, 534, 2, 4998, 4.99, '2007-04-08 23:35:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28183, 534, 2, 7113, 2.99, '2007-04-27 04:09:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28184, 534, 1, 7662, 2.99, '2007-04-28 00:44:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28185, 534, 2, 8633, 0.99, '2007-04-29 12:48:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28186, 534, 1, 9456, 5.99, '2007-04-30 20:50:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28187, 534, 2, 9464, 4.99, '2007-04-30 20:59:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28188, 535, 1, 4331, 4.99, '2007-04-07 16:50:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28189, 535, 1, 4718, 6.99, '2007-04-08 11:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28190, 535, 1, 4743, 2.99, '2007-04-08 12:11:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28191, 535, 2, 4914, 6.99, '2007-04-08 19:59:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28192, 535, 1, 5588, 0.99, '2007-04-10 02:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28193, 535, 2, 5890, 8.99, '2007-04-10 18:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28194, 535, 1, 6504, 2.99, '2007-04-12 01:47:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28195, 535, 1, 8395, 2.99, '2007-04-29 04:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28196, 535, 1, 8645, 4.99, '2007-04-29 13:16:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28197, 535, 2, 9440, 0.99, '2007-04-30 20:08:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28198, 535, 1, 9524, 4.99, '2007-04-30 23:29:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28199, 536, 1, 3483, 4.99, '2007-04-05 21:42:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28200, 536, 1, 3514, 0.99, '2007-04-05 23:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28201, 536, 1, 4448, 2.99, '2007-04-07 21:45:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28202, 536, 2, 5196, 0.99, '2007-04-09 09:12:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28203, 536, 1, 6400, 5.99, '2007-04-11 21:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28204, 536, 1, 7065, 4.99, '2007-04-27 02:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28205, 536, 2, 8535, 4.99, '2007-04-29 09:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28206, 536, 1, 8679, 4.99, '2007-04-29 14:36:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28207, 536, 1, 8958, 2.99, '2007-04-30 02:02:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28208, 536, 1, 9411, 8.99, '2007-04-30 19:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28209, 536, 1, 9727, 4.99, '2007-04-30 07:07:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28210, 536, 2, 10019, 3.99, '2007-04-30 16:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28211, 537, 1, 3555, 0.99, '2007-04-06 01:14:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28212, 537, 2, 3853, 0.99, '2007-04-06 15:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28213, 537, 1, 5630, 2.99, '2007-04-10 04:36:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28214, 537, 2, 5877, 5.99, '2007-04-10 17:37:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28215, 537, 2, 6310, 2.99, '2007-04-11 16:42:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28216, 537, 1, 6409, 4.99, '2007-04-11 21:34:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28217, 537, 1, 6746, 0.99, '2007-04-12 13:01:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28218, 537, 1, 7179, 2.99, '2007-04-27 06:38:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28219, 537, 2, 7810, 4.99, '2007-04-28 06:29:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28220, 537, 2, 8126, 4.99, '2007-04-28 18:01:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28221, 537, 2, 8256, 4.99, '2007-04-28 23:31:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28222, 537, 1, 9967, 2.99, '2007-04-30 14:59:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28223, 538, 2, 3554, 4.99, '2007-04-06 01:05:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28224, 538, 2, 5135, 8.99, '2007-04-09 06:21:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28225, 538, 1, 5369, 4.99, '2007-04-09 17:10:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28226, 538, 1, 5486, 2.99, '2007-04-09 22:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28227, 538, 1, 5898, 2.99, '2007-04-10 18:46:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28228, 538, 2, 6130, 2.99, '2007-04-11 06:48:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28229, 538, 1, 6332, 0.99, '2007-04-11 17:47:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28230, 538, 2, 6936, 0.99, '2007-04-26 21:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28231, 538, 1, 7694, 0.99, '2007-04-28 02:07:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28232, 538, 1, 8765, 0.99, '2007-04-29 18:08:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28233, 538, 1, 9307, 0.99, '2007-04-30 15:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28234, 538, 1, 9643, 4.99, '2007-04-30 04:04:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28235, 538, 2, 9897, 4.99, '2007-04-30 12:40:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28236, 538, 2, 9939, 8.99, '2007-04-30 13:57:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28237, 539, 1, 4035, 2.99, '2007-04-07 01:13:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28238, 539, 1, 4247, 0.99, '2007-04-07 12:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28239, 539, 2, 5086, 4.99, '2007-04-09 04:08:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28240, 539, 2, 5139, 7.99, '2007-04-09 06:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28241, 539, 2, 5493, 2.99, '2007-04-09 22:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28242, 539, 2, 6874, 5.99, '2007-04-12 18:49:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28243, 539, 1, 7781, 2.99, '2007-04-28 05:41:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28244, 539, 2, 8247, 6.99, '2007-04-28 23:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28245, 539, 2, 8761, 5.99, '2007-04-29 17:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28246, 539, 2, 9250, 0.99, '2007-04-30 12:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28247, 539, 1, 9777, 7.99, '2007-04-30 08:29:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28248, 539, 1, 9796, 4.99, '2007-04-30 09:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28249, 540, 2, 4628, 4.99, '2007-04-08 06:54:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28250, 540, 2, 4991, 4.99, '2007-04-08 23:17:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28251, 540, 1, 6103, 2.99, '2007-04-11 05:28:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28252, 540, 2, 6145, 7.99, '2007-04-11 07:35:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28253, 540, 2, 6182, 2.99, '2007-04-11 09:40:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28254, 540, 1, 6748, 6.99, '2007-04-12 13:07:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28255, 540, 1, 6919, 0.99, '2007-04-12 21:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28256, 540, 2, 9762, 4.99, '2007-04-30 08:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28257, 540, 2, 9815, 2.99, '2007-04-30 09:59:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28258, 541, 1, 5018, 2.99, '2007-04-09 00:29:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28259, 541, 2, 5197, 4.99, '2007-04-09 09:12:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28260, 541, 2, 6468, 7.99, '2007-04-11 23:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28261, 541, 2, 6718, 2.99, '2007-04-12 12:06:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28262, 541, 1, 8113, 8.99, '2007-04-28 17:42:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28263, 541, 1, 8322, 4.99, '2007-04-29 02:21:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28264, 541, 2, 9603, 0.99, '2007-04-30 02:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28265, 542, 2, 5293, 0.99, '2007-04-09 13:45:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28266, 542, 1, 5477, 6.99, '2007-04-09 22:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28267, 542, 2, 6077, 5.99, '2007-04-11 03:34:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28268, 542, 2, 6325, 5.99, '2007-04-11 17:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28269, 542, 1, 6887, 9.99, '2007-04-12 19:28:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28270, 542, 2, 7672, 8.99, '2007-04-28 01:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28271, 542, 1, 8533, 4.99, '2007-04-29 08:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28272, 542, 2, 8544, 3.99, '2007-04-29 09:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28273, 543, 1, 4887, 2.99, '2007-04-08 18:27:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28274, 543, 2, 5467, 4.99, '2007-04-09 21:34:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28275, 543, 2, 6013, 4.99, '2007-04-11 00:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28276, 543, 2, 7312, 2.99, '2007-04-27 11:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28277, 543, 1, 8580, 2.99, '2007-04-29 10:28:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28278, 543, 2, 8845, 4.99, '2007-04-29 21:34:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28279, 543, 1, 9505, 2.99, '2007-04-30 22:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28280, 543, 1, 9999, 0.99, '2007-04-30 16:09:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28281, 544, 1, 4395, 0.99, '2007-04-07 19:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28282, 544, 1, 4703, 2.99, '2007-04-08 10:13:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28283, 544, 2, 4847, 6.99, '2007-04-08 16:57:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28284, 544, 2, 8566, 2.99, '2007-04-29 10:04:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28285, 544, 1, 8937, 5.99, '2007-04-30 01:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28286, 544, 1, 8963, 9.99, '2007-04-30 02:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28287, 545, 2, 3693, 8.99, '2007-04-06 08:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28288, 545, 1, 3975, 5.99, '2007-04-06 21:28:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28289, 545, 1, 4597, 5.99, '2007-04-08 05:12:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28290, 545, 1, 5264, 0.99, '2007-04-09 12:39:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28291, 545, 1, 7078, 5.99, '2007-04-27 02:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28292, 545, 2, 8599, 3.99, '2007-04-29 11:27:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28293, 545, 2, 8848, 2.99, '2007-04-29 21:49:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28294, 545, 2, 9810, 2.99, '2007-04-30 09:51:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28295, 545, 2, 9942, 4.99, '2007-04-30 14:04:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28296, 546, 1, 3738, 4.99, '2007-04-06 10:19:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28297, 546, 2, 4664, 0.99, '2007-04-08 08:29:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28298, 546, 1, 4734, 0.99, '2007-04-08 11:40:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28299, 546, 1, 5629, 0.99, '2007-04-10 04:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28300, 546, 2, 6758, 9.99, '2007-04-12 13:42:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28301, 546, 1, 6786, 2.99, '2007-04-12 15:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28302, 546, 2, 6910, 6.99, '2007-04-12 20:39:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28303, 546, 1, 8532, 4.99, '2007-04-29 08:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28304, 546, 1, 9087, 4.99, '2007-04-30 06:48:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28305, 267, 1, 9308, 6.99, '2007-04-30 15:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28306, 546, 2, 9626, 1.99, '2007-04-30 03:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28307, 547, 2, 3679, 4.99, '2007-04-06 07:44:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28308, 547, 1, 3765, 4.99, '2007-04-06 11:30:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28309, 547, 2, 5327, 4.99, '2007-04-09 15:08:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28310, 547, 2, 5854, 4.99, '2007-04-10 16:16:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28311, 547, 1, 6605, 0.99, '2007-04-12 06:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28312, 547, 2, 7420, 4.99, '2007-04-27 15:38:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28313, 547, 2, 7547, 3.99, '2007-04-27 20:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28314, 547, 1, 7835, 4.99, '2007-04-28 07:18:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28315, 547, 1, 7859, 3.99, '2007-04-28 08:25:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28316, 547, 1, 8828, 2.99, '2007-04-29 21:01:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28317, 548, 1, 3686, 2.99, '2007-04-06 08:06:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28318, 548, 2, 3777, 2.99, '2007-04-06 12:05:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28319, 548, 1, 4155, 7.99, '2007-04-07 07:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28320, 548, 2, 5138, 4.99, '2007-04-09 06:29:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28321, 548, 2, 6490, 4.99, '2007-04-12 00:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28322, 548, 1, 9614, 5.99, '2007-04-30 02:27:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28323, 549, 2, 3523, 2.99, '2007-04-05 23:30:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28324, 549, 2, 3892, 4.99, '2007-04-06 17:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28325, 549, 1, 4447, 0.99, '2007-04-07 21:43:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28326, 549, 1, 7252, 7.99, '2007-04-27 09:13:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28327, 549, 2, 8239, 0.99, '2007-04-28 23:00:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28328, 549, 1, 8316, 4.99, '2007-04-29 02:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28329, 549, 2, 9445, 7.99, '2007-04-30 20:19:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28330, 549, 2, 9511, 9.99, '2007-04-30 22:53:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28331, 549, 2, 9887, 0.99, '2007-04-30 12:28:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28332, 550, 1, 3979, 4.99, '2007-04-06 21:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28333, 550, 1, 5727, 4.99, '2007-04-10 09:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28334, 550, 1, 6695, 2.99, '2007-04-12 11:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28335, 550, 1, 7030, 0.99, '2007-04-27 01:30:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28336, 550, 2, 7838, 2.99, '2007-04-28 07:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28337, 550, 1, 8628, 6.99, '2007-04-29 12:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28338, 550, 2, 8838, 2.99, '2007-04-29 21:20:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28339, 550, 1, 8959, 8.99, '2007-04-30 02:04:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28340, 550, 1, 9616, 2.99, '2007-04-30 02:33:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28341, 550, 1, 9748, 0.99, '2007-04-30 07:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28342, 550, 2, 10140, 4.99, '2007-04-30 20:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28343, 551, 2, 3996, 5.99, '2007-04-06 22:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28344, 551, 1, 5201, 1.99, '2007-04-09 09:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28345, 551, 2, 5528, 0.99, '2007-04-10 00:37:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28346, 551, 1, 6041, 0.99, '2007-04-11 01:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28347, 551, 2, 7095, 9.99, '2007-04-27 03:19:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28348, 551, 1, 8986, 0.99, '2007-04-30 03:05:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28349, 551, 1, 9287, 2.99, '2007-04-30 14:04:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28350, 551, 2, 9765, 4.99, '2007-04-30 08:13:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28351, 552, 1, 4477, 6.99, '2007-04-07 23:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28352, 552, 1, 5213, 7.99, '2007-04-09 10:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28353, 552, 2, 6189, 4.99, '2007-04-11 10:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28354, 552, 1, 7772, 2.99, '2007-04-28 05:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28355, 552, 1, 8085, 2.99, '2007-04-28 16:41:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28356, 552, 2, 8192, 2.99, '2007-04-28 21:17:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28357, 552, 2, 8614, 5.99, '2007-04-29 12:00:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28358, 552, 2, 8894, 4.99, '2007-04-29 23:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28359, 552, 1, 9342, 8.99, '2007-04-30 16:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28360, 553, 1, 3495, 6.99, '2007-04-05 22:18:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28361, 553, 2, 3793, 4.99, '2007-04-06 13:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28362, 553, 2, 3859, 2.99, '2007-04-06 15:46:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28363, 553, 1, 3890, 4.99, '2007-04-06 17:26:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28364, 553, 2, 3891, 4.99, '2007-04-06 17:26:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28365, 553, 2, 3942, 4.99, '2007-04-06 19:50:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28366, 553, 1, 4257, 4.99, '2007-04-07 12:47:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28367, 553, 2, 4662, 0.99, '2007-04-08 08:27:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28368, 553, 2, 4845, 4.99, '2007-04-08 16:56:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28369, 553, 2, 4941, 3.99, '2007-04-08 21:07:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28370, 553, 1, 6069, 2.99, '2007-04-11 03:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28371, 553, 2, 6657, 0.99, '2007-04-12 09:40:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28372, 553, 1, 6812, 6.99, '2007-04-12 16:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28373, 553, 1, 7890, 4.99, '2007-04-28 09:12:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28374, 553, 2, 9272, 4.99, '2007-04-30 13:33:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28375, 553, 2, 9601, 2.99, '2007-04-30 02:10:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28376, 554, 2, 4902, 4.99, '2007-04-08 19:17:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28377, 554, 1, 5527, 2.99, '2007-04-10 00:34:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28378, 554, 1, 5968, 5.99, '2007-04-10 22:31:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28379, 554, 1, 6144, 2.99, '2007-04-11 07:31:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28380, 555, 2, 4875, 2.99, '2007-04-08 17:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28381, 555, 1, 8161, 0.99, '2007-04-28 19:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28382, 555, 1, 8245, 3.99, '2007-04-28 23:05:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28383, 555, 1, 9299, 5.99, '2007-04-30 15:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28384, 555, 2, 9990, 7.99, '2007-04-30 15:52:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28385, 555, 2, 10076, 7.99, '2007-04-30 18:29:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28386, 556, 2, 4719, 2.99, '2007-04-08 11:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28387, 556, 2, 4839, 3.99, '2007-04-08 16:41:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28388, 556, 1, 4846, 0.99, '2007-04-08 16:57:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28389, 556, 2, 5722, 0.99, '2007-04-10 09:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28390, 556, 2, 6484, 2.99, '2007-04-12 00:32:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28391, 556, 1, 8909, 5.99, '2007-04-29 23:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28392, 556, 2, 10106, 4.99, '2007-04-30 19:29:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28393, 557, 1, 4651, 0.99, '2007-04-08 08:08:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28394, 557, 1, 4851, 1.99, '2007-04-08 17:08:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28395, 557, 1, 6459, 0.99, '2007-04-11 23:40:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28396, 557, 2, 6713, 3.99, '2007-04-12 11:56:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28397, 557, 2, 6823, 4.99, '2007-04-12 16:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28398, 557, 2, 6898, 0.99, '2007-04-12 20:07:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28399, 557, 1, 9336, 0.99, '2007-04-30 16:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28400, 557, 1, 9341, 2.99, '2007-04-30 16:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28401, 557, 2, 9366, 1.99, '2007-04-30 17:17:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28402, 557, 2, 9367, 6.99, '2007-04-30 17:18:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28403, 558, 1, 3731, 9.99, '2007-04-06 10:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28404, 558, 1, 3954, 0.99, '2007-04-06 20:26:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28405, 558, 1, 3990, 3.99, '2007-04-06 22:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28406, 558, 1, 4192, 5.99, '2007-04-07 09:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28407, 558, 1, 4932, 2.99, '2007-04-08 20:46:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28408, 558, 2, 5375, 6.99, '2007-04-09 17:21:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28409, 558, 1, 5492, 3.99, '2007-04-09 22:39:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28410, 558, 2, 6278, 7.99, '2007-04-11 14:48:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28411, 558, 2, 6479, 9.99, '2007-04-12 00:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28412, 558, 2, 6742, 4.99, '2007-04-12 12:53:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28413, 558, 1, 6757, 0.99, '2007-04-12 13:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28414, 558, 1, 7424, 0.99, '2007-04-27 15:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28415, 558, 1, 8523, 2.99, '2007-04-29 08:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28416, 558, 1, 8858, 4.99, '2007-04-29 22:13:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28417, 558, 1, 8889, 2.99, '2007-04-29 23:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28418, 559, 1, 3674, 5.99, '2007-04-06 07:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28419, 559, 1, 4120, 4.99, '2007-04-07 05:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28420, 559, 1, 4370, 7.99, '2007-04-07 18:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28421, 559, 2, 5396, 1.99, '2007-04-09 18:11:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28422, 559, 1, 6201, 4.99, '2007-04-11 10:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28423, 559, 1, 6915, 2.99, '2007-04-12 20:56:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28424, 559, 1, 7169, 1.99, '2007-04-27 06:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28425, 559, 1, 7680, 1.99, '2007-04-28 01:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28426, 559, 1, 8631, 1.99, '2007-04-29 12:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28427, 559, 2, 9134, 0.99, '2007-04-30 08:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28428, 559, 1, 9877, 2.99, '2007-04-30 12:10:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28429, 559, 2, 10146, 2.99, '2007-04-30 20:46:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28430, 560, 1, 3941, 4.99, '2007-04-06 19:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28431, 560, 1, 4298, 2.99, '2007-04-07 14:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28432, 560, 2, 4375, 9.99, '2007-04-07 18:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28433, 560, 1, 4453, 0.99, '2007-04-07 22:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28434, 560, 2, 5208, 2.99, '2007-04-09 09:45:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28435, 560, 1, 6410, 4.99, '2007-04-11 21:36:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28436, 560, 1, 6945, 2.99, '2007-04-26 22:03:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28437, 560, 2, 7202, 4.99, '2007-04-27 07:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28438, 560, 1, 7891, 3.99, '2007-04-28 09:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28439, 560, 1, 8753, 2.99, '2007-04-29 17:44:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28440, 560, 2, 8861, 5.99, '2007-04-29 22:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28441, 560, 2, 8906, 4.99, '2007-04-29 23:50:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28442, 560, 1, 9265, 0.99, '2007-04-30 13:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28443, 560, 2, 9895, 5.99, '2007-04-30 12:36:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28444, 561, 2, 6361, 2.99, '2007-04-11 19:37:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28445, 561, 1, 6435, 0.99, '2007-04-11 22:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28446, 561, 1, 6621, 0.99, '2007-04-12 07:25:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28447, 561, 1, 6843, 4.99, '2007-04-12 17:42:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28448, 561, 1, 7698, 0.99, '2007-04-28 02:12:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28449, 561, 1, 8504, 10.99, '2007-04-29 07:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28450, 561, 2, 9839, 7.99, '2007-04-30 10:49:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28451, 562, 2, 4732, 5.99, '2007-04-08 11:38:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28452, 562, 1, 4802, 4.99, '2007-04-08 15:23:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28453, 562, 2, 5360, 0.99, '2007-04-09 16:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28454, 562, 2, 6065, 6.99, '2007-04-11 02:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28455, 562, 1, 6607, 8.99, '2007-04-12 06:37:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28456, 562, 2, 7166, 3.99, '2007-04-27 06:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28457, 562, 1, 7430, 2.99, '2007-04-27 15:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28458, 562, 2, 7560, 2.99, '2007-04-27 20:48:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28459, 562, 2, 8132, 0.99, '2007-04-28 18:25:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28460, 563, 1, 4106, 1.99, '2007-04-07 05:02:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28461, 563, 2, 4436, 0.99, '2007-04-07 21:20:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28462, 563, 1, 4565, 3.99, '2007-04-08 03:40:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28463, 563, 2, 4629, 6.99, '2007-04-08 06:59:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28464, 563, 2, 4711, 2.99, '2007-04-08 10:35:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28465, 563, 2, 4776, 5.99, '2007-04-08 14:12:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28466, 563, 2, 4808, 3.99, '2007-04-08 15:31:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28467, 563, 2, 4825, 4.99, '2007-04-08 16:11:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28468, 563, 1, 4883, 0.99, '2007-04-08 18:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28469, 563, 1, 5406, 0.99, '2007-04-09 18:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28470, 563, 2, 6326, 2.99, '2007-04-11 17:35:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28471, 563, 2, 7612, 0.99, '2007-04-27 22:40:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28472, 563, 1, 8262, 1.99, '2007-04-28 23:39:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28473, 563, 1, 8610, 5.99, '2007-04-29 11:53:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28474, 563, 2, 8632, 6.99, '2007-04-29 12:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28475, 563, 2, 8812, 7.99, '2007-04-29 20:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28476, 564, 1, 4196, 2.99, '2007-04-07 09:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28477, 564, 2, 4385, 0.99, '2007-04-07 19:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28478, 564, 1, 6973, 2.99, '2007-04-26 23:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28479, 564, 2, 7470, 10.99, '2007-04-27 17:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28480, 564, 2, 8426, 4.99, '2007-04-29 05:36:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28481, 564, 1, 8874, 0.99, '2007-04-29 22:43:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28482, 564, 2, 9063, 3.99, '2007-04-30 05:53:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28483, 564, 2, 9929, 2.99, '2007-04-30 13:45:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28484, 564, 1, 10129, 6.99, '2007-04-30 20:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28485, 565, 2, 3470, 0.99, '2007-04-05 21:17:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28486, 565, 1, 3838, 2.99, '2007-04-06 14:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28487, 565, 1, 4413, 2.99, '2007-04-07 20:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28488, 565, 2, 5020, 0.99, '2007-04-09 00:36:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28489, 565, 1, 5124, 4.99, '2007-04-09 05:53:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28490, 565, 1, 6264, 2.99, '2007-04-11 14:11:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28491, 565, 1, 6627, 2.99, '2007-04-12 07:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28492, 565, 1, 6699, 0.99, '2007-04-12 11:13:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28493, 565, 2, 7242, 5.99, '2007-04-27 08:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28494, 565, 1, 9628, 2.99, '2007-04-30 03:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28495, 565, 1, 10025, 5.99, '2007-04-30 16:57:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28496, 566, 2, 3663, 4.99, '2007-04-06 06:44:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28497, 566, 1, 3943, 0.99, '2007-04-06 19:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28498, 566, 1, 3998, 3.99, '2007-04-06 22:17:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28499, 566, 1, 5079, 9.99, '2007-04-09 03:49:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28500, 566, 2, 6365, 2.99, '2007-04-11 19:46:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28501, 566, 1, 7677, 2.99, '2007-04-28 01:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28502, 566, 2, 7941, 0.99, '2007-04-28 11:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28503, 566, 2, 8118, 2.99, '2007-04-28 17:50:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28504, 566, 1, 8157, 6.99, '2007-04-28 19:35:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28505, 566, 1, 8257, 2.99, '2007-04-28 23:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28506, 566, 2, 8305, 1.99, '2007-04-29 01:37:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28507, 566, 2, 8660, 6.99, '2007-04-29 13:55:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28508, 566, 1, 8710, 0.99, '2007-04-29 15:54:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28509, 566, 1, 8797, 4.99, '2007-04-29 19:39:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28510, 566, 2, 9101, 4.99, '2007-04-30 07:15:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28511, 566, 2, 9470, 4.99, '2007-04-30 21:29:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28512, 566, 1, 9688, 3.99, '2007-04-30 05:24:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28513, 566, 2, 9915, 2.99, '2007-04-30 13:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28514, 567, 1, 3769, 5.99, '2007-04-06 11:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28515, 567, 2, 4457, 0.99, '2007-04-07 22:14:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28516, 567, 2, 4576, 0.99, '2007-04-08 04:19:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28517, 567, 1, 4949, 4.99, '2007-04-08 21:25:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28518, 567, 2, 6358, 2.99, '2007-04-11 19:31:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28519, 567, 2, 6551, 0.99, '2007-04-12 03:32:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28520, 567, 2, 7340, 2.99, '2007-04-27 12:46:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28521, 567, 1, 8201, 2.99, '2007-04-28 21:39:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28522, 567, 1, 8629, 2.99, '2007-04-29 12:35:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28523, 567, 1, 9279, 7.99, '2007-04-30 13:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28524, 567, 1, 9475, 6.99, '2007-04-30 21:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28525, 568, 1, 4322, 2.99, '2007-04-07 16:23:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28526, 568, 2, 5332, 2.99, '2007-04-09 15:27:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28527, 568, 1, 5622, 0.99, '2007-04-10 04:08:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28528, 568, 1, 5776, 4.99, '2007-04-10 12:03:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28529, 568, 2, 7068, 2.99, '2007-04-27 02:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28530, 568, 2, 8185, 0.99, '2007-04-28 20:52:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28531, 568, 2, 9583, 6.99, '2007-04-30 01:33:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28532, 568, 1, 9738, 0.99, '2007-04-30 07:32:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28533, 569, 1, 4204, 5.99, '2007-04-07 09:52:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28534, 569, 2, 5003, 0.99, '2007-04-08 23:47:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28535, 569, 2, 6046, 5.99, '2007-04-11 01:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28536, 569, 1, 8910, 2.99, '2007-04-29 23:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28537, 569, 2, 9220, 1.99, '2007-04-30 11:45:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28538, 569, 1, 9399, 4.99, '2007-04-30 18:43:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28539, 569, 2, 9960, 1.99, '2007-04-30 14:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28540, 569, 2, 10192, 2.99, '2007-04-30 23:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28541, 570, 2, 3984, 0.99, '2007-04-06 21:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28542, 570, 1, 4069, 0.99, '2007-04-07 03:03:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28543, 570, 1, 4698, 0.99, '2007-04-08 09:47:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28544, 570, 2, 5638, 4.99, '2007-04-10 05:01:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28545, 570, 1, 6253, 4.99, '2007-04-11 13:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28546, 570, 1, 6556, 0.99, '2007-04-12 03:38:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28547, 570, 2, 7174, 4.99, '2007-04-27 06:29:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28548, 570, 2, 8735, 4.99, '2007-04-29 16:57:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28549, 570, 1, 9385, 7.99, '2007-04-30 17:54:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28550, 570, 1, 9398, 0.99, '2007-04-30 18:37:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28551, 570, 2, 9432, 2.99, '2007-04-30 19:54:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28552, 570, 1, 9766, 4.99, '2007-04-30 08:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28553, 570, 1, 10004, 0.99, '2007-04-30 16:19:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28554, 570, 2, 10168, 2.99, '2007-04-30 21:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28555, 571, 2, 3616, 2.99, '2007-04-06 04:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28556, 571, 1, 4162, 4.99, '2007-04-07 07:45:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28557, 571, 2, 5789, 4.99, '2007-04-10 12:39:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28558, 571, 2, 6676, 8.99, '2007-04-12 10:22:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28559, 571, 1, 6792, 8.99, '2007-04-12 15:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28560, 571, 1, 8084, 5.99, '2007-04-28 16:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28561, 571, 1, 8638, 4.99, '2007-04-29 12:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28562, 571, 2, 9300, 1.99, '2007-04-30 15:01:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28563, 571, 1, 9408, 4.99, '2007-04-30 19:00:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28564, 572, 1, 4601, 2.99, '2007-04-08 05:17:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28565, 572, 1, 5595, 4.99, '2007-04-10 03:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28566, 572, 1, 5713, 6.99, '2007-04-10 09:14:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28567, 572, 2, 6108, 2.99, '2007-04-11 05:47:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28568, 572, 1, 7161, 4.99, '2007-04-27 05:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28569, 572, 1, 7345, 4.99, '2007-04-27 12:58:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28570, 572, 2, 7713, 6.99, '2007-04-28 03:00:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28571, 572, 2, 8342, 0.99, '2007-04-29 03:13:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28572, 572, 1, 8432, 0.99, '2007-04-29 05:41:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28573, 572, 1, 9081, 3.99, '2007-04-30 06:38:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28574, 572, 2, 9950, 5.99, '2007-04-30 14:18:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28575, 572, 2, 10204, 4.99, '2007-04-30 23:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28576, 573, 2, 3768, 0.99, '2007-04-06 11:35:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28577, 573, 1, 3930, 2.99, '2007-04-06 19:22:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28578, 573, 2, 4023, 4.99, '2007-04-07 00:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28579, 573, 1, 4085, 0.99, '2007-04-07 03:54:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28580, 573, 1, 4609, 0.99, '2007-04-08 05:50:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28581, 573, 1, 4770, 2.99, '2007-04-08 13:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28582, 573, 1, 5036, 5.99, '2007-04-09 01:27:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28583, 573, 2, 5522, 9.99, '2007-04-10 00:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28584, 573, 2, 5903, 2.99, '2007-04-10 19:07:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28585, 573, 1, 6693, 7.99, '2007-04-12 11:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28586, 573, 1, 8400, 4.99, '2007-04-29 04:52:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28587, 573, 2, 9837, 10.99, '2007-04-30 10:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28588, 573, 2, 9846, 4.99, '2007-04-30 10:58:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28589, 573, 2, 9963, 2.99, '2007-04-30 14:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28590, 573, 2, 9971, 5.99, '2007-04-30 15:10:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28591, 574, 1, 3583, 7.99, '2007-04-06 02:39:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28592, 574, 1, 4004, 4.99, '2007-04-06 22:49:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28593, 574, 1, 4212, 4.99, '2007-04-07 10:21:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28594, 574, 2, 4890, 2.99, '2007-04-08 18:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28595, 574, 2, 5010, 4.99, '2007-04-09 00:01:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28596, 574, 1, 5076, 3.99, '2007-04-09 03:41:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28597, 574, 1, 5077, 3.99, '2007-04-09 03:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28598, 574, 1, 5640, 2.99, '2007-04-10 05:06:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28599, 574, 1, 6523, 2.99, '2007-04-12 02:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28600, 574, 1, 7093, 1.99, '2007-04-27 03:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28601, 574, 1, 7134, 2.99, '2007-04-27 05:01:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28602, 574, 1, 7964, 2.99, '2007-04-28 12:18:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28603, 574, 1, 8303, 4.99, '2007-04-29 01:34:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28604, 574, 1, 9589, 7.99, '2007-04-30 01:41:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28605, 574, 1, 9759, 3.99, '2007-04-30 07:54:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28606, 575, 1, 3558, 6.99, '2007-04-06 01:17:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28607, 575, 2, 5875, 8.99, '2007-04-10 17:35:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28608, 575, 2, 6907, 2.99, '2007-04-12 20:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28609, 575, 1, 7083, 0.99, '2007-04-27 02:57:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28610, 575, 1, 7139, 2.99, '2007-04-27 05:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28611, 575, 2, 8711, 2.99, '2007-04-29 15:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28612, 575, 2, 8904, 0.99, '2007-04-29 23:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28613, 575, 2, 8989, 4.99, '2007-04-30 03:07:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28614, 575, 1, 9733, 4.99, '2007-04-30 07:26:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28615, 576, 1, 3877, 4.99, '2007-04-06 16:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28616, 576, 2, 3889, 0.99, '2007-04-06 17:24:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28617, 576, 2, 3934, 4.99, '2007-04-06 19:35:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28618, 576, 1, 4514, 4.99, '2007-04-08 01:09:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28619, 576, 2, 5597, 3.99, '2007-04-10 03:16:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28620, 576, 1, 5934, 4.99, '2007-04-10 20:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28621, 576, 2, 7319, 1.99, '2007-04-27 11:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28622, 576, 1, 7605, 3.99, '2007-04-27 22:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28623, 576, 1, 8907, 4.99, '2007-04-29 23:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28624, 576, 1, 9133, 5.99, '2007-04-30 08:27:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28625, 576, 2, 9548, 5.99, '2007-04-30 00:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28626, 576, 2, 9620, 8.99, '2007-04-30 02:47:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28627, 576, 2, 9962, 0.99, '2007-04-30 14:39:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28628, 576, 1, 9979, 2.99, '2007-04-30 15:28:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28629, 576, 1, 10000, 2.99, '2007-04-30 16:09:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28630, 267, 2, 9403, 4.99, '2007-04-30 18:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28631, 577, 2, 3599, 0.99, '2007-04-06 03:45:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28632, 577, 1, 3785, 7.99, '2007-04-06 12:28:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28633, 577, 1, 4922, 2.99, '2007-04-08 20:12:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28634, 577, 1, 6500, 2.99, '2007-04-12 01:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28635, 577, 2, 6534, 2.99, '2007-04-12 03:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28636, 577, 2, 7197, 0.99, '2007-04-27 07:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28637, 577, 1, 7371, 4.99, '2007-04-27 13:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28638, 577, 2, 7876, 8.99, '2007-04-28 08:52:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28639, 577, 1, 8043, 5.99, '2007-04-28 15:14:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28640, 577, 1, 8060, 6.99, '2007-04-28 15:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28641, 577, 2, 8671, 6.99, '2007-04-29 14:18:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28642, 578, 2, 4496, 4.99, '2007-04-08 00:12:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28643, 578, 1, 5377, 4.99, '2007-04-09 17:32:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28644, 578, 1, 5445, 0.99, '2007-04-09 20:28:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28645, 578, 2, 5876, 4.99, '2007-04-10 17:35:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28646, 578, 1, 6784, 4.99, '2007-04-12 14:57:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28647, 578, 1, 6830, 0.99, '2007-04-12 17:11:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28648, 578, 2, 7059, 5.99, '2007-04-27 02:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28649, 578, 1, 8179, 2.99, '2007-04-28 20:33:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28650, 578, 1, 8218, 2.99, '2007-04-28 22:14:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28651, 578, 2, 9970, 4.99, '2007-04-30 15:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28652, 578, 1, 10029, 6.99, '2007-04-30 17:06:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28653, 578, 2, 10182, 2.99, '2007-04-30 22:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28654, 579, 1, 4619, 9.99, '2007-04-08 06:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28655, 579, 1, 4933, 2.99, '2007-04-08 20:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28656, 579, 1, 6304, 4.99, '2007-04-11 16:30:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28657, 579, 2, 6814, 1.99, '2007-04-12 16:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28658, 579, 2, 6824, 6.99, '2007-04-12 16:55:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28659, 579, 2, 6969, 8.99, '2007-04-26 22:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28660, 579, 2, 7221, 2.99, '2007-04-27 08:06:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28661, 579, 1, 8354, 0.99, '2007-04-29 03:24:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28662, 579, 1, 8876, 0.99, '2007-04-29 22:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28663, 579, 1, 8996, 0.99, '2007-04-30 03:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28664, 579, 2, 9349, 9.99, '2007-04-30 16:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28665, 579, 2, 9553, 5.99, '2007-04-30 00:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28666, 579, 2, 9976, 2.99, '2007-04-30 15:26:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28667, 579, 2, 9997, 4.99, '2007-04-30 16:05:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28668, 580, 2, 3571, 1.99, '2007-04-06 02:00:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28669, 580, 2, 3867, 1.99, '2007-04-06 16:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28670, 580, 2, 4169, 1.99, '2007-04-07 08:07:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28671, 580, 2, 4590, 3.99, '2007-04-08 04:56:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28672, 580, 1, 5937, 6.99, '2007-04-10 20:44:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28673, 580, 1, 6089, 2.99, '2007-04-11 04:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28674, 580, 2, 6170, 2.99, '2007-04-11 08:57:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28675, 580, 1, 7620, 0.99, '2007-04-27 22:55:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28676, 580, 2, 8784, 4.99, '2007-04-29 19:04:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28677, 580, 1, 8839, 3.99, '2007-04-29 21:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28678, 580, 1, 9199, 0.99, '2007-04-30 11:06:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28679, 580, 1, 9239, 3.99, '2007-04-30 12:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28680, 580, 1, 9460, 5.99, '2007-04-30 20:54:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28681, 580, 2, 9604, 4.99, '2007-04-30 02:15:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28682, 580, 2, 9865, 0.99, '2007-04-30 11:39:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28683, 581, 2, 4210, 2.99, '2007-04-07 10:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28684, 581, 2, 4244, 2.99, '2007-04-07 12:10:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28685, 581, 1, 4338, 4.99, '2007-04-07 17:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28686, 581, 2, 4613, 0.99, '2007-04-08 06:13:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28687, 581, 1, 4669, 5.99, '2007-04-08 08:41:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28688, 581, 1, 4815, 8.99, '2007-04-08 15:41:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28689, 581, 1, 4833, 1.99, '2007-04-08 16:36:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28690, 581, 1, 5516, 4.99, '2007-04-09 23:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28691, 581, 1, 5707, 4.99, '2007-04-10 08:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28692, 581, 2, 5812, 2.99, '2007-04-10 13:56:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28693, 581, 2, 7048, 7.99, '2007-04-27 02:00:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28694, 581, 1, 7783, 2.99, '2007-04-28 05:43:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28695, 581, 1, 9278, 2.99, '2007-04-30 13:43:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28696, 581, 1, 9449, 1.99, '2007-04-30 20:31:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28697, 582, 1, 3767, 0.99, '2007-04-06 11:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28698, 582, 2, 6629, 5.99, '2007-04-12 07:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28699, 582, 2, 7126, 4.99, '2007-04-27 04:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28700, 582, 2, 7311, 6.99, '2007-04-27 11:31:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28701, 582, 2, 7412, 5.99, '2007-04-27 15:13:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28702, 582, 1, 7575, 2.99, '2007-04-27 21:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28703, 582, 2, 8308, 5.99, '2007-04-29 01:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28704, 582, 1, 8554, 2.99, '2007-04-29 09:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28705, 582, 1, 8778, 6.99, '2007-04-29 18:42:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28706, 582, 1, 9768, 9.99, '2007-04-30 08:17:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28707, 583, 1, 3779, 2.99, '2007-04-06 12:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28708, 583, 1, 3842, 4.99, '2007-04-06 15:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28709, 583, 2, 3991, 9.99, '2007-04-06 22:02:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28710, 583, 1, 4464, 4.99, '2007-04-07 22:35:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28711, 583, 1, 5462, 0.99, '2007-04-09 21:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28712, 583, 1, 5478, 5.99, '2007-04-09 22:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28713, 583, 2, 5747, 7.99, '2007-04-10 10:43:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28714, 583, 2, 6684, 6.99, '2007-04-12 10:43:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28715, 583, 1, 7401, 5.99, '2007-04-27 14:46:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28716, 583, 2, 8568, 7.99, '2007-04-29 10:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28717, 583, 1, 9550, 7.99, '2007-04-30 00:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28718, 583, 2, 9808, 1.99, '2007-04-30 09:45:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28719, 584, 2, 3741, 2.99, '2007-04-06 10:28:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28720, 584, 2, 3895, 7.99, '2007-04-06 17:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28721, 584, 1, 4410, 0.99, '2007-04-07 20:16:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28722, 584, 1, 4977, 0.99, '2007-04-08 22:44:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28723, 584, 2, 6954, 0.99, '2007-04-26 22:23:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28724, 584, 1, 7186, 2.99, '2007-04-27 06:54:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28725, 584, 1, 7372, 4.99, '2007-04-27 13:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28726, 584, 1, 7659, 4.99, '2007-04-28 00:38:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28727, 584, 2, 8879, 4.99, '2007-04-29 22:44:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28728, 584, 2, 9451, 3.99, '2007-04-30 20:38:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28729, 584, 1, 9719, 5.99, '2007-04-30 06:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28730, 584, 2, 10073, 2.99, '2007-04-30 18:21:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28731, 585, 2, 4156, 4.99, '2007-04-07 07:32:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28732, 585, 2, 4579, 4.99, '2007-04-08 04:30:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28733, 585, 1, 4684, 9.99, '2007-04-08 09:09:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28734, 585, 2, 5284, 2.99, '2007-04-09 13:36:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28735, 585, 2, 5950, 4.99, '2007-04-10 21:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28736, 585, 2, 6733, 6.99, '2007-04-12 12:32:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28737, 585, 1, 7131, 2.99, '2007-04-27 04:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28738, 585, 1, 7384, 4.99, '2007-04-27 14:18:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28739, 585, 2, 7409, 4.99, '2007-04-27 15:06:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28740, 585, 2, 8353, 2.99, '2007-04-29 03:20:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28741, 585, 2, 9407, 8.99, '2007-04-30 18:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28742, 585, 1, 9590, 3.99, '2007-04-30 01:45:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28743, 585, 1, 9860, 6.99, '2007-04-30 11:31:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28744, 586, 2, 3487, 6.99, '2007-04-05 21:59:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28745, 586, 2, 3733, 4.99, '2007-04-06 10:02:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28746, 586, 2, 5382, 2.99, '2007-04-09 17:41:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28747, 586, 1, 6679, 2.99, '2007-04-12 10:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28748, 586, 2, 9786, 2.99, '2007-04-30 08:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28749, 586, 2, 9896, 2.99, '2007-04-30 12:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28750, 587, 2, 3562, 2.99, '2007-04-06 01:23:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28751, 587, 2, 3969, 0.99, '2007-04-06 21:16:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28752, 587, 2, 5243, 3.99, '2007-04-09 11:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28753, 587, 1, 6639, 0.99, '2007-04-12 08:29:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28754, 587, 2, 6665, 6.99, '2007-04-12 09:57:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28755, 587, 1, 7501, 8.99, '2007-04-27 18:45:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28756, 587, 2, 8776, 5.99, '2007-04-29 18:35:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28757, 587, 2, 9720, 6.99, '2007-04-30 06:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28758, 587, 2, 9785, 4.99, '2007-04-30 08:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28759, 587, 2, 9909, 5.99, '2007-04-30 13:12:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28760, 588, 1, 3628, 4.99, '2007-04-06 04:48:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28761, 588, 1, 4101, 0.99, '2007-04-07 04:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28762, 588, 2, 4207, 5.99, '2007-04-07 10:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28763, 588, 2, 5203, 2.99, '2007-04-09 09:22:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28764, 588, 1, 5335, 4.99, '2007-04-09 15:29:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28765, 588, 1, 6368, 4.99, '2007-04-11 19:47:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28766, 588, 2, 7377, 2.99, '2007-04-27 13:59:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28767, 588, 2, 7903, 2.99, '2007-04-28 09:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28768, 588, 1, 8421, 4.99, '2007-04-29 05:29:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28769, 588, 1, 8429, 2.99, '2007-04-29 05:40:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28770, 588, 2, 8519, 2.99, '2007-04-29 08:38:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28771, 588, 1, 8769, 2.99, '2007-04-29 18:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28772, 588, 2, 9326, 2.99, '2007-04-30 15:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28773, 588, 2, 9370, 4.99, '2007-04-30 17:25:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28774, 589, 2, 4986, 2.99, '2007-04-08 23:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28775, 589, 1, 5951, 0.99, '2007-04-10 21:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28776, 589, 2, 6177, 4.99, '2007-04-11 09:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28777, 589, 2, 6247, 3.99, '2007-04-11 13:28:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28778, 589, 2, 7250, 0.99, '2007-04-27 09:12:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28779, 589, 2, 7431, 3.99, '2007-04-27 15:55:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28780, 589, 2, 7948, 9.99, '2007-04-28 11:34:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28781, 589, 2, 8056, 0.99, '2007-04-28 15:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28782, 589, 1, 8374, 3.99, '2007-04-29 03:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28783, 589, 1, 9153, 4.99, '2007-04-30 09:26:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28784, 590, 2, 4685, 4.99, '2007-04-08 09:13:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28785, 590, 1, 4710, 2.99, '2007-04-08 10:33:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28786, 590, 2, 4722, 4.99, '2007-04-08 11:10:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28787, 590, 1, 5165, 0.99, '2007-04-09 07:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28788, 590, 1, 5529, 2.99, '2007-04-10 00:39:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28789, 590, 1, 5991, 4.99, '2007-04-10 23:32:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28790, 590, 2, 6232, 4.99, '2007-04-11 12:36:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28791, 590, 2, 6492, 4.99, '2007-04-12 00:57:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28792, 590, 1, 7010, 4.99, '2007-04-27 00:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28793, 590, 2, 7665, 2.99, '2007-04-28 00:56:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28794, 590, 1, 8195, 5.99, '2007-04-28 21:21:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28795, 590, 1, 8801, 4.99, '2007-04-29 19:53:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28796, 590, 2, 9126, 0.99, '2007-04-30 08:12:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28797, 590, 1, 9884, 4.99, '2007-04-30 12:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28798, 591, 1, 3636, 0.99, '2007-04-06 05:32:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28799, 591, 2, 4383, 11.99, '2007-04-07 19:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28800, 591, 1, 4581, 6.99, '2007-04-08 04:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28801, 591, 1, 5704, 5.99, '2007-04-10 08:34:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28802, 591, 1, 5759, 6.99, '2007-04-10 11:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28803, 591, 1, 7118, 8.99, '2007-04-27 04:22:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28804, 591, 1, 7212, 2.99, '2007-04-27 07:49:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28805, 591, 2, 7511, 4.99, '2007-04-27 19:07:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28806, 591, 1, 7549, 3.99, '2007-04-27 20:21:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28807, 591, 2, 7741, 0.99, '2007-04-28 03:54:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28808, 591, 1, 7997, 4.99, '2007-04-28 13:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28809, 591, 1, 8149, 3.99, '2007-04-28 19:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28810, 591, 2, 8666, 5.99, '2007-04-29 14:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28811, 591, 2, 8819, 4.99, '2007-04-29 20:42:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28812, 591, 1, 9684, 0.99, '2007-04-30 05:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28813, 592, 2, 3560, 2.99, '2007-04-06 01:20:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28814, 592, 1, 3973, 11.99, '2007-04-06 21:26:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28815, 592, 1, 4129, 1.99, '2007-04-07 06:05:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28816, 592, 1, 4145, 9.99, '2007-04-07 06:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28817, 592, 1, 4460, 0.99, '2007-04-07 22:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28818, 592, 1, 4518, 2.99, '2007-04-08 01:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28819, 592, 1, 6937, 0.99, '2007-04-26 21:44:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28820, 592, 2, 7173, 0.99, '2007-04-27 06:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28821, 592, 1, 7278, 3.99, '2007-04-27 10:19:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28822, 592, 2, 7364, 4.99, '2007-04-27 13:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28823, 592, 1, 8730, 2.99, '2007-04-29 16:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28824, 592, 2, 8773, 0.99, '2007-04-29 18:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28825, 592, 1, 9268, 4.99, '2007-04-30 13:30:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28826, 592, 1, 9437, 3.99, '2007-04-30 20:04:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28827, 592, 2, 9666, 6.99, '2007-04-30 04:49:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28828, 593, 2, 3542, 2.99, '2007-04-06 00:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28829, 593, 2, 4075, 2.99, '2007-04-07 03:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28830, 593, 2, 4280, 3.99, '2007-04-07 13:37:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28831, 593, 2, 4623, 0.99, '2007-04-08 06:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28832, 593, 2, 4781, 4.99, '2007-04-08 14:35:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28833, 593, 2, 4867, 0.99, '2007-04-08 17:39:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28834, 593, 1, 6386, 2.99, '2007-04-11 20:43:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28835, 593, 1, 6731, 2.99, '2007-04-12 12:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28836, 593, 2, 7958, 4.99, '2007-04-28 12:03:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28837, 593, 1, 8497, 2.99, '2007-04-29 07:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28838, 593, 2, 9329, 6.99, '2007-04-30 16:11:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28839, 593, 1, 9483, 6.99, '2007-04-30 21:59:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28840, 594, 2, 3474, 0.99, '2007-04-05 21:28:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28841, 594, 1, 3546, 4.99, '2007-04-06 00:46:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28842, 594, 2, 3960, 2.99, '2007-04-06 20:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28843, 594, 1, 4037, 5.99, '2007-04-07 01:21:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28844, 594, 1, 4154, 3.99, '2007-04-07 07:26:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28845, 594, 2, 5386, 2.99, '2007-04-09 17:47:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28846, 594, 1, 6473, 6.99, '2007-04-12 00:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28847, 594, 1, 7533, 8.99, '2007-04-27 19:52:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28848, 594, 1, 8567, 1.99, '2007-04-29 10:05:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28849, 594, 1, 8603, 2.99, '2007-04-29 11:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28850, 594, 2, 8820, 5.99, '2007-04-29 20:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28851, 594, 1, 9545, 7.99, '2007-04-30 00:14:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28852, 594, 1, 9698, 3.99, '2007-04-30 05:53:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28853, 594, 2, 9802, 4.99, '2007-04-30 09:32:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28854, 595, 1, 3789, 9.99, '2007-04-06 12:30:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28855, 595, 1, 4017, 4.99, '2007-04-06 23:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28856, 595, 1, 4241, 4.99, '2007-04-07 12:07:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28857, 595, 2, 4775, 2.99, '2007-04-08 14:12:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28858, 595, 1, 5631, 1.99, '2007-04-10 04:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28859, 595, 1, 5952, 1.99, '2007-04-10 21:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28860, 595, 1, 6105, 6.99, '2007-04-11 05:31:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28861, 595, 1, 6704, 6.99, '2007-04-12 11:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28862, 595, 1, 7086, 4.99, '2007-04-27 03:08:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28863, 595, 2, 7307, 0.99, '2007-04-27 11:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28864, 595, 1, 7396, 4.99, '2007-04-27 14:32:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28865, 595, 2, 7490, 3.99, '2007-04-27 18:16:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28866, 595, 1, 9152, 2.99, '2007-04-30 09:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28867, 595, 2, 9223, 2.99, '2007-04-30 11:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28868, 595, 1, 9354, 4.99, '2007-04-30 17:01:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28869, 595, 2, 9497, 0.99, '2007-04-30 22:25:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28870, 595, 2, 9542, 4.99, '2007-04-30 00:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28871, 595, 1, 9631, 2.99, '2007-04-30 03:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28872, 595, 2, 9826, 10.99, '2007-04-30 10:20:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28873, 596, 2, 5742, 3.99, '2007-04-10 10:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28874, 596, 1, 6015, 2.99, '2007-04-11 00:32:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28875, 596, 1, 6017, 0.99, '2007-04-11 00:33:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28876, 596, 1, 6197, 4.99, '2007-04-11 10:38:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28877, 596, 2, 6883, 4.99, '2007-04-12 19:19:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28878, 596, 1, 10094, 3.99, '2007-04-30 18:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28879, 597, 1, 5093, 0.99, '2007-04-09 04:27:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28880, 597, 1, 5348, 4.99, '2007-04-09 16:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28881, 597, 2, 5732, 2.99, '2007-04-10 10:04:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28882, 597, 1, 6508, 2.99, '2007-04-12 02:03:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28883, 597, 2, 7968, 4.99, '2007-04-28 12:26:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28884, 597, 2, 8948, 4.99, '2007-04-30 01:44:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28885, 597, 2, 10021, 4.99, '2007-04-30 16:53:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28886, 597, 1, 10214, 0.99, '2007-04-30 23:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28887, 598, 1, 3648, 0.99, '2007-04-06 05:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28888, 598, 2, 3950, 6.99, '2007-04-06 20:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28889, 598, 1, 3972, 4.99, '2007-04-06 21:22:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28890, 598, 1, 4181, 4.99, '2007-04-07 08:56:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28891, 598, 2, 5688, 5.99, '2007-04-10 07:44:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28892, 598, 1, 6519, 4.99, '2007-04-12 02:29:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28893, 598, 2, 6528, 4.99, '2007-04-12 02:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28894, 598, 2, 6575, 0.99, '2007-04-12 04:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28895, 598, 2, 6660, 3.99, '2007-04-12 09:48:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28896, 598, 2, 7201, 6.99, '2007-04-27 07:26:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28897, 598, 2, 7354, 0.99, '2007-04-27 13:10:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28898, 598, 1, 7998, 0.99, '2007-04-28 13:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28899, 598, 2, 8436, 0.99, '2007-04-29 05:49:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28900, 598, 1, 8511, 5.99, '2007-04-29 08:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28901, 598, 1, 8939, 4.99, '2007-04-30 01:25:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28902, 598, 1, 10054, 4.99, '2007-04-30 17:44:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28903, 599, 1, 5065, 0.99, '2007-04-09 03:10:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28904, 599, 1, 5843, 2.99, '2007-04-10 15:42:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28905, 599, 2, 6800, 9.99, '2007-04-12 15:32:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28906, 599, 2, 6895, 2.99, '2007-04-12 19:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28907, 599, 1, 8965, 6.99, '2007-04-30 02:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28908, 599, 2, 9630, 2.99, '2007-04-30 03:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28909, 202, 1, 3861, 8.99, '2007-04-06 15:53:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28910, 599, 2, 9679, 2.99, '2007-04-30 05:09:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28911, 202, 2, 4567, 4.99, '2007-04-08 03:48:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28912, 202, 2, 5194, 2.99, '2007-04-09 09:00:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28913, 202, 1, 5297, 2.99, '2007-04-09 14:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28914, 202, 2, 5838, 2.99, '2007-04-10 15:33:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28915, 202, 1, 7613, 2.99, '2007-04-27 22:42:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28916, 202, 1, 8351, 2.99, '2007-04-29 03:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28917, 202, 1, 8779, 2.99, '2007-04-29 18:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28918, 202, 1, 8830, 2.99, '2007-04-29 21:03:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28919, 202, 2, 8930, 0.99, '2007-04-30 00:57:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28920, 202, 2, 9057, 2.99, '2007-04-30 05:42:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28921, 202, 2, 9467, 8.99, '2007-04-30 21:14:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28922, 202, 2, 9751, 4.99, '2007-04-30 07:49:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28923, 203, 2, 4136, 2.99, '2007-04-07 06:44:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28924, 203, 2, 5579, 5.99, '2007-04-10 02:32:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28925, 203, 2, 7787, 6.99, '2007-04-28 05:47:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28926, 203, 1, 8039, 0.99, '2007-04-28 15:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28927, 203, 1, 8463, 4.99, '2007-04-29 06:46:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28928, 203, 1, 8792, 7.99, '2007-04-29 19:24:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28929, 203, 2, 9015, 10.99, '2007-04-30 03:49:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28930, 204, 1, 4043, 0.99, '2007-04-07 01:38:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28931, 204, 1, 4979, 4.99, '2007-04-08 22:53:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28932, 204, 2, 5145, 0.99, '2007-04-09 06:41:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28933, 204, 1, 5619, 2.99, '2007-04-10 03:57:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28934, 204, 2, 6004, 4.99, '2007-04-11 00:02:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28935, 204, 2, 6225, 2.99, '2007-04-11 12:13:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28936, 204, 2, 6631, 0.99, '2007-04-12 08:00:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28937, 204, 1, 6694, 6.99, '2007-04-12 11:07:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28938, 204, 2, 6871, 2.99, '2007-04-12 18:42:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28939, 204, 1, 7392, 4.99, '2007-04-27 14:29:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28940, 204, 2, 9005, 0.99, '2007-04-30 03:33:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28941, 204, 1, 9394, 5.99, '2007-04-30 18:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28942, 204, 2, 9906, 4.99, '2007-04-30 13:06:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28943, 204, 2, 10042, 2.99, '2007-04-30 17:29:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28944, 205, 1, 3601, 7.99, '2007-04-06 03:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28945, 205, 2, 4230, 3.99, '2007-04-07 11:15:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28946, 205, 2, 4377, 7.99, '2007-04-07 18:57:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28947, 205, 1, 4729, 4.99, '2007-04-08 11:28:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28948, 205, 1, 7736, 2.99, '2007-04-28 03:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28949, 205, 2, 7976, 7.99, '2007-04-28 12:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28950, 205, 2, 8896, 4.99, '2007-04-29 23:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28951, 205, 2, 10086, 4.99, '2007-04-30 18:42:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28952, 206, 1, 3533, 5.99, '2007-04-05 23:55:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28953, 206, 2, 3831, 0.99, '2007-04-06 14:35:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28954, 206, 1, 3847, 4.99, '2007-04-06 15:13:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28955, 206, 2, 4068, 4.99, '2007-04-07 03:03:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28956, 206, 2, 4107, 4.99, '2007-04-07 05:04:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28957, 206, 2, 4823, 4.99, '2007-04-08 15:57:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28958, 206, 1, 6139, 3.99, '2007-04-11 07:07:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28959, 206, 1, 6420, 6.99, '2007-04-11 22:07:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28960, 206, 1, 7222, 4.99, '2007-04-27 08:07:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28961, 206, 2, 7541, 4.99, '2007-04-27 20:08:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28962, 206, 1, 8217, 5.99, '2007-04-28 22:12:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28963, 206, 1, 8549, 3.99, '2007-04-29 09:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28964, 206, 2, 9474, 2.99, '2007-04-30 21:34:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28965, 207, 2, 3584, 2.99, '2007-04-06 02:45:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28966, 207, 2, 3687, 9.99, '2007-04-06 08:06:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28967, 207, 1, 4018, 2.99, '2007-04-06 23:38:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28968, 207, 2, 4713, 5.99, '2007-04-08 10:40:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28969, 207, 1, 4816, 0.99, '2007-04-08 15:42:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28970, 207, 2, 5007, 0.99, '2007-04-08 23:54:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28971, 207, 1, 5258, 0.99, '2007-04-09 12:25:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28972, 207, 1, 5259, 4.99, '2007-04-09 12:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28973, 207, 2, 5939, 0.99, '2007-04-10 20:58:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28974, 207, 2, 6465, 5.99, '2007-04-11 23:45:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28975, 207, 1, 6537, 0.99, '2007-04-12 03:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28976, 207, 2, 7306, 5.99, '2007-04-27 11:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28977, 207, 1, 7540, 5.99, '2007-04-27 20:08:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28978, 207, 1, 8800, 5.99, '2007-04-29 19:47:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28979, 207, 2, 9652, 2.99, '2007-04-30 04:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28980, 208, 2, 3811, 2.99, '2007-04-06 13:49:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28981, 208, 1, 4354, 5.99, '2007-04-07 17:49:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28982, 208, 2, 4985, 4.99, '2007-04-08 23:04:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28983, 208, 1, 5117, 2.99, '2007-04-09 05:39:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28984, 208, 2, 5693, 2.99, '2007-04-10 08:04:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28985, 208, 2, 6306, 6.99, '2007-04-11 16:32:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28986, 208, 1, 6767, 1.99, '2007-04-12 14:15:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28987, 208, 1, 7315, 0.99, '2007-04-27 11:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28988, 208, 1, 7861, 2.99, '2007-04-28 08:30:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28989, 208, 2, 7984, 2.99, '2007-04-28 12:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28990, 208, 1, 8742, 1.99, '2007-04-29 17:24:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28991, 208, 2, 9298, 3.99, '2007-04-30 14:56:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28992, 208, 1, 9838, 4.99, '2007-04-30 10:47:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28993, 1, 2, 4526, 5.99, '2007-04-08 01:45:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28994, 1, 1, 4611, 5.99, '2007-04-08 06:02:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28995, 1, 1, 5244, 4.99, '2007-04-09 11:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28996, 1, 1, 5326, 4.99, '2007-04-09 15:06:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28997, 1, 1, 6163, 7.99, '2007-04-11 08:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28998, 1, 2, 7273, 2.99, '2007-04-27 09:59:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (28999, 1, 1, 7841, 4.99, '2007-04-28 07:33:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29000, 1, 2, 8033, 4.99, '2007-04-28 14:46:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29001, 1, 1, 8074, 0.99, '2007-04-28 16:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29002, 1, 2, 8116, 0.99, '2007-04-28 17:48:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29003, 1, 2, 8326, 2.99, '2007-04-29 02:27:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29004, 1, 2, 9571, 2.99, '2007-04-30 01:10:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29005, 2, 1, 5636, 2.99, '2007-04-10 04:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29006, 2, 1, 5755, 6.99, '2007-04-10 11:07:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29007, 2, 2, 7346, 4.99, '2007-04-27 12:59:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29008, 2, 1, 7376, 5.99, '2007-04-27 13:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29009, 2, 2, 7459, 5.99, '2007-04-27 17:08:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29010, 2, 2, 8230, 5.99, '2007-04-28 22:41:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29011, 2, 1, 8598, 2.99, '2007-04-29 11:25:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29012, 2, 2, 8705, 5.99, '2007-04-29 15:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29013, 2, 1, 9031, 4.99, '2007-04-30 04:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29014, 2, 2, 9236, 10.99, '2007-04-30 12:16:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29015, 2, 2, 9248, 0.99, '2007-04-30 12:42:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29016, 2, 2, 9296, 6.99, '2007-04-30 14:49:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29017, 2, 2, 9465, 6.99, '2007-04-30 21:08:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29018, 2, 1, 10136, 2.99, '2007-04-30 20:27:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29019, 3, 1, 4180, 4.99, '2007-04-07 08:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29020, 3, 1, 4725, 4.99, '2007-04-08 11:15:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29021, 3, 1, 7096, 5.99, '2007-04-27 03:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29022, 3, 2, 7503, 10.99, '2007-04-27 18:51:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29023, 3, 2, 7703, 7.99, '2007-04-28 02:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29024, 3, 2, 7724, 6.99, '2007-04-28 03:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29025, 3, 1, 7911, 4.99, '2007-04-28 10:15:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29026, 3, 2, 8086, 4.99, '2007-04-28 16:45:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29027, 3, 1, 8545, 2.99, '2007-04-29 09:35:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29028, 3, 1, 9226, 1.99, '2007-04-30 11:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29029, 3, 2, 9443, 3.99, '2007-04-30 20:14:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29030, 3, 1, 9595, 2.99, '2007-04-30 01:56:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29031, 3, 2, 9816, 4.99, '2007-04-30 10:01:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29032, 4, 1, 7660, 2.99, '2007-04-28 00:38:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29033, 4, 2, 7718, 2.99, '2007-04-28 03:06:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29034, 4, 1, 8741, 3.99, '2007-04-29 17:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29035, 4, 1, 9100, 5.99, '2007-04-30 07:14:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29036, 4, 1, 9371, 5.99, '2007-04-30 17:26:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29037, 5, 2, 3677, 4.99, '2007-04-06 07:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29038, 5, 2, 4889, 2.99, '2007-04-08 18:33:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29039, 5, 1, 5016, 4.99, '2007-04-09 00:26:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29040, 5, 2, 5118, 5.99, '2007-04-09 05:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29041, 5, 2, 5156, 1.99, '2007-04-09 07:20:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29042, 5, 2, 5721, 0.99, '2007-04-10 09:38:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29043, 5, 1, 6042, 8.99, '2007-04-11 01:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29044, 5, 1, 6663, 3.99, '2007-04-12 09:56:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29045, 5, 2, 6685, 4.99, '2007-04-12 10:44:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29046, 5, 2, 7293, 0.99, '2007-04-27 11:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29047, 5, 2, 7652, 0.99, '2007-04-28 00:18:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29048, 5, 2, 7829, 3.99, '2007-04-28 07:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29049, 5, 1, 8263, 2.99, '2007-04-28 23:39:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29050, 5, 1, 8978, 1.99, '2007-04-30 02:42:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29051, 5, 1, 9493, 4.99, '2007-04-30 22:20:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29052, 5, 1, 9888, 3.99, '2007-04-30 12:29:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29053, 6, 2, 3983, 0.99, '2007-04-06 21:42:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29054, 6, 2, 4278, 2.99, '2007-04-07 13:21:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29055, 6, 1, 5553, 0.99, '2007-04-10 01:32:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29056, 6, 2, 6211, 5.99, '2007-04-11 11:07:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29057, 6, 1, 6248, 7.99, '2007-04-11 13:30:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29058, 6, 2, 6686, 0.99, '2007-04-12 10:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29059, 6, 2, 7099, 2.99, '2007-04-27 03:32:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29060, 6, 2, 7136, 2.99, '2007-04-27 05:06:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29061, 6, 1, 8101, 0.99, '2007-04-28 17:15:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29062, 7, 2, 3639, 5.99, '2007-04-06 05:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29063, 7, 2, 4238, 2.99, '2007-04-07 11:50:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29064, 7, 2, 4787, 5.99, '2007-04-08 14:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29065, 7, 1, 4856, 4.99, '2007-04-08 17:16:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29066, 7, 1, 5441, 8.99, '2007-04-09 20:20:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29067, 7, 1, 5921, 7.99, '2007-04-10 20:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29068, 7, 1, 6174, 1.99, '2007-04-11 09:04:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29069, 7, 1, 6295, 2.99, '2007-04-11 15:59:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29070, 7, 2, 6761, 3.99, '2007-04-12 13:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29071, 7, 2, 8422, 5.99, '2007-04-29 05:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29072, 7, 2, 9624, 7.99, '2007-04-30 02:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29073, 8, 1, 3475, 5.99, '2007-04-05 21:29:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29074, 8, 1, 4003, 0.99, '2007-04-06 22:37:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29075, 8, 2, 4175, 2.99, '2007-04-07 08:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29076, 8, 2, 4409, 3.99, '2007-04-07 20:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29077, 8, 1, 4503, 3.99, '2007-04-08 00:45:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29078, 8, 1, 5300, 2.99, '2007-04-09 14:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29079, 8, 2, 5341, 2.99, '2007-04-09 15:41:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29080, 8, 1, 6375, 4.99, '2007-04-11 20:08:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29081, 8, 1, 6647, 0.99, '2007-04-12 09:12:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29082, 8, 1, 8809, 1.99, '2007-04-29 20:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29083, 8, 2, 9629, 2.99, '2007-04-30 03:23:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29084, 8, 2, 10141, 0.99, '2007-04-30 20:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29085, 9, 1, 4454, 2.99, '2007-04-07 22:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29086, 9, 2, 4748, 0.99, '2007-04-08 12:28:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29087, 9, 1, 4796, 1.99, '2007-04-08 15:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29088, 9, 1, 5659, 2.99, '2007-04-10 06:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29089, 9, 2, 6019, 4.99, '2007-04-11 00:36:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29090, 9, 1, 6165, 5.99, '2007-04-11 08:45:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29091, 9, 2, 7616, 0.99, '2007-04-27 22:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29092, 9, 1, 7801, 2.99, '2007-04-28 06:20:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29093, 9, 1, 9043, 4.99, '2007-04-30 05:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29094, 10, 2, 3790, 3.99, '2007-04-06 12:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29095, 10, 2, 4042, 4.99, '2007-04-07 01:35:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29096, 10, 1, 4255, 1.99, '2007-04-07 12:42:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29097, 10, 1, 5038, 7.99, '2007-04-09 01:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29098, 10, 2, 5068, 2.99, '2007-04-09 03:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29099, 10, 1, 5444, 0.99, '2007-04-09 20:27:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29100, 10, 1, 5905, 2.99, '2007-04-10 19:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29101, 10, 1, 7738, 2.99, '2007-04-28 03:50:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29102, 10, 2, 8001, 6.99, '2007-04-28 13:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29103, 10, 2, 8188, 4.99, '2007-04-28 21:02:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29104, 10, 1, 9935, 4.99, '2007-04-30 13:55:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29105, 11, 2, 4608, 2.99, '2007-04-08 05:47:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29106, 11, 1, 4943, 4.99, '2007-04-08 21:11:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29107, 11, 2, 5835, 5.99, '2007-04-10 15:13:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29108, 11, 2, 6146, 6.99, '2007-04-11 07:38:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29109, 11, 1, 7314, 4.99, '2007-04-27 11:41:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29110, 11, 1, 8014, 4.99, '2007-04-28 14:00:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29111, 11, 2, 8100, 2.99, '2007-04-28 17:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29112, 11, 2, 8447, 1.99, '2007-04-29 06:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29113, 11, 1, 8715, 0.99, '2007-04-29 16:02:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29114, 11, 1, 8950, 9.99, '2007-04-30 01:45:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29115, 11, 2, 9292, 6.99, '2007-04-30 14:36:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29116, 12, 1, 3870, 3.99, '2007-04-06 16:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29117, 12, 1, 5071, 0.99, '2007-04-09 03:29:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29118, 12, 1, 5074, 0.99, '2007-04-09 03:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29119, 12, 2, 5111, 0.99, '2007-04-09 05:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29120, 12, 2, 5242, 3.99, '2007-04-09 11:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29121, 12, 1, 6773, 2.99, '2007-04-12 14:24:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29122, 12, 2, 7008, 0.99, '2007-04-27 00:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29123, 12, 2, 7279, 0.99, '2007-04-27 10:19:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29124, 12, 2, 8985, 0.99, '2007-04-30 03:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29125, 12, 2, 9166, 4.99, '2007-04-30 09:54:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29126, 12, 2, 9238, 5.99, '2007-04-30 12:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29127, 12, 1, 9627, 5.99, '2007-04-30 03:11:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29128, 12, 2, 9708, 5.99, '2007-04-30 06:13:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29129, 13, 2, 3946, 2.99, '2007-04-06 20:07:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29130, 13, 1, 6118, 8.99, '2007-04-11 06:11:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29131, 13, 1, 6568, 2.99, '2007-04-12 04:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29132, 13, 1, 6870, 0.99, '2007-04-12 18:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29133, 13, 1, 6897, 2.99, '2007-04-12 19:59:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29134, 13, 1, 7916, 2.99, '2007-04-28 10:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29135, 13, 1, 8277, 2.99, '2007-04-29 00:07:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29136, 13, 2, 8831, 11.99, '2007-04-29 21:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29137, 13, 2, 9260, 9.99, '2007-04-30 13:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29138, 13, 2, 9434, 0.99, '2007-04-30 19:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29139, 13, 1, 9664, 0.99, '2007-04-30 04:40:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29140, 13, 1, 9736, 7.99, '2007-04-30 07:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29141, 13, 1, 10003, 4.99, '2007-04-30 16:17:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29142, 14, 1, 3707, 2.99, '2007-04-06 08:50:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29143, 14, 1, 4952, 0.99, '2007-04-08 21:28:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29144, 14, 1, 5104, 0.99, '2007-04-09 05:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29145, 14, 2, 5317, 7.99, '2007-04-09 14:38:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29146, 14, 1, 5383, 4.99, '2007-04-09 17:42:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29147, 14, 1, 5565, 7.99, '2007-04-10 01:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29148, 14, 1, 8035, 6.99, '2007-04-28 14:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29149, 14, 1, 8042, 0.99, '2007-04-28 15:13:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29150, 14, 1, 8548, 3.99, '2007-04-29 09:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29151, 14, 2, 8836, 4.99, '2007-04-29 21:14:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29152, 14, 2, 9438, 4.99, '2007-04-30 20:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29153, 14, 1, 9592, 2.99, '2007-04-30 01:49:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29154, 15, 1, 3550, 7.99, '2007-04-06 00:57:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29155, 15, 1, 4127, 5.99, '2007-04-07 05:54:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29156, 15, 1, 5717, 2.99, '2007-04-10 09:30:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29157, 15, 2, 5975, 2.99, '2007-04-10 22:42:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29158, 15, 1, 7105, 4.99, '2007-04-27 03:44:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29159, 15, 1, 8193, 0.99, '2007-04-28 21:19:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29160, 15, 2, 8615, 6.99, '2007-04-29 12:04:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29161, 15, 2, 8927, 4.99, '2007-04-30 00:41:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29162, 15, 1, 9987, 2.99, '2007-04-30 15:51:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29163, 401, 1, 4591, 0.99, '2007-04-12 04:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29164, 16, 1, 3548, 0.99, '2007-04-06 00:52:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29165, 16, 2, 4219, 2.99, '2007-04-07 10:39:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29166, 16, 2, 4263, 3.99, '2007-04-07 12:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29167, 16, 2, 4517, 4.99, '2007-04-08 01:13:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29168, 16, 1, 6100, 4.99, '2007-04-11 05:08:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29169, 16, 2, 7489, 0.99, '2007-04-27 18:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29170, 16, 2, 7552, 2.99, '2007-04-27 20:32:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29171, 16, 2, 8452, 5.99, '2007-04-29 06:13:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29172, 16, 2, 9158, 0.99, '2007-04-30 09:40:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29173, 16, 2, 9610, 5.99, '2007-04-30 02:22:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29174, 17, 1, 5714, 3.99, '2007-04-10 09:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29175, 17, 1, 5883, 3.99, '2007-04-10 17:53:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29176, 17, 2, 6884, 1.99, '2007-04-12 19:21:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29177, 17, 2, 8076, 8.99, '2007-04-28 16:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29178, 17, 1, 8213, 2.99, '2007-04-28 22:05:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29179, 17, 2, 9092, 8.99, '2007-04-30 06:59:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29180, 17, 1, 9138, 2.99, '2007-04-30 08:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29181, 17, 2, 9382, 8.99, '2007-04-30 17:52:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29182, 17, 1, 9489, 0.99, '2007-04-30 22:11:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29183, 18, 2, 4672, 3.99, '2007-04-08 08:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29184, 18, 2, 4724, 3.99, '2007-04-08 11:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29185, 18, 2, 4923, 3.99, '2007-04-08 20:13:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29186, 18, 2, 6128, 2.99, '2007-04-11 06:43:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29187, 18, 1, 6846, 0.99, '2007-04-12 17:49:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29188, 18, 2, 8122, 2.99, '2007-04-28 17:56:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29189, 18, 1, 8555, 4.99, '2007-04-29 09:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29190, 18, 1, 9036, 4.99, '2007-04-30 04:47:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29191, 18, 2, 9114, 4.99, '2007-04-30 07:41:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29192, 19, 2, 3549, 4.99, '2007-04-06 00:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29193, 19, 2, 6495, 4.99, '2007-04-12 01:25:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29194, 19, 1, 9157, 5.99, '2007-04-30 09:34:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29195, 19, 1, 9256, 0.99, '2007-04-30 12:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29196, 19, 2, 10077, 9.99, '2007-04-30 18:29:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29197, 19, 1, 10176, 7.99, '2007-04-30 22:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29198, 20, 2, 4011, 3.99, '2007-04-06 23:16:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29199, 20, 1, 4407, 2.99, '2007-04-07 20:08:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29200, 20, 1, 5718, 2.99, '2007-04-10 09:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29201, 20, 1, 6254, 2.99, '2007-04-11 13:38:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29202, 20, 2, 6267, 6.99, '2007-04-11 14:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29203, 20, 2, 7217, 4.99, '2007-04-27 08:00:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29204, 20, 2, 7864, 5.99, '2007-04-28 08:34:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29205, 20, 2, 8127, 2.99, '2007-04-28 18:13:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29206, 20, 2, 9075, 4.99, '2007-04-30 06:23:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29207, 20, 2, 9468, 3.99, '2007-04-30 21:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29208, 21, 2, 5107, 4.99, '2007-04-09 05:10:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29209, 21, 1, 5772, 3.99, '2007-04-10 11:56:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29210, 21, 1, 5961, 2.99, '2007-04-10 22:11:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29211, 21, 2, 6943, 1.99, '2007-04-26 21:56:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29212, 21, 1, 7994, 0.99, '2007-04-28 13:25:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29213, 21, 2, 8196, 6.99, '2007-04-28 21:24:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29214, 21, 2, 8862, 2.99, '2007-04-29 22:17:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29215, 21, 2, 9149, 0.99, '2007-04-30 09:13:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29216, 21, 1, 9699, 5.99, '2007-04-30 05:57:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29217, 22, 2, 4215, 2.99, '2007-04-07 10:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29218, 22, 1, 5294, 6.99, '2007-04-09 13:52:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29219, 22, 1, 5815, 2.99, '2007-04-10 14:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29220, 22, 1, 7087, 4.99, '2007-04-27 03:10:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29221, 22, 1, 7705, 7.99, '2007-04-28 02:31:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29222, 22, 2, 9410, 0.99, '2007-04-30 19:06:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29223, 22, 1, 9580, 4.99, '2007-04-30 01:29:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29224, 23, 2, 3736, 3.99, '2007-04-06 10:12:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29225, 23, 2, 3781, 2.99, '2007-04-06 12:22:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29226, 23, 2, 4853, 2.99, '2007-04-08 17:11:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29227, 23, 1, 6213, 2.99, '2007-04-11 11:11:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29228, 23, 1, 6238, 2.99, '2007-04-11 12:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29229, 23, 2, 6917, 5.99, '2007-04-12 20:58:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29230, 23, 1, 7155, 7.99, '2007-04-27 05:47:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29231, 23, 1, 8015, 2.99, '2007-04-28 14:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29232, 23, 2, 8718, 0.99, '2007-04-29 16:09:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29233, 23, 2, 9209, 5.99, '2007-04-30 11:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29234, 23, 2, 9255, 9.99, '2007-04-30 12:55:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29235, 23, 2, 9718, 3.99, '2007-04-30 06:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29236, 23, 1, 10132, 6.99, '2007-04-30 20:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29237, 24, 2, 3649, 7.99, '2007-04-06 06:01:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29238, 24, 2, 4378, 2.99, '2007-04-07 18:57:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29239, 24, 1, 5310, 0.99, '2007-04-09 14:29:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29240, 24, 2, 5648, 0.99, '2007-04-10 05:37:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29241, 24, 1, 6855, 4.99, '2007-04-12 18:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29242, 24, 1, 7266, 1.99, '2007-04-27 09:50:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29243, 24, 1, 8947, 4.99, '2007-04-30 01:44:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29244, 24, 1, 9723, 0.99, '2007-04-30 06:59:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29245, 24, 2, 9925, 0.99, '2007-04-30 13:37:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29246, 25, 1, 4282, 2.99, '2007-04-07 13:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29247, 25, 1, 4319, 0.99, '2007-04-07 16:18:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29248, 25, 2, 4404, 2.99, '2007-04-07 20:00:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29249, 25, 1, 5881, 2.99, '2007-04-10 17:48:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29250, 25, 1, 6653, 4.99, '2007-04-12 09:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29251, 25, 2, 6905, 2.99, '2007-04-12 20:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29252, 25, 2, 8667, 2.99, '2007-04-29 14:09:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29253, 25, 2, 8878, 0.99, '2007-04-29 22:44:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29254, 25, 1, 9140, 8.99, '2007-04-30 08:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29255, 25, 2, 9334, 2.99, '2007-04-30 16:25:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29256, 25, 2, 9922, 2.99, '2007-04-30 13:28:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29257, 25, 2, 10103, 2.99, '2007-04-30 19:17:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29258, 26, 1, 4065, 2.99, '2007-04-07 03:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29259, 26, 1, 4274, 4.99, '2007-04-07 13:10:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29260, 26, 1, 4382, 4.99, '2007-04-07 19:09:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29261, 26, 2, 4402, 0.99, '2007-04-07 19:57:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29262, 26, 1, 4431, 6.99, '2007-04-07 21:07:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29263, 26, 1, 4536, 3.99, '2007-04-08 02:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29264, 26, 1, 4641, 6.99, '2007-04-08 07:38:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29265, 26, 1, 5437, 2.99, '2007-04-09 20:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29266, 26, 1, 6149, 1.99, '2007-04-11 07:47:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29267, 26, 2, 6243, 2.99, '2007-04-11 13:21:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29268, 26, 2, 7328, 0.99, '2007-04-27 12:23:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29269, 26, 1, 8241, 4.99, '2007-04-28 23:02:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29270, 26, 1, 9484, 0.99, '2007-04-30 22:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29271, 27, 2, 4038, 0.99, '2007-04-07 01:21:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29272, 27, 1, 4510, 5.99, '2007-04-08 01:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29273, 27, 1, 5552, 0.99, '2007-04-10 01:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29274, 27, 1, 5736, 4.99, '2007-04-10 10:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29275, 27, 2, 6115, 0.99, '2007-04-11 06:05:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29276, 27, 2, 6562, 5.99, '2007-04-12 03:54:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29277, 27, 2, 6658, 4.99, '2007-04-12 09:41:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29278, 27, 1, 7927, 1.99, '2007-04-28 10:42:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29279, 27, 2, 9244, 0.99, '2007-04-30 12:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29280, 27, 2, 9636, 5.99, '2007-04-30 03:41:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29281, 27, 1, 9673, 7.99, '2007-04-30 05:03:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29282, 27, 1, 9908, 4.99, '2007-04-30 13:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29283, 28, 1, 3845, 0.99, '2007-04-06 15:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29284, 28, 2, 4704, 0.99, '2007-04-08 10:14:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29285, 28, 2, 4951, 4.99, '2007-04-08 21:26:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29286, 28, 2, 5653, 2.99, '2007-04-10 05:49:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29287, 28, 1, 5817, 5.99, '2007-04-10 14:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29288, 28, 2, 6032, 0.99, '2007-04-11 01:17:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29289, 28, 2, 6476, 0.99, '2007-04-12 00:06:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29290, 28, 1, 7580, 9.99, '2007-04-27 21:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29291, 28, 1, 8464, 4.99, '2007-04-29 06:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29292, 28, 1, 8901, 2.99, '2007-04-29 23:35:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29293, 28, 2, 9544, 2.99, '2007-04-30 00:13:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29294, 28, 2, 9593, 4.99, '2007-04-30 01:50:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29295, 28, 2, 9705, 4.99, '2007-04-30 06:08:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29296, 28, 2, 10116, 2.99, '2007-04-30 19:42:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29297, 29, 2, 4262, 6.99, '2007-04-07 12:52:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29298, 29, 1, 4313, 0.99, '2007-04-07 16:05:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29299, 29, 2, 4535, 0.99, '2007-04-08 02:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29300, 29, 2, 5442, 10.99, '2007-04-09 20:23:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29301, 29, 1, 5857, 1.99, '2007-04-10 16:27:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29302, 29, 2, 7237, 3.99, '2007-04-27 08:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29303, 29, 1, 7451, 6.99, '2007-04-27 16:47:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29304, 29, 1, 7453, 0.99, '2007-04-27 16:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29305, 29, 2, 8673, 2.99, '2007-04-29 14:18:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29306, 29, 2, 9392, 4.99, '2007-04-30 18:18:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29307, 29, 1, 9946, 4.99, '2007-04-30 14:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29308, 30, 1, 3964, 4.99, '2007-04-06 20:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29309, 30, 2, 4471, 2.99, '2007-04-07 22:49:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29310, 30, 2, 4642, 2.99, '2007-04-08 07:41:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29311, 30, 2, 5028, 5.99, '2007-04-09 01:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29312, 30, 1, 5108, 9.99, '2007-04-09 05:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29313, 30, 1, 5289, 0.99, '2007-04-09 13:42:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29314, 30, 2, 5972, 7.99, '2007-04-10 22:37:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29315, 30, 1, 6249, 0.99, '2007-04-11 13:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29316, 30, 2, 6359, 2.99, '2007-04-11 19:34:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29317, 30, 2, 7394, 2.99, '2007-04-27 14:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29318, 30, 2, 7769, 4.99, '2007-04-28 05:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29319, 30, 1, 8030, 4.99, '2007-04-28 14:41:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29320, 30, 2, 8038, 4.99, '2007-04-28 15:01:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29321, 30, 1, 8083, 4.99, '2007-04-28 16:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29322, 30, 1, 8641, 2.99, '2007-04-29 13:05:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29323, 30, 2, 9309, 2.99, '2007-04-30 15:24:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29324, 30, 2, 9551, 0.99, '2007-04-30 00:33:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29325, 30, 1, 9641, 0.99, '2007-04-30 04:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29326, 30, 1, 9998, 2.99, '2007-04-30 16:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29327, 31, 1, 3701, 4.99, '2007-04-06 08:41:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29328, 31, 2, 3967, 4.99, '2007-04-06 21:13:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29329, 31, 1, 4122, 6.99, '2007-04-07 05:44:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29330, 31, 2, 4738, 9.99, '2007-04-08 11:53:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29331, 31, 1, 6208, 3.99, '2007-04-11 11:03:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29332, 31, 2, 6580, 4.99, '2007-04-12 04:54:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29333, 31, 1, 7000, 1.99, '2007-04-26 23:51:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29334, 31, 2, 7138, 3.99, '2007-04-27 05:15:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29335, 31, 2, 7178, 2.99, '2007-04-27 06:37:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29336, 31, 2, 7464, 2.99, '2007-04-27 17:18:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29337, 31, 2, 8997, 0.99, '2007-04-30 03:22:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29338, 32, 1, 3500, 2.99, '2007-04-05 22:39:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29339, 32, 1, 4434, 2.99, '2007-04-07 21:17:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29340, 32, 2, 4771, 2.99, '2007-04-08 14:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29341, 32, 2, 4899, 0.99, '2007-04-08 19:05:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29342, 32, 1, 5307, 9.99, '2007-04-09 14:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29343, 32, 1, 5767, 0.99, '2007-04-10 11:41:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29344, 32, 1, 5954, 2.99, '2007-04-10 21:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29345, 32, 1, 6122, 3.99, '2007-04-11 06:26:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29346, 32, 2, 6450, 2.99, '2007-04-11 23:17:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29347, 32, 1, 7084, 6.99, '2007-04-27 03:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29348, 32, 1, 7589, 5.99, '2007-04-27 21:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29349, 32, 1, 7793, 2.99, '2007-04-28 05:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29350, 32, 2, 8390, 5.99, '2007-04-29 04:20:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29351, 32, 2, 8453, 2.99, '2007-04-29 06:14:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29352, 32, 2, 8914, 2.99, '2007-04-30 00:10:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29353, 33, 1, 4095, 5.99, '2007-04-07 04:30:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29354, 33, 1, 5421, 0.99, '2007-04-09 19:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29355, 33, 1, 5723, 4.99, '2007-04-10 09:43:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29356, 33, 2, 6280, 0.99, '2007-04-11 15:04:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29357, 33, 1, 7992, 4.99, '2007-04-28 13:21:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29358, 33, 1, 9040, 4.99, '2007-04-30 05:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29359, 33, 2, 9085, 4.99, '2007-04-30 06:45:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29360, 33, 1, 9254, 1.99, '2007-04-30 12:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29361, 34, 2, 3508, 3.99, '2007-04-05 22:52:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29362, 34, 1, 3911, 2.99, '2007-04-06 18:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29363, 34, 1, 5188, 4.99, '2007-04-09 08:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29364, 34, 2, 5643, 4.99, '2007-04-10 05:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29365, 34, 2, 5918, 5.99, '2007-04-10 20:00:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29366, 34, 2, 7015, 2.99, '2007-04-27 00:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29367, 34, 2, 7124, 2.99, '2007-04-27 04:37:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29368, 34, 1, 7532, 0.99, '2007-04-27 19:49:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29369, 34, 1, 9160, 3.99, '2007-04-30 09:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29370, 35, 2, 3597, 2.99, '2007-04-06 03:32:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29371, 35, 2, 4098, 4.99, '2007-04-07 04:43:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29372, 35, 2, 4990, 0.99, '2007-04-08 23:17:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29373, 35, 1, 5013, 2.99, '2007-04-09 00:15:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29374, 35, 2, 5323, 0.99, '2007-04-09 15:02:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29375, 35, 1, 5916, 5.99, '2007-04-10 19:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29376, 35, 1, 5963, 0.99, '2007-04-10 22:15:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29377, 35, 1, 6147, 5.99, '2007-04-11 07:41:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29378, 35, 1, 6401, 4.99, '2007-04-11 21:13:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29379, 35, 1, 6565, 4.99, '2007-04-12 04:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29380, 35, 1, 6572, 4.99, '2007-04-12 04:25:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29381, 35, 1, 7140, 4.99, '2007-04-27 05:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29382, 35, 1, 8822, 6.99, '2007-04-29 20:48:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29383, 35, 1, 8971, 5.99, '2007-04-30 02:32:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29384, 35, 2, 9033, 2.99, '2007-04-30 04:36:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29385, 35, 1, 9579, 6.99, '2007-04-30 01:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29386, 36, 2, 4135, 0.99, '2007-04-07 06:43:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29387, 36, 2, 4560, 4.99, '2007-04-08 03:27:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29388, 36, 2, 4762, 4.99, '2007-04-08 13:23:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29389, 36, 1, 5403, 0.99, '2007-04-09 18:35:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29390, 36, 2, 6030, 0.99, '2007-04-11 01:06:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29391, 36, 1, 7205, 6.99, '2007-04-27 07:34:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29392, 36, 1, 7647, 0.99, '2007-04-28 00:03:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29393, 36, 2, 7919, 6.99, '2007-04-28 10:28:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29394, 36, 2, 8099, 0.99, '2007-04-28 17:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29395, 36, 1, 8391, 2.99, '2007-04-29 04:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29396, 36, 1, 8952, 4.99, '2007-04-30 01:49:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29397, 36, 1, 9369, 2.99, '2007-04-30 17:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29398, 36, 2, 9805, 0.99, '2007-04-30 09:39:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29399, 37, 2, 3472, 7.99, '2007-04-05 21:24:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29400, 37, 1, 3734, 5.99, '2007-04-06 10:08:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29401, 37, 1, 5425, 5.99, '2007-04-09 19:30:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29402, 37, 2, 7939, 0.99, '2007-04-28 11:14:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29403, 37, 1, 8419, 9.99, '2007-04-29 05:23:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29404, 37, 1, 9567, 5.99, '2007-04-30 01:04:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29405, 38, 1, 4202, 5.99, '2007-04-07 09:52:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29406, 38, 2, 4228, 1.99, '2007-04-07 11:10:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29407, 38, 1, 4300, 4.99, '2007-04-07 15:04:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29408, 38, 2, 4644, 4.99, '2007-04-08 07:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29409, 38, 1, 5273, 2.99, '2007-04-09 12:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29410, 38, 2, 5460, 2.99, '2007-04-09 21:14:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29411, 38, 1, 5822, 2.99, '2007-04-10 14:39:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29412, 38, 1, 6864, 5.99, '2007-04-12 18:27:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29413, 38, 1, 6961, 0.99, '2007-04-26 22:39:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29414, 38, 2, 7158, 4.99, '2007-04-27 05:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29415, 38, 2, 7163, 5.99, '2007-04-27 06:04:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29416, 38, 2, 7321, 5.99, '2007-04-27 12:02:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29417, 38, 1, 7795, 0.99, '2007-04-28 05:56:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29418, 38, 2, 8924, 3.99, '2007-04-30 00:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29419, 38, 2, 9216, 0.99, '2007-04-30 11:39:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29420, 38, 1, 9284, 0.99, '2007-04-30 13:53:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29421, 38, 1, 9621, 4.99, '2007-04-30 02:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29422, 38, 2, 10111, 2.99, '2007-04-30 19:36:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29423, 39, 1, 4419, 5.99, '2007-04-07 20:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29424, 39, 2, 4695, 8.99, '2007-04-08 09:36:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29425, 39, 2, 4712, 6.99, '2007-04-08 10:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29426, 39, 2, 4727, 7.99, '2007-04-08 11:22:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29427, 39, 1, 5451, 4.99, '2007-04-09 20:50:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29428, 39, 2, 5515, 2.99, '2007-04-09 23:41:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29429, 39, 1, 6045, 2.99, '2007-04-11 01:49:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29430, 39, 2, 8307, 6.99, '2007-04-29 01:47:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29431, 39, 2, 8366, 1.99, '2007-04-29 03:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29432, 39, 2, 8723, 7.99, '2007-04-29 16:32:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29433, 39, 1, 8805, 2.99, '2007-04-29 19:58:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29434, 39, 1, 9431, 1.99, '2007-04-30 19:52:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29435, 39, 1, 9656, 4.99, '2007-04-30 04:28:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29436, 39, 2, 10052, 4.99, '2007-04-30 17:43:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29437, 39, 1, 10126, 0.99, '2007-04-30 20:04:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29438, 40, 2, 5001, 1.99, '2007-04-08 23:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29439, 40, 2, 5777, 2.99, '2007-04-10 12:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29440, 40, 1, 5869, 5.99, '2007-04-10 17:08:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29441, 40, 1, 6502, 0.99, '2007-04-12 01:44:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29442, 40, 2, 7684, 0.99, '2007-04-28 01:40:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29443, 40, 2, 8031, 0.99, '2007-04-28 14:44:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29444, 40, 2, 8170, 3.99, '2007-04-28 20:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29445, 40, 1, 9050, 8.99, '2007-04-30 05:28:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29446, 40, 2, 9700, 4.99, '2007-04-30 05:58:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29447, 40, 2, 9961, 6.99, '2007-04-30 14:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29448, 40, 1, 9975, 1.99, '2007-04-30 15:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29449, 41, 2, 3827, 2.99, '2007-04-06 14:20:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29450, 41, 2, 4294, 9.99, '2007-04-07 14:24:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29451, 41, 1, 4543, 4.99, '2007-04-08 02:35:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29452, 41, 1, 4575, 2.99, '2007-04-08 04:17:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29453, 41, 1, 6976, 4.99, '2007-04-26 23:08:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29454, 41, 2, 7153, 4.99, '2007-04-27 05:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29455, 41, 1, 7517, 1.99, '2007-04-27 19:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29456, 41, 2, 8008, 6.99, '2007-04-28 13:54:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29457, 41, 1, 8098, 0.99, '2007-04-28 17:02:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29458, 41, 1, 8134, 6.99, '2007-04-28 18:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29459, 41, 2, 8225, 2.99, '2007-04-28 22:27:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29460, 41, 1, 8712, 2.99, '2007-04-29 15:58:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29461, 41, 2, 9313, 5.99, '2007-04-30 15:28:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29462, 41, 1, 10064, 2.99, '2007-04-30 17:55:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29463, 41, 1, 10170, 7.99, '2007-04-30 21:55:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29464, 42, 2, 4391, 2.99, '2007-04-07 19:38:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29465, 42, 2, 5199, 4.99, '2007-04-09 09:19:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29466, 42, 2, 5517, 5.99, '2007-04-09 23:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29467, 42, 2, 5652, 3.99, '2007-04-10 05:47:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29468, 42, 1, 6179, 2.99, '2007-04-11 09:28:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29469, 42, 1, 6799, 2.99, '2007-04-12 15:20:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29470, 42, 1, 6925, 0.99, '2007-04-26 21:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29471, 42, 1, 7405, 3.99, '2007-04-27 14:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29472, 42, 1, 8049, 0.99, '2007-04-28 15:20:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29473, 42, 1, 8095, 6.99, '2007-04-28 17:01:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29474, 42, 1, 8166, 2.99, '2007-04-28 19:51:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29475, 42, 1, 8499, 3.99, '2007-04-29 07:39:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29476, 42, 2, 8785, 2.99, '2007-04-29 19:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29477, 42, 2, 8852, 3.99, '2007-04-29 21:58:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29478, 42, 2, 8915, 3.99, '2007-04-30 00:10:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29479, 42, 2, 10060, 6.99, '2007-04-30 17:51:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29480, 43, 2, 3683, 1.99, '2007-04-06 07:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29481, 43, 1, 4498, 2.99, '2007-04-08 00:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29482, 43, 1, 5162, 4.99, '2007-04-09 07:28:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29483, 43, 1, 5401, 4.99, '2007-04-09 18:27:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29484, 43, 1, 5831, 2.99, '2007-04-10 15:02:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29485, 43, 2, 5941, 4.99, '2007-04-10 21:09:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29486, 43, 1, 6474, 3.99, '2007-04-12 00:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29487, 43, 2, 6680, 0.99, '2007-04-12 10:30:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29488, 43, 1, 7348, 4.99, '2007-04-27 13:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29489, 43, 2, 7868, 4.99, '2007-04-28 08:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29490, 43, 2, 8376, 4.99, '2007-04-29 03:53:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29491, 43, 1, 9204, 4.99, '2007-04-30 11:12:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29492, 44, 2, 4390, 0.99, '2007-04-07 19:27:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29493, 44, 2, 4723, 9.99, '2007-04-08 11:13:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29494, 44, 1, 5551, 3.99, '2007-04-10 01:29:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29495, 44, 1, 5787, 8.99, '2007-04-10 12:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29496, 44, 2, 5849, 6.99, '2007-04-10 16:00:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29497, 44, 2, 5909, 4.99, '2007-04-10 19:14:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29498, 44, 1, 7514, 0.99, '2007-04-27 19:20:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29499, 44, 2, 7526, 6.99, '2007-04-27 19:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29500, 44, 2, 8775, 4.99, '2007-04-29 18:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29501, 44, 1, 8866, 4.99, '2007-04-29 22:26:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29502, 45, 1, 4843, 0.99, '2007-04-08 16:55:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29503, 45, 1, 5181, 6.99, '2007-04-09 08:35:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29504, 45, 1, 5405, 7.99, '2007-04-09 18:40:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29505, 45, 1, 5637, 0.99, '2007-04-10 05:00:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29506, 45, 2, 6001, 0.99, '2007-04-10 23:53:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29507, 45, 2, 6002, 2.99, '2007-04-10 23:56:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29508, 45, 1, 6966, 9.99, '2007-04-26 22:44:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29509, 45, 1, 7436, 2.99, '2007-04-27 16:07:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29510, 45, 1, 7961, 3.99, '2007-04-28 12:15:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29511, 46, 2, 3855, 2.99, '2007-04-06 15:32:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29512, 46, 1, 3916, 4.99, '2007-04-06 18:47:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29513, 46, 2, 5698, 4.99, '2007-04-10 08:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29514, 46, 1, 7336, 0.99, '2007-04-27 12:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29515, 46, 2, 8152, 3.99, '2007-04-28 19:21:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29516, 46, 2, 9045, 8.99, '2007-04-30 05:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29517, 46, 2, 9806, 2.99, '2007-04-30 09:42:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29518, 46, 1, 10088, 2.99, '2007-04-30 18:44:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29519, 47, 1, 3631, 4.99, '2007-04-06 05:05:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29520, 47, 2, 4064, 5.99, '2007-04-07 02:57:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29521, 47, 1, 5174, 0.99, '2007-04-09 08:00:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29522, 47, 2, 6153, 9.99, '2007-04-11 07:59:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29523, 47, 2, 6164, 0.99, '2007-04-11 08:44:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29524, 47, 1, 6337, 3.99, '2007-04-11 17:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29525, 47, 2, 8159, 4.99, '2007-04-28 19:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29526, 47, 2, 8402, 6.99, '2007-04-29 04:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29527, 47, 1, 8863, 3.99, '2007-04-29 22:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29528, 47, 2, 9274, 4.99, '2007-04-30 13:35:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29529, 48, 2, 3758, 4.99, '2007-04-06 11:11:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29530, 48, 1, 4367, 2.99, '2007-04-07 18:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29531, 48, 2, 5148, 6.99, '2007-04-09 06:51:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29532, 48, 2, 6498, 3.99, '2007-04-12 01:34:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29533, 48, 1, 7920, 2.99, '2007-04-28 10:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29534, 48, 1, 8716, 6.99, '2007-04-29 16:07:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29535, 48, 1, 9402, 7.99, '2007-04-30 18:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29536, 48, 2, 9742, 7.99, '2007-04-30 07:38:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29537, 49, 2, 3575, 4.99, '2007-04-06 02:04:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29538, 49, 2, 3615, 0.99, '2007-04-06 04:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29539, 49, 1, 5491, 2.99, '2007-04-09 22:38:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29540, 49, 1, 6214, 4.99, '2007-04-11 11:18:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29541, 49, 1, 6279, 6.99, '2007-04-11 14:54:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29542, 49, 1, 6521, 7.99, '2007-04-12 02:34:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29543, 49, 2, 6759, 4.99, '2007-04-12 13:43:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29544, 49, 2, 7209, 4.99, '2007-04-27 07:45:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29545, 49, 2, 7742, 8.99, '2007-04-28 04:01:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29546, 49, 2, 8553, 10.99, '2007-04-29 09:44:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29547, 49, 2, 9006, 0.99, '2007-04-30 03:34:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29548, 49, 1, 9851, 4.99, '2007-04-30 11:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29549, 49, 1, 10144, 4.99, '2007-04-30 20:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29550, 50, 2, 4149, 2.99, '2007-04-07 07:08:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29551, 50, 2, 5290, 4.99, '2007-04-09 13:43:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29552, 50, 2, 5641, 4.99, '2007-04-10 05:12:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29553, 50, 2, 5681, 9.99, '2007-04-10 07:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29554, 50, 1, 5928, 6.99, '2007-04-10 20:26:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29555, 50, 2, 6634, 0.99, '2007-04-12 08:05:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29556, 50, 1, 6667, 8.99, '2007-04-12 10:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29557, 50, 1, 7383, 4.99, '2007-04-27 14:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29558, 50, 1, 8089, 0.99, '2007-04-28 16:55:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29559, 50, 1, 8261, 0.99, '2007-04-28 23:39:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29560, 50, 1, 8619, 5.99, '2007-04-29 12:18:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29561, 50, 2, 9179, 0.99, '2007-04-30 10:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29562, 50, 1, 9615, 4.99, '2007-04-30 02:28:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29563, 50, 2, 9691, 10.99, '2007-04-30 05:38:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29564, 50, 2, 10046, 2.99, '2007-04-30 17:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29565, 50, 2, 10165, 0.99, '2007-04-30 21:49:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29566, 50, 2, 10180, 6.99, '2007-04-30 22:26:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29567, 51, 1, 3525, 9.99, '2007-04-05 23:31:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29568, 51, 1, 5230, 2.99, '2007-04-09 10:58:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29569, 51, 2, 5304, 5.99, '2007-04-09 14:16:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29570, 51, 1, 5473, 7.99, '2007-04-09 21:47:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29571, 51, 1, 5606, 4.99, '2007-04-10 03:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29572, 51, 1, 7207, 5.99, '2007-04-27 07:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29573, 51, 1, 7398, 6.99, '2007-04-27 14:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29574, 51, 1, 7636, 5.99, '2007-04-27 23:37:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29575, 51, 1, 8495, 4.99, '2007-04-29 07:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29576, 51, 1, 8693, 0.99, '2007-04-29 15:12:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29577, 51, 1, 8880, 0.99, '2007-04-29 22:45:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29578, 51, 2, 9649, 0.99, '2007-04-30 04:15:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29579, 52, 1, 3997, 1.99, '2007-04-06 22:15:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29580, 52, 1, 5308, 0.99, '2007-04-09 14:27:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29581, 52, 2, 5313, 3.99, '2007-04-09 14:33:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29582, 52, 1, 5607, 2.99, '2007-04-10 03:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29583, 52, 1, 6394, 7.99, '2007-04-11 20:57:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29584, 52, 2, 7284, 0.99, '2007-04-27 10:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29585, 52, 2, 7438, 5.99, '2007-04-27 16:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29586, 52, 2, 7627, 4.99, '2007-04-27 23:25:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29587, 52, 1, 8686, 4.99, '2007-04-29 14:46:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29588, 52, 1, 9029, 4.99, '2007-04-30 04:31:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29589, 52, 2, 9749, 3.99, '2007-04-30 07:46:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29590, 52, 2, 9797, 4.99, '2007-04-30 09:22:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29591, 53, 2, 3591, 2.99, '2007-04-06 03:05:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29592, 53, 2, 3898, 4.99, '2007-04-06 17:41:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29593, 53, 2, 5185, 2.99, '2007-04-09 08:43:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29594, 53, 2, 7466, 2.99, '2007-04-27 17:19:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29595, 53, 1, 7699, 4.99, '2007-04-28 02:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29596, 53, 1, 9343, 4.99, '2007-04-30 16:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29597, 53, 1, 9928, 7.99, '2007-04-30 13:42:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29598, 54, 2, 4657, 4.99, '2007-04-08 08:19:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29599, 54, 2, 5055, 1.99, '2007-04-09 02:33:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29600, 54, 1, 5929, 2.99, '2007-04-10 20:27:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29601, 54, 1, 5992, 2.99, '2007-04-10 23:34:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29602, 54, 1, 6338, 7.99, '2007-04-11 18:08:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29603, 54, 2, 6560, 2.99, '2007-04-12 03:50:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29604, 54, 1, 6813, 0.99, '2007-04-12 16:32:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29605, 54, 2, 8992, 4.99, '2007-04-30 03:12:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29606, 55, 1, 4671, 4.99, '2007-04-08 08:43:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29607, 55, 2, 6314, 7.99, '2007-04-11 17:01:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29608, 55, 2, 7050, 4.99, '2007-04-27 02:01:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29609, 55, 2, 8288, 6.99, '2007-04-29 00:32:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29610, 55, 1, 9302, 2.99, '2007-04-30 15:03:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29611, 55, 2, 9596, 5.99, '2007-04-30 01:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29612, 55, 2, 9798, 2.99, '2007-04-30 09:23:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29613, 56, 1, 3718, 7.99, '2007-04-06 09:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29614, 56, 2, 3771, 2.99, '2007-04-06 11:48:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29615, 56, 1, 4097, 3.99, '2007-04-07 04:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29616, 56, 2, 4702, 4.99, '2007-04-08 10:10:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29617, 56, 1, 5142, 4.99, '2007-04-09 06:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29618, 56, 1, 7385, 2.99, '2007-04-27 14:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29619, 56, 1, 7696, 7.99, '2007-04-28 02:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29620, 56, 2, 7942, 0.99, '2007-04-28 11:18:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29621, 56, 1, 8285, 0.99, '2007-04-29 00:28:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29622, 57, 1, 3727, 4.99, '2007-04-06 09:45:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29623, 57, 2, 4226, 4.99, '2007-04-07 11:06:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29624, 57, 1, 5060, 4.99, '2007-04-09 02:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29625, 57, 1, 5694, 0.99, '2007-04-10 08:09:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29626, 57, 2, 5948, 2.99, '2007-04-10 21:40:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29627, 57, 2, 6482, 4.99, '2007-04-12 00:18:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29628, 57, 1, 6494, 1.99, '2007-04-12 01:11:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29629, 57, 2, 6649, 4.99, '2007-04-12 09:19:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29630, 57, 2, 8249, 5.99, '2007-04-28 23:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29631, 57, 1, 9086, 0.99, '2007-04-30 06:47:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29632, 57, 2, 9136, 0.99, '2007-04-30 08:35:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29633, 57, 1, 9211, 1.99, '2007-04-30 11:28:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29634, 57, 1, 9703, 0.99, '2007-04-30 06:03:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29635, 57, 2, 9812, 2.99, '2007-04-30 09:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29636, 57, 2, 10169, 4.99, '2007-04-30 21:55:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29637, 58, 1, 3685, 4.99, '2007-04-06 07:59:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29638, 58, 2, 4131, 4.99, '2007-04-07 06:21:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29639, 58, 2, 5439, 1.99, '2007-04-09 20:08:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29640, 58, 1, 7063, 9.99, '2007-04-27 02:20:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29641, 58, 2, 7487, 4.99, '2007-04-27 18:01:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29642, 58, 1, 8853, 0.99, '2007-04-29 22:02:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29643, 58, 2, 9561, 2.99, '2007-04-30 00:50:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29644, 58, 2, 10037, 2.99, '2007-04-30 17:16:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29645, 58, 1, 10068, 4.99, '2007-04-30 18:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29646, 59, 2, 4148, 2.99, '2007-04-07 07:05:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29647, 59, 1, 4384, 4.99, '2007-04-07 19:15:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29648, 59, 1, 4631, 4.99, '2007-04-08 07:06:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29649, 59, 1, 4891, 3.99, '2007-04-08 18:34:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29650, 59, 2, 5195, 8.99, '2007-04-09 09:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29651, 59, 1, 5207, 3.99, '2007-04-09 09:44:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29652, 59, 1, 5830, 4.99, '2007-04-10 15:02:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29653, 59, 1, 7991, 4.99, '2007-04-28 13:14:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29654, 59, 2, 8643, 4.99, '2007-04-29 13:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29655, 59, 1, 9469, 8.99, '2007-04-30 21:25:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29656, 59, 2, 9573, 6.99, '2007-04-30 01:14:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29657, 60, 2, 3473, 2.99, '2007-04-05 21:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29658, 60, 1, 3849, 2.99, '2007-04-06 15:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29659, 60, 1, 6282, 5.99, '2007-04-11 15:14:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29660, 60, 2, 7067, 0.99, '2007-04-27 02:23:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29661, 60, 1, 7331, 3.99, '2007-04-27 12:26:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29662, 60, 1, 7494, 0.99, '2007-04-27 18:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29663, 60, 1, 9356, 4.99, '2007-04-30 17:04:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29664, 60, 1, 9761, 4.99, '2007-04-30 08:00:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29665, 61, 1, 7027, 7.99, '2007-04-27 01:18:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29666, 61, 2, 7071, 1.99, '2007-04-27 02:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29667, 61, 2, 8029, 6.99, '2007-04-28 14:39:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29668, 61, 2, 8075, 4.99, '2007-04-28 16:05:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29669, 61, 1, 8651, 3.99, '2007-04-29 13:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29670, 61, 2, 9597, 6.99, '2007-04-30 01:57:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29671, 62, 2, 3843, 2.99, '2007-04-06 15:04:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29672, 62, 2, 4159, 4.99, '2007-04-07 07:39:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29673, 62, 2, 5292, 2.99, '2007-04-09 13:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29674, 62, 2, 8360, 4.99, '2007-04-29 03:36:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29675, 62, 2, 10080, 0.99, '2007-04-30 18:35:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29676, 63, 2, 3923, 8.99, '2007-04-06 19:02:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29677, 63, 1, 4587, 4.99, '2007-04-08 04:44:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29678, 63, 1, 5585, 6.99, '2007-04-10 02:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29679, 63, 2, 5788, 4.99, '2007-04-10 12:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29680, 63, 2, 5832, 4.99, '2007-04-10 15:03:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29681, 63, 2, 6769, 3.99, '2007-04-12 14:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29682, 63, 2, 6847, 8.99, '2007-04-12 17:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29683, 63, 2, 8311, 5.99, '2007-04-29 01:54:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29684, 63, 2, 9007, 0.99, '2007-04-30 03:37:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29685, 63, 1, 9546, 4.99, '2007-04-30 00:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29686, 63, 2, 9549, 3.99, '2007-04-30 00:25:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29687, 63, 1, 9795, 0.99, '2007-04-30 09:15:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29688, 63, 2, 9938, 2.99, '2007-04-30 13:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29689, 63, 2, 10148, 0.99, '2007-04-30 20:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29690, 64, 2, 3982, 0.99, '2007-04-06 21:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29691, 64, 1, 4288, 4.99, '2007-04-07 14:06:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29692, 64, 1, 4690, 1.99, '2007-04-08 09:32:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29693, 64, 2, 4819, 5.99, '2007-04-08 15:47:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29694, 64, 2, 4971, 5.99, '2007-04-08 22:23:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29695, 64, 1, 5114, 3.99, '2007-04-09 05:35:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29696, 64, 2, 5279, 2.99, '2007-04-09 13:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29697, 64, 1, 5432, 0.99, '2007-04-09 19:49:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29698, 64, 2, 6372, 2.99, '2007-04-11 20:03:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29699, 64, 2, 6457, 0.99, '2007-04-11 23:35:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29700, 64, 2, 6698, 1.99, '2007-04-12 11:13:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29701, 64, 2, 6744, 0.99, '2007-04-12 12:58:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29702, 64, 2, 7045, 0.99, '2007-04-27 01:56:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29703, 64, 1, 7082, 2.99, '2007-04-27 02:55:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29704, 64, 1, 7476, 1.99, '2007-04-27 17:37:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29705, 64, 2, 8602, 4.99, '2007-04-29 11:32:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29706, 64, 1, 9832, 2.99, '2007-04-30 10:30:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29707, 64, 1, 9880, 6.99, '2007-04-30 12:17:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29708, 64, 1, 9924, 3.99, '2007-04-30 13:33:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29709, 64, 2, 10185, 0.99, '2007-04-30 22:40:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29710, 65, 1, 3535, 4.99, '2007-04-06 00:01:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29711, 65, 1, 4240, 4.99, '2007-04-07 12:01:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29712, 65, 2, 4635, 3.99, '2007-04-08 07:11:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29713, 65, 1, 5735, 3.99, '2007-04-10 10:07:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29714, 65, 2, 6527, 0.99, '2007-04-12 02:51:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29715, 65, 1, 7877, 6.99, '2007-04-28 08:54:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29716, 65, 2, 8392, 1.99, '2007-04-29 04:28:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29717, 65, 2, 8404, 5.99, '2007-04-29 04:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29718, 65, 1, 9293, 3.99, '2007-04-30 14:40:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29719, 66, 1, 3573, 4.99, '2007-04-06 02:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29720, 66, 2, 3757, 2.99, '2007-04-06 11:10:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29721, 66, 2, 4088, 2.99, '2007-04-07 04:00:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29722, 66, 1, 4108, 4.99, '2007-04-07 05:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29723, 66, 2, 4165, 6.99, '2007-04-07 07:51:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29724, 66, 2, 4911, 5.99, '2007-04-08 19:48:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29725, 66, 2, 5915, 0.99, '2007-04-10 19:40:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29726, 66, 1, 6290, 8.99, '2007-04-11 15:41:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29727, 66, 2, 6348, 5.99, '2007-04-11 18:49:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29728, 66, 1, 6402, 3.99, '2007-04-11 21:14:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29729, 66, 1, 6995, 2.99, '2007-04-26 23:40:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29730, 66, 1, 7872, 2.99, '2007-04-28 08:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29731, 66, 1, 9091, 5.99, '2007-04-30 06:59:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29732, 67, 2, 4090, 4.99, '2007-04-07 04:15:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29733, 67, 2, 5399, 2.99, '2007-04-09 18:21:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29734, 67, 2, 5510, 2.99, '2007-04-09 23:27:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29735, 67, 1, 6137, 2.99, '2007-04-11 07:02:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29736, 67, 2, 7277, 5.99, '2007-04-27 10:17:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29737, 67, 2, 7895, 0.99, '2007-04-28 09:25:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29738, 67, 2, 8563, 1.99, '2007-04-29 10:01:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29739, 67, 1, 9640, 7.99, '2007-04-30 04:01:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29740, 68, 1, 3598, 0.99, '2007-04-06 03:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29741, 68, 2, 3801, 4.99, '2007-04-06 13:34:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29742, 68, 1, 3864, 0.99, '2007-04-06 16:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29743, 68, 2, 4555, 6.99, '2007-04-08 03:17:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29744, 68, 1, 4925, 3.99, '2007-04-08 20:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29745, 68, 1, 6512, 4.99, '2007-04-12 02:11:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29746, 68, 2, 9339, 3.99, '2007-04-30 16:31:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29747, 68, 1, 9538, 3.99, '2007-04-30 23:53:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29748, 68, 2, 9642, 4.99, '2007-04-30 04:02:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29749, 68, 1, 10115, 7.99, '2007-04-30 19:42:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29750, 69, 1, 3883, 8.99, '2007-04-06 17:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29751, 69, 1, 4265, 0.99, '2007-04-07 12:56:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29752, 69, 1, 4427, 0.99, '2007-04-07 20:57:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29753, 69, 2, 5569, 3.99, '2007-04-10 02:06:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29754, 69, 2, 6297, 4.99, '2007-04-11 16:05:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29755, 69, 1, 6385, 6.99, '2007-04-11 20:35:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29756, 69, 2, 6785, 6.99, '2007-04-12 14:59:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29757, 69, 2, 8649, 6.99, '2007-04-29 13:25:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29758, 69, 2, 9193, 2.99, '2007-04-30 10:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29759, 69, 1, 9612, 2.99, '2007-04-30 02:26:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29760, 69, 2, 10074, 0.99, '2007-04-30 18:25:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29761, 70, 1, 4061, 0.99, '2007-04-07 02:42:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29762, 70, 1, 5927, 5.99, '2007-04-10 20:25:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29763, 70, 2, 7036, 4.99, '2007-04-27 01:34:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29764, 70, 2, 7421, 7.99, '2007-04-27 15:38:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29765, 70, 1, 7714, 2.99, '2007-04-28 03:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29766, 70, 2, 8550, 0.99, '2007-04-29 09:41:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29767, 70, 1, 8747, 2.99, '2007-04-29 17:36:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29768, 71, 2, 4614, 4.99, '2007-04-08 06:13:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29769, 71, 2, 5281, 1.99, '2007-04-09 13:23:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29770, 71, 2, 5358, 3.99, '2007-04-09 16:37:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29771, 71, 1, 5543, 8.99, '2007-04-10 01:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29772, 71, 1, 5770, 4.99, '2007-04-10 11:49:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29773, 71, 2, 5814, 4.99, '2007-04-10 14:15:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29774, 71, 2, 6020, 0.99, '2007-04-11 00:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29775, 71, 1, 6739, 5.99, '2007-04-12 12:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29776, 71, 2, 7160, 0.99, '2007-04-27 05:54:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29777, 71, 1, 7550, 4.99, '2007-04-27 20:23:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29778, 71, 2, 7982, 4.99, '2007-04-28 12:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29779, 71, 2, 8128, 2.99, '2007-04-28 18:14:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29780, 71, 1, 8293, 2.99, '2007-04-29 00:59:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29781, 71, 1, 8574, 1.99, '2007-04-29 10:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29782, 71, 1, 8668, 4.99, '2007-04-29 14:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29783, 71, 1, 8783, 3.99, '2007-04-29 18:59:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29784, 71, 1, 8789, 4.99, '2007-04-29 19:15:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29785, 71, 1, 8956, 0.99, '2007-04-30 02:00:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29786, 72, 1, 3700, 0.99, '2007-04-06 08:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29787, 72, 2, 5223, 4.99, '2007-04-09 10:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29788, 72, 1, 5302, 4.99, '2007-04-09 14:11:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29789, 72, 1, 5424, 0.99, '2007-04-09 19:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29790, 72, 1, 5840, 4.99, '2007-04-10 15:37:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29791, 72, 2, 6081, 0.99, '2007-04-11 03:39:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29792, 72, 2, 8228, 4.99, '2007-04-28 22:37:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29793, 72, 1, 9027, 2.99, '2007-04-30 04:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29794, 72, 2, 9420, 5.99, '2007-04-30 19:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29795, 72, 2, 9648, 4.99, '2007-04-30 04:14:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29796, 73, 2, 4327, 2.99, '2007-04-07 16:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29797, 73, 1, 4789, 4.99, '2007-04-08 14:50:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29798, 73, 2, 5021, 4.99, '2007-04-09 00:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29799, 73, 1, 6514, 9.99, '2007-04-12 02:16:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29800, 73, 1, 6645, 2.99, '2007-04-12 09:08:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29801, 73, 1, 7590, 4.99, '2007-04-27 21:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29802, 73, 1, 7683, 4.99, '2007-04-28 01:39:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29803, 73, 1, 8377, 4.99, '2007-04-29 03:56:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29804, 73, 1, 9212, 2.99, '2007-04-30 11:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29805, 73, 1, 9776, 2.99, '2007-04-30 08:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29806, 74, 2, 3819, 3.99, '2007-04-06 14:03:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29807, 74, 1, 5530, 2.99, '2007-04-10 00:42:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29808, 74, 2, 5603, 2.99, '2007-04-10 03:33:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29809, 74, 2, 5917, 4.99, '2007-04-10 19:58:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29810, 74, 1, 6241, 7.99, '2007-04-11 13:09:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29811, 74, 1, 6475, 2.99, '2007-04-12 00:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29812, 74, 1, 7304, 6.99, '2007-04-27 11:25:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29813, 74, 2, 8796, 5.99, '2007-04-29 19:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29814, 74, 2, 9112, 4.99, '2007-04-30 07:34:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29815, 74, 2, 10051, 3.99, '2007-04-30 17:42:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29816, 75, 1, 3711, 0.99, '2007-04-06 09:14:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29817, 75, 2, 4179, 2.99, '2007-04-07 08:45:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29818, 75, 2, 4511, 0.99, '2007-04-08 01:04:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29819, 75, 1, 4639, 5.99, '2007-04-08 07:25:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29820, 75, 2, 5260, 2.99, '2007-04-09 12:34:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29821, 75, 2, 6052, 0.99, '2007-04-11 02:19:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29822, 75, 1, 6092, 3.99, '2007-04-11 04:19:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29823, 75, 1, 6486, 0.99, '2007-04-12 00:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29824, 75, 2, 6530, 0.99, '2007-04-12 03:01:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29825, 75, 2, 6852, 2.99, '2007-04-12 18:02:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29826, 75, 1, 7052, 2.99, '2007-04-27 02:05:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29827, 75, 1, 7454, 4.99, '2007-04-27 16:55:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29828, 75, 1, 7843, 0.99, '2007-04-28 07:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29829, 75, 2, 7897, 2.99, '2007-04-28 09:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29830, 75, 2, 8202, 1.99, '2007-04-28 21:40:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29831, 75, 1, 8823, 6.99, '2007-04-29 20:50:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29832, 75, 2, 9168, 5.99, '2007-04-30 09:59:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29833, 75, 2, 9442, 4.99, '2007-04-30 20:12:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29834, 75, 2, 9501, 4.99, '2007-04-30 22:27:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29835, 75, 1, 9783, 9.99, '2007-04-30 08:44:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29836, 76, 2, 4099, 4.99, '2007-04-07 04:48:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29837, 76, 2, 5571, 0.99, '2007-04-10 02:16:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29838, 76, 2, 6789, 0.99, '2007-04-12 15:03:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29839, 76, 2, 8253, 6.99, '2007-04-28 23:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29840, 76, 2, 8357, 2.99, '2007-04-29 03:28:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29841, 76, 2, 8405, 3.99, '2007-04-29 04:56:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29842, 76, 1, 8935, 0.99, '2007-04-30 01:07:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29843, 76, 2, 9312, 2.99, '2007-04-30 15:27:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29844, 76, 2, 10082, 0.99, '2007-04-30 18:37:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29845, 77, 2, 4928, 0.99, '2007-04-08 20:34:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29846, 77, 2, 6168, 0.99, '2007-04-11 08:50:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29847, 77, 2, 6390, 2.99, '2007-04-11 20:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29848, 77, 1, 7406, 3.99, '2007-04-27 14:54:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29849, 77, 1, 7710, 0.99, '2007-04-28 02:52:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29850, 77, 2, 8942, 4.99, '2007-04-30 01:29:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29851, 77, 1, 9811, 0.99, '2007-04-30 09:52:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29852, 77, 2, 10184, 4.99, '2007-04-30 22:37:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29853, 78, 1, 3593, 4.99, '2007-04-06 03:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29854, 78, 2, 4227, 5.99, '2007-04-07 11:10:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29855, 78, 2, 4627, 2.99, '2007-04-08 06:53:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29856, 78, 2, 4778, 0.99, '2007-04-08 14:20:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29857, 78, 1, 5078, 1.99, '2007-04-09 03:48:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29858, 78, 2, 5604, 0.99, '2007-04-10 03:33:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29859, 78, 1, 6005, 0.99, '2007-04-11 00:05:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29860, 78, 1, 6344, 4.99, '2007-04-11 18:33:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29861, 78, 2, 7200, 1.99, '2007-04-27 07:26:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29862, 78, 2, 7747, 4.99, '2007-04-28 04:18:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29863, 78, 2, 7926, 3.99, '2007-04-28 10:41:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29864, 78, 1, 7957, 6.99, '2007-04-28 12:02:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29865, 78, 2, 8920, 4.99, '2007-04-30 00:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29866, 78, 1, 9068, 5.99, '2007-04-30 06:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29867, 79, 1, 3641, 0.99, '2007-04-06 05:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29868, 79, 1, 3748, 2.99, '2007-04-06 10:39:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29869, 79, 2, 4049, 4.99, '2007-04-07 02:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29870, 79, 1, 4530, 4.99, '2007-04-08 01:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29871, 79, 2, 4736, 4.99, '2007-04-08 11:51:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29872, 79, 2, 5205, 2.99, '2007-04-09 09:25:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29873, 79, 1, 5555, 2.99, '2007-04-10 01:37:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29874, 79, 2, 6162, 5.99, '2007-04-11 08:40:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29875, 79, 1, 7220, 9.99, '2007-04-27 08:04:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29876, 79, 1, 8849, 2.99, '2007-04-29 21:49:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29877, 79, 1, 9814, 1.99, '2007-04-30 09:58:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29878, 79, 2, 9845, 6.99, '2007-04-30 10:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29879, 79, 1, 9989, 0.99, '2007-04-30 15:51:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29880, 80, 2, 3623, 4.99, '2007-04-06 04:33:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29881, 80, 2, 4268, 8.99, '2007-04-07 13:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29882, 80, 2, 4299, 3.99, '2007-04-07 15:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29883, 80, 1, 4688, 5.99, '2007-04-08 09:31:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29884, 80, 2, 5420, 3.99, '2007-04-09 19:17:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29885, 80, 2, 5452, 4.99, '2007-04-09 20:51:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29886, 80, 1, 6199, 5.99, '2007-04-11 10:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29887, 80, 2, 6417, 6.99, '2007-04-11 22:03:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29888, 80, 2, 6707, 1.99, '2007-04-12 11:36:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29889, 80, 2, 7558, 0.99, '2007-04-27 20:47:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29890, 80, 1, 8509, 5.99, '2007-04-29 08:06:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29891, 80, 1, 8884, 6.99, '2007-04-29 22:54:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29892, 81, 1, 3879, 2.99, '2007-04-06 16:59:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29893, 81, 2, 4983, 9.99, '2007-04-08 23:02:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29894, 81, 1, 5468, 0.99, '2007-04-09 21:34:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29895, 81, 2, 7130, 4.99, '2007-04-27 04:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29896, 81, 1, 7709, 0.99, '2007-04-28 02:50:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29897, 81, 2, 9454, 3.99, '2007-04-30 20:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29898, 82, 1, 3680, 2.99, '2007-04-06 07:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29899, 82, 1, 4598, 6.99, '2007-04-08 05:14:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29900, 82, 2, 5746, 4.99, '2007-04-10 10:43:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29901, 82, 2, 6082, 6.99, '2007-04-11 03:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29902, 82, 2, 6708, 6.99, '2007-04-12 11:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29903, 82, 2, 7733, 9.99, '2007-04-28 03:33:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29904, 82, 2, 7873, 0.99, '2007-04-28 08:48:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29905, 82, 1, 8487, 4.99, '2007-04-29 07:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29906, 82, 2, 9277, 3.99, '2007-04-30 13:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29907, 82, 1, 9305, 8.99, '2007-04-30 15:14:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29908, 82, 1, 9447, 6.99, '2007-04-30 20:22:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29909, 83, 2, 3722, 6.99, '2007-04-06 09:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29910, 83, 1, 3754, 2.99, '2007-04-06 11:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29911, 83, 1, 5218, 0.99, '2007-04-09 10:25:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29912, 83, 2, 5394, 6.99, '2007-04-09 18:04:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29913, 83, 2, 6194, 2.99, '2007-04-11 10:19:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29914, 83, 2, 6861, 2.99, '2007-04-12 18:25:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29915, 83, 2, 7721, 0.99, '2007-04-28 03:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29916, 83, 2, 8729, 4.99, '2007-04-29 16:51:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29917, 83, 1, 9867, 1.99, '2007-04-30 11:45:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29918, 84, 2, 4079, 6.99, '2007-04-07 03:34:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29919, 84, 2, 4838, 6.99, '2007-04-08 16:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29920, 84, 1, 5221, 5.99, '2007-04-09 10:30:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29921, 84, 1, 5237, 0.99, '2007-04-09 11:25:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29922, 84, 1, 5971, 5.99, '2007-04-10 22:34:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29923, 84, 2, 6259, 2.99, '2007-04-11 13:54:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29924, 84, 2, 6415, 9.99, '2007-04-11 21:56:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29925, 84, 1, 7854, 2.99, '2007-04-28 08:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29926, 84, 2, 8019, 4.99, '2007-04-28 14:06:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29927, 84, 1, 8654, 8.99, '2007-04-29 13:32:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29928, 84, 2, 9074, 2.99, '2007-04-30 06:18:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29929, 84, 2, 9680, 4.99, '2007-04-30 05:10:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29930, 85, 2, 4451, 0.99, '2007-04-07 21:58:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29931, 85, 1, 4705, 2.99, '2007-04-08 10:19:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29932, 85, 1, 5051, 4.99, '2007-04-09 02:26:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29933, 85, 1, 5519, 0.99, '2007-04-09 23:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29934, 85, 2, 7906, 0.99, '2007-04-28 10:00:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29935, 85, 2, 9427, 7.99, '2007-04-30 19:44:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29936, 85, 2, 9957, 4.99, '2007-04-30 14:32:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29937, 85, 1, 9985, 2.99, '2007-04-30 15:43:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29938, 86, 1, 3611, 0.99, '2007-04-06 04:05:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29939, 86, 2, 3945, 4.99, '2007-04-06 20:03:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29940, 86, 1, 4235, 2.99, '2007-04-07 11:34:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29941, 86, 1, 4571, 9.99, '2007-04-08 04:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29942, 86, 2, 5295, 0.99, '2007-04-09 13:53:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29943, 86, 1, 5752, 8.99, '2007-04-10 10:56:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29944, 86, 2, 6872, 7.99, '2007-04-12 18:43:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29945, 86, 1, 7231, 2.99, '2007-04-27 08:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29946, 86, 1, 7874, 10.99, '2007-04-28 08:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29947, 86, 2, 8803, 5.99, '2007-04-29 19:54:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29948, 86, 1, 8850, 2.99, '2007-04-29 21:52:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29949, 86, 2, 9376, 4.99, '2007-04-30 17:40:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29950, 87, 1, 5084, 7.99, '2007-04-09 04:01:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29951, 87, 1, 5628, 3.99, '2007-04-10 04:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29952, 87, 2, 5700, 4.99, '2007-04-10 08:18:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29953, 87, 1, 6638, 4.99, '2007-04-12 08:26:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29954, 87, 2, 7599, 2.99, '2007-04-27 22:07:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29955, 87, 2, 8187, 7.99, '2007-04-28 21:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29956, 87, 1, 8286, 5.99, '2007-04-29 00:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29957, 87, 2, 8323, 4.99, '2007-04-29 02:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29958, 87, 2, 9060, 0.99, '2007-04-30 05:49:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29959, 87, 1, 9348, 2.99, '2007-04-30 16:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29960, 87, 2, 9364, 8.99, '2007-04-30 17:13:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29961, 87, 2, 10205, 4.99, '2007-04-30 23:16:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29962, 88, 2, 3524, 0.99, '2007-04-05 23:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29963, 88, 2, 3620, 0.99, '2007-04-06 04:30:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29964, 88, 2, 3673, 5.99, '2007-04-06 07:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29965, 88, 1, 3846, 5.99, '2007-04-06 15:11:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29966, 88, 1, 6643, 1.99, '2007-04-12 09:07:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29967, 88, 1, 6916, 4.99, '2007-04-12 20:57:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29968, 88, 1, 7088, 5.99, '2007-04-27 03:10:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29969, 88, 1, 7621, 8.99, '2007-04-27 23:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29970, 88, 1, 8296, 2.99, '2007-04-29 01:11:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29971, 88, 2, 8526, 2.99, '2007-04-29 08:49:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29972, 88, 1, 8692, 2.99, '2007-04-29 15:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29973, 89, 2, 4152, 4.99, '2007-04-07 07:18:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29974, 89, 1, 4488, 0.99, '2007-04-07 23:50:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29975, 89, 1, 4764, 8.99, '2007-04-08 13:29:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29976, 89, 2, 5144, 7.99, '2007-04-09 06:38:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29977, 89, 2, 5436, 2.99, '2007-04-09 19:59:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29978, 89, 1, 5483, 2.99, '2007-04-09 22:22:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29979, 89, 1, 6772, 2.99, '2007-04-12 14:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29980, 89, 2, 7370, 7.99, '2007-04-27 13:44:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29981, 89, 2, 7729, 4.99, '2007-04-28 03:26:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29982, 89, 2, 7995, 4.99, '2007-04-28 13:28:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29983, 89, 1, 8003, 2.99, '2007-04-28 13:39:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29984, 89, 2, 8070, 2.99, '2007-04-28 15:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29985, 89, 2, 8972, 0.99, '2007-04-30 02:34:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29986, 89, 1, 9328, 2.99, '2007-04-30 16:00:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29987, 89, 2, 9646, 2.99, '2007-04-30 04:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29988, 89, 2, 9767, 0.99, '2007-04-30 08:15:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29989, 89, 2, 10164, 4.99, '2007-04-30 21:46:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29990, 90, 2, 3729, 3.99, '2007-04-06 09:58:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29991, 90, 2, 4371, 4.99, '2007-04-07 18:35:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29992, 90, 2, 5272, 0.99, '2007-04-09 12:54:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29993, 90, 2, 5539, 3.99, '2007-04-10 01:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29994, 90, 2, 7035, 5.99, '2007-04-27 01:34:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29995, 90, 2, 7058, 1.99, '2007-04-27 02:19:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29996, 90, 1, 7428, 5.99, '2007-04-27 15:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29997, 90, 1, 7946, 6.99, '2007-04-28 11:29:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29998, 90, 1, 8024, 2.99, '2007-04-28 14:24:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (29999, 90, 1, 8408, 0.99, '2007-04-29 05:09:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30000, 90, 2, 8870, 9.99, '2007-04-29 22:36:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30001, 90, 2, 9337, 2.99, '2007-04-30 16:30:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30002, 90, 2, 10206, 7.99, '2007-04-30 23:21:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30003, 91, 2, 3802, 0.99, '2007-04-06 13:34:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30004, 91, 2, 4103, 2.99, '2007-04-07 04:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30005, 91, 1, 4245, 4.99, '2007-04-07 12:16:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30006, 91, 1, 4321, 4.99, '2007-04-07 16:21:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30007, 91, 1, 4673, 4.99, '2007-04-08 08:44:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30008, 91, 2, 5025, 4.99, '2007-04-09 00:56:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30009, 91, 2, 5187, 1.99, '2007-04-09 08:48:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30010, 91, 2, 5701, 0.99, '2007-04-10 08:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30011, 91, 1, 6078, 4.99, '2007-04-11 03:35:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30012, 91, 1, 6178, 2.99, '2007-04-11 09:27:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30013, 91, 2, 6860, 2.99, '2007-04-12 18:22:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30014, 91, 2, 7143, 0.99, '2007-04-27 05:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30015, 91, 2, 7637, 0.99, '2007-04-27 23:40:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30016, 91, 1, 7966, 4.99, '2007-04-28 12:22:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30017, 91, 1, 8313, 0.99, '2007-04-29 02:02:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30018, 91, 2, 8873, 0.99, '2007-04-29 22:42:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30019, 91, 2, 9228, 2.99, '2007-04-30 12:05:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30020, 91, 2, 9396, 4.99, '2007-04-30 18:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30021, 91, 2, 10008, 4.99, '2007-04-30 16:28:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30022, 92, 2, 3595, 8.99, '2007-04-06 03:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30023, 92, 2, 3716, 7.99, '2007-04-06 09:20:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30024, 92, 1, 4360, 2.99, '2007-04-07 17:59:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30025, 92, 2, 4828, 4.99, '2007-04-08 16:20:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30026, 92, 2, 5497, 5.99, '2007-04-09 22:51:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30027, 92, 2, 5620, 7.99, '2007-04-10 03:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30028, 92, 1, 5792, 6.99, '2007-04-10 12:50:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30029, 92, 2, 5919, 2.99, '2007-04-10 20:00:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30030, 92, 1, 6158, 0.99, '2007-04-11 08:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30031, 92, 2, 6277, 6.99, '2007-04-11 14:47:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30032, 92, 1, 7073, 4.99, '2007-04-27 02:31:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30033, 92, 1, 7832, 1.99, '2007-04-28 07:14:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30034, 92, 1, 8494, 4.99, '2007-04-29 07:32:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30035, 92, 1, 8938, 4.99, '2007-04-30 01:24:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30036, 92, 1, 9240, 4.99, '2007-04-30 12:26:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30037, 93, 1, 4733, 2.99, '2007-04-08 11:40:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30038, 93, 2, 5130, 4.99, '2007-04-09 05:58:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30039, 93, 2, 6287, 4.99, '2007-04-11 15:28:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30040, 93, 1, 6586, 4.99, '2007-04-12 05:24:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30041, 93, 1, 7301, 2.99, '2007-04-27 11:18:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30042, 93, 1, 8233, 0.99, '2007-04-28 22:44:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30043, 94, 2, 4044, 0.99, '2007-04-07 01:50:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30044, 94, 1, 4287, 8.99, '2007-04-07 14:05:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30045, 94, 2, 5719, 4.99, '2007-04-10 09:36:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30046, 94, 2, 5970, 4.99, '2007-04-10 22:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30047, 94, 2, 7809, 2.99, '2007-04-28 06:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30048, 94, 2, 7979, 0.99, '2007-04-28 12:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30049, 94, 1, 9605, 4.99, '2007-04-30 02:18:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30050, 95, 1, 3633, 1.99, '2007-04-06 05:11:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30051, 95, 2, 4000, 4.99, '2007-04-06 22:27:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30052, 95, 1, 4835, 5.99, '2007-04-08 16:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30053, 95, 2, 7245, 5.99, '2007-04-27 08:57:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30054, 95, 1, 7471, 4.99, '2007-04-27 17:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30055, 95, 1, 9222, 6.99, '2007-04-30 11:49:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30056, 95, 1, 9695, 6.99, '2007-04-30 05:41:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30057, 95, 1, 9951, 4.99, '2007-04-30 14:19:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30058, 95, 1, 10130, 0.99, '2007-04-30 20:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30059, 96, 1, 3720, 2.99, '2007-04-06 09:35:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30060, 96, 2, 3742, 2.99, '2007-04-06 10:30:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30061, 96, 1, 4961, 4.99, '2007-04-08 22:04:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30062, 96, 1, 5558, 0.99, '2007-04-10 01:40:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30063, 96, 1, 5678, 4.99, '2007-04-10 07:11:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30064, 96, 1, 5696, 2.99, '2007-04-10 08:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30065, 96, 2, 8125, 4.99, '2007-04-28 18:00:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30066, 96, 1, 8437, 6.99, '2007-04-29 05:52:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30067, 96, 2, 9093, 3.99, '2007-04-30 07:01:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30068, 96, 1, 9315, 4.99, '2007-04-30 15:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30069, 96, 1, 9662, 3.99, '2007-04-30 04:38:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30070, 96, 2, 10031, 4.99, '2007-04-30 17:08:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30071, 97, 1, 3540, 2.99, '2007-04-06 00:15:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30072, 97, 2, 3565, 0.99, '2007-04-06 01:31:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30073, 97, 2, 3818, 4.99, '2007-04-06 14:01:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30074, 97, 2, 4312, 4.99, '2007-04-07 16:03:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30075, 97, 1, 4508, 4.99, '2007-04-08 00:57:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30076, 97, 2, 5454, 4.99, '2007-04-09 20:52:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30077, 97, 1, 6544, 0.99, '2007-04-12 03:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30078, 97, 1, 6726, 0.99, '2007-04-12 12:16:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30079, 97, 2, 7182, 5.99, '2007-04-27 06:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30080, 97, 2, 7924, 0.99, '2007-04-28 10:37:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30081, 97, 2, 8438, 2.99, '2007-04-29 05:54:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30082, 97, 1, 9591, 4.99, '2007-04-30 01:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30083, 98, 2, 3682, 7.99, '2007-04-06 07:51:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30084, 98, 1, 4549, 4.99, '2007-04-08 02:53:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30085, 98, 2, 6951, 2.99, '2007-04-26 22:15:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30086, 98, 2, 7120, 3.99, '2007-04-27 04:25:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30087, 98, 1, 7530, 0.99, '2007-04-27 19:47:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30088, 98, 1, 8324, 5.99, '2007-04-29 02:24:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30089, 98, 2, 8622, 4.99, '2007-04-29 12:21:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30090, 98, 2, 8818, 5.99, '2007-04-29 20:42:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30091, 98, 1, 9753, 2.99, '2007-04-30 07:51:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30092, 99, 2, 3780, 6.99, '2007-04-06 12:20:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30093, 99, 2, 4170, 2.99, '2007-04-07 08:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30094, 99, 2, 4344, 4.99, '2007-04-07 17:19:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30095, 99, 1, 4589, 0.99, '2007-04-08 04:54:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30096, 99, 2, 4800, 4.99, '2007-04-08 15:19:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30097, 99, 2, 4954, 2.99, '2007-04-08 21:42:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30098, 99, 2, 5035, 2.99, '2007-04-09 01:20:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30099, 99, 1, 5748, 2.99, '2007-04-10 10:48:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30100, 99, 1, 6289, 2.99, '2007-04-11 15:35:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30101, 99, 1, 6370, 3.99, '2007-04-11 19:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30102, 99, 2, 6662, 4.99, '2007-04-12 09:49:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30103, 99, 1, 7039, 4.99, '2007-04-27 01:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30104, 99, 1, 8072, 0.99, '2007-04-28 15:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30105, 99, 2, 8242, 7.99, '2007-04-28 23:02:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30106, 99, 2, 8514, 0.99, '2007-04-29 08:21:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30107, 100, 2, 3602, 5.99, '2007-04-06 03:51:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30108, 100, 1, 3800, 8.99, '2007-04-06 13:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30109, 100, 1, 4209, 2.99, '2007-04-07 10:03:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30110, 100, 1, 4970, 8.99, '2007-04-08 22:22:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30111, 100, 2, 4980, 6.99, '2007-04-08 22:55:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30112, 100, 2, 5238, 4.99, '2007-04-09 11:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30113, 100, 2, 5355, 6.99, '2007-04-09 16:35:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30114, 100, 1, 6655, 4.99, '2007-04-12 09:36:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30115, 100, 2, 7819, 4.99, '2007-04-28 06:55:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30116, 100, 1, 7921, 1.99, '2007-04-28 10:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30117, 100, 2, 8203, 0.99, '2007-04-28 21:43:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30118, 100, 2, 9048, 5.99, '2007-04-30 05:25:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30119, 100, 1, 9271, 4.99, '2007-04-30 13:32:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30120, 101, 1, 4975, 2.99, '2007-04-08 22:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30121, 101, 2, 5100, 2.99, '2007-04-09 04:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30122, 101, 1, 5132, 5.99, '2007-04-09 06:08:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30123, 101, 2, 5198, 2.99, '2007-04-09 09:17:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30124, 101, 1, 5757, 2.99, '2007-04-10 11:08:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30125, 101, 2, 6433, 5.99, '2007-04-11 22:40:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30126, 101, 2, 7112, 5.99, '2007-04-27 04:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30127, 101, 2, 7866, 8.99, '2007-04-28 08:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30128, 101, 1, 8301, 0.99, '2007-04-29 01:28:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30129, 101, 2, 8825, 1.99, '2007-04-29 20:52:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30130, 101, 2, 8833, 4.99, '2007-04-29 21:08:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30131, 101, 2, 9965, 6.99, '2007-04-30 14:47:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30132, 101, 2, 10218, 0.99, '2007-04-30 23:38:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30133, 102, 2, 3520, 1.99, '2007-04-05 23:26:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30134, 102, 2, 3630, 1.99, '2007-04-06 04:55:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30135, 102, 2, 3665, 4.99, '2007-04-06 06:51:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30136, 102, 1, 4089, 6.99, '2007-04-07 04:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30137, 102, 2, 4777, 3.99, '2007-04-08 14:17:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30138, 102, 1, 4997, 6.99, '2007-04-08 23:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30139, 102, 1, 5009, 5.99, '2007-04-09 00:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30140, 102, 1, 5109, 4.99, '2007-04-09 05:17:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30141, 102, 2, 5509, 5.99, '2007-04-09 23:23:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30142, 102, 1, 5716, 2.99, '2007-04-10 09:27:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30143, 102, 2, 6434, 5.99, '2007-04-11 22:42:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30144, 102, 2, 7119, 0.99, '2007-04-27 04:23:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30145, 102, 2, 7247, 0.99, '2007-04-27 09:01:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30146, 102, 2, 7439, 6.99, '2007-04-27 16:10:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30147, 102, 1, 8186, 0.99, '2007-04-28 20:58:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30148, 102, 1, 8664, 5.99, '2007-04-29 14:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30149, 102, 2, 9151, 3.99, '2007-04-30 09:19:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30150, 102, 1, 9192, 2.99, '2007-04-30 10:54:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30151, 102, 2, 9295, 0.99, '2007-04-30 14:47:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30152, 102, 2, 9617, 2.99, '2007-04-30 02:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30153, 102, 1, 9780, 4.99, '2007-04-30 08:38:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30154, 103, 2, 3750, 6.99, '2007-04-06 10:47:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30155, 103, 1, 3850, 4.99, '2007-04-06 15:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30156, 103, 2, 4040, 6.99, '2007-04-07 01:31:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30157, 103, 1, 4213, 2.99, '2007-04-07 10:22:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30158, 103, 1, 4357, 1.99, '2007-04-07 17:53:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30159, 103, 2, 4872, 4.99, '2007-04-08 17:51:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30160, 103, 2, 5163, 4.99, '2007-04-09 07:28:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30161, 103, 1, 6525, 5.99, '2007-04-12 02:45:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30162, 103, 2, 6697, 6.99, '2007-04-12 11:13:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30163, 103, 2, 6949, 2.99, '2007-04-26 22:12:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30164, 103, 1, 7310, 0.99, '2007-04-27 11:29:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30165, 103, 2, 7472, 6.99, '2007-04-27 17:32:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30166, 103, 1, 8302, 0.99, '2007-04-29 01:29:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30167, 103, 1, 8520, 4.99, '2007-04-29 08:38:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30168, 103, 2, 9390, 4.99, '2007-04-30 18:10:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30169, 104, 2, 4012, 4.99, '2007-04-06 23:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30170, 104, 2, 4438, 6.99, '2007-04-07 21:24:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30171, 104, 2, 4520, 4.99, '2007-04-08 01:22:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30172, 104, 1, 4529, 7.99, '2007-04-08 01:54:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30173, 104, 1, 4917, 2.99, '2007-04-08 20:00:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30174, 104, 1, 5376, 1.99, '2007-04-09 17:22:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30175, 104, 2, 7107, 2.99, '2007-04-27 03:50:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30176, 104, 1, 8413, 1.99, '2007-04-29 05:16:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30177, 104, 1, 9090, 3.99, '2007-04-30 06:53:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30178, 104, 2, 9996, 5.99, '2007-04-30 16:00:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30179, 105, 2, 5261, 4.99, '2007-04-09 12:35:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30180, 105, 1, 5429, 4.99, '2007-04-09 19:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30181, 105, 2, 5542, 2.99, '2007-04-10 01:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30182, 105, 2, 5677, 4.99, '2007-04-10 07:09:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30183, 105, 2, 6546, 4.99, '2007-04-12 03:25:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30184, 105, 1, 7442, 2.99, '2007-04-27 16:15:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30185, 105, 2, 8980, 2.99, '2007-04-30 02:50:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30186, 105, 2, 9124, 3.99, '2007-04-30 08:11:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30187, 105, 2, 9198, 5.99, '2007-04-30 11:05:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30188, 105, 2, 9210, 9.99, '2007-04-30 11:25:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30189, 106, 1, 4229, 4.99, '2007-04-07 11:11:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30190, 106, 2, 4277, 2.99, '2007-04-07 13:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30191, 106, 1, 4665, 3.99, '2007-04-08 08:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30192, 106, 2, 5453, 3.99, '2007-04-09 20:52:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30193, 106, 2, 6992, 0.99, '2007-04-26 23:33:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30194, 106, 1, 7224, 3.99, '2007-04-27 08:12:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30195, 106, 1, 7483, 4.99, '2007-04-27 17:53:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30196, 106, 1, 8115, 4.99, '2007-04-28 17:42:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30197, 106, 2, 9072, 2.99, '2007-04-30 06:14:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30198, 106, 2, 9747, 7.99, '2007-04-30 07:45:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30199, 106, 2, 10213, 8.99, '2007-04-30 23:31:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30200, 107, 2, 3824, 6.99, '2007-04-06 14:11:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30201, 107, 2, 5311, 4.99, '2007-04-09 14:31:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30202, 107, 2, 5575, 2.99, '2007-04-10 02:24:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30203, 107, 2, 5798, 3.99, '2007-04-10 13:13:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30204, 107, 2, 6131, 2.99, '2007-04-11 06:50:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30205, 107, 2, 6133, 0.99, '2007-04-11 06:53:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30206, 107, 1, 6811, 5.99, '2007-04-12 16:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30207, 107, 2, 6934, 6.99, '2007-04-26 21:39:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30208, 107, 2, 7447, 4.99, '2007-04-27 16:30:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30209, 107, 1, 7600, 7.99, '2007-04-27 22:09:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30210, 107, 1, 8162, 4.99, '2007-04-28 19:40:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30211, 107, 2, 8704, 1.99, '2007-04-29 15:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30212, 107, 1, 9155, 2.99, '2007-04-30 09:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30213, 107, 2, 9351, 2.99, '2007-04-30 16:56:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30214, 108, 1, 3875, 0.99, '2007-04-06 16:44:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30215, 108, 2, 4082, 2.99, '2007-04-07 03:40:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30216, 108, 1, 4303, 1.99, '2007-04-07 15:25:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30217, 108, 1, 4650, 4.99, '2007-04-08 08:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30218, 108, 1, 4754, 0.99, '2007-04-08 12:48:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30219, 108, 2, 5274, 6.99, '2007-04-09 13:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30220, 108, 1, 5661, 5.99, '2007-04-10 06:22:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30221, 108, 2, 5806, 4.99, '2007-04-10 13:40:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30222, 108, 1, 6841, 0.99, '2007-04-12 17:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30223, 108, 2, 8329, 5.99, '2007-04-29 02:34:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30224, 108, 2, 8587, 4.99, '2007-04-29 10:47:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30225, 108, 1, 8846, 4.99, '2007-04-29 21:38:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30226, 108, 2, 9755, 4.99, '2007-04-30 07:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30227, 109, 1, 4921, 4.99, '2007-04-08 20:11:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30228, 109, 1, 5027, 2.99, '2007-04-09 01:01:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30229, 109, 2, 5296, 2.99, '2007-04-09 13:54:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30230, 109, 2, 6920, 6.99, '2007-04-12 21:01:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30231, 109, 2, 7145, 0.99, '2007-04-27 05:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30232, 109, 1, 8006, 3.99, '2007-04-28 13:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30233, 109, 1, 9230, 0.99, '2007-04-30 12:08:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30234, 109, 1, 9871, 2.99, '2007-04-30 11:54:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30235, 110, 1, 3587, 4.99, '2007-04-06 02:56:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30236, 110, 1, 4317, 2.99, '2007-04-07 16:13:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30237, 110, 2, 4827, 4.99, '2007-04-08 16:14:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30238, 110, 1, 6160, 4.99, '2007-04-11 08:36:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30239, 110, 1, 7474, 0.99, '2007-04-27 17:35:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30240, 110, 2, 7542, 0.99, '2007-04-27 20:11:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30241, 110, 1, 7570, 2.99, '2007-04-27 21:08:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30242, 111, 2, 3485, 1.99, '2007-04-05 21:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30243, 111, 1, 3551, 3.99, '2007-04-06 01:02:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30244, 111, 2, 3963, 9.99, '2007-04-06 20:47:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30245, 111, 1, 4249, 4.99, '2007-04-07 12:33:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30246, 111, 2, 4286, 0.99, '2007-04-07 14:05:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30247, 111, 1, 6896, 2.99, '2007-04-12 19:54:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30248, 111, 2, 8525, 0.99, '2007-04-29 08:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30249, 111, 2, 9933, 0.99, '2007-04-30 13:53:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30250, 111, 2, 10039, 2.99, '2007-04-30 17:19:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30251, 112, 1, 5351, 4.99, '2007-04-09 16:09:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30252, 112, 1, 5385, 2.99, '2007-04-09 17:46:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30253, 112, 2, 6550, 2.99, '2007-04-12 03:31:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30254, 112, 2, 7691, 4.99, '2007-04-28 01:58:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30255, 112, 2, 7761, 4.99, '2007-04-28 05:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30256, 112, 1, 9217, 4.99, '2007-04-30 11:42:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30257, 112, 2, 9321, 6.99, '2007-04-30 15:48:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30258, 112, 2, 9609, 4.99, '2007-04-30 02:21:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30259, 112, 1, 9830, 5.99, '2007-04-30 10:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30260, 112, 2, 9911, 3.99, '2007-04-30 13:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30261, 112, 1, 10038, 2.99, '2007-04-30 17:17:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30262, 113, 2, 3657, 5.99, '2007-04-06 06:23:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30263, 113, 1, 4333, 2.99, '2007-04-07 17:00:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30264, 113, 2, 5189, 2.99, '2007-04-09 08:51:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30265, 113, 2, 5324, 2.99, '2007-04-09 15:02:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30266, 113, 2, 5655, 4.99, '2007-04-10 05:59:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30267, 113, 1, 5774, 5.99, '2007-04-10 12:00:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30268, 113, 1, 6025, 0.99, '2007-04-11 00:46:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30269, 113, 1, 6836, 0.99, '2007-04-12 17:26:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30270, 113, 2, 7468, 5.99, '2007-04-27 17:20:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30271, 113, 2, 7587, 2.99, '2007-04-27 21:51:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30272, 113, 2, 9221, 6.99, '2007-04-30 11:48:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30273, 113, 2, 10181, 4.99, '2007-04-30 22:29:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30274, 114, 1, 3484, 4.99, '2007-04-05 21:51:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30275, 114, 1, 3924, 2.99, '2007-04-06 19:06:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30276, 114, 1, 4025, 0.99, '2007-04-07 00:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30277, 114, 1, 5418, 0.99, '2007-04-09 19:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30278, 114, 2, 5624, 4.99, '2007-04-10 04:11:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30279, 114, 1, 5625, 2.99, '2007-04-10 04:12:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30280, 114, 1, 6188, 2.99, '2007-04-11 10:00:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30281, 114, 1, 6754, 4.99, '2007-04-12 13:27:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30282, 114, 2, 7316, 2.99, '2007-04-27 11:47:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30283, 114, 2, 7462, 2.99, '2007-04-27 17:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30284, 114, 2, 7565, 2.99, '2007-04-27 21:02:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30285, 114, 2, 7938, 5.99, '2007-04-28 11:07:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30286, 114, 2, 8496, 4.99, '2007-04-29 07:33:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30287, 114, 1, 8590, 10.99, '2007-04-29 11:00:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30288, 114, 1, 9717, 4.99, '2007-04-30 06:53:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30289, 115, 2, 3544, 0.99, '2007-04-06 00:34:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30290, 115, 1, 3624, 0.99, '2007-04-06 04:34:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30291, 115, 1, 4780, 1.99, '2007-04-08 14:35:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30292, 115, 1, 5245, 4.99, '2007-04-09 11:52:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30293, 115, 1, 6080, 2.99, '2007-04-11 03:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30294, 115, 2, 6113, 2.99, '2007-04-11 05:59:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30295, 115, 1, 6373, 0.99, '2007-04-11 20:03:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30296, 115, 1, 6574, 5.99, '2007-04-12 04:32:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30297, 115, 1, 6798, 6.99, '2007-04-12 15:17:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30298, 115, 2, 7355, 1.99, '2007-04-27 13:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30299, 115, 2, 7465, 4.99, '2007-04-27 17:18:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30300, 115, 1, 7983, 4.99, '2007-04-28 12:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30301, 115, 1, 8594, 4.99, '2007-04-29 11:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30302, 115, 2, 9578, 0.99, '2007-04-30 01:22:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30303, 115, 2, 10022, 3.99, '2007-04-30 16:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30304, 116, 2, 3908, 6.99, '2007-04-06 18:15:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30305, 116, 2, 3940, 2.99, '2007-04-06 19:45:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30306, 116, 1, 4027, 0.99, '2007-04-07 00:47:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30307, 116, 2, 4737, 4.99, '2007-04-08 11:52:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30308, 116, 2, 5169, 2.99, '2007-04-09 07:50:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30309, 116, 1, 6557, 4.99, '2007-04-12 03:40:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30310, 116, 1, 7238, 0.99, '2007-04-27 08:42:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30311, 116, 2, 7763, 5.99, '2007-04-28 05:03:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30312, 116, 2, 9245, 6.99, '2007-04-30 12:36:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30313, 116, 1, 9562, 3.99, '2007-04-30 00:51:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30314, 117, 2, 5506, 5.99, '2007-04-09 23:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30315, 117, 1, 5673, 0.99, '2007-04-10 06:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30316, 117, 1, 6093, 9.99, '2007-04-11 04:21:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30317, 117, 1, 6449, 6.99, '2007-04-11 23:17:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30318, 117, 1, 8687, 2.99, '2007-04-29 14:47:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30319, 118, 1, 4966, 0.99, '2007-04-08 22:15:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30320, 118, 1, 5829, 1.99, '2007-04-10 14:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30321, 118, 1, 6377, 0.99, '2007-04-11 20:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30322, 118, 1, 6507, 1.99, '2007-04-12 02:01:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30323, 118, 1, 7196, 2.99, '2007-04-27 07:17:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30324, 118, 1, 7850, 4.99, '2007-04-28 07:59:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30325, 118, 2, 7956, 4.99, '2007-04-28 12:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30326, 118, 1, 8314, 3.99, '2007-04-29 02:03:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30327, 118, 2, 8760, 7.99, '2007-04-29 17:51:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30328, 118, 1, 8881, 4.99, '2007-04-29 22:50:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30329, 118, 2, 10045, 1.99, '2007-04-30 17:33:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30330, 119, 2, 4840, 8.99, '2007-04-08 16:46:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30331, 119, 1, 5176, 5.99, '2007-04-09 08:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30332, 119, 1, 5268, 0.99, '2007-04-09 12:51:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30333, 119, 1, 6079, 7.99, '2007-04-11 03:35:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30334, 119, 2, 6330, 0.99, '2007-04-11 17:44:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30335, 119, 2, 8140, 4.99, '2007-04-28 18:46:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30336, 119, 1, 8183, 5.99, '2007-04-28 20:49:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30337, 119, 1, 8304, 4.99, '2007-04-29 01:36:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30338, 119, 2, 9028, 2.99, '2007-04-30 04:29:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30339, 119, 1, 10101, 0.99, '2007-04-30 19:15:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30340, 120, 1, 4001, 5.99, '2007-04-06 22:35:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30341, 120, 2, 4272, 3.99, '2007-04-07 13:07:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30342, 120, 2, 4342, 0.99, '2007-04-07 17:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30343, 120, 2, 4666, 9.99, '2007-04-08 08:33:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30344, 120, 1, 4942, 1.99, '2007-04-08 21:11:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30345, 120, 2, 5288, 1.99, '2007-04-09 13:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30346, 120, 2, 6503, 0.99, '2007-04-12 01:46:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30347, 120, 1, 6989, 4.99, '2007-04-26 23:29:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30348, 120, 2, 8046, 0.99, '2007-04-28 15:18:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30349, 120, 2, 8756, 1.99, '2007-04-29 17:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30350, 120, 1, 8998, 6.99, '2007-04-30 03:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30351, 120, 2, 9907, 6.99, '2007-04-30 13:08:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30352, 120, 2, 10161, 0.99, '2007-04-30 21:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30353, 121, 2, 5670, 0.99, '2007-04-10 06:43:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30354, 121, 2, 6780, 4.99, '2007-04-12 14:46:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30355, 121, 2, 7114, 0.99, '2007-04-27 04:10:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30356, 121, 1, 7185, 0.99, '2007-04-27 06:52:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30357, 121, 2, 7298, 2.99, '2007-04-27 11:13:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30358, 121, 1, 8370, 6.99, '2007-04-29 03:44:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30359, 121, 2, 8788, 1.99, '2007-04-29 19:15:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30360, 121, 2, 8875, 2.99, '2007-04-29 22:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30361, 121, 2, 8969, 8.99, '2007-04-30 02:28:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30362, 122, 1, 3778, 2.99, '2007-04-06 12:13:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30363, 122, 2, 3986, 4.99, '2007-04-06 21:53:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30364, 122, 1, 4239, 7.99, '2007-04-07 11:51:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30365, 122, 1, 4568, 4.99, '2007-04-08 03:52:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30366, 122, 2, 5235, 6.99, '2007-04-09 11:22:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30367, 122, 2, 6231, 0.99, '2007-04-11 12:31:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30368, 122, 1, 6427, 0.99, '2007-04-11 22:26:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30369, 122, 1, 6436, 0.99, '2007-04-11 22:47:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30370, 122, 2, 6974, 7.99, '2007-04-26 23:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30371, 122, 1, 7267, 2.99, '2007-04-27 09:51:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30372, 122, 2, 7950, 4.99, '2007-04-28 11:49:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30373, 122, 1, 8077, 2.99, '2007-04-28 16:23:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30374, 122, 2, 8177, 0.99, '2007-04-28 20:12:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30375, 122, 1, 8772, 5.99, '2007-04-29 18:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30376, 122, 2, 9910, 4.99, '2007-04-30 13:16:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30377, 123, 1, 4442, 3.99, '2007-04-07 21:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30378, 123, 1, 4860, 8.99, '2007-04-08 17:22:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30379, 123, 2, 7535, 4.99, '2007-04-27 20:01:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30380, 123, 1, 7727, 2.99, '2007-04-28 03:21:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30381, 123, 2, 7768, 0.99, '2007-04-28 05:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30382, 123, 1, 7852, 2.99, '2007-04-28 08:02:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30383, 123, 1, 7969, 5.99, '2007-04-28 12:26:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30384, 123, 2, 8699, 4.99, '2007-04-29 15:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30385, 123, 2, 9529, 4.99, '2007-04-30 23:33:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30386, 123, 1, 10066, 4.99, '2007-04-30 17:58:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30387, 124, 1, 4341, 7.99, '2007-04-07 17:12:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30388, 124, 2, 4709, 2.99, '2007-04-08 10:33:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30389, 124, 1, 5566, 2.99, '2007-04-10 01:58:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30390, 124, 1, 6411, 2.99, '2007-04-11 21:39:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30391, 124, 1, 7519, 6.99, '2007-04-27 19:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30392, 124, 2, 7700, 8.99, '2007-04-28 02:22:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30393, 124, 2, 8524, 0.99, '2007-04-29 08:48:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30394, 124, 1, 9986, 3.99, '2007-04-30 15:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30395, 125, 1, 3617, 4.99, '2007-04-06 04:26:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30396, 125, 1, 5200, 2.99, '2007-04-09 09:20:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30397, 125, 2, 5523, 7.99, '2007-04-10 00:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30398, 125, 1, 6055, 0.99, '2007-04-11 02:27:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30399, 125, 2, 6268, 6.99, '2007-04-11 14:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30400, 125, 1, 7323, 4.99, '2007-04-27 12:08:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30401, 125, 2, 7879, 0.99, '2007-04-28 08:56:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30402, 125, 2, 7922, 0.99, '2007-04-28 10:33:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30403, 125, 2, 8375, 2.99, '2007-04-29 03:53:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30404, 125, 1, 8433, 2.99, '2007-04-29 05:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30405, 125, 1, 8832, 4.99, '2007-04-29 21:06:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30406, 125, 1, 9129, 9.99, '2007-04-30 08:19:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30407, 125, 1, 9496, 4.99, '2007-04-30 22:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30408, 125, 2, 9504, 0.99, '2007-04-30 22:37:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30409, 125, 1, 9722, 4.99, '2007-04-30 06:58:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30410, 125, 2, 9734, 2.99, '2007-04-30 07:26:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30411, 126, 2, 3502, 5.99, '2007-04-05 22:43:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30412, 126, 1, 3725, 4.99, '2007-04-06 09:43:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30413, 126, 1, 3804, 7.99, '2007-04-06 13:36:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30414, 126, 1, 4691, 0.99, '2007-04-08 09:33:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30415, 126, 2, 4730, 2.99, '2007-04-08 11:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30416, 126, 2, 5137, 0.99, '2007-04-09 06:29:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30417, 126, 1, 5865, 0.99, '2007-04-10 16:59:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30418, 126, 1, 6747, 0.99, '2007-04-12 13:01:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30419, 126, 2, 6755, 6.99, '2007-04-12 13:36:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30420, 126, 1, 7962, 0.99, '2007-04-28 12:16:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30421, 126, 1, 8091, 2.99, '2007-04-28 16:55:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30422, 126, 1, 9492, 6.99, '2007-04-30 22:20:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30423, 126, 2, 10032, 4.99, '2007-04-30 17:10:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30424, 127, 1, 4652, 5.99, '2007-04-08 08:16:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30425, 127, 2, 4811, 5.99, '2007-04-08 15:32:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30426, 127, 2, 5499, 2.99, '2007-04-09 22:56:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30427, 127, 2, 5983, 2.99, '2007-04-10 23:02:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30428, 127, 1, 7912, 4.99, '2007-04-28 10:15:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30429, 127, 2, 8209, 6.99, '2007-04-28 21:57:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30430, 127, 1, 9859, 6.99, '2007-04-30 11:31:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30431, 127, 1, 10197, 2.99, '2007-04-30 23:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30432, 128, 1, 3751, 0.99, '2007-04-06 10:52:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30433, 128, 2, 3995, 5.99, '2007-04-06 22:11:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30434, 128, 1, 5270, 2.99, '2007-04-09 12:52:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30435, 128, 1, 5647, 4.99, '2007-04-10 05:37:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30436, 128, 2, 5997, 4.99, '2007-04-10 23:48:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30437, 128, 2, 6186, 2.99, '2007-04-11 09:55:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30438, 128, 2, 6481, 6.99, '2007-04-12 00:18:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30439, 128, 2, 6687, 2.99, '2007-04-12 10:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30440, 128, 2, 7582, 4.99, '2007-04-27 21:43:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30441, 128, 2, 8415, 2.99, '2007-04-29 05:20:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30442, 128, 2, 9215, 5.99, '2007-04-30 11:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30443, 128, 2, 9234, 2.99, '2007-04-30 12:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30444, 128, 1, 9433, 5.99, '2007-04-30 19:56:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30445, 128, 2, 9858, 2.99, '2007-04-30 11:30:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30446, 128, 1, 9952, 3.99, '2007-04-30 14:21:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30447, 128, 1, 10011, 2.99, '2007-04-30 16:31:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30448, 129, 1, 3689, 0.99, '2007-04-06 08:11:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30449, 129, 2, 3900, 4.99, '2007-04-06 17:49:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30450, 129, 2, 3936, 0.99, '2007-04-06 19:43:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30451, 129, 2, 4256, 2.99, '2007-04-07 12:43:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30452, 129, 1, 4602, 0.99, '2007-04-08 05:21:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30453, 129, 1, 4896, 2.99, '2007-04-08 18:51:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30454, 129, 1, 4996, 0.99, '2007-04-08 23:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30455, 129, 1, 5127, 0.99, '2007-04-09 05:54:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30456, 129, 2, 5350, 4.99, '2007-04-09 16:07:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30457, 129, 1, 8339, 4.99, '2007-04-29 03:09:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30458, 129, 1, 8345, 2.99, '2007-04-29 03:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30459, 129, 2, 9823, 4.99, '2007-04-30 10:17:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30460, 129, 1, 9983, 7.99, '2007-04-30 15:38:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30461, 129, 1, 10024, 7.99, '2007-04-30 16:55:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30462, 129, 2, 10167, 5.99, '2007-04-30 21:52:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30463, 130, 2, 4339, 4.99, '2007-04-07 17:10:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30464, 130, 2, 4485, 4.99, '2007-04-07 23:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30465, 130, 1, 6353, 3.99, '2007-04-11 19:17:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30466, 130, 1, 7181, 4.99, '2007-04-27 06:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30467, 130, 1, 7728, 0.99, '2007-04-28 03:24:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30468, 130, 1, 9452, 0.99, '2007-04-30 20:47:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30469, 130, 2, 9637, 4.99, '2007-04-30 03:47:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30470, 130, 2, 9724, 5.99, '2007-04-30 07:01:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30471, 131, 1, 3515, 2.99, '2007-04-05 23:17:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30472, 131, 1, 5233, 4.99, '2007-04-09 11:12:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30473, 131, 1, 5395, 4.99, '2007-04-09 18:11:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30474, 131, 1, 5610, 2.99, '2007-04-10 03:38:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30475, 131, 2, 5726, 2.99, '2007-04-10 09:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30476, 131, 1, 5874, 3.99, '2007-04-10 17:31:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30477, 131, 1, 7557, 2.99, '2007-04-27 20:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30478, 131, 2, 8071, 0.99, '2007-04-28 15:56:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30479, 131, 1, 8267, 6.99, '2007-04-28 23:49:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30480, 131, 1, 8570, 8.99, '2007-04-29 10:08:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30481, 131, 1, 9323, 3.99, '2007-04-30 15:50:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30482, 131, 1, 10179, 2.99, '2007-04-30 22:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30483, 132, 1, 3706, 0.99, '2007-04-06 08:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30484, 132, 2, 3825, 2.99, '2007-04-06 14:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30485, 132, 1, 4168, 4.99, '2007-04-07 08:05:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30486, 132, 1, 4534, 4.99, '2007-04-08 02:05:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30487, 132, 1, 4557, 5.99, '2007-04-08 03:17:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30488, 132, 2, 4903, 0.99, '2007-04-08 19:18:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30489, 132, 1, 5391, 2.99, '2007-04-09 17:57:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30490, 132, 2, 5684, 5.99, '2007-04-10 07:27:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30491, 132, 1, 5703, 0.99, '2007-04-10 08:32:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30492, 132, 2, 5715, 1.99, '2007-04-10 09:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30493, 132, 1, 6239, 6.99, '2007-04-11 12:49:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30494, 132, 1, 6978, 1.99, '2007-04-26 23:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30495, 132, 2, 7432, 0.99, '2007-04-27 16:00:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30496, 132, 1, 7631, 1.99, '2007-04-27 23:29:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30497, 133, 2, 4506, 6.99, '2007-04-08 00:50:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30498, 133, 2, 4566, 2.99, '2007-04-08 03:47:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30499, 133, 1, 4681, 6.99, '2007-04-08 09:04:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30500, 133, 2, 4829, 2.99, '2007-04-08 16:22:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30501, 133, 2, 5063, 2.99, '2007-04-09 03:05:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30502, 133, 1, 6157, 4.99, '2007-04-11 08:16:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30503, 133, 1, 6609, 3.99, '2007-04-12 06:48:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30504, 133, 1, 7177, 2.99, '2007-04-27 06:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30505, 133, 1, 7400, 0.99, '2007-04-27 14:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30506, 133, 2, 8389, 6.99, '2007-04-29 04:18:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30507, 133, 2, 9139, 2.99, '2007-04-30 08:40:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30508, 133, 1, 9175, 0.99, '2007-04-30 10:16:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30509, 133, 2, 9671, 0.99, '2007-04-30 05:02:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30510, 134, 1, 5315, 4.99, '2007-04-09 14:37:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30511, 134, 2, 6226, 2.99, '2007-04-11 12:16:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30512, 134, 1, 6659, 0.99, '2007-04-12 09:46:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30513, 134, 2, 7516, 2.99, '2007-04-27 19:23:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30514, 134, 2, 7965, 4.99, '2007-04-28 12:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30515, 134, 2, 8650, 1.99, '2007-04-29 13:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30516, 135, 1, 4102, 0.99, '2007-04-07 04:53:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30517, 135, 2, 5054, 7.99, '2007-04-09 02:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30518, 135, 1, 5541, 0.99, '2007-04-10 01:12:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30519, 135, 1, 6117, 3.99, '2007-04-11 06:08:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30520, 135, 1, 6461, 3.99, '2007-04-11 23:42:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30521, 135, 1, 6817, 3.99, '2007-04-12 16:48:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30522, 135, 2, 7297, 4.99, '2007-04-27 11:08:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30523, 135, 1, 7437, 0.99, '2007-04-27 16:07:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30524, 135, 1, 7554, 7.99, '2007-04-27 20:41:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30525, 135, 1, 7734, 0.99, '2007-04-28 03:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30526, 135, 1, 8315, 0.99, '2007-04-29 02:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30527, 135, 2, 8885, 7.99, '2007-04-29 23:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30528, 135, 1, 8987, 6.99, '2007-04-30 03:06:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30529, 135, 2, 10091, 4.99, '2007-04-30 18:51:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30530, 136, 1, 4927, 0.99, '2007-04-08 20:34:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30531, 136, 1, 5627, 3.99, '2007-04-10 04:19:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30532, 136, 2, 6142, 3.99, '2007-04-11 07:22:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30533, 136, 1, 6585, 8.99, '2007-04-12 05:19:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30534, 136, 2, 9319, 0.99, '2007-04-30 15:43:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30535, 136, 2, 9764, 5.99, '2007-04-30 08:11:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30536, 137, 2, 3589, 4.99, '2007-04-06 02:58:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30537, 137, 2, 3676, 5.99, '2007-04-06 07:39:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30538, 137, 2, 3874, 6.99, '2007-04-06 16:34:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30539, 137, 1, 4332, 6.99, '2007-04-07 16:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30540, 137, 2, 4474, 3.99, '2007-04-07 22:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30541, 137, 1, 5106, 2.99, '2007-04-09 05:08:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30542, 137, 1, 5443, 3.99, '2007-04-09 20:24:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30543, 137, 1, 5804, 2.99, '2007-04-10 13:34:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30544, 137, 1, 6039, 6.99, '2007-04-11 01:40:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30545, 137, 2, 6200, 0.99, '2007-04-11 10:45:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30546, 137, 1, 8028, 8.99, '2007-04-28 14:39:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30547, 137, 1, 8106, 4.99, '2007-04-28 17:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30548, 137, 2, 8954, 2.99, '2007-04-30 01:54:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30549, 137, 1, 9002, 4.99, '2007-04-30 03:30:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30550, 137, 2, 9200, 4.99, '2007-04-30 11:08:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30551, 137, 2, 9466, 7.99, '2007-04-30 21:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30552, 137, 1, 9709, 4.99, '2007-04-30 06:33:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30553, 137, 1, 9789, 2.99, '2007-04-30 08:58:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30554, 137, 1, 10175, 6.99, '2007-04-30 22:08:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30555, 138, 2, 3481, 2.99, '2007-04-05 21:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30556, 138, 1, 5378, 0.99, '2007-04-09 17:34:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30557, 138, 1, 5600, 1.99, '2007-04-10 03:24:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30558, 138, 1, 5679, 4.99, '2007-04-10 07:12:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30559, 138, 1, 6458, 2.99, '2007-04-11 23:37:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30560, 138, 1, 6892, 0.99, '2007-04-12 19:38:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30561, 138, 1, 7208, 2.99, '2007-04-27 07:44:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30562, 138, 1, 7754, 2.99, '2007-04-28 04:39:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30563, 138, 2, 8123, 4.99, '2007-04-28 17:56:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30564, 138, 2, 8160, 3.99, '2007-04-28 19:38:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30565, 138, 1, 8424, 3.99, '2007-04-29 05:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30566, 138, 2, 9259, 1.99, '2007-04-30 13:06:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30567, 138, 1, 9619, 0.99, '2007-04-30 02:45:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30568, 138, 1, 9947, 9.99, '2007-04-30 14:18:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30569, 138, 1, 10110, 0.99, '2007-04-30 19:34:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30570, 138, 2, 10190, 4.99, '2007-04-30 22:56:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30571, 139, 2, 4660, 0.99, '2007-04-08 08:23:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30572, 139, 2, 4663, 2.99, '2007-04-08 08:27:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30573, 139, 2, 5092, 2.99, '2007-04-09 04:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30574, 139, 2, 5265, 7.99, '2007-04-09 12:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30575, 139, 1, 5390, 6.99, '2007-04-09 17:54:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30576, 139, 1, 5494, 6.99, '2007-04-09 22:43:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30577, 139, 1, 6496, 6.99, '2007-04-12 01:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30578, 139, 2, 6740, 0.99, '2007-04-12 12:50:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30579, 139, 1, 7369, 0.99, '2007-04-27 13:36:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30580, 139, 2, 7767, 5.99, '2007-04-28 05:10:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30581, 139, 2, 9415, 2.99, '2007-04-30 19:16:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30582, 139, 2, 9920, 4.99, '2007-04-30 13:25:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30583, 140, 1, 6286, 4.99, '2007-04-11 15:24:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30584, 140, 1, 6407, 9.99, '2007-04-11 21:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30585, 140, 2, 6571, 0.99, '2007-04-12 04:20:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30586, 140, 1, 6918, 2.99, '2007-04-12 20:58:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30587, 140, 1, 7170, 4.99, '2007-04-27 06:26:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30588, 140, 1, 9094, 4.99, '2007-04-30 07:03:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30589, 140, 1, 9404, 0.99, '2007-04-30 18:50:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30590, 141, 1, 4057, 1.99, '2007-04-07 02:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30591, 141, 2, 4297, 0.99, '2007-04-07 14:52:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30592, 141, 1, 4656, 5.99, '2007-04-08 08:18:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30593, 141, 2, 5062, 2.99, '2007-04-09 03:05:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30594, 141, 1, 5769, 0.99, '2007-04-10 11:46:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30595, 141, 2, 6979, 4.99, '2007-04-26 23:18:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30596, 141, 2, 7878, 2.99, '2007-04-28 08:55:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30597, 141, 1, 8434, 4.99, '2007-04-29 05:48:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30598, 141, 2, 9073, 7.99, '2007-04-30 06:18:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30599, 141, 1, 9584, 4.99, '2007-04-30 01:34:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30600, 141, 2, 9683, 2.99, '2007-04-30 05:15:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30601, 142, 2, 3492, 2.99, '2007-04-05 22:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30602, 142, 2, 4497, 4.99, '2007-04-08 00:19:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30603, 142, 1, 4531, 4.99, '2007-04-08 01:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30604, 142, 1, 6522, 0.99, '2007-04-12 02:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30605, 142, 1, 7764, 2.99, '2007-04-28 05:08:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30606, 142, 2, 8513, 2.99, '2007-04-29 08:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30607, 142, 2, 8623, 4.99, '2007-04-29 12:23:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30608, 142, 1, 9020, 7.99, '2007-04-30 03:59:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30609, 142, 1, 9131, 2.99, '2007-04-30 08:24:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30610, 142, 1, 9419, 5.99, '2007-04-30 19:33:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30611, 143, 1, 4031, 7.99, '2007-04-07 01:00:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30612, 143, 2, 4221, 0.99, '2007-04-07 10:47:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30613, 143, 1, 4585, 7.99, '2007-04-08 04:40:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30614, 143, 2, 6076, 6.99, '2007-04-11 03:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30615, 143, 2, 6207, 4.99, '2007-04-11 11:02:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30616, 143, 1, 8312, 0.99, '2007-04-29 02:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30617, 143, 1, 8335, 0.99, '2007-04-29 02:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30618, 143, 2, 9889, 1.99, '2007-04-30 12:31:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30619, 143, 1, 10118, 0.99, '2007-04-30 19:44:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30620, 144, 1, 4726, 6.99, '2007-04-08 11:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30621, 144, 2, 4818, 3.99, '2007-04-08 15:46:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30622, 144, 2, 5049, 0.99, '2007-04-09 02:22:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30623, 144, 2, 5374, 8.99, '2007-04-09 17:20:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30624, 144, 2, 5408, 7.99, '2007-04-09 18:45:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30625, 144, 2, 5526, 7.99, '2007-04-10 00:32:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30626, 144, 2, 6614, 7.99, '2007-04-12 07:02:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30627, 144, 2, 6791, 9.99, '2007-04-12 15:03:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30628, 144, 2, 7378, 5.99, '2007-04-27 13:59:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30629, 144, 2, 7566, 2.99, '2007-04-27 21:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30630, 144, 1, 7830, 0.99, '2007-04-28 07:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30631, 144, 1, 7858, 3.99, '2007-04-28 08:18:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30632, 144, 2, 8459, 5.99, '2007-04-29 06:34:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30633, 144, 1, 8983, 0.99, '2007-04-30 02:59:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30634, 144, 1, 9034, 7.99, '2007-04-30 04:39:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30635, 144, 1, 9098, 3.99, '2007-04-30 07:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30636, 144, 2, 9174, 4.99, '2007-04-30 10:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30637, 144, 2, 9714, 0.99, '2007-04-30 06:43:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30638, 145, 1, 3647, 5.99, '2007-04-06 05:57:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30639, 145, 2, 4201, 8.99, '2007-04-07 09:48:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30640, 145, 1, 4364, 4.99, '2007-04-07 18:15:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30641, 145, 2, 4405, 6.99, '2007-04-07 20:01:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30642, 145, 1, 4470, 2.99, '2007-04-07 22:49:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30643, 145, 2, 4817, 2.99, '2007-04-08 15:45:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30644, 145, 2, 6056, 2.99, '2007-04-11 02:29:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30645, 145, 1, 6339, 1.99, '2007-04-11 18:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30646, 145, 2, 6378, 0.99, '2007-04-11 20:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30647, 145, 2, 7061, 2.99, '2007-04-27 02:19:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30648, 145, 1, 7529, 7.99, '2007-04-27 19:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30649, 145, 2, 7954, 0.99, '2007-04-28 11:53:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30650, 145, 1, 8380, 0.99, '2007-04-29 03:59:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30651, 145, 1, 9156, 2.99, '2007-04-30 09:33:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30652, 145, 2, 9576, 0.99, '2007-04-30 01:21:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30653, 146, 1, 4849, 6.99, '2007-04-08 17:03:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30654, 146, 2, 5000, 4.99, '2007-04-08 23:44:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30655, 146, 1, 6102, 7.99, '2007-04-11 05:21:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30656, 146, 2, 6184, 6.99, '2007-04-11 09:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30657, 146, 1, 6327, 4.99, '2007-04-11 17:35:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30658, 146, 1, 6990, 0.99, '2007-04-26 23:31:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30659, 146, 2, 8246, 3.99, '2007-04-28 23:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30660, 147, 2, 3919, 7.99, '2007-04-06 18:54:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30661, 147, 2, 3956, 2.99, '2007-04-06 20:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30662, 147, 2, 4792, 0.99, '2007-04-08 14:58:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30663, 147, 2, 5044, 0.99, '2007-04-09 01:58:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30664, 147, 1, 5567, 2.99, '2007-04-10 02:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30665, 147, 1, 5844, 0.99, '2007-04-10 15:43:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30666, 147, 2, 6343, 0.99, '2007-04-11 18:20:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30667, 147, 2, 6469, 4.99, '2007-04-11 23:57:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30668, 147, 2, 6753, 2.99, '2007-04-12 13:24:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30669, 147, 2, 7044, 0.99, '2007-04-27 01:55:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30670, 147, 1, 7723, 0.99, '2007-04-28 03:14:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30671, 147, 1, 8893, 2.99, '2007-04-29 23:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30672, 147, 2, 9772, 0.99, '2007-04-30 08:24:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30673, 148, 1, 3653, 0.99, '2007-04-06 06:13:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30674, 148, 1, 4080, 0.99, '2007-04-07 03:38:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30675, 148, 1, 4746, 2.99, '2007-04-08 12:16:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30676, 148, 1, 4950, 2.99, '2007-04-08 21:26:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30677, 148, 1, 5034, 4.99, '2007-04-09 01:16:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30678, 148, 1, 5372, 4.99, '2007-04-09 17:17:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30679, 148, 1, 6169, 1.99, '2007-04-11 08:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30680, 148, 1, 6640, 8.99, '2007-04-12 08:55:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30681, 148, 2, 6793, 10.99, '2007-04-12 15:06:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30682, 148, 1, 7656, 0.99, '2007-04-28 00:35:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30683, 148, 2, 7693, 4.99, '2007-04-28 01:59:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30684, 148, 1, 7865, 9.99, '2007-04-28 08:35:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30685, 148, 2, 8111, 4.99, '2007-04-28 17:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30686, 148, 2, 8331, 3.99, '2007-04-29 02:41:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30687, 148, 1, 8394, 4.99, '2007-04-29 04:30:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30688, 148, 2, 8578, 4.99, '2007-04-29 10:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30689, 148, 2, 8626, 4.99, '2007-04-29 12:31:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30690, 148, 1, 9023, 5.99, '2007-04-30 04:05:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30691, 148, 1, 9106, 2.99, '2007-04-30 07:21:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30692, 148, 1, 9530, 1.99, '2007-04-30 23:37:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30693, 148, 1, 9594, 4.99, '2007-04-30 01:52:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30694, 148, 2, 10067, 4.99, '2007-04-30 18:06:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30695, 149, 1, 3894, 2.99, '2007-04-06 17:30:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30696, 149, 1, 3939, 6.99, '2007-04-06 19:44:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30697, 149, 1, 4766, 3.99, '2007-04-08 13:44:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30698, 149, 1, 4837, 0.99, '2007-04-08 16:37:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30699, 149, 1, 5091, 2.99, '2007-04-09 04:21:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30700, 149, 1, 5298, 10.99, '2007-04-09 14:04:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30701, 149, 1, 6356, 4.99, '2007-04-11 19:26:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30702, 149, 2, 6940, 5.99, '2007-04-26 21:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30703, 149, 2, 7559, 4.99, '2007-04-27 20:48:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30704, 149, 1, 7989, 6.99, '2007-04-28 13:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30705, 149, 2, 10154, 2.99, '2007-04-30 20:59:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30706, 150, 1, 4271, 6.99, '2007-04-07 13:07:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30707, 150, 1, 6633, 2.99, '2007-04-12 08:04:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30708, 150, 2, 7690, 4.99, '2007-04-28 01:54:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30709, 150, 1, 9121, 2.99, '2007-04-30 08:04:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30710, 151, 1, 4376, 2.99, '2007-04-07 18:52:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30711, 151, 2, 6720, 0.99, '2007-04-12 12:09:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30712, 151, 2, 6768, 3.99, '2007-04-12 14:16:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30713, 151, 2, 6854, 0.99, '2007-04-12 18:07:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30714, 151, 1, 7189, 0.99, '2007-04-27 07:03:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30715, 151, 2, 7332, 3.99, '2007-04-27 12:27:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30716, 151, 1, 9253, 4.99, '2007-04-30 12:48:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30717, 151, 1, 9890, 4.99, '2007-04-30 12:33:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30718, 151, 1, 9969, 2.99, '2007-04-30 15:06:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30719, 151, 1, 10078, 2.99, '2007-04-30 18:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30720, 152, 2, 3577, 2.99, '2007-04-06 02:09:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30721, 152, 1, 3786, 7.99, '2007-04-06 12:29:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30722, 152, 1, 4974, 4.99, '2007-04-08 22:29:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30723, 152, 1, 6273, 0.99, '2007-04-11 14:37:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30724, 152, 1, 6612, 2.99, '2007-04-12 06:56:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30725, 152, 1, 9010, 5.99, '2007-04-30 03:40:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30726, 153, 1, 3795, 0.99, '2007-04-06 13:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30727, 153, 1, 3949, 0.99, '2007-04-06 20:15:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30728, 153, 1, 4194, 5.99, '2007-04-07 09:28:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30729, 153, 2, 4670, 5.99, '2007-04-08 08:42:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30730, 153, 2, 5676, 0.99, '2007-04-10 07:06:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30731, 153, 2, 5771, 0.99, '2007-04-10 11:55:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30732, 153, 2, 6818, 9.99, '2007-04-12 16:49:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30733, 153, 2, 7824, 7.99, '2007-04-28 07:03:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30734, 153, 2, 9936, 0.99, '2007-04-30 13:56:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30735, 153, 2, 10015, 4.99, '2007-04-30 16:39:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30736, 154, 2, 3806, 7.99, '2007-04-06 13:38:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30737, 154, 2, 3912, 0.99, '2007-04-06 18:38:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30738, 154, 2, 4132, 4.99, '2007-04-07 06:34:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30739, 154, 1, 4252, 2.99, '2007-04-07 12:41:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30740, 154, 1, 4850, 5.99, '2007-04-08 17:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30741, 154, 1, 5101, 0.99, '2007-04-09 04:49:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30742, 154, 2, 5760, 2.99, '2007-04-10 11:13:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30743, 154, 1, 6048, 0.99, '2007-04-11 02:00:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30744, 154, 2, 6993, 4.99, '2007-04-26 23:33:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30745, 154, 1, 7055, 4.99, '2007-04-27 02:14:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30746, 154, 1, 7156, 4.99, '2007-04-27 05:48:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30747, 154, 2, 7900, 1.99, '2007-04-28 09:39:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30748, 154, 2, 8334, 7.99, '2007-04-29 02:46:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30749, 154, 2, 9286, 2.99, '2007-04-30 14:00:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30750, 155, 1, 5128, 1.99, '2007-04-09 05:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30751, 155, 1, 6066, 5.99, '2007-04-11 03:01:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30752, 155, 1, 6085, 4.99, '2007-04-11 03:53:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30753, 155, 2, 6087, 4.99, '2007-04-11 03:57:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30754, 155, 1, 6443, 2.99, '2007-04-11 23:04:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30755, 155, 1, 7077, 3.99, '2007-04-27 02:41:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30756, 155, 1, 7492, 2.99, '2007-04-27 18:22:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30757, 155, 2, 7730, 5.99, '2007-04-28 03:28:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30758, 155, 2, 9781, 7.99, '2007-04-30 08:41:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30759, 155, 1, 10098, 0.99, '2007-04-30 19:09:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30760, 156, 2, 4394, 2.99, '2007-04-07 19:41:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30761, 156, 2, 5534, 4.99, '2007-04-10 00:55:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30762, 156, 1, 5828, 2.99, '2007-04-10 14:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30763, 156, 2, 5908, 0.99, '2007-04-10 19:12:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30764, 156, 2, 6540, 6.99, '2007-04-12 03:19:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30765, 156, 2, 7389, 2.99, '2007-04-27 14:24:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30766, 156, 2, 7822, 4.99, '2007-04-28 07:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30767, 156, 1, 9409, 6.99, '2007-04-30 19:02:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30768, 156, 1, 9696, 0.99, '2007-04-30 05:42:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30769, 157, 1, 3739, 0.99, '2007-04-06 10:22:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30770, 157, 1, 4253, 5.99, '2007-04-07 12:41:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30771, 157, 2, 4435, 3.99, '2007-04-07 21:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30772, 157, 1, 4919, 0.99, '2007-04-08 20:10:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30773, 157, 1, 5862, 4.99, '2007-04-10 16:49:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30774, 157, 1, 7110, 2.99, '2007-04-27 03:59:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30775, 157, 2, 7195, 2.99, '2007-04-27 07:15:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30776, 157, 2, 7499, 4.99, '2007-04-27 18:38:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30777, 157, 2, 8163, 0.99, '2007-04-28 19:40:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30778, 157, 2, 8337, 0.99, '2007-04-29 03:00:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30779, 157, 2, 8347, 0.99, '2007-04-29 03:17:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30780, 157, 2, 8576, 4.99, '2007-04-29 10:23:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30781, 157, 1, 8707, 0.99, '2007-04-29 15:50:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30782, 157, 1, 8827, 4.99, '2007-04-29 20:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30783, 157, 2, 9237, 2.99, '2007-04-30 12:16:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30784, 157, 2, 9264, 4.99, '2007-04-30 13:20:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30785, 157, 1, 9958, 2.99, '2007-04-30 14:32:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30786, 157, 1, 10203, 4.99, '2007-04-30 23:13:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30787, 158, 1, 4117, 8.99, '2007-04-07 05:26:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30788, 158, 1, 5672, 2.99, '2007-04-10 06:48:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30789, 158, 1, 5988, 4.99, '2007-04-10 23:24:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30790, 158, 1, 6416, 2.99, '2007-04-11 21:57:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30791, 158, 2, 6901, 5.99, '2007-04-12 20:14:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30792, 158, 2, 7159, 2.99, '2007-04-27 05:52:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30793, 158, 1, 7732, 0.99, '2007-04-28 03:31:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30794, 158, 2, 7952, 2.99, '2007-04-28 11:52:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30795, 158, 1, 8750, 2.99, '2007-04-29 17:42:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30796, 158, 1, 8957, 1.99, '2007-04-30 02:02:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30797, 158, 1, 9393, 2.99, '2007-04-30 18:33:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30798, 158, 1, 9713, 1.99, '2007-04-30 06:41:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30799, 158, 1, 9801, 2.99, '2007-04-30 09:31:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30800, 159, 2, 3914, 5.99, '2007-04-06 18:39:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30801, 159, 2, 4273, 4.99, '2007-04-07 13:08:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30802, 159, 2, 5656, 0.99, '2007-04-10 05:59:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30803, 159, 2, 6885, 4.99, '2007-04-12 19:24:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30804, 159, 2, 8212, 2.99, '2007-04-28 22:05:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30805, 159, 1, 8470, 0.99, '2007-04-29 06:57:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30806, 159, 2, 9022, 3.99, '2007-04-30 04:03:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30807, 159, 2, 9132, 0.99, '2007-04-30 08:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30808, 159, 1, 9559, 7.99, '2007-04-30 00:44:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30809, 159, 1, 9917, 4.99, '2007-04-30 13:23:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30810, 160, 1, 4842, 0.99, '2007-04-08 16:49:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30811, 160, 1, 4908, 5.99, '2007-04-08 19:34:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30812, 160, 2, 6364, 6.99, '2007-04-11 19:43:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30813, 160, 2, 6448, 1.99, '2007-04-11 23:14:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30814, 160, 2, 7500, 0.99, '2007-04-27 18:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30815, 160, 1, 8184, 4.99, '2007-04-28 20:51:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30816, 160, 1, 9681, 0.99, '2007-04-30 05:10:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30817, 160, 2, 9758, 2.99, '2007-04-30 07:54:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30818, 160, 2, 10089, 2.99, '2007-04-30 18:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30819, 161, 1, 3948, 4.99, '2007-04-06 20:14:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30820, 161, 2, 4187, 0.99, '2007-04-07 09:09:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30821, 161, 2, 4248, 6.99, '2007-04-07 12:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30822, 161, 1, 4490, 2.99, '2007-04-07 23:54:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30823, 161, 2, 5349, 6.99, '2007-04-09 16:04:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30824, 161, 2, 6873, 4.99, '2007-04-12 18:49:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30825, 161, 1, 7003, 2.99, '2007-04-27 00:00:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30826, 161, 2, 8774, 4.99, '2007-04-29 18:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30827, 161, 1, 9135, 4.99, '2007-04-30 08:35:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30828, 161, 2, 9421, 0.99, '2007-04-30 19:36:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30829, 162, 2, 4982, 2.99, '2007-04-08 22:59:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30830, 162, 2, 8478, 4.99, '2007-04-29 07:09:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30831, 162, 1, 8582, 4.99, '2007-04-29 10:31:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30832, 162, 2, 9167, 4.99, '2007-04-30 09:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30833, 162, 1, 9726, 7.99, '2007-04-30 07:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30834, 162, 1, 9775, 0.99, '2007-04-30 08:28:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30835, 162, 2, 10093, 5.99, '2007-04-30 18:58:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30836, 163, 2, 3915, 3.99, '2007-04-06 18:45:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30837, 163, 1, 4126, 1.99, '2007-04-07 05:52:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30838, 163, 2, 5549, 4.99, '2007-04-10 01:26:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30839, 163, 1, 5574, 10.99, '2007-04-10 02:23:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30840, 163, 1, 6109, 0.99, '2007-04-11 05:49:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30841, 163, 1, 6831, 1.99, '2007-04-12 17:12:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30842, 163, 1, 7303, 1.99, '2007-04-27 11:23:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30843, 163, 1, 7403, 2.99, '2007-04-27 14:50:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30844, 163, 2, 8040, 0.99, '2007-04-28 15:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30845, 163, 2, 8063, 4.99, '2007-04-28 15:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30846, 163, 2, 8403, 4.99, '2007-04-29 04:55:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30847, 164, 2, 4548, 4.99, '2007-04-08 02:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30848, 164, 1, 5895, 3.99, '2007-04-10 18:41:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30849, 164, 1, 6393, 0.99, '2007-04-11 20:56:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30850, 164, 2, 6558, 2.99, '2007-04-12 03:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30851, 164, 1, 6637, 4.99, '2007-04-12 08:26:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30852, 164, 2, 6702, 0.99, '2007-04-12 11:16:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30853, 164, 1, 6980, 3.99, '2007-04-26 23:18:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30854, 164, 1, 7227, 6.99, '2007-04-27 08:22:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30855, 164, 2, 8135, 3.99, '2007-04-28 18:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30856, 164, 2, 8824, 4.99, '2007-04-29 20:51:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30857, 165, 2, 3531, 4.99, '2007-04-05 23:52:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30858, 165, 1, 3784, 5.99, '2007-04-06 12:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30859, 165, 2, 4304, 0.99, '2007-04-07 15:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30860, 165, 2, 4945, 2.99, '2007-04-08 21:13:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30861, 165, 1, 5472, 4.99, '2007-04-09 21:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30862, 165, 2, 5658, 4.99, '2007-04-10 06:02:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30863, 165, 2, 5901, 6.99, '2007-04-10 18:50:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30864, 165, 1, 5973, 0.99, '2007-04-10 22:37:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30865, 165, 1, 7074, 2.99, '2007-04-27 02:34:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30866, 165, 1, 8608, 0.99, '2007-04-29 11:47:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30867, 165, 2, 9182, 7.99, '2007-04-30 10:35:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30868, 165, 2, 9685, 4.99, '2007-04-30 05:17:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30869, 166, 2, 3606, 2.99, '2007-04-06 03:56:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30870, 166, 1, 3642, 2.99, '2007-04-06 05:46:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30871, 166, 2, 4389, 6.99, '2007-04-07 19:27:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30872, 166, 1, 4658, 0.99, '2007-04-08 08:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30873, 166, 1, 5184, 4.99, '2007-04-09 08:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30874, 166, 2, 5380, 4.99, '2007-04-09 17:37:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30875, 166, 1, 5646, 2.99, '2007-04-10 05:36:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30876, 166, 1, 5855, 7.99, '2007-04-10 16:22:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30877, 166, 2, 6237, 0.99, '2007-04-11 12:47:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30878, 166, 2, 6882, 2.99, '2007-04-12 19:19:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30879, 166, 1, 7581, 2.99, '2007-04-27 21:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30880, 166, 1, 8052, 5.99, '2007-04-28 15:25:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30881, 166, 1, 9009, 8.99, '2007-04-30 03:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30882, 167, 2, 3518, 4.99, '2007-04-05 23:24:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30883, 167, 2, 4493, 0.99, '2007-04-08 00:08:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30884, 167, 2, 5131, 0.99, '2007-04-09 06:03:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30885, 167, 1, 5178, 4.99, '2007-04-09 08:28:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30886, 167, 1, 5191, 0.99, '2007-04-09 08:55:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30887, 167, 1, 5413, 4.99, '2007-04-09 18:57:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30888, 167, 1, 5781, 2.99, '2007-04-10 12:17:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30889, 167, 2, 6269, 4.99, '2007-04-11 14:27:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30890, 167, 1, 7608, 4.99, '2007-04-27 22:37:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30891, 167, 1, 8092, 2.99, '2007-04-28 16:56:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30892, 167, 2, 8227, 4.99, '2007-04-28 22:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30893, 167, 1, 8318, 2.99, '2007-04-29 02:12:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30894, 167, 1, 8793, 0.99, '2007-04-29 19:25:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30895, 167, 2, 8864, 0.99, '2007-04-29 22:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30896, 167, 2, 9563, 4.99, '2007-04-30 00:57:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30897, 168, 1, 3530, 2.99, '2007-04-05 23:51:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30898, 168, 1, 4308, 5.99, '2007-04-07 15:57:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30899, 168, 2, 4363, 5.99, '2007-04-07 18:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30900, 168, 2, 4953, 2.99, '2007-04-08 21:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30901, 168, 1, 5459, 0.99, '2007-04-09 21:12:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30902, 168, 1, 5907, 5.99, '2007-04-10 19:10:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30903, 168, 1, 6334, 5.99, '2007-04-11 17:49:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30904, 168, 2, 6444, 0.99, '2007-04-11 23:04:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30905, 168, 2, 6809, 3.99, '2007-04-12 16:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30906, 168, 2, 8352, 1.99, '2007-04-29 03:20:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30907, 168, 1, 8527, 1.99, '2007-04-29 08:49:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30908, 168, 2, 8659, 6.99, '2007-04-29 13:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30909, 168, 2, 8883, 1.99, '2007-04-29 22:53:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30910, 168, 2, 9197, 4.99, '2007-04-30 11:00:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30911, 168, 1, 9418, 4.99, '2007-04-30 19:29:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30912, 168, 2, 9857, 6.99, '2007-04-30 11:29:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30913, 168, 2, 9899, 4.99, '2007-04-30 12:41:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30914, 169, 1, 3493, 8.99, '2007-04-05 22:14:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30915, 169, 1, 4687, 4.99, '2007-04-08 09:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30916, 169, 1, 5066, 2.99, '2007-04-09 03:17:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30917, 169, 1, 6143, 3.99, '2007-04-11 07:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30918, 169, 2, 6453, 4.99, '2007-04-11 23:28:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30919, 169, 2, 6488, 9.99, '2007-04-12 00:48:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30920, 169, 2, 7187, 6.99, '2007-04-27 06:56:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30921, 169, 1, 7597, 0.99, '2007-04-27 22:04:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30922, 169, 2, 8558, 4.99, '2007-04-29 09:53:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30923, 169, 2, 9203, 0.99, '2007-04-30 11:12:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30924, 170, 2, 3651, 4.99, '2007-04-06 06:08:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30925, 170, 1, 3749, 4.99, '2007-04-06 10:46:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30926, 170, 2, 4113, 4.99, '2007-04-07 05:18:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30927, 170, 2, 4468, 0.99, '2007-04-07 22:46:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30928, 170, 2, 5075, 0.99, '2007-04-09 03:40:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30929, 170, 1, 5573, 4.99, '2007-04-10 02:19:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30930, 170, 2, 5685, 7.99, '2007-04-10 07:30:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30931, 170, 2, 5808, 2.99, '2007-04-10 13:45:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30932, 170, 1, 7999, 7.99, '2007-04-28 13:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30933, 170, 2, 9517, 2.99, '2007-04-30 23:09:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30934, 170, 1, 9817, 2.99, '2007-04-30 10:01:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30935, 170, 1, 10102, 9.99, '2007-04-30 19:17:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30936, 171, 1, 3621, 0.99, '2007-04-06 04:32:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30937, 171, 2, 3745, 2.99, '2007-04-06 10:38:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30938, 171, 1, 5660, 5.99, '2007-04-10 06:14:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30939, 171, 1, 5986, 4.99, '2007-04-10 23:23:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30940, 171, 1, 6766, 2.99, '2007-04-12 14:00:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30941, 171, 2, 6774, 0.99, '2007-04-12 14:24:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30942, 171, 1, 7037, 3.99, '2007-04-27 01:35:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30943, 171, 2, 9066, 4.99, '2007-04-30 05:57:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30944, 171, 2, 9084, 5.99, '2007-04-30 06:42:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30945, 172, 1, 4820, 5.99, '2007-04-08 15:53:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30946, 172, 1, 4821, 4.99, '2007-04-08 15:56:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30947, 172, 2, 4878, 6.99, '2007-04-08 18:02:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30948, 172, 2, 6246, 7.99, '2007-04-11 13:26:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30949, 172, 1, 6380, 0.99, '2007-04-11 20:24:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30950, 172, 1, 6875, 5.99, '2007-04-12 18:51:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30951, 172, 1, 7122, 6.99, '2007-04-27 04:31:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30952, 172, 1, 7135, 2.99, '2007-04-27 05:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30953, 172, 1, 7194, 3.99, '2007-04-27 07:08:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30954, 172, 2, 7261, 2.99, '2007-04-27 09:43:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30955, 172, 1, 7638, 4.99, '2007-04-27 23:41:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30956, 172, 2, 8944, 6.99, '2007-04-30 01:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30957, 172, 1, 9118, 2.99, '2007-04-30 07:52:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30958, 172, 2, 9218, 5.99, '2007-04-30 11:43:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30959, 173, 2, 3717, 0.99, '2007-04-06 09:22:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30960, 173, 1, 4904, 7.99, '2007-04-08 19:21:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30961, 173, 2, 5430, 2.99, '2007-04-09 19:48:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30962, 173, 2, 5485, 4.99, '2007-04-09 22:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30963, 173, 1, 5488, 2.99, '2007-04-09 22:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30964, 173, 2, 5531, 2.99, '2007-04-10 00:42:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30965, 173, 1, 5615, 3.99, '2007-04-10 03:47:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30966, 173, 2, 6021, 4.99, '2007-04-11 00:38:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30967, 173, 1, 7644, 0.99, '2007-04-27 23:55:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30968, 173, 2, 8299, 2.99, '2007-04-29 01:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30969, 173, 2, 8808, 4.99, '2007-04-29 20:07:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30970, 173, 2, 8829, 8.99, '2007-04-29 21:02:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30971, 173, 1, 9097, 4.99, '2007-04-30 07:09:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30972, 173, 2, 9512, 2.99, '2007-04-30 22:54:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30973, 174, 2, 4803, 1.99, '2007-04-08 15:25:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30974, 174, 2, 5414, 4.99, '2007-04-09 18:58:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30975, 174, 1, 6909, 4.99, '2007-04-12 20:37:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30976, 174, 2, 8348, 7.99, '2007-04-29 03:17:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30977, 174, 1, 8754, 4.99, '2007-04-29 17:46:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30978, 174, 1, 9301, 4.99, '2007-04-30 15:02:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30979, 174, 1, 9847, 2.99, '2007-04-30 11:02:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30980, 175, 1, 3625, 4.99, '2007-04-06 04:41:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30981, 175, 2, 4167, 5.99, '2007-04-07 08:05:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30982, 175, 1, 5232, 1.99, '2007-04-09 11:03:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30983, 175, 2, 6865, 7.99, '2007-04-12 18:31:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30984, 175, 1, 7448, 2.99, '2007-04-27 16:34:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30985, 175, 1, 7771, 0.99, '2007-04-28 05:20:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30986, 175, 1, 8244, 2.99, '2007-04-28 23:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30987, 175, 1, 8264, 4.99, '2007-04-28 23:47:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30988, 175, 1, 8440, 3.99, '2007-04-29 05:59:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30989, 175, 1, 8817, 4.99, '2007-04-29 20:37:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30990, 175, 2, 9941, 4.99, '2007-04-30 13:59:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30991, 176, 1, 3643, 4.99, '2007-04-06 05:48:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30992, 176, 2, 3931, 6.99, '2007-04-06 19:32:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30993, 176, 2, 4121, 3.99, '2007-04-07 05:42:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30994, 176, 1, 6035, 2.99, '2007-04-11 01:30:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30995, 176, 1, 6354, 6.99, '2007-04-11 19:22:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30996, 176, 1, 7017, 4.99, '2007-04-27 00:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30997, 176, 1, 7025, 2.99, '2007-04-27 01:08:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30998, 176, 1, 7210, 2.99, '2007-04-27 07:47:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (30999, 176, 2, 7521, 2.99, '2007-04-27 19:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31000, 176, 1, 7751, 5.99, '2007-04-28 04:24:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31001, 176, 1, 8279, 2.99, '2007-04-29 00:12:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31002, 176, 2, 9145, 6.99, '2007-04-30 08:56:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31003, 177, 1, 4760, 0.99, '2007-04-08 13:16:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31004, 177, 2, 6217, 9.99, '2007-04-11 11:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31005, 177, 1, 6284, 2.99, '2007-04-11 15:20:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31006, 177, 1, 7493, 3.99, '2007-04-27 18:24:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31007, 177, 2, 7674, 1.99, '2007-04-28 01:22:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31008, 177, 1, 8139, 0.99, '2007-04-28 18:44:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31009, 177, 2, 9190, 1.99, '2007-04-30 10:52:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31010, 178, 1, 4915, 2.99, '2007-04-08 19:59:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31011, 178, 1, 5015, 2.99, '2007-04-09 00:22:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31012, 178, 1, 5057, 4.99, '2007-04-09 02:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31013, 178, 1, 5094, 10.99, '2007-04-09 04:28:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31014, 178, 1, 5984, 2.99, '2007-04-10 23:13:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31015, 178, 2, 6347, 4.99, '2007-04-11 18:47:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31016, 178, 1, 6554, 5.99, '2007-04-12 03:35:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31017, 178, 1, 6566, 6.99, '2007-04-12 04:11:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31018, 178, 2, 6606, 2.99, '2007-04-12 06:32:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31019, 178, 1, 7959, 4.99, '2007-04-28 12:11:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31020, 178, 2, 8069, 0.99, '2007-04-28 15:52:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31021, 178, 1, 8287, 3.99, '2007-04-29 00:32:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31022, 178, 2, 8388, 5.99, '2007-04-29 04:16:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31023, 178, 2, 8696, 4.99, '2007-04-29 15:13:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31024, 178, 2, 9004, 4.99, '2007-04-30 03:32:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31025, 178, 1, 9311, 7.99, '2007-04-30 15:26:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31026, 178, 2, 9879, 4.99, '2007-04-30 12:13:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31027, 178, 2, 10125, 0.99, '2007-04-30 20:01:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31028, 179, 1, 3671, 6.99, '2007-04-06 07:29:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31029, 179, 1, 3844, 0.99, '2007-04-06 15:06:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31030, 179, 1, 4618, 2.99, '2007-04-08 06:28:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31031, 179, 2, 6071, 6.99, '2007-04-11 03:18:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31032, 179, 1, 6616, 7.99, '2007-04-12 07:05:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31033, 179, 1, 6806, 2.99, '2007-04-12 16:00:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31034, 179, 1, 7028, 6.99, '2007-04-27 01:22:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31035, 179, 1, 7054, 4.99, '2007-04-27 02:11:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31036, 179, 1, 7609, 4.99, '2007-04-27 22:39:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31037, 179, 1, 8573, 2.99, '2007-04-29 10:19:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31038, 179, 1, 8731, 8.99, '2007-04-29 16:52:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31039, 179, 2, 9491, 4.99, '2007-04-30 22:13:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31040, 179, 2, 9893, 0.99, '2007-04-30 12:35:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31041, 179, 1, 10156, 4.99, '2007-04-30 21:04:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31042, 180, 2, 4826, 7.99, '2007-04-08 16:12:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31043, 180, 1, 4924, 9.99, '2007-04-08 20:23:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31044, 180, 2, 5384, 0.99, '2007-04-09 17:46:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31045, 180, 2, 5773, 0.99, '2007-04-10 11:59:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31046, 180, 1, 5860, 3.99, '2007-04-10 16:37:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31047, 180, 1, 7274, 2.99, '2007-04-27 10:04:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31048, 180, 2, 8540, 2.99, '2007-04-29 09:21:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31049, 180, 2, 8720, 5.99, '2007-04-29 16:16:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31050, 180, 1, 9373, 0.99, '2007-04-30 17:34:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31051, 180, 2, 9995, 3.99, '2007-04-30 15:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31052, 181, 1, 3862, 6.99, '2007-04-06 16:03:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31053, 181, 2, 4428, 4.99, '2007-04-07 20:58:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31054, 181, 2, 6477, 4.99, '2007-04-12 00:07:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31055, 181, 1, 6946, 8.99, '2007-04-26 22:08:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31056, 181, 1, 7393, 0.99, '2007-04-27 14:31:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31057, 181, 1, 7632, 4.99, '2007-04-27 23:31:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31058, 181, 1, 8593, 5.99, '2007-04-29 11:06:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31059, 181, 1, 8601, 9.99, '2007-04-29 11:31:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31060, 181, 2, 9214, 4.99, '2007-04-30 11:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31061, 181, 2, 9235, 5.99, '2007-04-30 12:15:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31062, 181, 1, 9357, 8.99, '2007-04-30 17:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31063, 181, 1, 9844, 4.99, '2007-04-30 10:54:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31064, 182, 1, 3509, 2.99, '2007-04-05 22:53:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31065, 182, 1, 3697, 6.99, '2007-04-06 08:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31066, 182, 1, 4174, 2.99, '2007-04-07 08:28:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31067, 182, 1, 4349, 0.99, '2007-04-07 17:31:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31068, 182, 2, 4513, 1.99, '2007-04-08 01:08:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31069, 182, 2, 4591, 3.99, '2007-04-08 04:58:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31070, 182, 2, 4784, 0.99, '2007-04-08 14:38:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31071, 182, 1, 5521, 2.99, '2007-04-09 23:59:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31072, 182, 2, 7229, 0.99, '2007-04-27 08:29:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31073, 182, 2, 7863, 0.99, '2007-04-28 08:34:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31074, 182, 2, 7880, 4.99, '2007-04-28 08:59:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31075, 182, 2, 8048, 8.99, '2007-04-28 15:18:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31076, 183, 1, 3869, 2.99, '2007-04-06 16:25:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31077, 183, 2, 4134, 0.99, '2007-04-07 06:42:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31078, 183, 2, 4157, 2.99, '2007-04-07 07:32:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31079, 183, 1, 5069, 1.99, '2007-04-09 03:24:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31080, 183, 2, 5756, 0.99, '2007-04-10 11:07:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31081, 183, 1, 6472, 4.99, '2007-04-12 00:01:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31082, 183, 1, 6569, 4.99, '2007-04-12 04:16:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31083, 183, 2, 7359, 0.99, '2007-04-27 13:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31084, 183, 2, 9672, 5.99, '2007-04-30 05:02:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31085, 183, 1, 9818, 4.99, '2007-04-30 10:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31086, 183, 2, 9931, 2.99, '2007-04-30 13:46:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31087, 184, 1, 4314, 0.99, '2007-04-07 16:06:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31088, 184, 2, 4882, 6.99, '2007-04-08 18:10:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31089, 184, 1, 5891, 0.99, '2007-04-10 18:29:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31090, 184, 2, 6493, 2.99, '2007-04-12 01:09:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31091, 184, 2, 6700, 6.99, '2007-04-12 11:15:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31092, 184, 2, 7051, 4.99, '2007-04-27 02:03:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31093, 184, 2, 7686, 6.99, '2007-04-28 01:47:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31094, 184, 1, 8892, 4.99, '2007-04-29 23:15:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31095, 184, 1, 9162, 0.99, '2007-04-30 09:50:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31096, 185, 1, 4186, 9.99, '2007-04-07 09:00:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31097, 185, 1, 4524, 2.99, '2007-04-08 01:39:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31098, 185, 2, 4822, 7.99, '2007-04-08 15:57:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31099, 185, 2, 6106, 2.99, '2007-04-11 05:33:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31100, 185, 1, 6418, 1.99, '2007-04-11 22:04:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31101, 185, 1, 6965, 2.99, '2007-04-26 22:43:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31102, 185, 1, 7066, 4.99, '2007-04-27 02:22:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31103, 185, 1, 8200, 2.99, '2007-04-28 21:39:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31104, 185, 2, 8442, 0.99, '2007-04-29 06:01:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31105, 185, 1, 8684, 8.99, '2007-04-29 14:44:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31106, 185, 2, 9246, 0.99, '2007-04-30 12:40:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31107, 185, 2, 9473, 2.99, '2007-04-30 21:32:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31108, 186, 2, 6067, 4.99, '2007-04-11 03:03:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31109, 186, 2, 7739, 0.99, '2007-04-28 03:50:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31110, 186, 1, 7915, 3.99, '2007-04-28 10:18:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31111, 186, 1, 8483, 4.99, '2007-04-29 07:18:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31112, 186, 2, 8872, 0.99, '2007-04-29 22:42:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31113, 186, 2, 9303, 2.99, '2007-04-30 15:04:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31114, 186, 2, 9360, 5.99, '2007-04-30 17:08:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31115, 186, 1, 10104, 1.99, '2007-04-30 19:17:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31116, 187, 2, 3709, 10.99, '2007-04-06 08:55:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31117, 187, 1, 4429, 4.99, '2007-04-07 21:01:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31118, 187, 2, 5366, 0.99, '2007-04-09 16:57:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31119, 187, 1, 5738, 8.99, '2007-04-10 10:19:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31120, 187, 2, 5833, 6.99, '2007-04-10 15:07:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31121, 187, 1, 6057, 3.99, '2007-04-11 02:32:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31122, 187, 2, 6428, 2.99, '2007-04-11 22:30:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31123, 187, 2, 7289, 4.99, '2007-04-27 10:55:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31124, 187, 2, 7844, 7.99, '2007-04-28 07:44:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31125, 187, 2, 7967, 7.99, '2007-04-28 12:25:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31126, 187, 1, 9241, 2.99, '2007-04-30 12:27:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31127, 188, 2, 3848, 3.99, '2007-04-06 15:15:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31128, 188, 2, 4150, 2.99, '2007-04-07 07:11:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31129, 188, 2, 5356, 2.99, '2007-04-09 16:36:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31130, 188, 2, 5729, 5.99, '2007-04-10 09:55:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31131, 188, 2, 6555, 4.99, '2007-04-12 03:36:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31132, 188, 2, 7042, 0.99, '2007-04-27 01:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31133, 188, 1, 7556, 4.99, '2007-04-27 20:45:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31134, 188, 2, 9613, 4.99, '2007-04-30 02:27:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31135, 189, 1, 3763, 0.99, '2007-04-06 11:24:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31136, 189, 2, 3813, 4.99, '2007-04-06 13:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31137, 189, 2, 4203, 0.99, '2007-04-07 09:52:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31138, 189, 1, 6193, 5.99, '2007-04-11 10:15:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31139, 189, 1, 7469, 4.99, '2007-04-27 17:26:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31140, 189, 1, 7675, 4.99, '2007-04-28 01:23:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31141, 189, 2, 7790, 2.99, '2007-04-28 05:51:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31142, 189, 2, 9171, 5.99, '2007-04-30 10:04:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31143, 189, 2, 9386, 0.99, '2007-04-30 17:54:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31144, 189, 1, 9506, 4.99, '2007-04-30 22:47:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31145, 190, 2, 4005, 5.99, '2007-04-06 22:50:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31146, 190, 1, 4140, 2.99, '2007-04-07 06:47:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31147, 190, 2, 6867, 3.99, '2007-04-12 18:35:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31148, 190, 1, 7175, 4.99, '2007-04-27 06:31:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31149, 190, 1, 7386, 5.99, '2007-04-27 14:20:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31150, 190, 2, 7404, 2.99, '2007-04-27 14:53:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31151, 190, 1, 8498, 0.99, '2007-04-29 07:36:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31152, 191, 1, 5338, 2.99, '2007-04-09 15:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31153, 191, 2, 5397, 5.99, '2007-04-09 18:12:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31154, 191, 1, 5924, 5.99, '2007-04-10 20:09:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31155, 191, 1, 7150, 6.99, '2007-04-27 05:39:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31156, 191, 1, 7450, 3.99, '2007-04-27 16:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31157, 191, 1, 7520, 2.99, '2007-04-27 19:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31158, 191, 2, 8583, 0.99, '2007-04-29 10:33:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31159, 191, 1, 9297, 4.99, '2007-04-30 14:54:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31160, 191, 1, 9964, 4.99, '2007-04-30 14:46:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31161, 192, 1, 3902, 2.99, '2007-04-06 17:53:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31162, 192, 1, 4469, 4.99, '2007-04-07 22:46:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31163, 192, 1, 5400, 2.99, '2007-04-09 18:25:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31164, 192, 2, 6223, 0.99, '2007-04-11 11:55:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31165, 192, 2, 6691, 0.99, '2007-04-12 10:55:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31166, 192, 2, 7147, 2.99, '2007-04-27 05:31:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31167, 192, 2, 8051, 0.99, '2007-04-28 15:24:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31168, 192, 2, 8292, 7.99, '2007-04-29 00:58:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31169, 192, 1, 9462, 7.99, '2007-04-30 20:59:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31170, 192, 1, 9831, 2.99, '2007-04-30 10:27:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31171, 193, 1, 4892, 6.99, '2007-04-08 18:34:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31172, 193, 1, 8211, 2.99, '2007-04-28 22:02:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31173, 193, 1, 8379, 4.99, '2007-04-29 03:58:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31174, 193, 1, 8431, 4.99, '2007-04-29 05:41:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31175, 193, 1, 9079, 2.99, '2007-04-30 06:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31176, 193, 1, 9575, 4.99, '2007-04-30 01:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31177, 194, 2, 4231, 7.99, '2007-04-07 11:16:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31178, 194, 2, 5146, 2.99, '2007-04-09 06:43:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31179, 194, 1, 5291, 2.99, '2007-04-09 13:43:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31180, 194, 2, 5894, 3.99, '2007-04-10 18:38:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31181, 194, 1, 9064, 7.99, '2007-04-30 05:53:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31182, 195, 1, 4234, 6.99, '2007-04-07 11:30:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31183, 195, 1, 4315, 2.99, '2007-04-07 16:08:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31184, 195, 1, 5228, 4.99, '2007-04-09 10:54:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31185, 195, 1, 5536, 0.99, '2007-04-10 00:58:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31186, 195, 2, 6175, 4.99, '2007-04-11 09:13:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31187, 195, 1, 7349, 2.99, '2007-04-27 13:01:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31188, 195, 2, 8280, 4.99, '2007-04-29 00:14:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31189, 195, 2, 8479, 0.99, '2007-04-29 07:10:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31190, 195, 2, 9188, 6.99, '2007-04-30 10:48:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31191, 195, 1, 9870, 5.99, '2007-04-30 11:51:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31192, 195, 1, 9994, 4.99, '2007-04-30 15:58:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31193, 196, 1, 4879, 2.99, '2007-04-08 18:03:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31194, 196, 2, 4999, 4.99, '2007-04-08 23:41:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31195, 196, 2, 5143, 4.99, '2007-04-09 06:35:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31196, 196, 2, 5353, 3.99, '2007-04-09 16:32:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31197, 196, 2, 5768, 4.99, '2007-04-10 11:43:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31198, 196, 2, 6857, 4.99, '2007-04-12 18:21:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31199, 196, 2, 7666, 3.99, '2007-04-28 01:03:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31200, 196, 2, 8266, 0.99, '2007-04-28 23:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31201, 196, 2, 8472, 1.99, '2007-04-29 07:04:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31202, 196, 2, 8700, 0.99, '2007-04-29 15:24:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31203, 196, 1, 9346, 5.99, '2007-04-30 16:42:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31204, 196, 1, 9721, 6.99, '2007-04-30 06:57:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31205, 196, 1, 9804, 4.99, '2007-04-30 09:36:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31206, 196, 2, 10122, 10.99, '2007-04-30 19:57:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31207, 196, 1, 10191, 4.99, '2007-04-30 22:57:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31208, 197, 1, 4486, 8.99, '2007-04-07 23:37:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31209, 197, 2, 4739, 4.99, '2007-04-08 11:54:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31210, 197, 2, 5182, 6.99, '2007-04-09 08:36:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31211, 197, 2, 5344, 0.99, '2007-04-09 15:55:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31212, 197, 1, 8165, 2.99, '2007-04-28 19:51:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31213, 197, 2, 9378, 4.99, '2007-04-30 17:41:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31214, 197, 1, 9476, 0.99, '2007-04-30 21:35:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31215, 197, 2, 9585, 4.99, '2007-04-30 01:34:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31216, 198, 2, 3770, 2.99, '2007-04-06 11:42:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31217, 198, 2, 4588, 2.99, '2007-04-08 04:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31218, 198, 2, 4750, 0.99, '2007-04-08 12:35:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31219, 198, 2, 5794, 4.99, '2007-04-10 13:03:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31220, 198, 2, 6567, 4.99, '2007-04-12 04:11:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31221, 198, 1, 6819, 4.99, '2007-04-12 16:49:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31222, 198, 2, 6889, 4.99, '2007-04-12 19:29:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31223, 198, 1, 7287, 0.99, '2007-04-27 10:52:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31224, 198, 1, 7441, 5.99, '2007-04-27 16:15:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31225, 198, 1, 7583, 2.99, '2007-04-27 21:43:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31226, 198, 2, 7622, 0.99, '2007-04-27 23:06:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31227, 198, 1, 8145, 5.99, '2007-04-28 19:03:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31228, 198, 2, 9389, 0.99, '2007-04-30 17:56:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31229, 198, 1, 10112, 4.99, '2007-04-30 19:37:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31230, 198, 1, 10147, 2.99, '2007-04-30 20:47:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31231, 199, 1, 4499, 2.99, '2007-04-08 00:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31232, 199, 2, 4580, 8.99, '2007-04-08 04:32:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31233, 199, 1, 4976, 4.99, '2007-04-08 22:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31234, 199, 2, 5398, 2.99, '2007-04-09 18:13:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31235, 199, 2, 5680, 5.99, '2007-04-10 07:16:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31236, 199, 2, 6668, 2.99, '2007-04-12 10:06:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31237, 199, 2, 6782, 4.99, '2007-04-12 14:51:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31238, 199, 1, 7782, 4.99, '2007-04-28 05:42:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31239, 199, 1, 8709, 0.99, '2007-04-29 15:54:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31240, 199, 1, 9752, 2.99, '2007-04-30 07:50:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31241, 199, 2, 9894, 4.99, '2007-04-30 12:36:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31242, 199, 1, 9959, 4.99, '2007-04-30 14:32:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31243, 199, 1, 10196, 2.99, '2007-04-30 23:03:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31244, 200, 1, 3580, 4.99, '2007-04-06 02:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31245, 200, 1, 5110, 2.99, '2007-04-09 05:25:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31246, 200, 1, 6123, 0.99, '2007-04-11 06:30:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31247, 200, 2, 6167, 2.99, '2007-04-11 08:49:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31248, 200, 1, 6181, 4.99, '2007-04-11 09:38:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31249, 200, 1, 6947, 3.99, '2007-04-26 22:10:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31250, 200, 1, 7574, 2.99, '2007-04-27 21:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31251, 200, 2, 8368, 3.99, '2007-04-29 03:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31252, 200, 2, 8462, 2.99, '2007-04-29 06:44:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31253, 200, 1, 9527, 6.99, '2007-04-30 23:30:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31254, 201, 2, 3528, 4.99, '2007-04-05 23:41:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31255, 201, 2, 3708, 6.99, '2007-04-06 08:51:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31256, 201, 1, 7106, 0.99, '2007-04-27 03:49:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31257, 201, 2, 7606, 2.99, '2007-04-27 22:30:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31258, 201, 2, 9355, 0.99, '2007-04-30 17:03:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31259, 209, 2, 3504, 2.99, '2007-04-05 22:46:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31260, 209, 2, 4071, 5.99, '2007-04-07 03:05:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31261, 209, 1, 4309, 5.99, '2007-04-07 15:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31262, 209, 2, 4810, 4.99, '2007-04-08 15:32:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31263, 209, 1, 4907, 4.99, '2007-04-08 19:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31264, 209, 2, 5170, 3.99, '2007-04-09 07:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31265, 209, 2, 5219, 5.99, '2007-04-09 10:26:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31266, 209, 1, 6210, 0.99, '2007-04-11 11:05:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31267, 209, 1, 7116, 6.99, '2007-04-27 04:15:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31268, 209, 1, 7269, 3.99, '2007-04-27 09:52:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31269, 209, 1, 7505, 4.99, '2007-04-27 18:56:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31270, 209, 2, 7752, 5.99, '2007-04-28 04:29:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31271, 209, 1, 8067, 4.99, '2007-04-28 15:48:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31272, 209, 2, 8759, 8.99, '2007-04-29 17:51:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31273, 209, 2, 8816, 2.99, '2007-04-29 20:21:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31274, 209, 2, 9054, 6.99, '2007-04-30 05:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31275, 209, 1, 9923, 0.99, '2007-04-30 13:28:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31276, 210, 2, 3563, 4.99, '2007-04-06 01:25:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31277, 210, 2, 3884, 4.99, '2007-04-06 17:09:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31278, 210, 2, 4270, 0.99, '2007-04-07 13:07:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31279, 210, 1, 4306, 2.99, '2007-04-07 15:40:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31280, 210, 1, 4334, 0.99, '2007-04-07 17:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31281, 210, 2, 4388, 7.99, '2007-04-07 19:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31282, 210, 1, 4620, 5.99, '2007-04-08 06:30:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31283, 210, 1, 4871, 6.99, '2007-04-08 17:48:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31284, 210, 1, 4893, 4.99, '2007-04-08 18:48:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31285, 210, 1, 4989, 3.99, '2007-04-08 23:15:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31286, 210, 2, 5957, 0.99, '2007-04-10 21:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31287, 210, 2, 6227, 4.99, '2007-04-11 12:25:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31288, 210, 1, 6564, 1.99, '2007-04-12 04:03:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31289, 210, 1, 7743, 5.99, '2007-04-28 04:04:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31290, 210, 2, 7909, 0.99, '2007-04-28 10:06:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31291, 210, 2, 8336, 8.99, '2007-04-29 02:49:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31292, 210, 2, 8678, 3.99, '2007-04-29 14:32:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31293, 210, 2, 8738, 0.99, '2007-04-29 17:01:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31294, 211, 2, 3937, 8.99, '2007-04-06 19:44:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31295, 211, 2, 4060, 2.99, '2007-04-07 02:38:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31296, 211, 2, 4441, 5.99, '2007-04-07 21:32:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31297, 211, 2, 4479, 2.99, '2007-04-07 23:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31298, 211, 1, 4857, 2.99, '2007-04-08 17:20:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31299, 211, 1, 5668, 5.99, '2007-04-10 06:39:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31300, 211, 2, 5699, 3.99, '2007-04-10 08:16:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31301, 211, 2, 5785, 4.99, '2007-04-10 12:34:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31302, 211, 2, 6438, 0.99, '2007-04-11 22:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31303, 211, 1, 6628, 4.99, '2007-04-12 07:46:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31304, 211, 1, 6722, 1.99, '2007-04-12 12:12:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31305, 211, 2, 7484, 0.99, '2007-04-27 17:56:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31306, 211, 1, 7975, 2.99, '2007-04-28 12:41:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31307, 211, 2, 8961, 6.99, '2007-04-30 02:12:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31308, 211, 1, 9111, 3.99, '2007-04-30 07:34:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31309, 211, 1, 9953, 0.99, '2007-04-30 14:25:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31310, 212, 2, 4708, 10.99, '2007-04-08 10:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31311, 212, 2, 4798, 3.99, '2007-04-08 15:13:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31312, 212, 2, 4916, 6.99, '2007-04-08 20:00:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31313, 212, 1, 5115, 6.99, '2007-04-09 05:35:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31314, 212, 2, 7828, 2.99, '2007-04-28 07:09:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31315, 212, 2, 8000, 4.99, '2007-04-28 13:38:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31316, 212, 1, 8940, 3.99, '2007-04-30 01:25:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31317, 213, 2, 3989, 4.99, '2007-04-06 21:59:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31318, 213, 2, 4236, 4.99, '2007-04-07 11:40:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31319, 213, 1, 4655, 8.99, '2007-04-08 08:17:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31320, 213, 2, 5159, 4.99, '2007-04-09 07:24:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31321, 213, 1, 5431, 0.99, '2007-04-09 19:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31322, 213, 2, 6725, 2.99, '2007-04-12 12:15:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31323, 213, 2, 7528, 0.99, '2007-04-27 19:43:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31324, 213, 2, 8444, 2.99, '2007-04-29 06:04:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31325, 213, 2, 8542, 4.99, '2007-04-29 09:30:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31326, 213, 2, 9150, 6.99, '2007-04-30 09:17:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31327, 213, 2, 9340, 2.99, '2007-04-30 16:35:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31328, 213, 1, 9477, 4.99, '2007-04-30 21:35:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31329, 214, 2, 4211, 0.99, '2007-04-07 10:19:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31330, 214, 1, 4783, 3.99, '2007-04-08 14:37:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31331, 214, 2, 4984, 3.99, '2007-04-08 23:03:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31332, 214, 2, 5172, 2.99, '2007-04-09 07:59:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31333, 214, 1, 6602, 7.99, '2007-04-12 06:18:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31334, 214, 2, 7417, 4.99, '2007-04-27 15:26:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31335, 214, 2, 7826, 5.99, '2007-04-28 07:04:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31336, 214, 1, 8663, 4.99, '2007-04-29 14:01:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31337, 215, 2, 4940, 8.99, '2007-04-08 21:04:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31338, 215, 1, 5886, 2.99, '2007-04-10 18:04:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31339, 215, 2, 5967, 8.99, '2007-04-10 22:30:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31340, 215, 1, 7180, 1.99, '2007-04-27 06:43:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31341, 215, 2, 9046, 2.99, '2007-04-30 05:15:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31342, 215, 1, 9518, 0.99, '2007-04-30 23:11:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31343, 215, 2, 9611, 4.99, '2007-04-30 02:23:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31344, 216, 2, 4161, 2.99, '2007-04-07 07:43:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31345, 216, 1, 6008, 6.99, '2007-04-11 00:19:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31346, 216, 2, 6349, 7.99, '2007-04-11 18:53:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31347, 216, 1, 8068, 4.99, '2007-04-28 15:50:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31348, 216, 2, 8859, 8.99, '2007-04-29 22:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31349, 216, 1, 9096, 0.99, '2007-04-30 07:07:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31350, 217, 2, 5576, 2.99, '2007-04-10 02:25:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31351, 217, 2, 5762, 3.99, '2007-04-10 11:16:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31352, 217, 2, 6570, 4.99, '2007-04-12 04:18:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31353, 217, 2, 7104, 2.99, '2007-04-27 03:43:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31354, 217, 2, 8332, 4.99, '2007-04-29 02:44:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31355, 217, 1, 9159, 0.99, '2007-04-30 09:45:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31356, 217, 2, 9317, 2.99, '2007-04-30 15:42:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31357, 217, 2, 9632, 6.99, '2007-04-30 03:30:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31358, 217, 2, 9745, 2.99, '2007-04-30 07:44:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31359, 218, 1, 4898, 6.99, '2007-04-08 19:00:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31360, 218, 1, 5226, 0.99, '2007-04-09 10:39:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31361, 218, 2, 5737, 0.99, '2007-04-10 10:18:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31362, 218, 2, 7090, 4.99, '2007-04-27 03:12:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31363, 218, 1, 7236, 8.99, '2007-04-27 08:38:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31364, 218, 2, 9018, 6.99, '2007-04-30 03:57:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31365, 218, 2, 9902, 6.99, '2007-04-30 12:52:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31366, 218, 1, 10114, 0.99, '2007-04-30 19:41:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31367, 219, 2, 4678, 0.99, '2007-04-08 08:59:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31368, 219, 2, 4910, 7.99, '2007-04-08 19:42:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31369, 219, 2, 5123, 0.99, '2007-04-09 05:48:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31370, 219, 2, 5416, 4.99, '2007-04-09 19:02:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31371, 219, 2, 5475, 4.99, '2007-04-09 22:00:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31372, 219, 2, 5739, 7.99, '2007-04-10 10:20:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31373, 219, 2, 6172, 4.99, '2007-04-11 09:00:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31374, 219, 1, 6209, 2.99, '2007-04-11 11:04:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31375, 219, 2, 6501, 1.99, '2007-04-12 01:40:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31376, 219, 2, 7335, 2.99, '2007-04-27 12:35:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31377, 219, 1, 7726, 5.99, '2007-04-28 03:20:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31378, 219, 1, 8430, 0.99, '2007-04-29 05:40:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31379, 219, 2, 8536, 4.99, '2007-04-29 09:05:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31380, 219, 1, 8652, 6.99, '2007-04-29 13:31:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31381, 219, 1, 9712, 4.99, '2007-04-30 06:41:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31382, 220, 2, 4918, 2.99, '2007-04-08 20:05:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31383, 220, 2, 5613, 2.99, '2007-04-10 03:44:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31384, 220, 2, 5847, 2.99, '2007-04-10 15:56:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31385, 220, 2, 5859, 0.99, '2007-04-10 16:30:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31386, 220, 2, 6412, 0.99, '2007-04-11 21:47:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31387, 220, 2, 6832, 8.99, '2007-04-12 17:20:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31388, 220, 2, 7750, 9.99, '2007-04-28 04:23:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31389, 220, 1, 8065, 2.99, '2007-04-28 15:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31390, 220, 1, 8398, 4.99, '2007-04-29 04:41:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31391, 220, 2, 9384, 7.99, '2007-04-30 17:54:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31392, 220, 2, 9455, 10.99, '2007-04-30 20:48:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31393, 220, 1, 10099, 2.99, '2007-04-30 19:15:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31394, 221, 1, 4293, 4.99, '2007-04-07 14:22:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31395, 221, 2, 4649, 4.99, '2007-04-08 08:00:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31396, 221, 1, 4693, 6.99, '2007-04-08 09:36:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31397, 221, 1, 5058, 5.99, '2007-04-09 02:49:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31398, 221, 2, 5920, 5.99, '2007-04-10 20:02:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31399, 221, 1, 7101, 2.99, '2007-04-27 03:35:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31400, 221, 1, 7129, 0.99, '2007-04-27 04:46:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31401, 221, 2, 7531, 8.99, '2007-04-27 19:48:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31402, 221, 2, 8486, 0.99, '2007-04-29 07:22:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31403, 221, 1, 9320, 6.99, '2007-04-30 15:45:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31404, 221, 1, 9453, 7.99, '2007-04-30 20:48:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31405, 221, 2, 9853, 0.99, '2007-04-30 11:26:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31406, 222, 2, 5209, 8.99, '2007-04-09 09:51:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31407, 222, 1, 5266, 3.99, '2007-04-09 12:46:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31408, 222, 2, 5592, 6.99, '2007-04-10 02:54:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31409, 222, 2, 5635, 5.99, '2007-04-10 04:57:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31410, 222, 2, 6129, 2.99, '2007-04-11 06:43:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31411, 222, 1, 6497, 0.99, '2007-04-12 01:32:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31412, 222, 2, 7786, 0.99, '2007-04-28 05:46:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31413, 222, 1, 8300, 1.99, '2007-04-29 01:26:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31414, 222, 2, 8597, 6.99, '2007-04-29 11:24:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31415, 222, 1, 8787, 4.99, '2007-04-29 19:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31416, 222, 2, 10043, 1.99, '2007-04-30 17:30:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31417, 223, 1, 3513, 5.99, '2007-04-05 23:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31418, 223, 1, 3705, 0.99, '2007-04-06 08:46:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31419, 223, 1, 4874, 4.99, '2007-04-08 17:52:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31420, 223, 2, 5996, 2.99, '2007-04-10 23:46:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31421, 223, 2, 7085, 5.99, '2007-04-27 03:04:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31422, 223, 2, 8362, 3.99, '2007-04-29 03:37:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31423, 223, 2, 10053, 7.99, '2007-04-30 17:44:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31424, 224, 1, 4118, 2.99, '2007-04-07 05:31:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31425, 224, 2, 4411, 3.99, '2007-04-07 20:23:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31426, 224, 1, 4697, 2.99, '2007-04-08 09:47:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31427, 224, 1, 6031, 4.99, '2007-04-11 01:10:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31428, 224, 2, 6999, 2.99, '2007-04-26 23:49:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31429, 224, 2, 8255, 0.99, '2007-04-28 23:30:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31430, 224, 2, 8439, 2.99, '2007-04-29 05:57:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31431, 224, 1, 8605, 4.99, '2007-04-29 11:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31432, 224, 1, 9181, 0.99, '2007-04-30 10:34:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31433, 225, 2, 3574, 4.99, '2007-04-06 02:04:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31434, 225, 1, 4345, 7.99, '2007-04-07 17:21:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31435, 225, 1, 4824, 7.99, '2007-04-08 16:06:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31436, 225, 2, 4955, 2.99, '2007-04-08 21:44:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31437, 225, 1, 5067, 4.99, '2007-04-09 03:21:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31438, 225, 1, 6159, 2.99, '2007-04-11 08:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31439, 225, 1, 6317, 2.99, '2007-04-11 17:16:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31440, 225, 2, 6350, 2.99, '2007-04-11 18:58:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31441, 225, 1, 6526, 3.99, '2007-04-12 02:49:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31442, 225, 2, 6532, 2.99, '2007-04-12 03:06:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31443, 225, 2, 7347, 4.99, '2007-04-27 12:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31444, 225, 1, 7524, 6.99, '2007-04-27 19:40:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31445, 225, 1, 8054, 7.99, '2007-04-28 15:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31446, 225, 2, 8110, 4.99, '2007-04-28 17:36:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31447, 225, 1, 9980, 4.99, '2007-04-30 15:30:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31448, 225, 2, 9993, 2.99, '2007-04-30 15:58:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31449, 225, 2, 10138, 2.99, '2007-04-30 20:30:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31450, 226, 1, 3721, 4.99, '2007-04-06 09:38:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31451, 226, 1, 4324, 4.99, '2007-04-07 16:26:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31452, 226, 1, 5282, 2.99, '2007-04-09 13:29:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31453, 226, 1, 5419, 2.99, '2007-04-09 19:16:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31454, 226, 1, 6712, 9.99, '2007-04-12 11:53:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31455, 226, 2, 7288, 5.99, '2007-04-27 10:53:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31456, 226, 1, 7329, 3.99, '2007-04-27 12:24:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31457, 226, 2, 8600, 2.99, '2007-04-29 11:29:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31458, 226, 1, 8627, 2.99, '2007-04-29 12:33:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31459, 227, 1, 3576, 5.99, '2007-04-06 02:08:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31460, 227, 2, 4340, 2.99, '2007-04-07 17:10:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31461, 227, 2, 4459, 4.99, '2007-04-07 22:17:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31462, 227, 1, 4680, 2.99, '2007-04-08 09:03:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31463, 227, 1, 5046, 3.99, '2007-04-09 02:03:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31464, 227, 1, 7132, 7.99, '2007-04-27 04:57:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31465, 227, 1, 8219, 2.99, '2007-04-28 22:14:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31466, 227, 1, 8234, 0.99, '2007-04-28 22:47:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31467, 227, 1, 8384, 0.99, '2007-04-29 04:07:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31468, 227, 2, 8417, 4.99, '2007-04-29 05:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31469, 227, 1, 8936, 2.99, '2007-04-30 01:15:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31470, 227, 2, 9521, 2.99, '2007-04-30 23:20:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31471, 228, 2, 3538, 0.99, '2007-04-06 00:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31472, 228, 2, 3710, 8.99, '2007-04-06 08:57:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31473, 228, 1, 3715, 6.99, '2007-04-06 09:20:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31474, 228, 2, 3796, 0.99, '2007-04-06 13:13:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31475, 228, 1, 4217, 3.99, '2007-04-07 10:37:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31476, 228, 1, 4636, 4.99, '2007-04-08 07:12:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31477, 228, 1, 4909, 0.99, '2007-04-08 19:35:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31478, 228, 1, 5151, 2.99, '2007-04-09 06:59:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31479, 228, 1, 5320, 4.99, '2007-04-09 14:51:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31480, 228, 2, 5902, 0.99, '2007-04-10 18:59:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31481, 228, 2, 6141, 1.99, '2007-04-11 07:20:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31482, 228, 1, 6948, 2.99, '2007-04-26 22:12:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31483, 228, 2, 7509, 8.99, '2007-04-27 19:05:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31484, 228, 1, 7601, 0.99, '2007-04-27 22:16:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31485, 228, 1, 8147, 2.99, '2007-04-28 19:06:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31486, 229, 2, 3933, 4.99, '2007-04-06 19:35:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31487, 229, 2, 4458, 2.99, '2007-04-07 22:16:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31488, 229, 1, 4515, 4.99, '2007-04-08 01:10:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31489, 229, 2, 4694, 0.99, '2007-04-08 09:36:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31490, 229, 1, 5623, 2.99, '2007-04-10 04:10:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31491, 229, 2, 6155, 4.99, '2007-04-11 08:13:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31492, 229, 2, 6578, 4.99, '2007-04-12 04:44:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31493, 229, 1, 6880, 2.99, '2007-04-12 19:10:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31494, 229, 2, 7305, 0.99, '2007-04-27 11:25:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31495, 229, 2, 7308, 5.99, '2007-04-27 11:28:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31496, 229, 2, 7629, 0.99, '2007-04-27 23:28:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31497, 229, 2, 7640, 7.99, '2007-04-27 23:43:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31498, 229, 2, 9913, 3.99, '2007-04-30 13:19:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31499, 230, 1, 4509, 3.99, '2007-04-08 01:01:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31500, 230, 1, 4935, 0.99, '2007-04-08 20:49:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31501, 230, 1, 5045, 4.99, '2007-04-09 02:01:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31502, 230, 1, 5061, 0.99, '2007-04-09 02:59:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31503, 230, 2, 5269, 2.99, '2007-04-09 12:51:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31504, 230, 2, 6126, 4.99, '2007-04-11 06:35:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31505, 230, 1, 6251, 2.99, '2007-04-11 13:34:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31506, 230, 2, 7333, 4.99, '2007-04-27 12:27:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31507, 230, 2, 7390, 4.99, '2007-04-27 14:27:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31508, 230, 2, 8032, 4.99, '2007-04-28 14:45:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31509, 230, 2, 8653, 0.99, '2007-04-29 13:32:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31510, 230, 1, 8815, 2.99, '2007-04-29 20:19:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31511, 230, 2, 9778, 3.99, '2007-04-30 08:30:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31512, 230, 2, 10050, 3.99, '2007-04-30 17:41:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31513, 230, 1, 10057, 9.99, '2007-04-30 17:48:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31514, 231, 2, 3561, 9.99, '2007-04-06 01:22:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31515, 231, 1, 3839, 2.99, '2007-04-06 14:58:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31516, 231, 2, 4289, 0.99, '2007-04-07 14:14:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31517, 231, 2, 4969, 0.99, '2007-04-08 22:19:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31518, 231, 1, 5096, 2.99, '2007-04-09 04:36:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31519, 231, 1, 5560, 5.99, '2007-04-10 01:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31520, 231, 1, 6862, 0.99, '2007-04-12 18:26:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31521, 231, 1, 6877, 1.99, '2007-04-12 19:01:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31522, 231, 1, 8556, 0.99, '2007-04-29 09:46:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31523, 231, 2, 8949, 5.99, '2007-04-30 01:45:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31524, 231, 2, 9711, 2.99, '2007-04-30 06:35:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31525, 232, 2, 6234, 5.99, '2007-04-11 12:44:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31526, 232, 1, 6309, 2.99, '2007-04-11 16:41:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31527, 232, 1, 7123, 5.99, '2007-04-27 04:37:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31528, 232, 2, 7653, 4.99, '2007-04-28 00:26:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31529, 232, 2, 7707, 0.99, '2007-04-28 02:36:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31530, 232, 1, 7749, 2.99, '2007-04-28 04:22:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31531, 232, 1, 7990, 2.99, '2007-04-28 13:11:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31532, 232, 1, 8306, 2.99, '2007-04-29 01:40:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31533, 232, 2, 8401, 4.99, '2007-04-29 04:53:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31534, 232, 2, 8655, 4.99, '2007-04-29 13:33:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31535, 232, 2, 9270, 0.99, '2007-04-30 13:31:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31536, 232, 2, 9330, 10.99, '2007-04-30 16:12:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31537, 232, 2, 9365, 2.99, '2007-04-30 17:14:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31538, 232, 2, 10157, 2.99, '2007-04-30 21:07:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31539, 233, 1, 3832, 2.99, '2007-04-06 14:40:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31540, 233, 1, 4015, 5.99, '2007-04-06 23:28:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31541, 233, 1, 4885, 4.99, '2007-04-08 18:19:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31542, 233, 2, 5267, 5.99, '2007-04-09 12:49:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31543, 233, 1, 5846, 2.99, '2007-04-10 15:53:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31544, 233, 1, 6319, 4.99, '2007-04-11 17:19:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31545, 233, 1, 6794, 2.99, '2007-04-12 15:06:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31546, 233, 1, 7056, 8.99, '2007-04-27 02:14:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31547, 233, 2, 7387, 4.99, '2007-04-27 14:22:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31548, 233, 2, 8385, 5.99, '2007-04-29 04:07:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31549, 233, 2, 8530, 2.99, '2007-04-29 08:54:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31550, 233, 2, 8596, 0.99, '2007-04-29 11:17:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31551, 233, 1, 9574, 0.99, '2007-04-30 01:17:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31552, 234, 2, 4686, 0.99, '2007-04-08 09:22:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31553, 234, 1, 4721, 7.99, '2007-04-08 11:07:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31554, 234, 2, 10133, 5.99, '2007-04-30 20:23:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31555, 235, 2, 3581, 2.99, '2007-04-06 02:26:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31556, 235, 1, 3752, 6.99, '2007-04-06 10:58:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31557, 235, 1, 3968, 4.99, '2007-04-06 21:15:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31558, 235, 2, 4592, 2.99, '2007-04-08 04:59:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31559, 235, 1, 5790, 4.99, '2007-04-10 12:43:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31560, 235, 1, 6047, 2.99, '2007-04-11 01:55:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31561, 235, 2, 6352, 4.99, '2007-04-11 19:02:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31562, 235, 2, 6466, 4.99, '2007-04-11 23:49:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31563, 235, 1, 8120, 0.99, '2007-04-28 17:52:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31564, 235, 2, 8446, 6.99, '2007-04-29 06:06:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31565, 235, 2, 8781, 0.99, '2007-04-29 18:48:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31566, 235, 1, 9019, 5.99, '2007-04-30 03:57:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31567, 235, 2, 9519, 6.99, '2007-04-30 23:14:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31568, 235, 1, 9587, 3.99, '2007-04-30 01:38:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31569, 235, 2, 10155, 0.99, '2007-04-30 21:00:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31570, 236, 1, 3645, 0.99, '2007-04-06 05:50:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31571, 236, 2, 3857, 4.99, '2007-04-06 15:36:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31572, 236, 2, 4749, 4.99, '2007-04-08 12:34:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31573, 236, 1, 4959, 0.99, '2007-04-08 21:50:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31574, 236, 1, 5404, 2.99, '2007-04-09 18:39:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31575, 236, 1, 5545, 3.99, '2007-04-10 01:18:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31576, 236, 2, 5938, 3.99, '2007-04-10 20:46:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31577, 236, 2, 6049, 0.99, '2007-04-11 02:00:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31578, 236, 2, 6281, 4.99, '2007-04-11 15:06:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31579, 236, 1, 6303, 2.99, '2007-04-11 16:24:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31580, 236, 2, 6996, 4.99, '2007-04-26 23:42:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31581, 236, 2, 7047, 4.99, '2007-04-27 01:59:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31582, 236, 2, 7253, 0.99, '2007-04-27 09:15:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31583, 236, 1, 7780, 5.99, '2007-04-28 05:40:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31584, 236, 1, 7792, 4.99, '2007-04-28 05:52:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31585, 236, 2, 7798, 2.99, '2007-04-28 06:10:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31586, 236, 1, 8657, 2.99, '2007-04-29 13:37:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31587, 236, 1, 9011, 5.99, '2007-04-30 03:44:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31588, 236, 1, 9934, 2.99, '2007-04-30 13:53:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31589, 236, 2, 10137, 4.99, '2007-04-30 20:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31590, 237, 1, 4844, 4.99, '2007-04-08 16:56:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31591, 237, 2, 6053, 4.99, '2007-04-11 02:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31592, 237, 1, 7193, 2.99, '2007-04-27 07:05:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31593, 237, 2, 7330, 3.99, '2007-04-27 12:25:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31594, 237, 1, 7812, 4.99, '2007-04-28 06:35:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31595, 237, 2, 7951, 8.99, '2007-04-28 11:49:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31596, 237, 2, 8102, 2.99, '2007-04-28 17:18:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31597, 237, 2, 8748, 2.99, '2007-04-29 17:37:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31598, 237, 2, 8799, 6.99, '2007-04-29 19:45:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31599, 237, 1, 8835, 3.99, '2007-04-29 21:13:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31600, 237, 1, 9276, 5.99, '2007-04-30 13:37:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31601, 237, 1, 9661, 4.99, '2007-04-30 04:35:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31602, 237, 2, 9715, 1.99, '2007-04-30 06:45:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31603, 237, 2, 10056, 0.99, '2007-04-30 17:47:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31604, 237, 2, 10058, 2.99, '2007-04-30 17:48:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31605, 238, 1, 4143, 0.99, '2007-04-07 06:50:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31606, 238, 1, 5616, 5.99, '2007-04-10 03:49:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31607, 238, 2, 6403, 0.99, '2007-04-11 21:14:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31608, 238, 2, 7243, 4.99, '2007-04-27 08:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31609, 238, 1, 8310, 8.99, '2007-04-29 01:54:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31610, 238, 1, 8382, 6.99, '2007-04-29 04:01:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31611, 238, 1, 8465, 0.99, '2007-04-29 06:49:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31612, 238, 1, 9065, 4.99, '2007-04-30 05:53:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31613, 238, 2, 9841, 7.99, '2007-04-30 10:52:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31614, 239, 2, 3547, 0.99, '2007-04-06 00:46:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31615, 239, 1, 3552, 5.99, '2007-04-06 01:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31616, 239, 2, 4920, 7.99, '2007-04-08 20:10:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31617, 239, 2, 5651, 4.99, '2007-04-10 05:45:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31618, 239, 1, 5960, 0.99, '2007-04-10 22:07:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31619, 239, 1, 6573, 0.99, '2007-04-12 04:32:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31620, 239, 2, 7012, 8.99, '2007-04-27 00:29:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31621, 239, 1, 7426, 0.99, '2007-04-27 15:48:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31622, 239, 2, 7491, 2.99, '2007-04-27 18:21:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31623, 239, 1, 8457, 6.99, '2007-04-29 06:27:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31624, 239, 2, 9676, 0.99, '2007-04-30 05:07:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31625, 239, 1, 9863, 5.99, '2007-04-30 11:33:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31626, 240, 2, 4305, 4.99, '2007-04-07 15:35:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31627, 240, 2, 5262, 4.99, '2007-04-09 12:36:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31628, 240, 1, 5596, 0.99, '2007-04-10 03:11:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31629, 240, 1, 6272, 0.99, '2007-04-11 14:32:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31630, 240, 2, 6470, 0.99, '2007-04-11 23:58:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31631, 240, 1, 6956, 4.99, '2007-04-26 22:24:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31632, 240, 1, 7001, 4.99, '2007-04-26 23:54:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31633, 240, 1, 7467, 8.99, '2007-04-27 17:20:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31634, 240, 2, 7481, 4.99, '2007-04-27 17:48:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31635, 240, 1, 7870, 4.99, '2007-04-28 08:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31636, 240, 2, 8503, 3.99, '2007-04-29 07:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31637, 240, 2, 8905, 5.99, '2007-04-29 23:39:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31638, 241, 2, 3822, 0.99, '2007-04-06 14:09:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31639, 241, 1, 4731, 0.99, '2007-04-08 11:36:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31640, 241, 2, 5017, 2.99, '2007-04-09 00:28:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31641, 241, 1, 5211, 0.99, '2007-04-09 09:55:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31642, 241, 1, 5438, 4.99, '2007-04-09 20:02:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31643, 241, 2, 5525, 3.99, '2007-04-10 00:31:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31644, 241, 1, 5981, 4.99, '2007-04-10 22:47:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31645, 241, 2, 6090, 6.99, '2007-04-11 04:15:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31646, 241, 2, 6245, 2.99, '2007-04-11 13:25:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31647, 241, 1, 7320, 0.99, '2007-04-27 12:02:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31648, 241, 1, 7434, 2.99, '2007-04-27 16:03:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31649, 241, 1, 7860, 2.99, '2007-04-28 08:26:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31650, 241, 1, 9500, 6.99, '2007-04-30 22:27:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31651, 241, 1, 9528, 3.99, '2007-04-30 23:33:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31652, 241, 1, 9944, 5.99, '2007-04-30 14:13:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31653, 242, 1, 3471, 4.99, '2007-04-05 21:20:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31654, 242, 2, 3604, 0.99, '2007-04-06 03:53:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31655, 242, 1, 4426, 4.99, '2007-04-07 20:56:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31656, 242, 2, 4895, 1.99, '2007-04-08 18:50:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31657, 242, 2, 5666, 5.99, '2007-04-10 06:38:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31658, 242, 2, 7149, 3.99, '2007-04-27 05:39:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31659, 242, 1, 8491, 4.99, '2007-04-29 07:30:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31660, 242, 1, 9423, 3.99, '2007-04-30 19:38:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31661, 242, 1, 9730, 6.99, '2007-04-30 07:18:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31662, 243, 2, 3854, 5.99, '2007-04-06 15:30:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31663, 243, 1, 3965, 4.99, '2007-04-06 21:04:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31664, 243, 1, 4831, 0.99, '2007-04-08 16:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31665, 243, 1, 5502, 0.99, '2007-04-09 23:02:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31666, 243, 2, 6038, 3.99, '2007-04-11 01:39:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31667, 243, 2, 6820, 2.99, '2007-04-12 16:49:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31668, 243, 2, 7022, 2.99, '2007-04-27 00:59:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31669, 243, 2, 7165, 0.99, '2007-04-27 06:05:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31670, 243, 1, 8834, 4.99, '2007-04-29 21:10:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31671, 243, 2, 9035, 2.99, '2007-04-30 04:44:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31672, 243, 2, 9514, 4.99, '2007-04-30 22:58:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31673, 243, 2, 9675, 2.99, '2007-04-30 05:05:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31674, 243, 2, 9988, 5.99, '2007-04-30 15:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31675, 244, 1, 4814, 4.99, '2007-04-08 15:39:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31676, 244, 2, 5387, 4.99, '2007-04-09 17:53:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31677, 244, 2, 5461, 0.99, '2007-04-09 21:16:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31678, 244, 2, 5692, 0.99, '2007-04-10 08:00:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31679, 244, 1, 5779, 4.99, '2007-04-10 12:14:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31680, 244, 1, 5803, 3.99, '2007-04-10 13:34:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31681, 244, 2, 6374, 4.99, '2007-04-11 20:04:36.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31682, 244, 2, 6608, 2.99, '2007-04-12 06:45:16.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31683, 244, 2, 6683, 2.99, '2007-04-12 10:42:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31684, 244, 2, 8454, 0.99, '2007-04-29 06:17:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31685, 244, 2, 8844, 5.99, '2007-04-29 21:33:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31686, 244, 1, 10001, 4.99, '2007-04-30 16:14:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31687, 244, 2, 10047, 4.99, '2007-04-30 17:36:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31688, 244, 1, 10152, 5.99, '2007-04-30 20:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31689, 245, 1, 3634, 2.99, '2007-04-06 05:19:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31690, 245, 2, 5321, 2.99, '2007-04-09 14:54:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31691, 245, 1, 5764, 4.99, '2007-04-10 11:26:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31692, 245, 2, 6242, 2.99, '2007-04-11 13:13:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31693, 245, 1, 6795, 5.99, '2007-04-12 15:09:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31694, 245, 2, 6962, 0.99, '2007-04-26 22:39:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31695, 245, 1, 7230, 4.99, '2007-04-27 08:30:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31696, 245, 2, 7233, 5.99, '2007-04-27 08:37:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31697, 245, 1, 7358, 0.99, '2007-04-27 13:18:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31698, 245, 2, 7397, 4.99, '2007-04-27 14:33:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31699, 245, 2, 8701, 6.99, '2007-04-29 15:31:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31700, 245, 1, 8811, 10.99, '2007-04-29 20:14:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31701, 245, 2, 9088, 0.99, '2007-04-30 06:49:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31702, 245, 2, 9169, 4.99, '2007-04-30 10:03:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31703, 245, 1, 9813, 6.99, '2007-04-30 09:57:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31704, 245, 1, 10087, 3.99, '2007-04-30 18:43:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31705, 246, 1, 4092, 7.99, '2007-04-07 04:22:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31706, 246, 2, 4905, 4.99, '2007-04-08 19:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31707, 246, 2, 4994, 2.99, '2007-04-08 23:22:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31708, 246, 2, 5347, 0.99, '2007-04-09 15:59:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31709, 246, 1, 6688, 4.99, '2007-04-12 10:50:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31710, 246, 2, 9525, 5.99, '2007-04-30 23:30:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31711, 246, 2, 10208, 4.99, '2007-04-30 23:23:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31712, 247, 2, 3955, 2.99, '2007-04-06 20:26:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31713, 247, 2, 4198, 6.99, '2007-04-07 09:36:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31714, 247, 1, 4492, 2.99, '2007-04-08 00:00:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31715, 247, 2, 4995, 2.99, '2007-04-08 23:26:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31716, 247, 1, 5328, 6.99, '2007-04-09 15:16:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31717, 247, 1, 5842, 4.99, '2007-04-10 15:40:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31718, 247, 1, 7963, 5.99, '2007-04-28 12:17:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31719, 248, 1, 3910, 0.99, '2007-04-06 18:33:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31720, 248, 2, 4541, 4.99, '2007-04-08 02:32:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31721, 248, 1, 4841, 0.99, '2007-04-08 16:46:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31722, 248, 1, 5370, 2.99, '2007-04-09 17:11:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31723, 248, 2, 6617, 2.99, '2007-04-12 07:08:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31724, 248, 2, 7778, 5.99, '2007-04-28 05:38:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31725, 249, 1, 4352, 9.99, '2007-04-07 17:44:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31726, 249, 1, 5011, 4.99, '2007-04-09 00:13:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31727, 249, 1, 5275, 4.99, '2007-04-09 13:02:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31728, 249, 2, 5639, 3.99, '2007-04-10 05:02:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31729, 249, 2, 6670, 7.99, '2007-04-12 10:12:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31730, 249, 1, 7544, 7.99, '2007-04-27 20:16:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31731, 249, 1, 7804, 2.99, '2007-04-28 06:24:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31732, 249, 2, 7881, 4.99, '2007-04-28 09:01:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31733, 250, 1, 3635, 4.99, '2007-04-06 05:24:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31734, 250, 1, 3951, 3.99, '2007-04-06 20:19:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31735, 250, 1, 5479, 2.99, '2007-04-09 22:15:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31736, 250, 1, 5540, 0.99, '2007-04-10 01:12:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31737, 250, 1, 5998, 2.99, '2007-04-10 23:49:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31738, 250, 1, 8579, 2.99, '2007-04-29 10:27:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31739, 250, 2, 9099, 0.99, '2007-04-30 07:14:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31740, 251, 1, 3799, 4.99, '2007-04-06 13:28:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31741, 251, 2, 4026, 3.99, '2007-04-07 00:44:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31742, 251, 2, 4848, 2.99, '2007-04-08 16:58:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31743, 251, 2, 5012, 2.99, '2007-04-09 00:13:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31744, 251, 2, 5979, 2.99, '2007-04-10 22:45:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31745, 251, 2, 6413, 6.99, '2007-04-11 21:54:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31746, 251, 2, 7338, 8.99, '2007-04-27 12:42:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31747, 251, 2, 8443, 2.99, '2007-04-29 06:01:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31748, 251, 2, 8982, 0.99, '2007-04-30 02:59:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31749, 251, 1, 9196, 2.99, '2007-04-30 10:58:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31750, 251, 1, 9892, 0.99, '2007-04-30 12:34:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31751, 252, 2, 4372, 0.99, '2007-04-07 18:37:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31752, 252, 2, 5554, 2.99, '2007-04-10 01:32:04.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31753, 252, 1, 6357, 0.99, '2007-04-11 19:27:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31754, 252, 2, 6369, 0.99, '2007-04-11 19:52:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31755, 252, 1, 7024, 4.99, '2007-04-27 01:05:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31756, 252, 2, 7121, 0.99, '2007-04-27 04:26:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31757, 252, 2, 7168, 0.99, '2007-04-27 06:19:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31758, 252, 1, 7670, 0.99, '2007-04-28 01:12:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31759, 252, 1, 8636, 5.99, '2007-04-29 12:52:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31760, 252, 1, 8899, 0.99, '2007-04-29 23:33:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31761, 253, 1, 3658, 7.99, '2007-04-06 06:29:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31762, 253, 1, 5505, 2.99, '2007-04-09 23:07:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31763, 253, 1, 5602, 4.99, '2007-04-10 03:30:48.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31764, 253, 2, 7689, 2.99, '2007-04-28 01:49:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31765, 253, 2, 7851, 0.99, '2007-04-28 08:00:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31766, 253, 2, 7887, 2.99, '2007-04-28 09:08:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31767, 253, 2, 8752, 2.99, '2007-04-29 17:43:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31768, 253, 2, 9606, 0.99, '2007-04-30 02:19:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31769, 253, 2, 9618, 6.99, '2007-04-30 02:44:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31770, 254, 1, 3882, 4.99, '2007-04-06 17:06:47.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31771, 254, 2, 5042, 2.99, '2007-04-09 01:48:56.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31772, 254, 1, 5072, 3.99, '2007-04-09 03:30:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31773, 254, 2, 5080, 2.99, '2007-04-09 03:52:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31774, 254, 1, 5537, 0.99, '2007-04-10 01:04:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31775, 254, 1, 5550, 5.99, '2007-04-10 01:27:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31776, 254, 1, 5826, 7.99, '2007-04-10 14:49:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31777, 254, 2, 5930, 4.99, '2007-04-10 20:27:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31778, 254, 2, 7011, 0.99, '2007-04-27 00:27:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31779, 254, 1, 7413, 4.99, '2007-04-27 15:14:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31780, 254, 2, 8216, 7.99, '2007-04-28 22:12:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31781, 254, 2, 8581, 4.99, '2007-04-29 10:30:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31782, 254, 2, 9494, 1.99, '2007-04-30 22:21:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31783, 255, 1, 4547, 0.99, '2007-04-08 02:48:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31784, 255, 1, 5706, 1.99, '2007-04-10 08:50:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31785, 255, 1, 5943, 0.99, '2007-04-10 21:16:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31786, 255, 2, 7475, 8.99, '2007-04-27 17:36:09.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31787, 255, 1, 7646, 2.99, '2007-04-28 00:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31788, 255, 1, 8562, 0.99, '2007-04-29 10:00:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31789, 255, 1, 9061, 6.99, '2007-04-30 05:50:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31790, 256, 1, 4130, 0.99, '2007-04-07 06:20:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31791, 256, 2, 4182, 0.99, '2007-04-07 08:56:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31792, 256, 1, 5179, 2.99, '2007-04-09 08:29:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31793, 256, 1, 6298, 0.99, '2007-04-11 16:10:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31794, 256, 1, 7661, 3.99, '2007-04-28 00:38:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31795, 256, 2, 9424, 2.99, '2007-04-30 19:39:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31796, 257, 2, 4462, 6.99, '2007-04-07 22:31:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31797, 257, 2, 4574, 4.99, '2007-04-08 04:08:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31798, 257, 1, 5495, 6.99, '2007-04-09 22:45:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31799, 257, 1, 5858, 4.99, '2007-04-10 16:28:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31800, 257, 1, 6422, 5.99, '2007-04-11 22:14:45.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31801, 257, 2, 6711, 5.99, '2007-04-12 11:52:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31802, 257, 2, 7007, 4.99, '2007-04-27 00:12:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31803, 257, 1, 7176, 2.99, '2007-04-27 06:32:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31804, 257, 1, 7496, 1.99, '2007-04-27 18:32:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31805, 257, 2, 7510, 2.99, '2007-04-27 19:06:23.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31806, 257, 2, 7518, 5.99, '2007-04-27 19:29:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31807, 257, 2, 8156, 3.99, '2007-04-28 19:27:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31808, 257, 2, 8252, 2.99, '2007-04-28 23:22:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31809, 257, 1, 8344, 4.99, '2007-04-29 03:13:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31810, 257, 1, 8640, 4.99, '2007-04-29 13:02:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31811, 257, 2, 8946, 6.99, '2007-04-30 01:43:19.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31812, 257, 1, 9800, 4.99, '2007-04-30 09:29:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31813, 257, 2, 10142, 4.99, '2007-04-30 20:39:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31814, 258, 2, 4408, 2.99, '2007-04-07 20:09:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31815, 258, 1, 4677, 5.99, '2007-04-08 08:59:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31816, 258, 2, 4897, 0.99, '2007-04-08 18:53:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31817, 258, 2, 5312, 5.99, '2007-04-09 14:31:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31818, 258, 1, 5674, 0.99, '2007-04-10 06:54:52.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31819, 258, 1, 5935, 9.99, '2007-04-10 20:39:30.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31820, 258, 2, 6012, 4.99, '2007-04-11 00:28:38.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31821, 258, 1, 7814, 2.99, '2007-04-28 06:38:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31822, 258, 1, 8675, 4.99, '2007-04-29 14:24:44.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31823, 258, 2, 9069, 4.99, '2007-04-30 06:08:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31824, 259, 2, 4199, 5.99, '2007-04-07 09:41:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31825, 259, 2, 4489, 4.99, '2007-04-07 23:52:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31826, 259, 1, 6074, 0.99, '2007-04-11 03:28:22.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31827, 259, 2, 6539, 3.99, '2007-04-12 03:19:15.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31828, 259, 2, 7188, 2.99, '2007-04-27 07:00:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31829, 259, 2, 7774, 7.99, '2007-04-28 05:31:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31830, 259, 1, 7817, 4.99, '2007-04-28 06:49:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31831, 259, 2, 9205, 6.99, '2007-04-30 11:15:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31832, 259, 1, 9282, 6.99, '2007-04-30 13:45:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31833, 259, 1, 9444, 7.99, '2007-04-30 20:17:10.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31834, 546, 1, 4591, 3.99, '2007-04-30 19:44:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31835, 260, 2, 4054, 0.99, '2007-04-07 02:10:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31836, 260, 2, 4741, 6.99, '2007-04-08 11:59:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31837, 260, 1, 4870, 2.99, '2007-04-08 17:43:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31838, 260, 2, 6328, 2.99, '2007-04-11 17:37:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31839, 260, 2, 7072, 0.99, '2007-04-27 02:30:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31840, 260, 1, 7268, 1.99, '2007-04-27 09:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31841, 260, 1, 7885, 7.99, '2007-04-28 09:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31842, 260, 1, 8475, 1.99, '2007-04-29 07:06:07.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31843, 260, 1, 8484, 2.99, '2007-04-29 07:20:25.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31844, 260, 1, 8717, 0.99, '2007-04-29 16:09:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31845, 260, 1, 8933, 0.99, '2007-04-30 01:04:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31846, 260, 2, 9176, 4.99, '2007-04-30 10:19:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31847, 261, 1, 5122, 3.99, '2007-04-09 05:48:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31848, 261, 1, 5449, 5.99, '2007-04-09 20:40:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31849, 261, 2, 6515, 2.99, '2007-04-12 02:18:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31850, 261, 1, 6743, 0.99, '2007-04-12 12:57:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31851, 261, 2, 9552, 4.99, '2007-04-30 00:33:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31852, 261, 1, 9842, 4.99, '2007-04-30 10:53:24.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31853, 261, 1, 9869, 4.99, '2007-04-30 11:50:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31854, 262, 1, 3521, 1.99, '2007-04-05 23:28:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31855, 262, 1, 3699, 3.99, '2007-04-06 08:39:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31856, 262, 1, 4501, 0.99, '2007-04-08 00:40:26.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31857, 262, 2, 5503, 0.99, '2007-04-09 23:04:03.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31858, 262, 1, 6291, 0.99, '2007-04-11 15:45:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31859, 262, 2, 6547, 7.99, '2007-04-12 03:26:12.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31860, 262, 1, 6724, 3.99, '2007-04-12 12:13:41.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31861, 262, 2, 6762, 7.99, '2007-04-12 13:53:59.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31862, 262, 1, 6805, 6.99, '2007-04-12 15:51:27.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31863, 262, 1, 6986, 4.99, '2007-04-26 23:27:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31864, 262, 1, 9105, 6.99, '2007-04-30 07:18:51.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31865, 263, 1, 3578, 4.99, '2007-04-06 02:15:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31866, 263, 2, 3773, 2.99, '2007-04-06 11:52:00.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31867, 263, 2, 4637, 0.99, '2007-04-08 07:18:20.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31868, 263, 2, 4682, 2.99, '2007-04-08 09:06:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31869, 263, 2, 5125, 2.99, '2007-04-09 05:53:54.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31870, 263, 2, 5254, 1.99, '2007-04-09 12:18:37.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31871, 263, 2, 6376, 4.99, '2007-04-11 20:08:49.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31872, 263, 1, 6483, 2.99, '2007-04-12 00:27:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31873, 263, 1, 6808, 1.99, '2007-04-12 16:05:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31874, 263, 2, 7291, 4.99, '2007-04-27 10:59:13.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31875, 263, 1, 7425, 4.99, '2007-04-27 15:47:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31876, 263, 1, 7706, 4.99, '2007-04-28 02:31:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31877, 263, 2, 7833, 1.99, '2007-04-28 07:14:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31878, 264, 1, 3618, 6.99, '2007-04-06 04:27:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31879, 264, 1, 4328, 4.99, '2007-04-07 16:31:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31880, 264, 1, 4539, 0.99, '2007-04-08 02:29:28.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31881, 264, 1, 6340, 8.99, '2007-04-11 18:14:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31882, 264, 2, 6391, 0.99, '2007-04-11 20:51:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31883, 264, 1, 6395, 2.99, '2007-04-11 20:57:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31884, 264, 1, 6543, 0.99, '2007-04-12 03:22:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31885, 264, 1, 7006, 8.99, '2007-04-27 00:10:46.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31886, 264, 2, 9380, 2.99, '2007-04-30 17:45:57.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31887, 264, 2, 9515, 0.99, '2007-04-30 23:03:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31888, 264, 1, 9861, 5.99, '2007-04-30 11:32:40.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31889, 264, 1, 9932, 5.99, '2007-04-30 13:48:14.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31890, 265, 1, 3823, 2.99, '2007-04-06 14:09:53.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31891, 265, 1, 4610, 0.99, '2007-04-08 05:56:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31892, 265, 1, 4797, 2.99, '2007-04-08 15:07:31.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31893, 265, 2, 5029, 7.99, '2007-04-09 01:03:58.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31894, 265, 1, 5417, 4.99, '2007-04-09 19:02:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31895, 265, 1, 5710, 9.99, '2007-04-10 09:01:18.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31896, 265, 1, 6068, 4.99, '2007-04-11 03:09:35.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31897, 265, 2, 6371, 4.99, '2007-04-11 20:00:17.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31898, 265, 2, 6553, 5.99, '2007-04-12 03:35:05.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31899, 265, 2, 6921, 6.99, '2007-04-12 21:07:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31900, 265, 2, 7414, 1.99, '2007-04-27 15:14:33.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31901, 265, 1, 7704, 2.99, '2007-04-28 02:30:39.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31902, 265, 1, 8278, 5.99, '2007-04-29 00:11:21.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31903, 265, 2, 8489, 2.99, '2007-04-29 07:26:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31904, 265, 2, 8665, 0.99, '2007-04-29 14:07:55.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31905, 265, 1, 9416, 2.99, '2007-04-30 19:21:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31906, 266, 2, 3585, 0.99, '2007-04-06 02:51:02.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31907, 266, 2, 5362, 5.99, '2007-04-09 16:44:34.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31908, 266, 1, 5577, 4.99, '2007-04-10 02:27:06.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31909, 266, 1, 8492, 2.99, '2007-04-29 07:32:43.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31910, 266, 2, 9109, 5.99, '2007-04-30 07:26:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31911, 267, 1, 3817, 2.99, '2007-04-06 14:00:11.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31912, 267, 1, 5340, 6.99, '2007-04-09 15:40:01.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31913, 267, 1, 6070, 0.99, '2007-04-11 03:16:08.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31914, 267, 1, 6706, 3.99, '2007-04-12 11:27:42.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31915, 267, 1, 8190, 4.99, '2007-04-28 21:15:32.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31916, 267, 1, 8572, 1.99, '2007-04-29 10:19:50.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31917, 267, 2, 12066, 7.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31918, 267, 2, 13713, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31919, 269, 1, 13025, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31920, 269, 2, 12610, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31921, 274, 1, 13486, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31922, 279, 2, 13538, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31923, 282, 2, 15430, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31924, 284, 1, 12064, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31925, 284, 2, 12959, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31926, 287, 2, 14204, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31927, 295, 2, 15735, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31928, 296, 1, 12009, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31929, 300, 1, 15695, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31930, 315, 2, 14426, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31931, 317, 1, 12574, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31932, 324, 2, 13965, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31933, 327, 1, 15297, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31934, 330, 2, 11709, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31935, 334, 1, 14219, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31936, 335, 2, 11541, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31937, 336, 1, 13022, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31938, 337, 2, 11847, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31939, 349, 1, 14915, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31940, 352, 2, 13578, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31941, 354, 1, 12759, 7.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31942, 354, 1, 11782, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31943, 355, 1, 14760, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31944, 359, 2, 15655, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31945, 361, 1, 13298, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31946, 361, 1, 14769, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31947, 366, 1, 13421, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31948, 369, 1, 13898, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31949, 373, 1, 11739, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31950, 374, 2, 15966, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31951, 388, 1, 12891, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31952, 394, 2, 13178, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31953, 405, 1, 12792, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31954, 410, 1, 12665, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31955, 411, 2, 13246, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31956, 412, 1, 15314, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31957, 417, 2, 13261, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31958, 421, 2, 15710, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31959, 422, 2, 15441, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31960, 424, 1, 15094, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31961, 431, 2, 13587, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31962, 438, 2, 12524, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31963, 440, 1, 13106, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31964, 441, 1, 14878, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31965, 448, 2, 14734, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31966, 448, 1, 13577, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31967, 450, 1, 14172, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31968, 452, 1, 14175, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31969, 457, 1, 12645, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31970, 457, 2, 14516, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31971, 472, 2, 14928, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31972, 474, 1, 11909, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31973, 476, 1, 13941, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31974, 479, 1, 12101, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31975, 493, 2, 14160, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31976, 495, 2, 13753, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31977, 496, 1, 13182, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31978, 497, 1, 12698, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31979, 505, 2, 15867, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31980, 508, 1, 14318, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31981, 512, 1, 12786, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31982, 516, 1, 12130, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31983, 516, 1, 12915, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31984, 521, 2, 11672, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31985, 525, 1, 14954, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31986, 527, 1, 14267, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31987, 530, 1, 13561, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31988, 532, 1, 14616, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31989, 533, 2, 14018, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31990, 534, 1, 14526, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31991, 537, 1, 13419, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31992, 548, 1, 13584, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31993, 550, 2, 11757, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31994, 557, 1, 14278, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31995, 560, 2, 12116, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31996, 560, 2, 14425, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31997, 561, 1, 14415, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31998, 568, 2, 14531, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (31999, 570, 1, 12716, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32000, 576, 2, 11942, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32001, 576, 1, 13464, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32002, 579, 2, 15794, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32003, 582, 2, 12127, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32004, 585, 2, 14604, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32005, 587, 1, 12144, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32006, 590, 2, 15458, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32007, 592, 2, 14606, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32008, 596, 1, 15423, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32009, 597, 1, 11652, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32010, 5, 2, 13209, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32011, 9, 1, 15813, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32012, 11, 1, 11646, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32013, 14, 1, 13780, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32014, 15, 1, 13798, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32015, 15, 2, 13968, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32016, 21, 1, 14933, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32017, 22, 1, 12222, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32018, 23, 2, 15532, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32019, 28, 2, 12938, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32020, 29, 2, 15577, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32021, 33, 1, 12277, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32022, 41, 1, 15875, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32023, 42, 1, 13351, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32024, 42, 1, 15407, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32025, 43, 2, 15644, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32026, 43, 1, 15745, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32027, 44, 2, 13428, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32028, 52, 1, 12001, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32029, 53, 2, 11657, 7.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32030, 53, 1, 14137, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32031, 56, 2, 15714, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32032, 58, 2, 15326, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32033, 60, 2, 12489, 9.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32034, 60, 2, 14741, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32035, 64, 2, 13333, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32036, 69, 2, 11995, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32037, 73, 2, 13108, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32038, 75, 2, 13534, 8.97, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32039, 75, 1, 14488, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32040, 75, 2, 15191, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32041, 80, 2, 12457, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32042, 83, 2, 11563, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32043, 87, 2, 12719, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32044, 91, 1, 12902, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32045, 94, 1, 15371, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32046, 99, 1, 11593, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32047, 100, 2, 15021, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32048, 101, 2, 12141, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32049, 107, 1, 13079, 1.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32050, 107, 1, 15497, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32051, 108, 1, 15294, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32052, 111, 2, 15542, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32053, 114, 2, 12506, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32054, 115, 2, 13056, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32055, 120, 1, 15780, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32056, 135, 1, 13390, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32057, 142, 1, 15454, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32058, 152, 2, 11848, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32059, 155, 2, 11496, 7.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32060, 155, 1, 12352, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32061, 162, 1, 14220, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32062, 163, 2, 11754, 7.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32063, 163, 1, 15282, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32064, 168, 1, 15894, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32065, 175, 2, 14060, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32066, 175, 2, 13161, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32067, 178, 1, 12897, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32068, 180, 1, 12901, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32069, 181, 2, 13008, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32070, 186, 1, 14216, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32071, 188, 1, 14503, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32072, 190, 2, 15167, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32073, 191, 1, 14361, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32074, 192, 1, 11611, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32075, 193, 2, 15729, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32076, 199, 2, 13952, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32077, 200, 2, 11866, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32078, 208, 1, 13719, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32079, 208, 1, 15717, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32080, 211, 2, 12746, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32081, 213, 2, 14374, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32082, 214, 2, 15645, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32083, 215, 2, 15862, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32084, 216, 1, 12970, 5.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32085, 216, 1, 11676, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32086, 219, 1, 11577, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32087, 227, 2, 13374, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32088, 228, 2, 12672, 3.98, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32089, 228, 1, 15234, 0.00, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32090, 229, 2, 13295, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32091, 234, 1, 15778, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32092, 236, 1, 12988, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32093, 244, 2, 12736, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32094, 245, 2, 12682, 2.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32095, 251, 1, 14107, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32096, 252, 2, 13756, 4.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32097, 263, 1, 15293, 0.99, '2007-05-14 13:44:29.996577'); INSERT INTO payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) VALUES (32098, 264, 2, 14243, 2.99, '2007-05-14 13:44:29.996577'); SELECT pg_catalog.setval('payment_payment_id_seq', 32098, true); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1, '2005-05-24 22:53:30', 367, 130, '2005-05-26 22:04:30', 1, '2006-02-15 21:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2, '2005-05-24 22:54:33', 1525, 459, '2005-05-28 19:40:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3, '2005-05-24 23:03:39', 1711, 408, '2005-06-01 22:12:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4, '2005-05-24 23:04:41', 2452, 333, '2005-06-03 01:43:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5, '2005-05-24 23:05:21', 2079, 222, '2005-06-02 04:33:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6, '2005-05-24 23:08:07', 2792, 549, '2005-05-27 01:32:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7, '2005-05-24 23:11:53', 3995, 269, '2005-05-29 20:34:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8, '2005-05-24 23:31:46', 2346, 239, '2005-05-27 23:33:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9, '2005-05-25 00:00:40', 2580, 126, '2005-05-28 00:22:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10, '2005-05-25 00:02:21', 1824, 399, '2005-05-31 22:44:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11, '2005-05-25 00:09:02', 4443, 142, '2005-06-02 20:56:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12, '2005-05-25 00:19:27', 1584, 261, '2005-05-30 05:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13, '2005-05-25 00:22:55', 2294, 334, '2005-05-30 04:28:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14, '2005-05-25 00:31:15', 2701, 446, '2005-05-26 02:56:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15, '2005-05-25 00:39:22', 3049, 319, '2005-06-03 03:30:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16, '2005-05-25 00:43:11', 389, 316, '2005-05-26 04:42:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (17, '2005-05-25 01:06:36', 830, 575, '2005-05-27 00:43:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (18, '2005-05-25 01:10:47', 3376, 19, '2005-05-31 06:35:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (19, '2005-05-25 01:17:24', 1941, 456, '2005-05-31 06:00:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (20, '2005-05-25 01:48:41', 3517, 185, '2005-05-27 02:20:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (21, '2005-05-25 01:59:46', 146, 388, '2005-05-26 01:01:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (22, '2005-05-25 02:19:23', 727, 509, '2005-05-26 04:52:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (23, '2005-05-25 02:40:21', 4441, 438, '2005-05-29 06:34:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (24, '2005-05-25 02:53:02', 3273, 350, '2005-05-27 01:15:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (25, '2005-05-25 03:21:20', 3961, 37, '2005-05-27 21:25:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (26, '2005-05-25 03:36:50', 4371, 371, '2005-05-31 00:34:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (27, '2005-05-25 03:41:50', 1225, 301, '2005-05-30 01:13:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (28, '2005-05-25 03:42:37', 4068, 232, '2005-05-26 09:26:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (29, '2005-05-25 03:47:12', 611, 44, '2005-05-30 00:31:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (30, '2005-05-25 04:01:32', 3744, 430, '2005-05-30 03:12:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (31, '2005-05-25 04:05:17', 4482, 369, '2005-05-30 07:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (32, '2005-05-25 04:06:21', 3832, 230, '2005-05-25 23:55:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (33, '2005-05-25 04:18:51', 1681, 272, '2005-05-27 03:58:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (34, '2005-05-25 04:19:28', 2613, 597, '2005-05-29 00:10:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (35, '2005-05-25 04:24:36', 1286, 484, '2005-05-27 07:02:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (36, '2005-05-25 04:36:26', 1308, 88, '2005-05-29 00:31:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (37, '2005-05-25 04:44:31', 403, 535, '2005-05-29 01:03:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (38, '2005-05-25 04:47:44', 2540, 302, '2005-06-01 00:58:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (39, '2005-05-25 04:51:46', 4466, 207, '2005-05-31 03:14:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (40, '2005-05-25 05:09:04', 2638, 413, '2005-05-27 23:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (41, '2005-05-25 05:12:29', 1761, 174, '2005-06-02 00:28:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (42, '2005-05-25 05:24:58', 380, 523, '2005-05-31 02:47:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (43, '2005-05-25 05:39:25', 2578, 532, '2005-05-26 06:54:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (44, '2005-05-25 05:53:23', 3098, 207, '2005-05-29 10:56:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (45, '2005-05-25 05:59:39', 1853, 436, '2005-06-02 09:56:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (46, '2005-05-25 06:04:08', 3318, 7, '2005-06-02 08:18:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (47, '2005-05-25 06:05:20', 2211, 35, '2005-05-30 03:04:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (48, '2005-05-25 06:20:46', 1780, 282, '2005-06-02 05:42:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (49, '2005-05-25 06:39:35', 2965, 498, '2005-05-30 10:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (50, '2005-05-25 06:44:53', 1983, 18, '2005-05-28 11:28:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (51, '2005-05-25 06:49:10', 1257, 256, '2005-05-26 06:42:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (52, '2005-05-25 06:51:29', 4017, 507, '2005-05-31 01:27:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (53, '2005-05-25 07:19:16', 1255, 569, '2005-05-27 05:19:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (54, '2005-05-25 07:23:25', 2787, 291, '2005-06-01 05:05:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (55, '2005-05-25 08:26:13', 1139, 131, '2005-05-30 10:57:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (56, '2005-05-25 08:28:11', 1352, 511, '2005-05-26 14:21:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (57, '2005-05-25 08:43:32', 3938, 6, '2005-05-29 06:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (58, '2005-05-25 08:53:14', 3050, 323, '2005-05-28 14:40:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (59, '2005-05-25 08:56:42', 2884, 408, '2005-06-01 09:52:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (60, '2005-05-25 08:58:25', 330, 470, '2005-05-30 14:14:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (61, '2005-05-25 09:01:57', 4210, 250, '2005-06-02 07:22:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (62, '2005-05-25 09:18:52', 261, 419, '2005-05-30 10:55:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (63, '2005-05-25 09:19:16', 4008, 383, '2005-05-27 04:24:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (64, '2005-05-25 09:21:29', 79, 368, '2005-06-03 11:31:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (65, '2005-05-25 09:32:03', 3552, 346, '2005-05-29 14:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (66, '2005-05-25 09:35:12', 1162, 86, '2005-05-29 04:16:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (67, '2005-05-25 09:41:01', 239, 119, '2005-05-27 13:46:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (68, '2005-05-25 09:47:31', 4029, 120, '2005-05-31 10:20:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (69, '2005-05-25 10:10:14', 3207, 305, '2005-05-27 14:02:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (70, '2005-05-25 10:15:23', 2168, 73, '2005-05-27 05:56:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (71, '2005-05-25 10:26:39', 2408, 100, '2005-05-28 04:59:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (72, '2005-05-25 10:52:13', 2260, 48, '2005-05-28 05:52:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (73, '2005-05-25 11:00:07', 517, 391, '2005-06-01 13:56:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (74, '2005-05-25 11:09:48', 1744, 265, '2005-05-26 12:23:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (75, '2005-05-25 11:13:34', 3393, 510, '2005-06-03 12:58:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (76, '2005-05-25 11:30:37', 3021, 1, '2005-06-03 12:00:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (77, '2005-05-25 11:31:59', 1303, 451, '2005-05-26 16:53:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (78, '2005-05-25 11:35:18', 4067, 135, '2005-05-31 12:48:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (79, '2005-05-25 12:11:07', 3299, 245, '2005-06-03 10:54:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (80, '2005-05-25 12:12:07', 2478, 314, '2005-05-31 17:46:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (81, '2005-05-25 12:15:19', 2610, 286, '2005-06-02 14:08:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (82, '2005-05-25 12:17:46', 1388, 427, '2005-06-01 10:48:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (83, '2005-05-25 12:30:15', 466, 131, '2005-05-27 15:40:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (84, '2005-05-25 12:36:30', 1829, 492, '2005-05-29 18:33:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (85, '2005-05-25 13:05:34', 470, 414, '2005-05-29 16:53:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (86, '2005-05-25 13:36:12', 2275, 266, '2005-05-30 14:53:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (87, '2005-05-25 13:52:43', 1586, 331, '2005-05-29 11:12:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (88, '2005-05-25 14:13:54', 2221, 53, '2005-05-29 09:32:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (89, '2005-05-25 14:28:29', 2181, 499, '2005-05-29 14:33:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (90, '2005-05-25 14:31:25', 2984, 25, '2005-06-01 10:07:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (91, '2005-05-25 14:57:22', 139, 267, '2005-06-01 18:32:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (92, '2005-05-25 15:38:46', 775, 302, '2005-05-31 13:40:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (93, '2005-05-25 15:54:16', 4360, 288, '2005-06-03 20:18:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (94, '2005-05-25 16:03:42', 1675, 197, '2005-05-30 14:23:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (95, '2005-05-25 16:12:52', 178, 400, '2005-06-02 18:55:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (96, '2005-05-25 16:32:19', 3418, 49, '2005-05-30 10:47:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (97, '2005-05-25 16:34:24', 1283, 263, '2005-05-28 12:13:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (98, '2005-05-25 16:48:24', 2970, 269, '2005-05-27 11:29:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (99, '2005-05-25 16:50:20', 535, 44, '2005-05-28 18:52:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (100, '2005-05-25 16:50:28', 2599, 208, '2005-06-02 22:11:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (101, '2005-05-25 17:17:04', 617, 468, '2005-05-31 19:47:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (102, '2005-05-25 17:22:10', 373, 343, '2005-05-31 19:47:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (103, '2005-05-25 17:30:42', 3343, 384, '2005-06-03 22:36:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (104, '2005-05-25 17:46:33', 4281, 310, '2005-05-27 15:20:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (105, '2005-05-25 17:54:12', 794, 108, '2005-05-30 12:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (106, '2005-05-25 18:18:19', 3627, 196, '2005-06-04 00:01:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (107, '2005-05-25 18:28:09', 2833, 317, '2005-06-03 22:46:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (108, '2005-05-25 18:30:05', 3289, 242, '2005-05-30 19:40:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (109, '2005-05-25 18:40:20', 1044, 503, '2005-05-29 20:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (110, '2005-05-25 18:43:49', 4108, 19, '2005-06-03 18:13:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (111, '2005-05-25 18:45:19', 3725, 227, '2005-05-28 17:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (112, '2005-05-25 18:57:24', 2153, 500, '2005-06-02 20:44:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (113, '2005-05-25 19:07:40', 2963, 93, '2005-05-27 22:16:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (114, '2005-05-25 19:12:42', 4502, 506, '2005-06-01 23:10:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (115, '2005-05-25 19:13:25', 749, 455, '2005-05-29 20:17:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (116, '2005-05-25 19:27:51', 4453, 18, '2005-05-26 16:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (117, '2005-05-25 19:30:46', 4278, 7, '2005-05-31 23:59:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (118, '2005-05-25 19:31:18', 872, 524, '2005-05-31 15:00:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (119, '2005-05-25 19:37:02', 1359, 51, '2005-05-29 23:51:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (120, '2005-05-25 19:37:47', 37, 365, '2005-06-01 23:29:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (121, '2005-05-25 19:41:29', 1053, 405, '2005-05-29 21:31:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (122, '2005-05-25 19:46:21', 2908, 273, '2005-06-02 19:07:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (123, '2005-05-25 20:26:42', 1795, 43, '2005-05-26 19:41:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (124, '2005-05-25 20:46:11', 212, 246, '2005-05-30 00:47:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (125, '2005-05-25 20:48:50', 952, 368, '2005-06-02 21:39:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (126, '2005-05-25 21:07:59', 2047, 439, '2005-05-28 18:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (127, '2005-05-25 21:10:40', 2026, 94, '2005-06-02 21:38:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (128, '2005-05-25 21:19:53', 4322, 40, '2005-05-29 23:34:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (129, '2005-05-25 21:20:03', 4154, 23, '2005-06-04 01:25:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (130, '2005-05-25 21:21:56', 3990, 56, '2005-05-30 22:41:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (131, '2005-05-25 21:42:46', 815, 325, '2005-05-30 23:25:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (132, '2005-05-25 21:46:54', 3367, 479, '2005-05-31 21:02:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (133, '2005-05-25 21:48:30', 399, 237, '2005-05-30 00:26:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (134, '2005-05-25 21:48:41', 2272, 222, '2005-06-02 18:28:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (135, '2005-05-25 21:58:58', 103, 304, '2005-06-03 17:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (136, '2005-05-25 22:02:30', 2296, 504, '2005-05-31 18:06:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (137, '2005-05-25 22:25:18', 2591, 560, '2005-06-01 02:30:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (138, '2005-05-25 22:48:22', 4134, 586, '2005-05-29 20:21:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (139, '2005-05-25 23:00:21', 327, 257, '2005-05-29 17:12:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (140, '2005-05-25 23:34:22', 655, 354, '2005-05-27 01:10:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (141, '2005-05-25 23:34:53', 811, 89, '2005-06-02 01:57:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (142, '2005-05-25 23:43:47', 4407, 472, '2005-05-29 00:46:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (143, '2005-05-25 23:45:52', 847, 297, '2005-05-27 21:41:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (144, '2005-05-25 23:49:56', 1689, 357, '2005-06-01 21:41:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (145, '2005-05-25 23:59:03', 3905, 82, '2005-05-31 02:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (146, '2005-05-26 00:07:11', 1431, 433, '2005-06-04 00:20:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (147, '2005-05-26 00:17:50', 633, 274, '2005-05-29 23:21:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (148, '2005-05-26 00:25:23', 4252, 142, '2005-06-01 19:29:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (149, '2005-05-26 00:28:05', 1084, 319, '2005-06-02 21:30:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (150, '2005-05-26 00:28:39', 909, 429, '2005-06-01 02:10:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (151, '2005-05-26 00:37:28', 2942, 14, '2005-05-30 06:28:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (152, '2005-05-26 00:41:10', 2622, 57, '2005-06-03 06:05:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (153, '2005-05-26 00:47:47', 3888, 348, '2005-05-27 21:28:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (154, '2005-05-26 00:55:56', 1354, 185, '2005-05-29 23:18:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (155, '2005-05-26 01:15:05', 288, 551, '2005-06-01 00:03:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (156, '2005-05-26 01:19:05', 3193, 462, '2005-05-27 23:43:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (157, '2005-05-26 01:25:21', 887, 344, '2005-05-26 21:17:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (158, '2005-05-26 01:27:11', 2395, 354, '2005-06-03 00:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (159, '2005-05-26 01:34:28', 3453, 505, '2005-05-29 04:00:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (160, '2005-05-26 01:46:20', 1885, 290, '2005-06-01 05:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (161, '2005-05-26 01:51:48', 2941, 182, '2005-05-27 05:42:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (162, '2005-05-26 02:02:05', 1229, 296, '2005-05-27 03:38:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (163, '2005-05-26 02:26:23', 2306, 104, '2005-06-04 06:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (164, '2005-05-26 02:26:49', 1070, 151, '2005-05-28 00:32:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (165, '2005-05-26 02:28:36', 2735, 33, '2005-06-02 03:21:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (166, '2005-05-26 02:49:11', 3894, 322, '2005-05-31 01:28:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (167, '2005-05-26 02:50:31', 865, 401, '2005-05-27 03:07:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (168, '2005-05-26 03:07:43', 2714, 469, '2005-06-02 02:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (169, '2005-05-26 03:09:30', 1758, 381, '2005-05-27 01:37:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (170, '2005-05-26 03:11:12', 3688, 107, '2005-06-02 03:53:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (171, '2005-05-26 03:14:15', 4483, 400, '2005-06-03 00:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (172, '2005-05-26 03:17:42', 2873, 176, '2005-05-29 04:11:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (173, '2005-05-26 03:42:10', 3596, 533, '2005-05-28 01:37:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (174, '2005-05-26 03:44:10', 3954, 552, '2005-05-28 07:13:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (175, '2005-05-26 03:46:26', 4346, 47, '2005-06-03 06:01:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (176, '2005-05-26 03:47:39', 851, 250, '2005-06-01 02:36:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (177, '2005-05-26 04:14:29', 3545, 548, '2005-06-01 08:16:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (178, '2005-05-26 04:21:46', 1489, 196, '2005-06-04 07:09:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (179, '2005-05-26 04:26:06', 2575, 19, '2005-06-03 10:06:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (180, '2005-05-26 04:46:23', 2752, 75, '2005-06-01 09:58:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (181, '2005-05-26 04:47:06', 2417, 587, '2005-05-29 06:34:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (182, '2005-05-26 04:49:17', 4396, 237, '2005-06-01 05:43:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (183, '2005-05-26 05:01:18', 2877, 254, '2005-06-01 09:04:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (184, '2005-05-26 05:29:49', 1970, 556, '2005-05-28 10:10:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (185, '2005-05-26 05:30:03', 2598, 125, '2005-06-02 09:48:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (186, '2005-05-26 05:32:52', 1799, 468, '2005-06-03 07:19:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (187, '2005-05-26 05:42:37', 4004, 515, '2005-06-04 00:38:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (188, '2005-05-26 05:47:12', 3342, 243, '2005-05-26 23:48:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (189, '2005-05-26 06:01:41', 984, 247, '2005-05-27 06:11:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (190, '2005-05-26 06:11:28', 3962, 533, '2005-06-01 09:44:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (191, '2005-05-26 06:14:06', 4365, 412, '2005-05-28 05:33:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (192, '2005-05-26 06:20:37', 1897, 437, '2005-06-02 10:57:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (193, '2005-05-26 06:41:48', 3900, 270, '2005-05-30 06:21:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (194, '2005-05-26 06:52:33', 1337, 29, '2005-05-30 04:08:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (195, '2005-05-26 06:52:36', 506, 564, '2005-05-31 02:47:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (196, '2005-05-26 06:55:58', 190, 184, '2005-05-27 10:54:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (197, '2005-05-26 06:59:21', 4212, 546, '2005-06-03 05:04:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (198, '2005-05-26 07:03:49', 1789, 54, '2005-06-04 11:45:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (199, '2005-05-26 07:11:58', 2135, 71, '2005-05-28 09:06:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (200, '2005-05-26 07:12:21', 3926, 321, '2005-05-31 12:07:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (201, '2005-05-26 07:13:45', 776, 444, '2005-06-04 02:02:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (202, '2005-05-26 07:27:36', 674, 20, '2005-06-02 03:52:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (203, '2005-05-26 07:27:57', 3374, 109, '2005-06-03 12:52:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (204, '2005-05-26 07:30:37', 1842, 528, '2005-05-30 08:11:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (205, '2005-05-26 07:59:37', 303, 114, '2005-05-29 09:43:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (206, '2005-05-26 08:01:54', 1717, 345, '2005-05-27 06:26:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (207, '2005-05-26 08:04:38', 102, 47, '2005-05-27 09:32:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (208, '2005-05-26 08:10:22', 3669, 274, '2005-05-27 03:55:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (209, '2005-05-26 08:14:01', 729, 379, '2005-05-27 09:00:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (210, '2005-05-26 08:14:15', 1801, 391, '2005-05-27 12:12:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (211, '2005-05-26 08:33:10', 4005, 170, '2005-05-28 14:09:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (212, '2005-05-26 08:34:41', 764, 59, '2005-05-30 12:46:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (213, '2005-05-26 08:44:08', 1505, 394, '2005-05-31 12:33:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (214, '2005-05-26 08:48:49', 1453, 98, '2005-05-31 04:06:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (215, '2005-05-26 09:02:47', 679, 197, '2005-05-28 09:45:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (216, '2005-05-26 09:17:43', 1398, 91, '2005-06-03 08:21:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (217, '2005-05-26 09:24:26', 4395, 121, '2005-05-31 03:24:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (218, '2005-05-26 09:27:09', 2291, 309, '2005-06-04 11:53:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (219, '2005-05-26 09:41:45', 3074, 489, '2005-05-28 04:40:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (220, '2005-05-26 10:06:49', 1259, 542, '2005-06-01 07:43:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (221, '2005-05-26 10:14:09', 3578, 143, '2005-05-29 05:57:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (222, '2005-05-26 10:14:38', 2745, 83, '2005-05-31 08:36:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (223, '2005-05-26 10:15:23', 3121, 460, '2005-05-30 11:43:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (224, '2005-05-26 10:18:27', 4285, 318, '2005-06-04 06:59:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (225, '2005-05-26 10:27:50', 651, 467, '2005-06-01 07:01:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (226, '2005-05-26 10:44:04', 4181, 221, '2005-05-31 13:26:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (227, '2005-05-26 10:51:46', 214, 301, '2005-05-30 07:24:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (228, '2005-05-26 10:54:28', 511, 571, '2005-06-04 09:39:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (229, '2005-05-26 11:19:20', 1131, 312, '2005-05-31 11:56:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (230, '2005-05-26 11:31:50', 1085, 58, '2005-05-30 15:22:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (231, '2005-05-26 11:31:59', 4032, 365, '2005-05-27 07:27:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (232, '2005-05-26 11:38:05', 2945, 256, '2005-05-27 08:42:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (233, '2005-05-26 11:43:44', 715, 531, '2005-05-28 17:28:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (234, '2005-05-26 11:47:20', 1321, 566, '2005-06-03 10:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (235, '2005-05-26 11:51:09', 3537, 119, '2005-06-04 09:36:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (236, '2005-05-26 11:53:49', 1265, 446, '2005-05-28 13:55:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (237, '2005-05-26 12:15:13', 241, 536, '2005-05-29 18:10:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (238, '2005-05-26 12:30:22', 503, 211, '2005-05-27 06:49:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (239, '2005-05-26 12:30:26', 131, 49, '2005-06-01 13:26:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (240, '2005-05-26 12:40:23', 3420, 103, '2005-06-04 07:22:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (241, '2005-05-26 12:49:01', 4438, 245, '2005-05-28 11:43:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (242, '2005-05-26 13:05:08', 2095, 214, '2005-06-02 15:26:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (243, '2005-05-26 13:06:05', 1721, 543, '2005-06-03 17:28:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (244, '2005-05-26 13:40:40', 1041, 257, '2005-05-31 11:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (245, '2005-05-26 13:46:59', 3045, 158, '2005-05-27 09:58:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (246, '2005-05-26 13:57:07', 2829, 240, '2005-05-29 10:12:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (247, '2005-05-26 14:01:05', 4095, 102, '2005-05-28 13:38:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (248, '2005-05-26 14:07:58', 1913, 545, '2005-05-31 14:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (249, '2005-05-26 14:19:09', 2428, 472, '2005-05-28 17:47:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (250, '2005-05-26 14:30:24', 368, 539, '2005-05-27 08:50:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (251, '2005-05-26 14:35:40', 4352, 204, '2005-05-29 17:17:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (252, '2005-05-26 14:39:53', 1203, 187, '2005-06-02 14:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (253, '2005-05-26 14:43:14', 2969, 416, '2005-05-27 12:21:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (254, '2005-05-26 14:43:48', 1835, 390, '2005-05-31 09:19:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (255, '2005-05-26 14:52:15', 3264, 114, '2005-05-27 12:45:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (256, '2005-05-26 15:20:58', 3194, 436, '2005-05-31 15:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (257, '2005-05-26 15:27:05', 2570, 373, '2005-05-29 16:25:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (258, '2005-05-26 15:28:14', 3534, 502, '2005-05-30 18:38:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (259, '2005-05-26 15:32:46', 30, 482, '2005-06-04 15:27:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (260, '2005-05-26 15:42:20', 435, 21, '2005-05-31 13:21:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (261, '2005-05-26 15:44:23', 1369, 414, '2005-06-02 09:47:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (262, '2005-05-26 15:46:56', 4261, 236, '2005-05-28 15:49:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (263, '2005-05-26 15:47:40', 1160, 449, '2005-05-30 10:07:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (264, '2005-05-26 16:00:49', 2069, 251, '2005-05-27 10:12:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (265, '2005-05-26 16:07:38', 2276, 303, '2005-06-01 14:20:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (266, '2005-05-26 16:08:05', 3303, 263, '2005-05-27 10:55:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (267, '2005-05-26 16:16:21', 1206, 417, '2005-05-30 16:53:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (268, '2005-05-26 16:19:08', 1714, 75, '2005-05-27 14:35:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (269, '2005-05-26 16:19:46', 3501, 322, '2005-05-27 15:59:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (270, '2005-05-26 16:20:56', 207, 200, '2005-06-03 12:40:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (271, '2005-05-26 16:22:01', 2388, 92, '2005-06-03 17:30:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (272, '2005-05-26 16:27:11', 971, 71, '2005-06-03 13:10:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (273, '2005-05-26 16:29:36', 1590, 193, '2005-05-29 18:49:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (274, '2005-05-26 16:48:51', 656, 311, '2005-06-03 18:17:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (275, '2005-05-26 17:09:53', 1718, 133, '2005-06-04 22:35:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (276, '2005-05-26 17:16:07', 1221, 58, '2005-06-03 12:59:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (277, '2005-05-26 17:32:11', 1409, 45, '2005-05-28 22:54:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (278, '2005-05-26 17:40:58', 182, 214, '2005-06-02 16:43:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (279, '2005-05-26 18:02:50', 661, 384, '2005-06-03 18:48:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (280, '2005-05-26 18:36:58', 1896, 167, '2005-05-27 23:42:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (281, '2005-05-26 18:49:35', 1208, 582, '2005-05-27 18:11:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (282, '2005-05-26 18:56:26', 4486, 282, '2005-06-01 16:32:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (283, '2005-05-26 19:05:05', 3530, 242, '2005-05-31 19:19:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (284, '2005-05-26 19:21:44', 350, 359, '2005-06-04 14:18:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (285, '2005-05-26 19:41:40', 2486, 162, '2005-05-31 16:58:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (286, '2005-05-26 19:44:51', 314, 371, '2005-06-04 18:00:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (287, '2005-05-26 19:44:54', 3631, 17, '2005-06-02 01:10:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (288, '2005-05-26 19:47:49', 3546, 82, '2005-06-03 20:53:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (289, '2005-05-26 20:01:09', 2449, 81, '2005-05-28 15:09:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (290, '2005-05-26 20:08:33', 2776, 429, '2005-05-30 00:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (291, '2005-05-26 20:20:47', 485, 577, '2005-06-03 02:06:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (292, '2005-05-26 20:22:12', 4264, 515, '2005-06-05 00:58:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (293, '2005-05-26 20:27:02', 1828, 158, '2005-06-03 16:45:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (294, '2005-05-26 20:29:57', 2751, 369, '2005-05-28 17:20:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (295, '2005-05-26 20:33:20', 4030, 65, '2005-05-27 18:23:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (296, '2005-05-26 20:35:19', 3878, 468, '2005-06-04 02:31:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (297, '2005-05-26 20:48:48', 1594, 48, '2005-05-27 19:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (298, '2005-05-26 20:52:26', 1083, 460, '2005-05-29 22:08:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (299, '2005-05-26 20:55:36', 4376, 448, '2005-05-28 00:25:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (300, '2005-05-26 20:57:00', 249, 47, '2005-06-05 01:34:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (301, '2005-05-26 21:06:14', 3448, 274, '2005-06-01 01:54:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (302, '2005-05-26 21:13:46', 2921, 387, '2005-06-03 15:49:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (303, '2005-05-26 21:16:52', 1111, 596, '2005-05-27 23:41:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (304, '2005-05-26 21:21:28', 1701, 534, '2005-06-02 00:05:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (305, '2005-05-26 21:22:07', 2665, 464, '2005-06-02 22:33:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (306, '2005-05-26 21:31:57', 2781, 547, '2005-05-28 19:37:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (307, '2005-05-26 21:48:13', 1097, 375, '2005-06-04 22:24:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (308, '2005-05-26 22:01:39', 187, 277, '2005-06-04 20:24:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (309, '2005-05-26 22:38:10', 1946, 251, '2005-06-02 03:10:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (310, '2005-05-26 22:41:07', 593, 409, '2005-06-02 04:09:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (311, '2005-05-26 22:51:37', 2830, 201, '2005-06-01 00:02:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (312, '2005-05-26 22:52:19', 2008, 143, '2005-06-02 18:14:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (313, '2005-05-26 22:56:19', 4156, 594, '2005-05-29 01:29:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (314, '2005-05-26 23:09:41', 2851, 203, '2005-05-28 22:49:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (315, '2005-05-26 23:12:55', 2847, 238, '2005-05-29 23:33:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (316, '2005-05-26 23:22:55', 3828, 249, '2005-05-29 23:25:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (317, '2005-05-26 23:23:56', 26, 391, '2005-06-01 19:56:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (318, '2005-05-26 23:37:39', 2559, 60, '2005-06-03 04:31:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (319, '2005-05-26 23:52:13', 3024, 77, '2005-05-30 18:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (320, '2005-05-27 00:09:24', 1090, 2, '2005-05-28 04:30:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (322, '2005-05-27 00:47:35', 4556, 496, '2005-06-02 00:32:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (323, '2005-05-27 00:49:27', 2362, 144, '2005-05-30 03:12:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (324, '2005-05-27 01:00:04', 3364, 292, '2005-05-30 04:27:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (325, '2005-05-27 01:09:55', 2510, 449, '2005-05-31 07:01:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (326, '2005-05-27 01:10:11', 3979, 432, '2005-06-04 20:25:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (327, '2005-05-27 01:18:57', 2678, 105, '2005-06-04 04:06:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (328, '2005-05-27 01:29:31', 2524, 451, '2005-06-01 02:27:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (329, '2005-05-27 01:57:14', 2659, 231, '2005-05-31 04:19:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (330, '2005-05-27 02:15:30', 1536, 248, '2005-06-04 05:09:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (331, '2005-05-27 02:22:26', 1872, 67, '2005-06-05 00:25:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (332, '2005-05-27 02:27:10', 1529, 299, '2005-06-03 01:26:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (333, '2005-05-27 02:52:21', 4001, 412, '2005-06-01 00:55:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (334, '2005-05-27 03:03:07', 3973, 194, '2005-05-29 03:54:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (335, '2005-05-27 03:07:10', 1411, 16, '2005-06-05 00:15:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (336, '2005-05-27 03:15:23', 1811, 275, '2005-05-29 22:43:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (337, '2005-05-27 03:22:30', 751, 19, '2005-06-02 03:27:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (338, '2005-05-27 03:42:52', 2596, 165, '2005-06-01 05:23:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (339, '2005-05-27 03:47:18', 2410, 516, '2005-06-04 05:46:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (340, '2005-05-27 03:55:25', 946, 209, '2005-06-04 07:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (341, '2005-05-27 04:01:42', 4168, 56, '2005-06-05 08:51:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (342, '2005-05-27 04:11:04', 4019, 539, '2005-05-29 01:28:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (343, '2005-05-27 04:13:41', 3301, 455, '2005-05-28 08:34:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (344, '2005-05-27 04:30:22', 2327, 236, '2005-05-29 10:13:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (345, '2005-05-27 04:32:25', 1396, 144, '2005-05-31 09:50:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (346, '2005-05-27 04:34:41', 4319, 14, '2005-06-05 04:24:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (347, '2005-05-27 04:40:33', 1625, 378, '2005-05-28 09:56:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (348, '2005-05-27 04:50:56', 1825, 473, '2005-06-01 04:43:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (349, '2005-05-27 04:53:11', 2920, 36, '2005-05-28 06:33:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (350, '2005-05-27 05:01:28', 2756, 9, '2005-06-04 05:01:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (351, '2005-05-27 05:39:03', 3371, 118, '2005-06-01 11:10:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (352, '2005-05-27 05:48:19', 4369, 157, '2005-05-29 09:05:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (353, '2005-05-27 06:03:39', 3989, 503, '2005-06-03 04:39:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (354, '2005-05-27 06:12:26', 2058, 452, '2005-06-01 06:48:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (355, '2005-05-27 06:15:33', 141, 446, '2005-06-01 02:50:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (356, '2005-05-27 06:32:30', 2868, 382, '2005-05-30 06:24:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (357, '2005-05-27 06:37:15', 4417, 198, '2005-05-30 07:04:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (358, '2005-05-27 06:43:59', 1925, 102, '2005-05-29 11:28:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (359, '2005-05-27 06:48:33', 1156, 152, '2005-05-29 03:55:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (360, '2005-05-27 06:51:14', 3489, 594, '2005-06-03 01:58:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (361, '2005-05-27 07:03:28', 6, 587, '2005-05-31 08:01:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (362, '2005-05-27 07:10:25', 2324, 147, '2005-06-01 08:34:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (363, '2005-05-27 07:14:00', 4282, 345, '2005-05-28 12:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (364, '2005-05-27 07:20:12', 833, 430, '2005-05-31 10:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (365, '2005-05-27 07:31:20', 2887, 167, '2005-06-04 04:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (366, '2005-05-27 07:33:54', 360, 134, '2005-06-04 01:55:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (367, '2005-05-27 07:37:02', 3437, 439, '2005-05-30 05:43:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (368, '2005-05-27 07:42:29', 1247, 361, '2005-06-04 11:20:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (369, '2005-05-27 07:46:49', 944, 508, '2005-06-01 06:20:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (370, '2005-05-27 07:49:43', 3347, 22, '2005-06-05 06:39:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (371, '2005-05-27 08:08:18', 1235, 295, '2005-06-05 03:05:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (372, '2005-05-27 08:13:58', 4089, 510, '2005-06-04 03:50:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (373, '2005-05-27 08:16:25', 1649, 464, '2005-06-01 11:41:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (374, '2005-05-27 08:26:30', 4420, 337, '2005-06-05 07:13:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (375, '2005-05-27 08:49:21', 1815, 306, '2005-06-04 14:11:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (376, '2005-05-27 08:58:15', 3197, 542, '2005-06-02 04:48:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (377, '2005-05-27 09:04:05', 3012, 170, '2005-06-02 03:36:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (378, '2005-05-27 09:23:22', 2242, 53, '2005-05-29 15:20:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (379, '2005-05-27 09:25:32', 3462, 584, '2005-06-02 06:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (380, '2005-05-27 09:34:39', 1777, 176, '2005-06-04 11:45:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (381, '2005-05-27 09:43:25', 2748, 371, '2005-05-31 12:00:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (382, '2005-05-27 10:12:00', 4358, 183, '2005-05-31 15:03:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (383, '2005-05-27 10:12:20', 955, 298, '2005-06-03 10:37:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (384, '2005-05-27 10:18:20', 910, 371, '2005-06-02 09:21:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (385, '2005-05-27 10:23:25', 1565, 213, '2005-05-30 15:27:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (386, '2005-05-27 10:26:31', 1288, 109, '2005-05-30 08:32:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (387, '2005-05-27 10:35:27', 2684, 506, '2005-06-01 13:37:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (388, '2005-05-27 10:37:27', 434, 28, '2005-05-30 05:45:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (389, '2005-05-27 10:45:41', 691, 500, '2005-06-05 06:22:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (390, '2005-05-27 11:02:26', 3759, 48, '2005-06-02 16:09:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (391, '2005-05-27 11:03:55', 2193, 197, '2005-06-01 11:59:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (392, '2005-05-27 11:14:42', 263, 359, '2005-06-01 14:28:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (393, '2005-05-27 11:18:25', 145, 251, '2005-05-28 07:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (394, '2005-05-27 11:26:11', 1890, 274, '2005-06-03 16:44:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (395, '2005-05-27 11:45:49', 752, 575, '2005-05-31 13:42:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (396, '2005-05-27 11:47:04', 1020, 112, '2005-05-29 10:14:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (397, '2005-05-27 12:29:02', 4193, 544, '2005-05-28 17:36:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (398, '2005-05-27 12:44:03', 1686, 422, '2005-06-02 08:19:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (399, '2005-05-27 12:48:38', 553, 204, '2005-05-29 15:27:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (400, '2005-05-27 12:51:44', 258, 249, '2005-05-31 08:34:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (401, '2005-05-27 12:57:55', 2179, 46, '2005-05-29 17:55:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (402, '2005-05-27 13:17:18', 461, 354, '2005-05-30 08:53:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (403, '2005-05-27 13:28:52', 3983, 424, '2005-05-29 11:47:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (404, '2005-05-27 13:31:51', 1293, 168, '2005-05-30 16:58:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (405, '2005-05-27 13:32:39', 4090, 272, '2005-06-05 18:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (406, '2005-05-27 13:46:46', 2136, 381, '2005-05-30 12:43:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (407, '2005-05-27 13:57:38', 1077, 44, '2005-05-31 18:23:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (408, '2005-05-27 13:57:39', 1438, 84, '2005-05-28 11:57:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (409, '2005-05-27 14:10:58', 3652, 220, '2005-06-02 10:40:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (410, '2005-05-27 14:11:22', 4010, 506, '2005-06-02 20:06:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (411, '2005-05-27 14:14:14', 1434, 388, '2005-06-03 17:39:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (412, '2005-05-27 14:17:23', 1400, 375, '2005-05-29 15:07:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (413, '2005-05-27 14:45:37', 3516, 307, '2005-06-03 11:11:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (414, '2005-05-27 14:48:20', 1019, 219, '2005-05-31 14:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (415, '2005-05-27 14:51:45', 3698, 304, '2005-05-28 19:07:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (416, '2005-05-27 15:02:10', 2371, 222, '2005-05-29 10:34:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (417, '2005-05-27 15:07:27', 2253, 475, '2005-05-29 20:01:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (418, '2005-05-27 15:13:17', 3063, 151, '2005-06-04 12:05:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (419, '2005-05-27 15:15:11', 2514, 77, '2005-06-02 11:53:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (420, '2005-05-27 15:19:38', 619, 93, '2005-06-03 15:07:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (421, '2005-05-27 15:30:13', 2985, 246, '2005-06-04 13:19:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (422, '2005-05-27 15:31:55', 1152, 150, '2005-06-01 11:47:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (423, '2005-05-27 15:32:57', 1783, 284, '2005-06-02 19:03:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (424, '2005-05-27 15:34:01', 2815, 35, '2005-06-05 09:44:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (425, '2005-05-27 15:51:30', 1518, 182, '2005-06-03 16:52:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (426, '2005-05-27 15:56:57', 1103, 522, '2005-06-05 11:45:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (427, '2005-05-27 16:10:04', 1677, 288, '2005-06-05 13:22:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (428, '2005-05-27 16:10:58', 3349, 161, '2005-05-31 17:24:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (429, '2005-05-27 16:21:26', 129, 498, '2005-06-05 20:23:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (430, '2005-05-27 16:22:10', 1920, 190, '2005-06-05 13:10:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (431, '2005-05-27 16:31:05', 4507, 334, '2005-06-05 11:29:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (432, '2005-05-27 16:40:29', 1119, 46, '2005-05-29 16:20:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (433, '2005-05-27 16:40:40', 4364, 574, '2005-05-30 19:55:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (434, '2005-05-27 16:54:27', 3360, 246, '2005-06-04 22:26:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (435, '2005-05-27 17:17:09', 3328, 3, '2005-06-02 11:20:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (436, '2005-05-27 17:21:04', 4317, 267, '2005-05-30 21:26:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (437, '2005-05-27 17:47:22', 1800, 525, '2005-06-05 14:22:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (438, '2005-05-27 17:52:34', 4260, 249, '2005-06-05 22:23:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (439, '2005-05-27 17:54:48', 354, 319, '2005-06-02 23:01:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (440, '2005-05-27 18:00:35', 4452, 314, '2005-05-29 16:15:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (441, '2005-05-27 18:11:05', 1578, 54, '2005-05-30 22:45:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (442, '2005-05-27 18:12:13', 1457, 403, '2005-05-30 12:30:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (443, '2005-05-27 18:35:20', 2021, 547, '2005-06-04 18:58:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (444, '2005-05-27 18:39:15', 723, 239, '2005-06-01 15:56:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (445, '2005-05-27 18:42:57', 1757, 293, '2005-05-30 22:35:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (446, '2005-05-27 18:48:41', 1955, 401, '2005-06-03 16:42:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (447, '2005-05-27 18:57:02', 3890, 133, '2005-06-05 18:38:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (448, '2005-05-27 19:03:08', 2671, 247, '2005-06-03 20:28:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (449, '2005-05-27 19:13:15', 2469, 172, '2005-06-04 01:08:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (450, '2005-05-27 19:18:54', 1343, 247, '2005-06-05 23:52:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (451, '2005-05-27 19:27:54', 205, 87, '2005-05-29 01:07:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (452, '2005-05-27 19:30:33', 2993, 127, '2005-05-30 20:53:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (453, '2005-05-27 19:31:16', 4425, 529, '2005-05-29 23:06:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (454, '2005-05-27 19:31:36', 3499, 575, '2005-05-30 15:46:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (455, '2005-05-27 19:43:29', 3344, 343, '2005-06-04 23:40:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (456, '2005-05-27 19:50:06', 1699, 92, '2005-06-02 22:14:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (457, '2005-05-27 19:52:29', 2368, 300, '2005-06-02 17:17:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (458, '2005-05-27 19:58:36', 3350, 565, '2005-06-06 00:51:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (459, '2005-05-27 20:00:04', 597, 468, '2005-05-29 22:47:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (460, '2005-05-27 20:02:03', 4238, 240, '2005-05-28 16:14:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (461, '2005-05-27 20:08:55', 2077, 447, '2005-06-01 14:32:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (462, '2005-05-27 20:10:36', 2314, 364, '2005-06-03 21:12:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (463, '2005-05-27 20:11:47', 826, 21, '2005-06-04 21:18:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (464, '2005-05-27 20:42:44', 1313, 193, '2005-05-30 00:49:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (465, '2005-05-27 20:44:36', 20, 261, '2005-06-02 02:43:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (466, '2005-05-27 20:57:07', 1786, 442, '2005-05-29 15:52:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (467, '2005-05-27 21:10:03', 339, 557, '2005-06-01 16:08:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (468, '2005-05-27 21:13:10', 2656, 101, '2005-06-04 15:26:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (469, '2005-05-27 21:14:26', 4463, 154, '2005-06-05 21:51:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (470, '2005-05-27 21:17:08', 1613, 504, '2005-06-04 17:47:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (471, '2005-05-27 21:32:42', 2872, 209, '2005-05-31 00:39:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (472, '2005-05-27 21:36:15', 1338, 528, '2005-05-29 21:07:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (473, '2005-05-27 21:36:34', 802, 105, '2005-06-05 17:02:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (474, '2005-05-27 22:11:56', 1474, 274, '2005-05-31 19:07:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (475, '2005-05-27 22:16:26', 2520, 159, '2005-05-28 19:58:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (476, '2005-05-27 22:31:36', 2451, 543, '2005-06-03 19:12:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (477, '2005-05-27 22:33:33', 2437, 161, '2005-06-02 18:35:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (478, '2005-05-27 22:38:20', 424, 557, '2005-05-31 18:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (479, '2005-05-27 22:39:10', 2060, 231, '2005-06-05 22:46:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (480, '2005-05-27 22:47:39', 2108, 220, '2005-06-04 21:17:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (481, '2005-05-27 22:49:27', 72, 445, '2005-05-30 17:46:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (482, '2005-05-27 22:53:02', 4178, 546, '2005-06-01 22:53:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (483, '2005-05-27 23:00:25', 1510, 32, '2005-05-28 21:30:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (484, '2005-05-27 23:26:45', 3115, 491, '2005-05-29 21:16:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (485, '2005-05-27 23:40:52', 2392, 105, '2005-05-28 22:40:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (486, '2005-05-27 23:51:12', 1822, 398, '2005-05-28 20:26:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (487, '2005-05-28 00:00:30', 3774, 569, '2005-05-28 19:18:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (488, '2005-05-28 00:07:50', 393, 168, '2005-06-03 22:30:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (489, '2005-05-28 00:09:12', 1940, 476, '2005-05-31 04:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (490, '2005-05-28 00:09:56', 3524, 95, '2005-05-30 22:32:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (491, '2005-05-28 00:13:35', 1326, 196, '2005-05-29 00:11:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (492, '2005-05-28 00:24:58', 1999, 228, '2005-05-28 22:34:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (493, '2005-05-28 00:34:11', 184, 501, '2005-05-30 18:40:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (494, '2005-05-28 00:39:31', 1850, 64, '2005-06-02 19:35:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (495, '2005-05-28 00:40:48', 1007, 526, '2005-05-29 06:07:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (496, '2005-05-28 00:43:41', 1785, 56, '2005-06-04 03:56:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (497, '2005-05-28 00:54:39', 2636, 20, '2005-06-03 20:47:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (498, '2005-05-28 01:01:21', 458, 287, '2005-05-30 21:20:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (499, '2005-05-28 01:05:07', 2381, 199, '2005-06-05 19:54:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (500, '2005-05-28 01:05:25', 4500, 145, '2005-05-31 20:04:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (501, '2005-05-28 01:09:36', 601, 162, '2005-05-30 06:14:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (502, '2005-05-28 01:34:43', 3131, 179, '2005-05-31 01:02:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (503, '2005-05-28 01:35:25', 3005, 288, '2005-05-28 22:12:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (504, '2005-05-28 02:05:34', 2086, 170, '2005-05-30 23:03:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (505, '2005-05-28 02:06:37', 71, 111, '2005-05-29 06:57:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (506, '2005-05-28 02:09:19', 667, 469, '2005-06-05 20:34:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (507, '2005-05-28 02:31:19', 3621, 421, '2005-06-02 05:07:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (508, '2005-05-28 02:40:50', 4179, 434, '2005-06-05 03:05:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (509, '2005-05-28 02:51:12', 3416, 147, '2005-05-31 06:27:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (510, '2005-05-28 02:52:14', 4338, 113, '2005-05-30 21:20:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (511, '2005-05-28 03:04:04', 3827, 296, '2005-06-03 04:58:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (512, '2005-05-28 03:07:50', 2176, 231, '2005-06-05 02:12:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (513, '2005-05-28 03:08:10', 225, 489, '2005-05-29 07:22:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (514, '2005-05-28 03:09:28', 1697, 597, '2005-06-05 00:49:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (515, '2005-05-28 03:10:10', 3369, 110, '2005-06-04 02:18:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (516, '2005-05-28 03:11:47', 4357, 400, '2005-06-04 02:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (517, '2005-05-28 03:17:57', 234, 403, '2005-05-29 06:33:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (518, '2005-05-28 03:18:02', 4087, 480, '2005-05-30 05:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (519, '2005-05-28 03:22:33', 3564, 245, '2005-06-03 05:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (520, '2005-05-28 03:27:37', 3845, 161, '2005-06-04 05:47:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (521, '2005-05-28 03:32:22', 2397, 374, '2005-05-28 22:37:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (522, '2005-05-28 03:33:20', 3195, 382, '2005-05-31 04:23:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (523, '2005-05-28 03:53:26', 1905, 138, '2005-05-31 05:58:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (524, '2005-05-28 03:57:28', 1962, 223, '2005-05-31 05:20:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (525, '2005-05-28 04:25:33', 1817, 14, '2005-06-06 04:18:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (526, '2005-05-28 04:27:37', 1387, 408, '2005-05-30 07:52:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (527, '2005-05-28 04:28:38', 266, 169, '2005-06-02 08:19:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (528, '2005-05-28 04:30:05', 1655, 359, '2005-06-03 10:01:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (529, '2005-05-28 04:34:17', 2624, 469, '2005-05-30 00:35:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (530, '2005-05-28 05:13:01', 3332, 312, '2005-06-01 10:21:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (531, '2005-05-28 05:23:38', 1113, 589, '2005-05-29 08:00:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (532, '2005-05-28 05:36:58', 2793, 120, '2005-06-02 01:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (533, '2005-05-28 06:14:46', 4306, 528, '2005-06-01 06:26:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (534, '2005-05-28 06:15:25', 992, 184, '2005-06-06 07:51:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (535, '2005-05-28 06:16:32', 4209, 307, '2005-05-31 02:48:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (536, '2005-05-28 06:17:33', 2962, 514, '2005-06-03 10:02:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (537, '2005-05-28 06:20:55', 3095, 315, '2005-06-05 11:48:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (538, '2005-05-28 06:21:05', 2262, 110, '2005-06-02 01:22:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (539, '2005-05-28 06:26:16', 3427, 161, '2005-05-30 02:02:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (540, '2005-05-28 06:40:25', 3321, 119, '2005-06-06 00:47:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (541, '2005-05-28 06:41:58', 1662, 535, '2005-06-02 09:12:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (542, '2005-05-28 06:42:13', 4444, 261, '2005-06-03 09:05:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (543, '2005-05-28 06:43:34', 530, 493, '2005-06-06 07:16:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (544, '2005-05-28 07:03:00', 2964, 311, '2005-06-06 06:23:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (545, '2005-05-28 07:10:20', 1086, 54, '2005-06-04 01:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (546, '2005-05-28 07:16:25', 487, 20, '2005-06-01 08:36:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (547, '2005-05-28 07:24:28', 2065, 506, '2005-06-06 01:31:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (548, '2005-05-28 07:34:56', 3704, 450, '2005-06-05 03:14:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (549, '2005-05-28 07:35:37', 1818, 159, '2005-06-02 09:08:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (550, '2005-05-28 07:39:16', 3632, 432, '2005-06-06 12:20:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (551, '2005-05-28 07:44:18', 3119, 315, '2005-06-02 12:55:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (552, '2005-05-28 07:53:38', 23, 106, '2005-06-04 12:45:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (553, '2005-05-28 08:14:44', 1349, 176, '2005-06-02 03:01:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (554, '2005-05-28 08:23:16', 1951, 376, '2005-05-31 03:29:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (555, '2005-05-28 08:31:14', 4397, 55, '2005-05-30 07:34:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (556, '2005-05-28 08:31:36', 1814, 22, '2005-06-06 07:29:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (557, '2005-05-28 08:36:22', 158, 444, '2005-06-03 10:42:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (558, '2005-05-28 08:38:43', 4163, 442, '2005-06-06 13:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (559, '2005-05-28 08:39:02', 1227, 572, '2005-06-05 08:38:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (560, '2005-05-28 08:53:02', 644, 463, '2005-06-04 12:27:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (561, '2005-05-28 08:54:06', 928, 77, '2005-06-05 05:54:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (562, '2005-05-28 09:01:21', 3390, 102, '2005-06-02 05:26:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (563, '2005-05-28 09:10:49', 53, 324, '2005-06-06 11:32:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (564, '2005-05-28 09:12:09', 2973, 282, '2005-05-29 05:07:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (565, '2005-05-28 09:26:31', 1494, 288, '2005-06-01 07:28:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (566, '2005-05-28 09:51:39', 4330, 253, '2005-06-05 09:35:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (567, '2005-05-28 09:56:20', 3308, 184, '2005-06-01 06:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (568, '2005-05-28 09:57:36', 2232, 155, '2005-05-31 15:44:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (569, '2005-05-28 10:12:41', 4534, 56, '2005-06-03 10:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (570, '2005-05-28 10:15:04', 1122, 21, '2005-05-30 08:32:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (571, '2005-05-28 10:17:41', 4250, 516, '2005-06-05 07:56:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (572, '2005-05-28 10:30:13', 1899, 337, '2005-06-02 05:04:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (573, '2005-05-28 10:35:23', 4020, 1, '2005-06-03 06:32:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (574, '2005-05-28 10:44:28', 3883, 76, '2005-06-04 11:42:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (575, '2005-05-28 10:56:09', 4451, 142, '2005-06-05 15:39:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (576, '2005-05-28 10:56:10', 1866, 588, '2005-06-04 13:15:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (577, '2005-05-28 11:09:14', 375, 6, '2005-06-01 13:27:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (578, '2005-05-28 11:15:48', 2938, 173, '2005-06-02 09:59:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (579, '2005-05-28 11:19:23', 3481, 181, '2005-06-02 13:51:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (580, '2005-05-28 11:19:53', 3515, 17, '2005-06-01 10:44:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (581, '2005-05-28 11:20:29', 1380, 186, '2005-06-04 12:37:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (582, '2005-05-28 11:33:46', 4579, 198, '2005-05-29 08:33:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (583, '2005-05-28 11:48:55', 2679, 386, '2005-06-04 07:09:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (584, '2005-05-28 11:49:00', 1833, 69, '2005-06-01 11:54:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (585, '2005-05-28 11:50:45', 3544, 490, '2005-06-03 15:35:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (586, '2005-05-28 12:03:00', 898, 77, '2005-05-29 13:16:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (587, '2005-05-28 12:05:33', 1413, 64, '2005-05-30 13:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (588, '2005-05-28 12:08:37', 95, 89, '2005-05-29 16:25:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (589, '2005-05-28 12:27:50', 4231, 308, '2005-06-03 07:15:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (590, '2005-05-28 13:06:50', 473, 462, '2005-06-02 09:18:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (591, '2005-05-28 13:11:04', 377, 19, '2005-05-29 17:20:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (592, '2005-05-28 13:21:08', 638, 244, '2005-05-29 16:55:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (593, '2005-05-28 13:33:23', 1810, 16, '2005-05-30 17:10:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (594, '2005-05-28 13:41:56', 2766, 538, '2005-05-30 12:00:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (595, '2005-05-28 13:59:54', 595, 294, '2005-06-05 15:16:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (596, '2005-05-28 14:00:03', 821, 589, '2005-05-29 17:10:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (597, '2005-05-28 14:01:02', 4469, 249, '2005-06-06 19:06:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (598, '2005-05-28 14:04:50', 599, 159, '2005-06-03 18:00:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (599, '2005-05-28 14:05:57', 4136, 393, '2005-06-01 16:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (600, '2005-05-28 14:08:19', 1567, 332, '2005-06-03 11:57:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (601, '2005-05-28 14:08:22', 3225, 429, '2005-06-04 10:50:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (602, '2005-05-28 14:15:54', 1300, 590, '2005-06-05 15:16:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (603, '2005-05-28 14:27:51', 3248, 537, '2005-05-29 13:13:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (604, '2005-05-28 14:37:07', 1585, 426, '2005-06-03 11:03:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (605, '2005-05-28 14:39:10', 4232, 501, '2005-06-01 09:28:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (606, '2005-05-28 14:48:39', 3509, 299, '2005-06-04 09:44:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (607, '2005-05-28 15:02:41', 2561, 554, '2005-05-30 12:54:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (608, '2005-05-28 15:03:44', 4254, 494, '2005-06-04 17:14:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (609, '2005-05-28 15:04:02', 2944, 150, '2005-06-05 14:47:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (610, '2005-05-28 15:15:25', 3642, 500, '2005-06-02 12:30:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (611, '2005-05-28 15:18:18', 1230, 580, '2005-05-31 20:15:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (612, '2005-05-28 15:24:54', 2180, 161, '2005-05-30 14:22:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (613, '2005-05-28 15:27:22', 270, 595, '2005-06-02 20:01:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (614, '2005-05-28 15:33:28', 280, 307, '2005-06-04 12:27:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (615, '2005-05-28 15:35:52', 3397, 533, '2005-06-03 17:35:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (616, '2005-05-28 15:45:39', 989, 471, '2005-06-02 09:55:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (617, '2005-05-28 15:49:14', 4142, 372, '2005-05-31 14:29:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (618, '2005-05-28 15:50:07', 4445, 248, '2005-06-01 19:45:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (619, '2005-05-28 15:52:26', 2482, 407, '2005-06-06 17:55:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (620, '2005-05-28 15:54:45', 2444, 321, '2005-06-04 20:26:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (621, '2005-05-28 15:58:12', 1144, 239, '2005-05-30 21:54:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (622, '2005-05-28 15:58:22', 2363, 109, '2005-06-04 10:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (623, '2005-05-28 16:01:28', 1222, 495, '2005-05-30 11:19:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (624, '2005-05-28 16:13:22', 3660, 569, '2005-06-06 20:35:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (625, '2005-05-28 16:35:46', 2889, 596, '2005-06-01 14:19:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (626, '2005-05-28 16:58:09', 452, 584, '2005-06-01 14:02:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (627, '2005-05-28 17:04:43', 425, 241, '2005-06-04 19:58:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (628, '2005-05-28 17:05:46', 2513, 173, '2005-06-06 16:29:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (629, '2005-05-28 17:19:15', 1527, 94, '2005-06-02 20:01:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (630, '2005-05-28 17:24:51', 1254, 417, '2005-06-05 20:05:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (631, '2005-05-28 17:36:32', 2465, 503, '2005-06-03 14:56:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (632, '2005-05-28 17:37:50', 1287, 442, '2005-06-03 16:04:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (633, '2005-05-28 17:37:59', 58, 360, '2005-06-03 22:49:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (634, '2005-05-28 17:40:35', 2630, 428, '2005-06-05 16:18:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (635, '2005-05-28 17:46:57', 1648, 42, '2005-06-06 18:24:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (636, '2005-05-28 17:47:58', 4213, 239, '2005-06-04 16:32:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (637, '2005-05-28 18:14:29', 1581, 250, '2005-05-29 23:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (638, '2005-05-28 18:24:43', 2685, 372, '2005-06-02 19:03:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (639, '2005-05-28 18:25:02', 4204, 198, '2005-05-29 18:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (640, '2005-05-28 18:43:26', 495, 465, '2005-05-30 13:39:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (641, '2005-05-28 18:45:47', 3548, 396, '2005-06-04 15:24:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (642, '2005-05-28 18:49:12', 140, 157, '2005-06-01 20:50:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (643, '2005-05-28 18:52:11', 3105, 240, '2005-05-31 15:15:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (644, '2005-05-28 18:59:12', 4304, 316, '2005-06-04 18:06:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (645, '2005-05-28 19:14:09', 3128, 505, '2005-06-05 14:01:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (646, '2005-05-28 19:16:14', 1922, 185, '2005-05-31 16:50:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (647, '2005-05-28 19:22:52', 3435, 569, '2005-06-01 00:10:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (648, '2005-05-28 19:25:54', 3476, 253, '2005-06-03 15:57:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (649, '2005-05-28 19:35:45', 1781, 197, '2005-06-05 16:00:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (650, '2005-05-28 19:45:40', 4384, 281, '2005-05-29 21:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (651, '2005-05-28 19:46:50', 739, 266, '2005-05-30 16:29:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (652, '2005-05-28 20:08:47', 1201, 43, '2005-05-29 14:57:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (653, '2005-05-28 20:12:20', 126, 327, '2005-06-04 14:44:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (654, '2005-05-28 20:15:30', 2312, 23, '2005-05-30 22:02:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (655, '2005-05-28 20:16:20', 331, 287, '2005-05-31 16:46:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (656, '2005-05-28 20:18:24', 2846, 437, '2005-05-30 16:19:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (657, '2005-05-28 20:23:09', 848, 65, '2005-06-01 02:11:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (658, '2005-05-28 20:23:23', 3226, 103, '2005-06-06 19:31:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (659, '2005-05-28 20:27:53', 1382, 207, '2005-05-31 01:36:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (660, '2005-05-28 20:53:31', 1414, 578, '2005-05-30 15:26:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (661, '2005-05-28 21:01:25', 2247, 51, '2005-06-02 01:22:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (662, '2005-05-28 21:09:31', 2968, 166, '2005-06-01 19:00:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (663, '2005-05-28 21:23:02', 3997, 176, '2005-06-02 17:39:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (664, '2005-05-28 21:31:08', 87, 523, '2005-06-02 20:56:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (665, '2005-05-28 21:38:39', 1012, 415, '2005-05-29 21:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (666, '2005-05-28 21:48:51', 3075, 437, '2005-06-05 16:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (667, '2005-05-28 21:49:02', 797, 596, '2005-05-31 03:07:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (668, '2005-05-28 21:54:45', 3528, 484, '2005-05-29 22:32:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (669, '2005-05-28 22:03:25', 3677, 313, '2005-06-03 03:39:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (670, '2005-05-28 22:04:03', 227, 201, '2005-06-06 22:43:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (671, '2005-05-28 22:04:30', 1027, 14, '2005-06-03 01:21:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (672, '2005-05-28 22:05:29', 697, 306, '2005-06-06 02:10:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (673, '2005-05-28 22:07:30', 1769, 468, '2005-06-01 23:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (674, '2005-05-28 22:11:35', 1150, 87, '2005-06-01 23:58:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (675, '2005-05-28 22:22:44', 1273, 338, '2005-06-01 02:57:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (676, '2005-05-28 22:27:51', 2329, 490, '2005-05-29 20:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (677, '2005-05-28 23:00:08', 4558, 194, '2005-06-05 19:11:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (678, '2005-05-28 23:15:48', 3741, 269, '2005-06-03 04:43:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (679, '2005-05-28 23:24:57', 907, 526, '2005-06-06 21:59:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (680, '2005-05-28 23:27:26', 4147, 482, '2005-06-02 02:28:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (681, '2005-05-28 23:39:44', 3346, 531, '2005-06-01 01:42:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (682, '2005-05-28 23:53:18', 3160, 148, '2005-05-29 19:14:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (683, '2005-05-29 00:09:48', 2038, 197, '2005-06-02 04:27:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (684, '2005-05-29 00:13:15', 3242, 461, '2005-06-04 21:26:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (685, '2005-05-29 00:17:51', 1385, 172, '2005-06-05 05:32:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (686, '2005-05-29 00:27:10', 2441, 411, '2005-05-30 02:29:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (687, '2005-05-29 00:32:09', 1731, 250, '2005-05-31 23:53:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (688, '2005-05-29 00:45:24', 4135, 162, '2005-06-02 01:30:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (689, '2005-05-29 00:46:53', 742, 571, '2005-06-03 23:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (690, '2005-05-29 00:54:53', 2646, 85, '2005-06-06 00:45:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (691, '2005-05-29 01:01:26', 4034, 433, '2005-06-07 06:21:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (692, '2005-05-29 01:32:10', 800, 18, '2005-06-02 03:54:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (693, '2005-05-29 01:42:31', 635, 190, '2005-06-03 02:29:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (694, '2005-05-29 01:49:43', 592, 399, '2005-06-05 06:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (695, '2005-05-29 01:50:53', 4276, 528, '2005-06-03 02:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (696, '2005-05-29 01:59:10', 2076, 19, '2005-06-01 02:45:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (697, '2005-05-29 02:04:04', 3949, 387, '2005-06-04 00:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (698, '2005-05-29 02:10:52', 1412, 109, '2005-06-01 21:52:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (699, '2005-05-29 02:11:44', 130, 246, '2005-06-04 20:23:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (700, '2005-05-29 02:18:54', 500, 117, '2005-05-30 05:54:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (701, '2005-05-29 02:26:27', 372, 112, '2005-06-03 04:59:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (702, '2005-05-29 02:27:30', 2556, 475, '2005-05-30 01:52:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (703, '2005-05-29 02:29:36', 1123, 269, '2005-06-03 04:54:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (704, '2005-05-29 02:44:43', 2628, 330, '2005-06-06 01:51:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (705, '2005-05-29 02:48:52', 2809, 257, '2005-05-30 06:21:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (706, '2005-05-29 03:05:49', 2278, 60, '2005-06-04 22:48:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (707, '2005-05-29 03:18:19', 819, 252, '2005-05-30 02:45:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (708, '2005-05-29 03:23:47', 3133, 127, '2005-05-31 21:27:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (709, '2005-05-29 03:48:01', 2459, 479, '2005-06-06 05:21:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (710, '2005-05-29 03:48:36', 194, 518, '2005-06-03 05:03:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (711, '2005-05-29 03:49:03', 4581, 215, '2005-05-31 08:29:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (712, '2005-05-29 04:02:24', 4191, 313, '2005-05-30 03:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (713, '2005-05-29 04:10:17', 3664, 507, '2005-06-07 07:13:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (714, '2005-05-29 04:15:21', 2010, 452, '2005-06-01 23:05:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (715, '2005-05-29 04:22:41', 2030, 545, '2005-06-05 09:28:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (716, '2005-05-29 04:35:29', 85, 36, '2005-06-01 07:42:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (717, '2005-05-29 04:37:44', 1383, 412, '2005-05-30 05:48:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (718, '2005-05-29 04:52:23', 1736, 498, '2005-06-02 02:27:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (719, '2005-05-29 05:16:05', 267, 245, '2005-06-01 07:53:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (720, '2005-05-29 05:17:30', 3687, 480, '2005-06-06 02:47:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (721, '2005-05-29 05:28:47', 1116, 44, '2005-05-31 11:24:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (722, '2005-05-29 05:30:31', 4540, 259, '2005-06-06 04:51:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (723, '2005-05-29 05:34:44', 3407, 309, '2005-05-30 05:50:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (724, '2005-05-29 05:53:23', 3770, 416, '2005-06-05 04:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (725, '2005-05-29 06:03:41', 4088, 245, '2005-06-03 08:52:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (726, '2005-05-29 06:05:29', 933, 452, '2005-06-05 04:40:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (727, '2005-05-29 06:08:15', 1629, 484, '2005-05-30 07:16:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (728, '2005-05-29 06:12:38', 242, 551, '2005-06-03 07:41:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (729, '2005-05-29 06:35:13', 1688, 323, '2005-06-04 03:23:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (730, '2005-05-29 07:00:59', 3473, 197, '2005-06-06 01:17:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (731, '2005-05-29 07:25:16', 4124, 5, '2005-05-30 05:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (732, '2005-05-29 07:32:51', 2530, 447, '2005-05-30 10:08:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (733, '2005-05-29 07:35:21', 2951, 363, '2005-06-05 09:14:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (734, '2005-05-29 07:38:52', 3084, 538, '2005-06-03 10:17:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (735, '2005-05-29 08:08:13', 3421, 454, '2005-06-07 13:35:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (736, '2005-05-29 08:10:07', 3689, 276, '2005-06-05 10:21:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (737, '2005-05-29 08:11:31', 769, 589, '2005-06-04 11:18:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (738, '2005-05-29 08:20:08', 2284, 256, '2005-06-06 08:59:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (739, '2005-05-29 08:28:18', 1183, 84, '2005-06-06 09:21:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (740, '2005-05-29 08:30:36', 600, 89, '2005-06-04 12:47:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (741, '2005-05-29 08:35:49', 3189, 495, '2005-06-04 11:55:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (742, '2005-05-29 08:36:30', 273, 483, '2005-06-05 11:30:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (743, '2005-05-29 08:39:02', 2528, 548, '2005-06-06 08:42:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (744, '2005-05-29 09:13:08', 3722, 420, '2005-06-01 07:05:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (745, '2005-05-29 09:22:57', 581, 152, '2005-06-01 09:10:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (746, '2005-05-29 09:25:10', 4272, 130, '2005-06-02 04:20:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (747, '2005-05-29 09:26:34', 1993, 291, '2005-06-05 07:28:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (748, '2005-05-29 09:27:00', 2803, 7, '2005-06-03 04:25:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (749, '2005-05-29 09:33:33', 1146, 375, '2005-05-31 11:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (750, '2005-05-29 09:41:40', 730, 269, '2005-05-30 13:31:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (751, '2005-05-29 09:55:43', 2711, 53, '2005-06-02 04:54:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (752, '2005-05-29 10:14:15', 1720, 126, '2005-06-04 06:30:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (753, '2005-05-29 10:16:42', 1021, 135, '2005-06-05 08:52:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (754, '2005-05-29 10:18:59', 734, 281, '2005-06-04 05:03:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (755, '2005-05-29 10:26:29', 3090, 576, '2005-06-01 10:25:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (756, '2005-05-29 10:28:45', 3152, 201, '2005-06-04 12:50:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (757, '2005-05-29 10:29:47', 1067, 435, '2005-06-07 15:27:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (758, '2005-05-29 10:31:56', 1191, 563, '2005-06-01 14:53:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (759, '2005-05-29 10:57:57', 2367, 179, '2005-06-07 16:23:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (760, '2005-05-29 11:07:25', 3250, 77, '2005-06-02 14:16:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (761, '2005-05-29 11:09:01', 2342, 58, '2005-06-03 16:18:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (762, '2005-05-29 11:15:51', 3683, 146, '2005-06-06 07:48:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (763, '2005-05-29 11:32:15', 2022, 50, '2005-05-31 17:31:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (764, '2005-05-29 11:37:35', 1069, 149, '2005-05-31 16:47:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (765, '2005-05-29 11:38:34', 515, 69, '2005-06-02 17:04:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (766, '2005-05-29 11:47:02', 2154, 383, '2005-06-06 07:14:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (767, '2005-05-29 12:20:19', 687, 67, '2005-06-02 14:15:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (768, '2005-05-29 12:30:46', 2895, 566, '2005-06-07 09:00:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (769, '2005-05-29 12:51:44', 1523, 575, '2005-06-01 17:43:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (770, '2005-05-29 12:56:50', 2491, 405, '2005-06-07 15:54:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (771, '2005-05-29 12:59:14', 353, 476, '2005-06-01 16:05:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (772, '2005-05-29 13:08:06', 3319, 556, '2005-06-06 08:19:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (773, '2005-05-29 13:18:05', 245, 563, '2005-06-07 17:22:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (774, '2005-05-29 13:19:43', 1188, 575, '2005-06-01 18:51:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (775, '2005-05-29 13:23:26', 1197, 124, '2005-05-30 07:53:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (776, '2005-05-29 13:35:35', 4339, 113, '2005-06-03 17:33:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (777, '2005-05-29 14:07:58', 451, 360, '2005-06-03 08:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (778, '2005-05-29 14:09:53', 1816, 535, '2005-06-05 20:05:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (779, '2005-05-29 14:17:17', 533, 105, '2005-06-06 16:46:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (780, '2005-05-29 14:18:32', 1919, 300, '2005-06-06 20:14:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (781, '2005-05-29 14:23:58', 88, 313, '2005-05-30 17:44:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (782, '2005-05-29 14:38:57', 2255, 596, '2005-06-02 13:18:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (783, '2005-05-29 14:41:18', 3046, 53, '2005-06-06 10:39:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (784, '2005-05-29 14:44:22', 2936, 352, '2005-06-01 17:28:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (785, '2005-05-29 15:08:41', 39, 72, '2005-05-30 15:51:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (786, '2005-05-29 15:17:28', 2637, 439, '2005-06-07 10:07:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (787, '2005-05-29 16:03:03', 3919, 27, '2005-06-07 11:07:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (788, '2005-05-29 16:13:55', 763, 562, '2005-05-31 16:40:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (789, '2005-05-29 16:17:07', 708, 553, '2005-06-06 18:15:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (790, '2005-05-29 16:19:29', 2858, 593, '2005-06-02 17:22:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (791, '2005-05-29 16:30:42', 1554, 284, '2005-06-01 19:11:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (792, '2005-05-29 16:32:10', 2841, 261, '2005-05-31 18:01:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (793, '2005-05-29 16:44:08', 379, 528, '2005-06-06 19:21:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (794, '2005-05-29 16:44:11', 1995, 50, '2005-06-05 16:11:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (795, '2005-05-29 16:57:39', 609, 551, '2005-06-01 11:33:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (796, '2005-05-29 16:59:44', 2697, 26, '2005-06-03 16:22:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (797, '2005-05-29 17:12:17', 1446, 244, '2005-06-03 16:06:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (798, '2005-05-29 17:23:43', 1102, 134, '2005-06-01 13:06:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (799, '2005-05-29 17:24:48', 1713, 429, '2005-06-05 12:25:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (800, '2005-05-29 17:28:12', 441, 472, '2005-05-30 14:59:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (801, '2005-05-29 17:35:50', 1642, 402, '2005-06-04 17:05:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (802, '2005-05-29 17:38:59', 785, 350, '2005-05-31 22:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (803, '2005-05-29 17:52:30', 1602, 32, '2005-05-30 14:35:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (804, '2005-05-29 18:10:24', 3909, 171, '2005-06-06 22:53:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (805, '2005-05-29 18:18:18', 3132, 232, '2005-06-07 15:11:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (806, '2005-05-29 18:31:30', 2386, 435, '2005-05-31 00:18:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (807, '2005-05-29 18:50:50', 2195, 235, '2005-06-03 18:36:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (808, '2005-05-29 19:08:20', 1928, 104, '2005-06-06 20:32:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (809, '2005-05-29 19:10:20', 2114, 222, '2005-06-05 19:05:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (810, '2005-05-29 19:12:04', 2533, 346, '2005-06-04 21:12:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (811, '2005-05-29 19:30:42', 4419, 401, '2005-06-02 16:19:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (812, '2005-05-29 20:00:30', 1099, 225, '2005-05-30 19:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (813, '2005-05-29 20:14:34', 4554, 344, '2005-06-05 20:56:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (814, '2005-05-29 20:16:12', 1572, 134, '2005-06-07 17:47:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (815, '2005-05-29 20:24:28', 3757, 14, '2005-06-03 15:32:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (816, '2005-05-29 20:26:39', 630, 474, '2005-06-06 22:31:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (817, '2005-05-29 20:39:14', 186, 554, '2005-05-31 18:24:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (818, '2005-05-29 20:47:53', 4106, 321, '2005-06-02 23:18:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (819, '2005-05-29 21:00:32', 623, 511, '2005-06-02 15:15:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (820, '2005-05-29 21:07:22', 2584, 22, '2005-06-07 00:22:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (821, '2005-05-29 21:31:12', 3380, 348, '2005-06-04 22:49:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (822, '2005-05-29 21:36:00', 2634, 480, '2005-06-07 17:24:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (823, '2005-05-29 21:39:37', 3249, 441, '2005-05-30 22:06:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (824, '2005-05-29 21:45:32', 3518, 357, '2005-05-31 19:01:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (825, '2005-05-29 21:49:41', 712, 371, '2005-06-04 20:27:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (826, '2005-05-29 21:56:15', 2263, 207, '2005-06-08 03:18:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (827, '2005-05-29 21:58:43', 62, 573, '2005-06-06 00:54:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (828, '2005-05-29 22:14:55', 2468, 217, '2005-05-30 17:22:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (829, '2005-05-29 22:16:42', 1684, 371, '2005-06-06 01:38:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (830, '2005-05-29 22:43:55', 3464, 3, '2005-06-01 17:43:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (831, '2005-05-29 22:50:25', 3912, 509, '2005-06-06 02:27:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (832, '2005-05-29 22:51:20', 1381, 159, '2005-06-07 17:37:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (833, '2005-05-29 23:21:56', 2898, 417, '2005-06-02 18:40:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (834, '2005-05-29 23:24:30', 3628, 84, '2005-05-30 22:00:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (835, '2005-05-29 23:37:00', 299, 381, '2005-06-02 23:38:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (836, '2005-05-29 23:56:42', 3140, 368, '2005-05-31 04:11:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (837, '2005-05-30 00:02:08', 977, 172, '2005-06-02 05:31:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (838, '2005-05-30 00:27:57', 2859, 504, '2005-06-06 22:19:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (839, '2005-05-30 00:28:12', 1886, 337, '2005-06-08 02:43:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (840, '2005-05-30 00:28:41', 4049, 79, '2005-05-31 20:39:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (841, '2005-05-30 00:31:17', 4318, 387, '2005-06-02 19:14:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (842, '2005-05-30 00:32:04', 2328, 238, '2005-06-01 02:21:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (843, '2005-05-30 00:44:24', 2214, 313, '2005-05-31 00:58:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (844, '2005-05-30 00:58:20', 536, 429, '2005-06-01 00:38:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (845, '2005-05-30 01:17:25', 2001, 72, '2005-06-07 02:00:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (846, '2005-05-30 01:17:45', 938, 49, '2005-06-01 00:56:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (847, '2005-05-30 01:18:15', 4387, 380, '2005-06-06 20:20:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (848, '2005-05-30 01:19:53', 1363, 436, '2005-06-05 23:40:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (849, '2005-05-30 01:23:07', 2424, 449, '2005-06-07 01:50:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (850, '2005-05-30 01:35:12', 2390, 517, '2005-05-31 01:51:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (851, '2005-05-30 01:35:15', 2780, 530, '2005-06-06 07:27:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (852, '2005-05-30 01:36:57', 1622, 549, '2005-06-01 22:44:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (853, '2005-05-30 01:43:31', 3693, 122, '2005-06-01 02:05:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (854, '2005-05-30 01:56:11', 921, 369, '2005-06-01 06:34:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (855, '2005-05-30 02:00:28', 2527, 406, '2005-06-03 20:16:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (856, '2005-05-30 02:01:21', 3969, 53, '2005-06-07 03:25:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (857, '2005-05-30 02:01:23', 2569, 204, '2005-06-02 06:07:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (858, '2005-05-30 02:10:32', 1258, 358, '2005-06-01 04:42:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (859, '2005-05-30 02:36:20', 3032, 79, '2005-06-02 07:49:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (860, '2005-05-30 02:45:16', 578, 276, '2005-06-08 07:28:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (861, '2005-05-30 02:48:32', 3711, 502, '2005-06-06 05:43:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (862, '2005-05-30 03:09:11', 1186, 328, '2005-06-03 21:27:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (863, '2005-05-30 03:14:59', 3999, 379, '2005-06-05 04:34:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (864, '2005-05-30 03:27:17', 2777, 544, '2005-06-06 08:28:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (865, '2005-05-30 03:39:44', 3183, 154, '2005-06-07 08:10:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (866, '2005-05-30 03:43:54', 2867, 8, '2005-06-08 04:28:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (867, '2005-05-30 03:54:43', 3389, 99, '2005-06-01 22:59:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (868, '2005-05-30 04:19:55', 3604, 28, '2005-05-31 02:28:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (869, '2005-05-30 04:22:06', 3399, 296, '2005-06-03 09:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (870, '2005-05-30 04:25:47', 2903, 391, '2005-06-06 04:32:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (871, '2005-05-30 05:01:30', 4573, 303, '2005-06-04 06:22:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (872, '2005-05-30 05:03:04', 3904, 548, '2005-06-06 10:35:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (873, '2005-05-30 05:15:20', 4568, 375, '2005-06-07 00:49:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (874, '2005-05-30 05:36:21', 363, 52, '2005-06-01 09:32:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (875, '2005-05-30 05:38:24', 1428, 326, '2005-06-06 00:34:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (876, '2005-05-30 05:41:22', 1471, 339, '2005-06-07 09:06:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (877, '2005-05-30 05:48:59', 886, 9, '2005-06-02 09:30:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (878, '2005-05-30 05:49:13', 4265, 323, '2005-06-07 04:35:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (879, '2005-05-30 05:49:42', 4021, 482, '2005-06-05 01:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (880, '2005-05-30 06:12:33', 1819, 460, '2005-06-02 04:35:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (881, '2005-05-30 06:15:36', 602, 242, '2005-06-02 10:21:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (882, '2005-05-30 06:16:06', 3841, 477, '2005-06-02 11:57:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (883, '2005-05-30 06:21:05', 2271, 399, '2005-06-07 04:50:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (884, '2005-05-30 06:41:32', 4079, 17, '2005-05-31 07:39:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (885, '2005-05-30 06:54:28', 646, 62, '2005-06-03 07:03:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (886, '2005-05-30 06:54:51', 4356, 393, '2005-06-01 06:04:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (887, '2005-05-30 07:10:00', 2727, 16, '2005-06-01 06:48:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (888, '2005-05-30 07:13:14', 387, 128, '2005-06-06 09:50:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (889, '2005-05-30 07:14:53', 1299, 114, '2005-05-31 07:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (890, '2005-05-30 07:43:04', 1464, 349, '2005-06-01 11:26:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (891, '2005-05-30 07:43:12', 2611, 391, '2005-06-08 09:21:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (892, '2005-05-30 08:02:56', 471, 274, '2005-06-05 12:51:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (893, '2005-05-30 08:06:59', 3260, 502, '2005-06-07 08:23:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (894, '2005-05-30 08:31:31', 1118, 400, '2005-06-07 12:39:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (895, '2005-05-30 08:50:43', 2744, 192, '2005-06-05 10:58:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (896, '2005-05-30 09:03:52', 2817, 207, '2005-06-05 07:37:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (897, '2005-05-30 09:10:01', 1334, 432, '2005-06-08 03:43:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (898, '2005-05-30 09:26:19', 3497, 384, '2005-06-01 10:45:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (899, '2005-05-30 09:29:30', 1096, 156, '2005-06-06 12:39:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (900, '2005-05-30 09:38:41', 3543, 586, '2005-06-07 11:54:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (901, '2005-05-30 09:40:40', 760, 259, '2005-06-02 10:32:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (902, '2005-05-30 09:53:36', 1514, 561, '2005-06-07 12:10:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (903, '2005-05-30 10:11:29', 2423, 197, '2005-06-03 09:33:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (904, '2005-05-30 10:19:42', 2466, 44, '2005-06-05 04:58:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (905, '2005-05-30 10:25:00', 4372, 50, '2005-06-06 06:23:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (906, '2005-05-30 10:30:38', 1862, 549, '2005-06-07 06:44:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (907, '2005-05-30 10:37:27', 3320, 506, '2005-06-02 09:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (908, '2005-05-30 10:38:37', 4427, 85, '2005-06-03 09:56:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (909, '2005-05-30 10:43:38', 3775, 486, '2005-06-08 12:07:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (910, '2005-05-30 10:46:16', 2601, 374, '2005-06-04 13:32:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (911, '2005-05-30 10:50:22', 1404, 366, '2005-06-07 12:26:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (912, '2005-05-30 10:58:33', 3200, 390, '2005-05-31 09:31:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (913, '2005-05-30 11:04:58', 3213, 369, '2005-06-07 13:22:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (914, '2005-05-30 11:06:00', 1393, 596, '2005-06-04 06:07:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (915, '2005-05-30 11:20:27', 1859, 115, '2005-06-02 11:55:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (916, '2005-05-30 11:25:01', 1290, 6, '2005-05-31 09:06:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (917, '2005-05-30 11:27:06', 3629, 385, '2005-06-02 08:31:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (918, '2005-05-30 11:32:24', 818, 197, '2005-05-31 07:55:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (919, '2005-05-30 11:35:06', 4052, 374, '2005-06-02 13:16:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (920, '2005-05-30 11:44:01', 3860, 584, '2005-06-02 08:19:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (921, '2005-05-30 11:53:09', 1827, 508, '2005-06-03 10:00:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (922, '2005-05-30 11:55:55', 2442, 550, '2005-06-08 10:12:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (923, '2005-05-30 11:58:50', 1884, 37, '2005-06-05 09:57:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (924, '2005-05-30 12:10:59', 3279, 293, '2005-06-04 17:28:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (925, '2005-05-30 12:13:52', 3203, 137, '2005-06-02 14:41:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (926, '2005-05-30 12:15:54', 4327, 76, '2005-06-01 08:53:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (927, '2005-05-30 12:16:40', 1158, 167, '2005-05-31 16:20:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (928, '2005-05-30 12:27:14', 246, 79, '2005-06-05 13:56:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (929, '2005-05-30 12:32:39', 4296, 536, '2005-06-06 12:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (930, '2005-05-30 12:44:57', 2835, 141, '2005-06-04 10:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (931, '2005-05-30 12:53:01', 3384, 421, '2005-05-31 14:28:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (932, '2005-05-30 12:55:36', 719, 198, '2005-05-31 10:30:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (933, '2005-05-30 13:08:45', 3672, 66, '2005-06-01 18:56:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (934, '2005-05-30 13:24:46', 3595, 60, '2005-06-08 16:44:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (935, '2005-05-30 13:29:36', 2421, 256, '2005-06-02 11:08:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (936, '2005-05-30 13:52:49', 901, 469, '2005-06-07 16:56:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (937, '2005-05-30 14:47:31', 1054, 304, '2005-06-05 09:53:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (938, '2005-05-30 14:47:31', 1521, 46, '2005-06-04 10:10:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (939, '2005-05-30 14:49:34', 1314, 367, '2005-06-01 19:00:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (940, '2005-05-30 15:01:02', 1278, 534, '2005-06-01 18:26:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (941, '2005-05-30 15:02:25', 3630, 562, '2005-06-01 17:19:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (942, '2005-05-30 15:05:47', 4279, 473, '2005-06-08 15:59:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (943, '2005-05-30 15:20:19', 3737, 57, '2005-06-06 18:53:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (944, '2005-05-30 15:26:24', 151, 131, '2005-06-07 18:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (945, '2005-05-30 15:33:17', 1441, 357, '2005-06-02 15:02:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (946, '2005-05-30 15:35:08', 1264, 486, '2005-06-08 11:38:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (947, '2005-05-30 15:36:57', 4478, 62, '2005-06-04 18:48:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (948, '2005-05-30 15:44:27', 585, 245, '2005-06-08 17:30:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (949, '2005-05-30 15:50:39', 2202, 368, '2005-06-03 14:25:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (950, '2005-05-30 16:06:08', 491, 83, '2005-06-01 11:43:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (951, '2005-05-30 16:10:35', 1395, 59, '2005-05-31 19:01:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (952, '2005-05-30 16:28:07', 4389, 311, '2005-06-02 16:12:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (953, '2005-05-30 16:34:02', 2194, 210, '2005-05-31 20:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (954, '2005-05-30 16:57:29', 1231, 297, '2005-06-08 13:30:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (955, '2005-05-30 16:59:03', 4140, 301, '2005-05-31 11:58:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (956, '2005-05-30 17:30:28', 647, 296, '2005-06-07 13:54:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (957, '2005-05-30 17:53:29', 4428, 440, '2005-06-03 15:31:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (958, '2005-05-30 17:58:03', 548, 186, '2005-06-01 19:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (959, '2005-05-30 18:07:00', 3108, 535, '2005-06-02 14:37:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (960, '2005-05-30 18:13:23', 1966, 445, '2005-06-04 00:12:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (961, '2005-05-30 18:16:44', 3293, 588, '2005-06-04 23:40:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (962, '2005-05-30 18:45:17', 4535, 520, '2005-06-05 22:47:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (963, '2005-05-30 18:52:53', 1921, 225, '2005-06-07 16:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (964, '2005-05-30 18:53:21', 657, 287, '2005-06-04 22:32:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (965, '2005-05-30 19:00:14', 3363, 502, '2005-05-31 17:10:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (966, '2005-05-30 19:00:37', 1294, 496, '2005-05-31 23:51:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (967, '2005-05-30 19:12:06', 1954, 330, '2005-06-09 00:02:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (968, '2005-05-30 19:20:03', 119, 576, '2005-05-31 18:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (969, '2005-05-30 19:23:48', 443, 551, '2005-05-31 21:14:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (970, '2005-05-30 19:50:28', 1520, 307, '2005-06-09 01:19:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (971, '2005-05-30 20:10:52', 2911, 561, '2005-06-06 20:47:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (972, '2005-05-30 20:21:07', 2, 411, '2005-06-06 00:36:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (973, '2005-05-30 20:27:45', 1914, 473, '2005-06-08 22:47:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (974, '2005-05-30 20:28:42', 2617, 596, '2005-06-08 23:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (975, '2005-05-30 21:07:15', 3109, 7, '2005-06-03 01:48:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (976, '2005-05-30 21:11:19', 2290, 581, '2005-06-06 02:16:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (977, '2005-05-30 21:22:26', 2029, 394, '2005-06-04 22:32:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (978, '2005-05-30 21:30:52', 407, 154, '2005-06-07 16:22:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (979, '2005-05-30 21:37:11', 3917, 279, '2005-06-08 00:24:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (980, '2005-05-30 21:45:19', 4169, 273, '2005-06-01 20:32:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (981, '2005-05-30 21:52:42', 2913, 326, '2005-06-01 03:15:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (982, '2005-05-30 22:15:24', 3560, 524, '2005-06-02 16:18:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (983, '2005-05-30 22:15:51', 63, 115, '2005-06-02 22:56:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (984, '2005-05-30 22:17:17', 2305, 262, '2005-06-01 20:15:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (985, '2005-05-30 22:18:35', 1573, 564, '2005-06-04 23:36:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (986, '2005-05-30 22:22:52', 4045, 253, '2005-06-01 02:24:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (987, '2005-05-30 22:59:12', 390, 11, '2005-06-07 20:56:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (988, '2005-05-30 23:08:03', 1364, 12, '2005-06-07 00:22:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (989, '2005-05-30 23:11:51', 4388, 83, '2005-06-03 20:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (990, '2005-05-30 23:25:14', 4171, 311, '2005-06-06 18:41:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (991, '2005-05-30 23:29:22', 2863, 593, '2005-06-07 23:16:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (992, '2005-05-30 23:47:56', 3572, 123, '2005-06-05 19:01:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (993, '2005-05-30 23:54:19', 2080, 513, '2005-06-04 21:27:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (994, '2005-05-30 23:55:36', 2798, 472, '2005-06-04 01:00:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (995, '2005-05-31 00:06:02', 17, 150, '2005-06-06 02:30:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (996, '2005-05-31 00:06:20', 2075, 331, '2005-05-31 21:29:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (997, '2005-05-31 00:08:25', 4243, 216, '2005-06-02 00:17:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (998, '2005-05-31 00:16:57', 3395, 389, '2005-06-01 22:41:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (999, '2005-05-31 00:25:10', 4433, 413, '2005-06-03 06:05:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1000, '2005-05-31 00:25:56', 1774, 332, '2005-06-08 19:42:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1001, '2005-05-31 00:46:31', 1498, 64, '2005-06-06 06:14:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1002, '2005-05-31 00:47:56', 709, 397, '2005-06-06 19:51:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1003, '2005-05-31 00:48:20', 133, 161, '2005-06-02 04:53:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1004, '2005-05-31 00:48:36', 1588, 565, '2005-06-01 20:56:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1005, '2005-05-31 00:53:25', 4006, 551, '2005-06-04 01:21:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1006, '2005-05-31 00:57:08', 3461, 222, '2005-06-02 22:35:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1007, '2005-05-31 01:02:28', 3185, 24, '2005-06-07 01:36:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1008, '2005-05-31 01:18:56', 914, 599, '2005-06-01 01:24:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1009, '2005-05-31 01:47:35', 2523, 485, '2005-06-03 20:26:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1010, '2005-05-31 01:57:32', 4038, 49, '2005-06-01 06:50:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1011, '2005-05-31 02:05:39', 118, 164, '2005-06-04 21:27:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1012, '2005-05-31 02:18:05', 688, 291, '2005-06-03 06:47:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1013, '2005-05-31 02:37:00', 4522, 384, '2005-06-02 06:39:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1014, '2005-05-31 02:39:16', 766, 280, '2005-06-01 06:03:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1015, '2005-05-31 02:44:57', 3702, 526, '2005-06-07 23:01:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1016, '2005-05-31 02:49:43', 3423, 204, '2005-06-04 03:48:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1017, '2005-05-31 02:53:36', 1242, 16, '2005-06-03 05:04:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1018, '2005-05-31 02:53:42', 1930, 594, '2005-06-03 00:47:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1019, '2005-05-31 03:05:07', 3975, 279, '2005-06-03 08:34:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1020, '2005-05-31 03:06:08', 3402, 138, '2005-06-02 08:57:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1021, '2005-05-31 03:16:15', 2724, 541, '2005-06-08 06:43:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1022, '2005-05-31 03:16:45', 842, 239, '2005-06-08 09:04:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1023, '2005-05-31 03:26:50', 2483, 227, '2005-06-05 08:19:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1024, '2005-05-31 03:30:19', 2310, 457, '2005-06-09 05:52:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1025, '2005-05-31 03:41:37', 1618, 93, '2005-06-08 07:05:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1026, '2005-05-31 03:45:26', 632, 107, '2005-06-06 22:30:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1027, '2005-05-31 03:46:19', 2718, 55, '2005-06-09 03:50:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1028, '2005-05-31 03:48:05', 4479, 51, '2005-06-01 03:51:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1029, '2005-05-31 03:52:02', 2082, 50, '2005-06-06 08:10:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1030, '2005-05-31 04:06:47', 3948, 267, '2005-06-02 02:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1031, '2005-05-31 04:23:01', 917, 416, '2005-06-06 08:35:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1032, '2005-05-31 04:28:43', 2937, 236, '2005-06-02 02:00:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1033, '2005-05-31 04:50:07', 14, 25, '2005-06-02 01:53:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1034, '2005-05-31 04:53:40', 4117, 293, '2005-06-09 08:25:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1035, '2005-05-31 05:01:09', 949, 362, '2005-06-02 03:59:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1036, '2005-05-31 05:21:10', 2164, 438, '2005-06-04 04:19:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1037, '2005-05-31 05:22:25', 810, 569, '2005-06-09 04:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1038, '2005-05-31 05:23:47', 1253, 385, '2005-06-02 03:57:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1039, '2005-05-31 05:32:29', 2479, 124, '2005-06-01 06:04:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1040, '2005-05-31 05:35:16', 2546, 270, '2005-06-09 04:14:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1041, '2005-05-31 05:46:23', 4432, 272, '2005-06-06 09:50:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1042, '2005-05-31 05:53:00', 3155, 506, '2005-06-01 05:24:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1043, '2005-05-31 06:11:40', 2322, 412, '2005-06-08 09:15:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1044, '2005-05-31 06:24:44', 2574, 70, '2005-06-03 04:51:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1045, '2005-05-31 06:29:01', 3470, 594, '2005-06-09 04:31:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1046, '2005-05-31 06:42:30', 468, 179, '2005-06-03 04:33:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1047, '2005-05-31 06:45:57', 1366, 72, '2005-06-04 09:49:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1048, '2005-05-31 06:49:53', 2811, 55, '2005-06-02 11:33:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1049, '2005-05-31 06:57:04', 3913, 312, '2005-06-02 11:32:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1050, '2005-05-31 07:01:27', 726, 303, '2005-06-03 07:50:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1051, '2005-05-31 07:02:09', 1025, 246, '2005-06-03 01:32:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1052, '2005-05-31 07:07:03', 2157, 156, '2005-06-05 09:38:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1053, '2005-05-31 07:12:44', 3734, 196, '2005-06-04 12:33:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1054, '2005-05-31 07:33:25', 1575, 126, '2005-06-02 01:40:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1055, '2005-05-31 07:47:18', 1639, 108, '2005-06-03 01:57:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1056, '2005-05-31 07:48:07', 1591, 519, '2005-06-05 08:51:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1057, '2005-05-31 07:58:06', 497, 124, '2005-06-06 03:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1058, '2005-05-31 08:04:17', 40, 116, '2005-06-03 11:12:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1059, '2005-05-31 08:20:43', 3041, 241, '2005-06-04 09:05:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1060, '2005-05-31 08:21:43', 2676, 570, '2005-06-09 04:02:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1061, '2005-05-31 08:27:58', 965, 109, '2005-06-07 02:34:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1062, '2005-05-31 08:38:20', 2223, 176, '2005-06-09 08:23:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1063, '2005-05-31 08:44:29', 2484, 7, '2005-06-09 08:00:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1064, '2005-05-31 08:50:07', 2373, 460, '2005-06-02 14:47:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1065, '2005-05-31 08:54:56', 3379, 316, '2005-06-08 09:21:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1066, '2005-05-31 09:07:33', 2383, 541, '2005-06-09 05:34:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1067, '2005-05-31 09:12:13', 2345, 32, '2005-06-01 06:15:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1068, '2005-05-31 09:32:15', 150, 443, '2005-06-01 11:20:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1069, '2005-05-31 09:32:31', 3057, 251, '2005-06-08 10:19:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1070, '2005-05-31 09:39:56', 3170, 228, '2005-06-05 10:23:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1071, '2005-05-31 09:48:56', 469, 174, '2005-06-02 03:52:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1072, '2005-05-31 09:52:50', 2557, 272, '2005-06-05 05:39:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1073, '2005-05-31 09:55:04', 522, 146, '2005-06-07 03:55:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1074, '2005-05-31 10:04:42', 2508, 503, '2005-06-02 15:27:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1075, '2005-05-31 10:13:34', 2279, 9, '2005-06-09 08:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1076, '2005-05-31 10:14:31', 2551, 214, '2005-06-05 10:13:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1077, '2005-05-31 10:22:54', 1986, 24, '2005-06-02 12:21:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1078, '2005-05-31 10:28:33', 3682, 230, '2005-06-03 14:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1079, '2005-05-31 10:48:17', 268, 312, '2005-06-08 12:30:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1080, '2005-05-31 10:55:26', 3491, 215, '2005-06-03 13:13:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1081, '2005-05-31 10:56:32', 4524, 404, '2005-06-06 11:31:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1082, '2005-05-31 11:02:01', 4510, 239, '2005-06-05 08:43:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1083, '2005-05-31 11:04:48', 2393, 556, '2005-06-05 13:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1084, '2005-05-31 11:10:17', 4577, 12, '2005-06-01 11:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1085, '2005-05-31 11:15:43', 301, 5, '2005-06-07 12:02:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1086, '2005-05-31 11:17:37', 2909, 549, '2005-06-06 13:58:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1087, '2005-05-31 11:18:08', 431, 169, '2005-06-04 08:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1088, '2005-05-31 11:35:13', 3988, 356, '2005-06-06 16:01:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1089, '2005-05-31 11:38:29', 3784, 367, '2005-06-02 08:06:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1090, '2005-05-31 12:03:44', 3329, 23, '2005-06-02 15:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1091, '2005-05-31 12:11:04', 3853, 251, '2005-06-04 11:42:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1092, '2005-05-31 12:15:57', 4412, 278, '2005-06-03 15:39:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1093, '2005-05-31 12:32:26', 2189, 214, '2005-06-03 07:51:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1094, '2005-05-31 13:03:49', 3810, 547, '2005-06-05 14:30:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1095, '2005-05-31 13:15:41', 4546, 252, '2005-06-05 12:10:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1096, '2005-05-31 13:30:49', 1066, 271, '2005-06-09 13:53:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1097, '2005-05-31 13:38:42', 2285, 491, '2005-06-01 13:54:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1098, '2005-05-31 13:51:48', 1050, 425, '2005-06-09 18:42:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1099, '2005-05-31 13:54:48', 924, 269, '2005-06-05 13:04:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1100, '2005-05-31 14:03:21', 316, 497, '2005-06-06 16:08:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1101, '2005-05-31 14:13:59', 1174, 260, '2005-06-07 15:49:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1102, '2005-05-31 14:20:29', 2052, 115, '2005-06-04 17:38:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1103, '2005-05-31 14:24:18', 3154, 353, '2005-06-09 10:27:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1104, '2005-05-31 14:30:01', 1619, 466, '2005-06-05 12:07:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1105, '2005-05-31 14:33:56', 1708, 26, '2005-06-07 11:30:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1106, '2005-05-31 14:36:52', 4185, 109, '2005-06-01 14:33:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1107, '2005-05-31 15:04:05', 3449, 53, '2005-06-07 16:42:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1108, '2005-05-31 15:05:12', 2562, 254, '2005-06-09 19:48:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1109, '2005-05-31 15:12:15', 2031, 481, '2005-06-09 16:21:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1110, '2005-05-31 15:22:51', 2085, 355, '2005-06-07 14:32:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1111, '2005-05-31 15:24:19', 1137, 300, '2005-06-08 21:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1112, '2005-05-31 15:51:39', 2453, 214, '2005-06-03 14:04:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1113, '2005-05-31 15:58:44', 2078, 451, '2005-06-05 18:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1114, '2005-05-31 16:00:33', 2287, 117, '2005-06-01 19:05:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1115, '2005-05-31 16:07:09', 2140, 109, '2005-06-04 18:51:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1116, '2005-05-31 16:10:46', 1356, 256, '2005-06-01 20:27:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1117, '2005-05-31 16:15:31', 4125, 189, '2005-06-04 17:20:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1118, '2005-05-31 16:23:02', 213, 510, '2005-06-03 20:00:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1119, '2005-05-31 16:34:27', 4401, 469, '2005-06-02 10:54:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1120, '2005-05-31 16:37:14', 2897, 361, '2005-06-04 12:53:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1121, '2005-05-31 16:37:36', 1691, 74, '2005-06-06 21:02:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1122, '2005-05-31 16:39:33', 1392, 180, '2005-06-04 17:25:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1123, '2005-05-31 16:48:43', 142, 448, '2005-06-02 19:17:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1124, '2005-05-31 16:49:34', 4560, 134, '2005-06-04 19:32:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1125, '2005-05-31 17:23:44', 1172, 234, '2005-06-01 15:02:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1126, '2005-05-31 17:27:45', 2765, 431, '2005-06-04 20:06:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1127, '2005-05-31 17:45:49', 2412, 387, '2005-06-08 22:41:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1128, '2005-05-31 17:49:26', 1496, 311, '2005-06-05 19:51:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1129, '2005-05-31 18:00:48', 386, 486, '2005-06-04 23:05:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1130, '2005-05-31 18:13:57', 3186, 124, '2005-06-06 22:50:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1131, '2005-05-31 18:44:19', 2654, 128, '2005-06-01 20:13:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1132, '2005-05-31 18:44:53', 1763, 198, '2005-06-07 22:02:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1133, '2005-05-31 19:12:21', 4271, 73, '2005-06-02 20:12:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1134, '2005-05-31 19:14:15', 143, 191, '2005-06-02 17:13:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1135, '2005-05-31 19:15:11', 3118, 122, '2005-06-01 14:44:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1136, '2005-05-31 19:19:36', 3963, 50, '2005-06-09 16:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1137, '2005-05-31 19:20:14', 3259, 351, '2005-06-07 16:10:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1138, '2005-05-31 19:30:27', 3944, 438, '2005-06-05 21:42:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1139, '2005-05-31 19:34:52', 666, 562, '2005-06-06 17:40:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1140, '2005-05-31 19:36:30', 3731, 10, '2005-06-07 18:33:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1141, '2005-05-31 19:42:02', 4128, 217, '2005-06-07 00:59:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1142, '2005-05-31 19:46:38', 3998, 5, '2005-06-05 14:03:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1143, '2005-05-31 19:53:03', 2632, 209, '2005-06-06 20:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1144, '2005-05-31 20:04:10', 2450, 207, '2005-06-09 16:34:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1145, '2005-05-31 20:13:45', 1133, 284, '2005-06-08 02:10:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1146, '2005-05-31 20:34:45', 3134, 250, '2005-06-03 18:12:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1147, '2005-05-31 20:37:52', 622, 259, '2005-06-06 19:23:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1148, '2005-05-31 20:38:40', 3307, 235, '2005-06-02 18:35:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1149, '2005-05-31 21:03:17', 352, 326, '2005-06-08 19:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1150, '2005-05-31 21:20:09', 1632, 136, '2005-06-03 19:15:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1151, '2005-05-31 21:29:00', 1281, 581, '2005-06-03 23:24:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1152, '2005-05-31 21:32:17', 210, 191, '2005-06-04 21:07:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1153, '2005-05-31 21:36:44', 2725, 506, '2005-06-10 01:26:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1154, '2005-05-31 21:42:09', 2732, 59, '2005-06-08 16:40:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1155, '2005-05-31 22:17:11', 2048, 251, '2005-06-04 20:27:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1156, '2005-05-31 22:37:34', 460, 106, '2005-06-01 23:02:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1157, '2005-05-31 22:47:45', 1449, 61, '2005-06-02 18:01:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1158, '2005-06-14 22:53:33', 1632, 416, '2005-06-18 21:37:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1159, '2005-06-14 22:55:13', 4395, 516, '2005-06-17 02:11:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1160, '2005-06-14 23:00:34', 2795, 239, '2005-06-18 01:58:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1161, '2005-06-14 23:07:08', 1690, 285, '2005-06-21 17:12:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1162, '2005-06-14 23:09:38', 987, 310, '2005-06-23 22:00:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1163, '2005-06-14 23:12:46', 4209, 592, '2005-06-23 21:53:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1164, '2005-06-14 23:16:26', 3691, 49, '2005-06-16 21:00:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1165, '2005-06-14 23:16:27', 2855, 264, '2005-06-20 02:40:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1166, '2005-06-14 23:17:03', 2508, 46, '2005-06-15 20:43:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1167, '2005-06-14 23:25:58', 4021, 323, '2005-06-18 05:18:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1168, '2005-06-14 23:35:09', 4368, 481, '2005-06-19 03:20:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1169, '2005-06-14 23:42:56', 1062, 139, '2005-06-16 04:02:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1170, '2005-06-14 23:47:35', 2444, 595, '2005-06-17 05:28:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1171, '2005-06-14 23:50:11', 4082, 284, '2005-06-17 21:44:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1172, '2005-06-14 23:54:34', 2685, 306, '2005-06-16 02:26:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1173, '2005-06-14 23:54:46', 1050, 191, '2005-06-19 23:26:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1174, '2005-06-15 00:12:51', 2653, 95, '2005-06-21 02:10:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1175, '2005-06-15 00:15:15', 3255, 197, '2005-06-20 19:23:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1176, '2005-06-15 00:28:37', 2715, 512, '2005-06-21 21:42:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1177, '2005-06-15 00:33:04', 1897, 210, '2005-06-16 03:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1178, '2005-06-15 00:36:40', 2553, 279, '2005-06-21 00:27:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1179, '2005-06-15 00:36:50', 816, 119, '2005-06-22 22:09:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1180, '2005-06-15 00:39:01', 3119, 432, '2005-06-21 22:44:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1181, '2005-06-15 00:42:17', 2973, 546, '2005-06-19 03:36:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1182, '2005-06-15 00:45:21', 1061, 196, '2005-06-22 03:52:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1183, '2005-06-15 00:49:19', 706, 329, '2005-06-20 04:33:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1184, '2005-06-15 00:49:36', 473, 295, '2005-06-22 23:39:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1185, '2005-06-15 00:54:12', 2785, 1, '2005-06-23 02:42:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1186, '2005-06-15 00:56:45', 1556, 368, '2005-06-16 02:23:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1187, '2005-06-15 00:58:50', 1108, 334, '2005-06-23 02:19:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1188, '2005-06-15 01:04:07', 246, 173, '2005-06-19 03:48:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1189, '2005-06-15 01:04:22', 142, 244, '2005-06-24 06:48:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1190, '2005-06-15 01:05:32', 2572, 370, '2005-06-23 02:34:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1191, '2005-06-15 01:10:35', 2221, 291, '2005-06-17 20:36:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1192, '2005-06-15 01:18:39', 4134, 186, '2005-06-19 22:46:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1193, '2005-06-15 01:24:20', 4504, 561, '2005-06-21 02:29:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1194, '2005-06-15 01:25:08', 3774, 402, '2005-06-21 01:16:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1195, '2005-06-15 01:37:38', 2272, 84, '2005-06-17 21:50:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1196, '2005-06-15 01:38:31', 994, 52, '2005-06-18 06:55:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1197, '2005-06-15 01:42:46', 3812, 349, '2005-06-20 00:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1198, '2005-06-15 01:48:58', 1138, 491, '2005-06-20 01:07:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1199, '2005-06-15 01:58:50', 253, 238, '2005-06-16 20:30:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1200, '2005-06-15 01:59:51', 3329, 516, '2005-06-21 21:33:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1201, '2005-06-15 02:06:28', 2679, 209, '2005-06-16 21:38:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1202, '2005-06-15 02:08:04', 2821, 451, '2005-06-16 21:56:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1203, '2005-06-15 02:09:02', 2223, 452, '2005-06-21 00:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1204, '2005-06-15 02:21:46', 2450, 249, '2005-06-20 07:14:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1205, '2005-06-15 02:25:56', 470, 340, '2005-06-22 23:19:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1206, '2005-06-15 02:27:07', 1097, 264, '2005-06-18 22:46:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1207, '2005-06-15 02:27:08', 2277, 430, '2005-06-19 08:18:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1208, '2005-06-15 02:30:03', 750, 376, '2005-06-18 00:04:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1209, '2005-06-15 02:31:12', 1494, 146, '2005-06-21 07:39:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1210, '2005-06-15 02:57:51', 7, 345, '2005-06-20 01:41:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1211, '2005-06-15 03:01:20', 3360, 122, '2005-06-18 07:52:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1212, '2005-06-15 03:03:33', 3611, 371, '2005-06-17 06:31:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1213, '2005-06-15 03:14:05', 3191, 94, '2005-06-15 21:41:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1214, '2005-06-15 03:18:40', 4482, 46, '2005-06-20 07:32:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1215, '2005-06-15 03:21:00', 242, 102, '2005-06-19 03:39:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1216, '2005-06-15 03:23:48', 3973, 100, '2005-06-18 03:35:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1217, '2005-06-15 03:24:14', 600, 203, '2005-06-18 22:37:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1218, '2005-06-15 03:24:44', 239, 371, '2005-06-21 22:45:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1219, '2005-06-15 03:25:59', 3005, 330, '2005-06-20 00:37:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1220, '2005-06-15 03:26:15', 1621, 290, '2005-06-23 08:17:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1221, '2005-06-15 03:35:16', 2124, 403, '2005-06-18 03:11:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1222, '2005-06-15 03:38:49', 2799, 168, '2005-06-17 22:30:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1223, '2005-06-15 03:38:53', 1299, 50, '2005-06-20 01:00:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1224, '2005-06-15 03:44:25', 1572, 369, '2005-06-17 03:49:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1225, '2005-06-15 03:45:35', 1929, 434, '2005-06-19 02:03:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1226, '2005-06-15 03:46:10', 2290, 409, '2005-06-23 02:00:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1227, '2005-06-15 03:50:03', 654, 428, '2005-06-21 23:48:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1228, '2005-06-15 03:50:36', 4473, 398, '2005-06-17 22:41:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1229, '2005-06-15 03:53:13', 2140, 468, '2005-06-18 04:09:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1230, '2005-06-15 04:04:09', 2324, 447, '2005-06-16 02:21:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1231, '2005-06-15 04:04:41', 3003, 302, '2005-06-20 23:52:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1232, '2005-06-15 04:18:10', 2743, 391, '2005-06-17 06:02:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1233, '2005-06-15 04:18:37', 4214, 550, '2005-06-22 03:36:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1234, '2005-06-15 04:21:52', 709, 529, '2005-06-22 03:25:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1235, '2005-06-15 04:31:28', 1000, 255, '2005-06-22 10:08:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1236, '2005-06-15 04:34:27', 3182, 66, '2005-06-18 08:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1237, '2005-06-15 04:44:10', 3249, 49, '2005-06-23 07:00:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1238, '2005-06-15 04:49:08', 3534, 205, '2005-06-20 00:06:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1239, '2005-06-15 04:53:01', 3731, 444, '2005-06-16 07:03:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1240, '2005-06-15 04:58:07', 3841, 28, '2005-06-17 23:56:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1241, '2005-06-15 04:59:43', 4377, 62, '2005-06-24 03:32:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1242, '2005-06-15 05:05:07', 821, 141, '2005-06-22 04:57:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1243, '2005-06-15 05:07:32', 2629, 107, '2005-06-21 08:17:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1244, '2005-06-15 05:08:40', 1026, 515, '2005-06-20 10:41:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1245, '2005-06-15 05:09:01', 1314, 234, '2005-06-22 06:55:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1246, '2005-06-15 05:11:19', 431, 357, '2005-06-21 02:21:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1247, '2005-06-15 05:16:40', 4049, 287, '2005-06-23 11:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1248, '2005-06-15 05:33:52', 3878, 544, '2005-06-19 06:56:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1249, '2005-06-15 05:38:09', 2120, 403, '2005-06-22 10:29:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1250, '2005-06-15 05:55:40', 4360, 38, '2005-06-23 03:11:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1251, '2005-06-15 05:58:55', 3307, 442, '2005-06-23 02:45:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1252, '2005-06-15 06:05:18', 1147, 89, '2005-06-24 07:40:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1253, '2005-06-15 06:06:33', 3242, 498, '2005-06-21 04:13:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1254, '2005-06-15 06:11:16', 3986, 571, '2005-06-21 06:40:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1255, '2005-06-15 06:13:45', 1433, 526, '2005-06-16 03:59:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1256, '2005-06-15 06:13:57', 1437, 470, '2005-06-16 06:54:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1257, '2005-06-15 06:15:36', 1938, 267, '2005-06-21 01:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1258, '2005-06-15 06:21:30', 4530, 320, '2005-06-18 05:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1259, '2005-06-15 06:37:55', 4460, 570, '2005-06-23 04:02:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1260, '2005-06-15 06:42:25', 330, 586, '2005-06-16 10:44:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1261, '2005-06-15 06:52:57', 2447, 95, '2005-06-21 01:47:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1262, '2005-06-15 06:54:53', 4495, 236, '2005-06-22 08:09:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1263, '2005-06-15 06:56:39', 4144, 540, '2005-06-16 11:08:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1264, '2005-06-15 06:59:39', 4176, 439, '2005-06-18 08:10:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1265, '2005-06-15 07:00:50', 982, 163, '2005-06-19 12:27:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1266, '2005-06-15 07:11:39', 2230, 96, '2005-06-21 02:59:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1267, '2005-06-15 07:21:21', 4246, 509, '2005-06-17 08:12:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1268, '2005-06-15 07:29:30', 3641, 142, '2005-06-23 12:36:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1269, '2005-06-15 07:29:59', 108, 59, '2005-06-16 13:26:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1270, '2005-06-15 07:30:22', 62, 395, '2005-06-18 11:31:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1271, '2005-06-15 07:32:24', 379, 560, '2005-06-21 05:12:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1272, '2005-06-15 07:42:58', 3128, 135, '2005-06-18 12:00:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1273, '2005-06-15 07:52:35', 361, 530, '2005-06-21 04:55:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1274, '2005-06-15 07:52:52', 2765, 430, '2005-06-20 10:01:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1275, '2005-06-15 07:55:43', 950, 214, '2005-06-20 06:30:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1276, '2005-06-15 08:00:13', 1508, 388, '2005-06-24 02:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1277, '2005-06-15 08:01:29', 76, 464, '2005-06-22 07:16:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1278, '2005-06-15 08:09:12', 4471, 191, '2005-06-17 04:05:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1279, '2005-06-15 08:13:57', 698, 183, '2005-06-18 09:36:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1280, '2005-06-15 08:16:06', 2597, 266, '2005-06-21 04:10:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1281, '2005-06-15 08:21:39', 2963, 511, '2005-06-17 11:03:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1282, '2005-06-15 08:25:33', 186, 539, '2005-06-21 04:02:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1283, '2005-06-15 08:27:30', 3177, 470, '2005-06-16 09:46:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1284, '2005-06-15 08:27:33', 1387, 463, '2005-06-17 03:58:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1285, '2005-06-15 08:33:06', 1054, 254, '2005-06-19 07:36:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1286, '2005-06-15 08:41:13', 774, 179, '2005-06-23 13:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1287, '2005-06-15 08:41:38', 4204, 104, '2005-06-22 14:02:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1288, '2005-06-15 08:41:52', 830, 456, '2005-06-19 05:30:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1289, '2005-06-15 08:44:09', 3154, 522, '2005-06-21 06:04:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1290, '2005-06-15 08:52:44', 1921, 540, '2005-06-24 13:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1291, '2005-06-15 08:55:01', 3090, 176, '2005-06-24 04:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1292, '2005-06-15 09:03:52', 4535, 178, '2005-06-21 07:53:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1293, '2005-06-15 09:06:24', 2882, 127, '2005-06-18 06:58:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1294, '2005-06-15 09:09:27', 339, 327, '2005-06-19 04:43:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1295, '2005-06-15 09:17:20', 2897, 449, '2005-06-18 10:14:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1296, '2005-06-15 09:23:59', 1760, 200, '2005-06-19 03:44:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1297, '2005-06-15 09:31:28', 1075, 4, '2005-06-19 04:33:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1298, '2005-06-15 09:32:53', 4163, 334, '2005-06-16 12:40:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1299, '2005-06-15 09:34:50', 1584, 91, '2005-06-21 12:07:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1300, '2005-06-15 09:36:19', 2524, 186, '2005-06-17 13:54:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1301, '2005-06-15 09:46:33', 1484, 33, '2005-06-24 08:56:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1302, '2005-06-15 09:48:37', 324, 285, '2005-06-22 06:18:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1303, '2005-06-15 09:55:57', 2001, 365, '2005-06-20 14:26:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1304, '2005-06-15 09:56:02', 1304, 242, '2005-06-24 07:00:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1305, '2005-06-15 09:59:16', 187, 8, '2005-06-19 09:48:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1306, '2005-06-15 09:59:24', 2132, 524, '2005-06-19 09:37:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1307, '2005-06-15 10:06:15', 368, 507, '2005-06-20 04:50:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1308, '2005-06-15 10:07:48', 220, 236, '2005-06-24 15:24:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1309, '2005-06-15 10:10:49', 2356, 200, '2005-06-16 12:44:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1310, '2005-06-15 10:11:42', 2045, 27, '2005-06-16 15:00:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1311, '2005-06-15 10:11:59', 3114, 326, '2005-06-17 08:44:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1312, '2005-06-15 10:16:27', 3608, 313, '2005-06-20 06:53:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1313, '2005-06-15 10:18:34', 1657, 448, '2005-06-23 06:25:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1314, '2005-06-15 10:21:45', 1359, 538, '2005-06-21 14:10:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1315, '2005-06-15 10:23:08', 3844, 405, '2005-06-21 15:06:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1316, '2005-06-15 10:26:23', 3891, 138, '2005-06-21 09:25:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1317, '2005-06-15 10:30:19', 3696, 316, '2005-06-24 08:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1318, '2005-06-15 10:34:26', 2760, 341, '2005-06-20 16:20:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1319, '2005-06-15 10:39:05', 4296, 190, '2005-06-18 05:25:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1320, '2005-06-15 10:42:13', 4484, 84, '2005-06-17 13:44:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1321, '2005-06-15 10:49:17', 3516, 204, '2005-06-16 15:30:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1322, '2005-06-15 10:55:09', 2076, 217, '2005-06-18 15:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1323, '2005-06-15 10:55:17', 3273, 187, '2005-06-24 09:51:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1324, '2005-06-15 11:02:45', 764, 394, '2005-06-17 07:14:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1325, '2005-06-15 11:03:24', 52, 193, '2005-06-20 10:54:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1326, '2005-06-15 11:07:39', 59, 548, '2005-06-22 05:55:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1327, '2005-06-15 11:11:39', 403, 539, '2005-06-22 10:45:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1328, '2005-06-15 11:23:27', 3665, 295, '2005-06-19 12:42:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1329, '2005-06-15 11:25:06', 1154, 359, '2005-06-17 16:10:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1330, '2005-06-15 11:29:17', 1219, 587, '2005-06-24 13:36:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1331, '2005-06-15 11:34:33', 3089, 277, '2005-06-21 09:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1332, '2005-06-15 11:36:01', 1412, 116, '2005-06-17 14:29:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1333, '2005-06-15 11:37:08', 448, 310, '2005-06-16 10:13:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1334, '2005-06-15 11:43:09', 1242, 269, '2005-06-20 15:45:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1335, '2005-06-15 11:51:30', 1713, 64, '2005-06-16 16:42:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1336, '2005-06-15 12:01:34', 1696, 290, '2005-06-23 12:05:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1337, '2005-06-15 12:12:42', 4014, 465, '2005-06-20 12:38:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1338, '2005-06-15 12:17:34', 1206, 25, '2005-06-19 07:40:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1339, '2005-06-15 12:21:56', 424, 162, '2005-06-19 07:46:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1340, '2005-06-15 12:24:15', 251, 100, '2005-06-22 13:02:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1341, '2005-06-15 12:26:18', 3363, 344, '2005-06-21 07:26:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1342, '2005-06-15 12:26:21', 4429, 427, '2005-06-22 11:23:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1343, '2005-06-15 12:27:19', 2393, 416, '2005-06-21 16:57:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1344, '2005-06-15 12:29:41', 1625, 585, '2005-06-22 12:45:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1345, '2005-06-15 12:32:13', 1041, 270, '2005-06-24 14:02:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1346, '2005-06-15 12:39:52', 4540, 585, '2005-06-24 17:43:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1347, '2005-06-15 12:43:43', 374, 190, '2005-06-16 09:55:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1348, '2005-06-15 12:45:30', 2078, 196, '2005-06-17 17:12:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1349, '2005-06-15 12:49:02', 1131, 267, '2005-06-17 15:20:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1350, '2005-06-15 12:50:25', 4261, 316, '2005-06-23 11:35:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1351, '2005-06-15 12:51:03', 2364, 484, '2005-06-22 07:23:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1352, '2005-06-15 12:58:27', 4352, 276, '2005-06-18 10:57:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1353, '2005-06-15 13:13:36', 2711, 480, '2005-06-21 08:46:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1354, '2005-06-15 13:13:49', 1294, 83, '2005-06-23 13:08:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1355, '2005-06-15 13:13:59', 4203, 499, '2005-06-20 12:23:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1356, '2005-06-15 13:17:01', 1318, 212, '2005-06-19 16:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1357, '2005-06-15 13:26:23', 2285, 205, '2005-06-23 14:12:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1358, '2005-06-15 13:28:48', 2025, 442, '2005-06-21 13:40:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1359, '2005-06-15 13:30:30', 3140, 353, '2005-06-17 14:55:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1360, '2005-06-15 13:32:15', 4107, 14, '2005-06-18 10:59:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1361, '2005-06-15 13:37:38', 4338, 115, '2005-06-19 17:08:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1362, '2005-06-15 13:53:32', 4524, 98, '2005-06-19 16:05:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1363, '2005-06-15 14:05:11', 771, 197, '2005-06-17 19:53:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1364, '2005-06-15 14:05:32', 115, 400, '2005-06-16 15:31:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1365, '2005-06-15 14:09:55', 3813, 25, '2005-06-19 18:11:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1366, '2005-06-15 14:21:00', 4238, 576, '2005-06-24 17:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1367, '2005-06-15 14:25:17', 1505, 94, '2005-06-21 19:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1368, '2005-06-15 14:27:47', 2020, 222, '2005-06-23 18:07:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1369, '2005-06-15 14:29:14', 679, 221, '2005-06-16 13:01:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1370, '2005-06-15 14:31:05', 644, 396, '2005-06-22 19:23:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1371, '2005-06-15 14:38:15', 760, 491, '2005-06-23 15:36:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1372, '2005-06-15 14:45:48', 3740, 108, '2005-06-17 18:02:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1373, '2005-06-15 14:48:04', 284, 51, '2005-06-22 09:48:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1374, '2005-06-15 14:49:54', 3353, 120, '2005-06-22 12:30:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1375, '2005-06-15 14:54:56', 3555, 500, '2005-06-21 14:48:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1376, '2005-06-15 14:59:06', 4271, 215, '2005-06-19 17:34:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1377, '2005-06-15 15:02:03', 3410, 245, '2005-06-22 14:54:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1378, '2005-06-15 15:03:15', 4372, 253, '2005-06-19 16:50:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1379, '2005-06-15 15:05:10', 810, 212, '2005-06-18 12:11:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1380, '2005-06-15 15:13:10', 3376, 158, '2005-06-18 12:42:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1381, '2005-06-15 15:17:21', 3262, 300, '2005-06-20 17:07:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1382, '2005-06-15 15:18:08', 3133, 455, '2005-06-22 09:22:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1383, '2005-06-15 15:20:06', 1281, 379, '2005-06-24 18:42:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1384, '2005-06-15 15:22:03', 4242, 242, '2005-06-18 18:11:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1385, '2005-06-15 15:28:23', 4073, 396, '2005-06-18 18:37:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1386, '2005-06-15 15:38:58', 1296, 322, '2005-06-20 16:28:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1387, '2005-06-15 15:40:56', 515, 278, '2005-06-17 10:39:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1388, '2005-06-15 15:48:41', 3987, 500, '2005-06-22 17:51:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1389, '2005-06-15 15:49:01', 965, 472, '2005-06-19 11:08:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1390, '2005-06-15 16:06:29', 4502, 254, '2005-06-19 13:11:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1391, '2005-06-15 16:11:21', 4213, 273, '2005-06-22 21:32:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1392, '2005-06-15 16:12:27', 363, 460, '2005-06-16 17:30:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1393, '2005-06-15 16:12:50', 2767, 177, '2005-06-19 10:40:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1394, '2005-06-15 16:17:21', 2802, 268, '2005-06-21 20:44:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1395, '2005-06-15 16:21:04', 753, 252, '2005-06-23 12:52:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1396, '2005-06-15 16:22:38', 1007, 103, '2005-06-17 15:53:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1397, '2005-06-15 16:25:26', 1830, 444, '2005-06-21 20:45:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1398, '2005-06-15 16:28:42', 4402, 527, '2005-06-16 12:11:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1399, '2005-06-15 16:29:51', 1435, 469, '2005-06-18 14:06:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1400, '2005-06-15 16:29:56', 230, 571, '2005-06-21 14:43:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1401, '2005-06-15 16:30:22', 4081, 366, '2005-06-21 11:07:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1402, '2005-06-15 16:31:08', 1951, 381, '2005-06-24 19:31:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1403, '2005-06-15 16:31:59', 3380, 546, '2005-06-22 14:23:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1404, '2005-06-15 16:38:53', 2776, 375, '2005-06-16 20:37:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1405, '2005-06-15 16:41:26', 3184, 243, '2005-06-21 18:16:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1406, '2005-06-15 16:44:00', 3118, 199, '2005-06-21 11:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1407, '2005-06-15 16:45:07', 1286, 89, '2005-06-23 14:01:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1408, '2005-06-15 16:57:58', 2655, 396, '2005-06-22 21:08:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1409, '2005-06-15 16:58:12', 1398, 297, '2005-06-21 11:21:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1410, '2005-06-15 16:59:46', 809, 356, '2005-06-21 16:38:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1411, '2005-06-15 17:05:36', 2276, 520, '2005-06-21 14:05:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1412, '2005-06-15 17:09:48', 4236, 166, '2005-06-18 17:05:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1413, '2005-06-15 17:25:07', 3625, 96, '2005-06-21 17:17:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1414, '2005-06-15 17:26:32', 4005, 304, '2005-06-22 22:30:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1415, '2005-06-15 17:31:57', 1885, 331, '2005-06-16 22:22:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1416, '2005-06-15 17:44:57', 3816, 167, '2005-06-22 20:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1417, '2005-06-15 17:45:51', 1334, 570, '2005-06-19 14:00:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1418, '2005-06-15 17:51:27', 2974, 591, '2005-06-18 23:20:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1419, '2005-06-15 17:54:50', 1208, 312, '2005-06-17 19:44:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1420, '2005-06-15 17:56:14', 4149, 255, '2005-06-24 15:45:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1421, '2005-06-15 17:57:04', 2439, 533, '2005-06-21 20:38:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1422, '2005-06-15 18:02:53', 1021, 1, '2005-06-19 15:54:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1423, '2005-06-15 18:08:12', 1396, 592, '2005-06-24 19:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1424, '2005-06-15 18:08:14', 887, 224, '2005-06-24 23:16:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1425, '2005-06-15 18:13:46', 1308, 108, '2005-06-18 22:50:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1426, '2005-06-15 18:16:24', 4412, 363, '2005-06-18 22:15:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1427, '2005-06-15 18:17:28', 14, 100, '2005-06-16 15:47:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1428, '2005-06-15 18:19:30', 3689, 583, '2005-06-22 23:05:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1429, '2005-06-15 18:24:10', 4116, 362, '2005-06-18 16:30:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1430, '2005-06-15 18:24:55', 3412, 194, '2005-06-16 12:26:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1431, '2005-06-15 18:26:29', 3193, 438, '2005-06-21 17:33:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1432, '2005-06-15 18:27:24', 523, 339, '2005-06-21 14:03:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1433, '2005-06-15 18:30:00', 2310, 88, '2005-06-16 15:14:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1434, '2005-06-15 18:30:46', 4228, 544, '2005-06-24 17:51:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1435, '2005-06-15 18:32:30', 2769, 510, '2005-06-24 12:44:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1436, '2005-06-15 18:35:40', 924, 584, '2005-06-21 15:04:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1437, '2005-06-15 18:37:04', 3263, 96, '2005-06-20 12:56:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1438, '2005-06-15 18:38:51', 1816, 82, '2005-06-17 23:50:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1439, '2005-06-15 18:45:32', 3155, 589, '2005-06-22 15:57:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1440, '2005-06-15 18:53:14', 2921, 26, '2005-06-24 15:28:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1441, '2005-06-15 18:54:21', 2095, 444, '2005-06-22 22:48:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1442, '2005-06-15 18:55:34', 3912, 122, '2005-06-22 20:41:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1443, '2005-06-15 18:57:51', 2485, 435, '2005-06-18 14:18:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1444, '2005-06-15 19:08:16', 1303, 539, '2005-06-24 15:20:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1445, '2005-06-15 19:10:07', 3189, 537, '2005-06-19 20:27:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1446, '2005-06-15 19:13:45', 1989, 506, '2005-06-23 19:43:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1447, '2005-06-15 19:13:51', 984, 471, '2005-06-21 22:56:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1448, '2005-06-15 19:17:16', 2781, 246, '2005-06-23 21:56:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1449, '2005-06-15 19:19:16', 1525, 471, '2005-06-18 15:24:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1450, '2005-06-15 19:22:08', 4132, 268, '2005-06-16 17:53:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1451, '2005-06-15 19:30:18', 3560, 18, '2005-06-19 19:22:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1452, '2005-06-15 19:32:52', 4348, 243, '2005-06-16 13:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1453, '2005-06-15 19:36:39', 3274, 457, '2005-06-19 00:16:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1454, '2005-06-15 19:49:41', 102, 298, '2005-06-17 15:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1455, '2005-06-15 19:51:06', 2194, 358, '2005-06-18 21:54:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1456, '2005-06-15 20:00:11', 632, 590, '2005-06-23 18:03:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1457, '2005-06-15 20:05:49', 730, 345, '2005-06-19 15:35:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1458, '2005-06-15 20:24:05', 3546, 178, '2005-06-21 01:22:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1459, '2005-06-15 20:25:53', 1862, 218, '2005-06-22 23:34:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1460, '2005-06-15 20:27:02', 1405, 565, '2005-06-16 16:21:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1461, '2005-06-15 20:32:08', 4479, 216, '2005-06-23 01:08:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1462, '2005-06-15 20:37:40', 653, 187, '2005-06-18 19:36:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1463, '2005-06-15 20:37:51', 2984, 569, '2005-06-21 16:46:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1464, '2005-06-15 20:38:14', 4113, 387, '2005-06-17 14:52:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1465, '2005-06-15 20:43:08', 609, 387, '2005-06-18 23:00:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1466, '2005-06-15 20:46:04', 1057, 288, '2005-06-24 22:46:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1467, '2005-06-15 20:47:10', 688, 506, '2005-06-22 00:30:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1468, '2005-06-15 20:48:22', 228, 230, '2005-06-21 19:48:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1469, '2005-06-15 20:52:36', 2451, 580, '2005-06-21 19:55:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1470, '2005-06-15 20:53:07', 4044, 11, '2005-06-25 02:12:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1471, '2005-06-15 20:53:26', 565, 428, '2005-06-24 18:25:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1472, '2005-06-15 20:54:55', 4233, 373, '2005-06-24 21:52:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1473, '2005-06-15 20:55:20', 2377, 249, '2005-06-21 16:40:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1474, '2005-06-15 20:55:42', 164, 202, '2005-06-19 02:41:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1475, '2005-06-15 21:08:01', 1834, 344, '2005-06-18 22:33:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1476, '2005-06-15 21:08:46', 1407, 1, '2005-06-25 02:26:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1477, '2005-06-15 21:11:18', 418, 51, '2005-06-19 02:05:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1478, '2005-06-15 21:12:13', 435, 336, '2005-06-18 21:43:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1479, '2005-06-15 21:13:38', 172, 592, '2005-06-17 01:26:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1480, '2005-06-15 21:17:17', 2598, 27, '2005-06-23 22:01:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1481, '2005-06-15 21:17:58', 3041, 125, '2005-06-18 17:53:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1482, '2005-06-15 21:18:16', 3980, 60, '2005-06-16 17:07:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1483, '2005-06-15 21:21:58', 1926, 242, '2005-06-24 00:44:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1484, '2005-06-15 21:22:35', 1589, 320, '2005-06-20 02:27:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1485, '2005-06-15 21:24:10', 194, 281, '2005-06-24 23:03:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1486, '2005-06-15 21:25:30', 847, 62, '2005-06-16 16:36:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1487, '2005-06-15 21:27:42', 3791, 76, '2005-06-22 03:09:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1488, '2005-06-15 21:39:54', 1081, 355, '2005-06-16 20:33:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1489, '2005-06-15 21:41:38', 699, 213, '2005-06-22 17:00:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1490, '2005-06-15 21:42:17', 3515, 123, '2005-06-22 02:01:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1491, '2005-06-15 21:48:18', 848, 354, '2005-06-20 16:40:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1492, '2005-06-15 21:48:35', 4148, 360, '2005-06-17 17:18:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1493, '2005-06-15 21:50:32', 4581, 235, '2005-06-17 01:02:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1494, '2005-06-15 21:54:20', 244, 575, '2005-06-19 18:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1495, '2005-06-15 21:54:31', 1842, 175, '2005-06-19 00:08:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1496, '2005-06-15 21:55:58', 3915, 290, '2005-06-17 02:28:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1497, '2005-06-15 21:56:39', 2958, 44, '2005-06-20 20:32:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1498, '2005-06-15 21:58:00', 3690, 352, '2005-06-17 21:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1499, '2005-06-15 21:58:07', 165, 375, '2005-06-22 19:37:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1500, '2005-06-15 22:00:45', 2652, 237, '2005-06-18 16:19:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1501, '2005-06-15 22:02:35', 1780, 148, '2005-06-23 18:59:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1502, '2005-06-15 22:03:14', 3277, 5, '2005-06-23 18:42:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1503, '2005-06-15 22:07:09', 763, 197, '2005-06-20 23:15:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1504, '2005-06-15 22:08:06', 3621, 423, '2005-06-24 01:16:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1505, '2005-06-15 22:12:50', 2961, 561, '2005-06-17 21:37:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1506, '2005-06-15 22:19:37', 4085, 404, '2005-06-22 18:28:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1507, '2005-06-15 22:25:26', 2514, 172, '2005-06-19 17:00:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1508, '2005-06-15 22:33:24', 1141, 511, '2005-06-18 02:27:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1509, '2005-06-15 22:35:53', 655, 167, '2005-06-23 17:09:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1510, '2005-06-15 22:39:34', 989, 338, '2005-06-24 19:21:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1511, '2005-06-15 22:45:06', 1135, 330, '2005-06-22 22:48:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1512, '2005-06-15 22:53:03', 1628, 452, '2005-06-23 18:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1513, '2005-06-15 22:53:30', 1173, 368, '2005-06-23 01:00:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1514, '2005-06-15 22:57:34', 2937, 410, '2005-06-19 20:27:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1515, '2005-06-15 23:07:50', 3244, 115, '2005-06-20 02:33:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1516, '2005-06-15 23:11:10', 3702, 530, '2005-06-17 20:37:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1517, '2005-06-15 23:20:26', 3728, 148, '2005-06-23 23:23:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1518, '2005-06-15 23:36:37', 4537, 237, '2005-06-16 18:24:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1519, '2005-06-15 23:55:27', 1553, 155, '2005-06-21 04:06:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1520, '2005-06-15 23:57:20', 3419, 341, '2005-06-24 23:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1521, '2005-06-15 23:58:53', 4299, 149, '2005-06-18 03:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1522, '2005-06-16 00:17:39', 235, 133, '2005-06-22 05:38:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1523, '2005-06-16 00:18:40', 681, 349, '2005-06-17 02:50:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1524, '2005-06-16 00:25:52', 3439, 177, '2005-06-19 03:32:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1525, '2005-06-16 00:26:07', 1467, 304, '2005-06-19 22:37:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1526, '2005-06-16 00:27:51', 1940, 499, '2005-06-19 00:19:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1527, '2005-06-16 00:31:40', 296, 188, '2005-06-21 05:20:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1528, '2005-06-16 00:32:52', 4297, 110, '2005-06-25 01:07:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1529, '2005-06-16 00:37:35', 1688, 362, '2005-06-22 18:58:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1530, '2005-06-16 00:38:07', 2421, 392, '2005-06-24 02:45:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1531, '2005-06-16 00:40:34', 1388, 515, '2005-06-22 02:44:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1532, '2005-06-16 00:41:31', 3793, 290, '2005-06-20 21:36:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1533, '2005-06-16 00:46:02', 2452, 116, '2005-06-17 20:11:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1534, '2005-06-16 00:49:32', 3124, 42, '2005-06-18 02:41:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1535, '2005-06-16 00:52:04', 1096, 202, '2005-06-20 22:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1536, '2005-06-16 00:52:22', 3248, 339, '2005-06-17 21:43:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1537, '2005-06-16 00:52:51', 4577, 594, '2005-06-20 19:33:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1538, '2005-06-16 01:05:50', 708, 430, '2005-06-18 19:48:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1539, '2005-06-16 01:11:25', 267, 390, '2005-06-23 03:43:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1540, '2005-06-16 01:14:56', 2707, 586, '2005-06-20 23:31:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1541, '2005-06-16 01:15:59', 1911, 189, '2005-06-22 21:26:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1542, '2005-06-16 01:20:05', 1714, 182, '2005-06-22 03:59:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1543, '2005-06-16 01:24:08', 1188, 28, '2005-06-18 06:24:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1544, '2005-06-16 01:28:22', 269, 43, '2005-06-17 06:57:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1545, '2005-06-16 01:31:23', 762, 563, '2005-06-24 05:50:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1546, '2005-06-16 01:34:05', 3913, 3, '2005-06-24 04:27:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1547, '2005-06-16 01:42:24', 2909, 343, '2005-06-19 01:13:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1548, '2005-06-16 01:43:33', 2094, 374, '2005-06-23 22:04:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1549, '2005-06-16 01:57:15', 266, 69, '2005-06-18 23:30:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1550, '2005-06-16 01:58:35', 2003, 345, '2005-06-18 23:56:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1551, '2005-06-16 02:01:15', 4088, 268, '2005-06-22 07:33:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1552, '2005-06-16 02:01:37', 819, 518, '2005-06-21 00:59:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1553, '2005-06-16 02:02:44', 4026, 416, '2005-06-19 07:50:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1554, '2005-06-16 02:16:47', 715, 155, '2005-06-22 05:15:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1555, '2005-06-16 02:17:07', 4168, 256, '2005-06-22 06:28:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1556, '2005-06-16 02:19:02', 533, 54, '2005-06-17 22:36:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1557, '2005-06-16 02:28:35', 2617, 439, '2005-06-16 22:11:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1558, '2005-06-16 02:33:53', 4350, 20, '2005-06-19 20:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1559, '2005-06-16 02:35:03', 716, 574, '2005-06-19 21:22:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1560, '2005-06-16 02:36:43', 3418, 239, '2005-06-24 23:10:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1561, '2005-06-16 02:41:30', 2263, 431, '2005-06-22 05:19:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1562, '2005-06-16 02:46:27', 595, 395, '2005-06-23 00:56:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1563, '2005-06-16 02:46:28', 1516, 262, '2005-06-18 02:37:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1564, '2005-06-16 02:47:07', 145, 343, '2005-06-24 03:12:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1565, '2005-06-16 03:13:09', 3833, 506, '2005-06-16 22:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1566, '2005-06-16 03:13:20', 3215, 174, '2005-06-24 01:59:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1567, '2005-06-16 03:13:30', 3098, 320, '2005-06-21 23:56:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1568, '2005-06-16 03:14:01', 635, 178, '2005-06-19 21:17:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1569, '2005-06-16 03:19:09', 3927, 363, '2005-06-18 21:55:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1570, '2005-06-16 03:21:33', 3711, 82, '2005-06-22 22:03:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1571, '2005-06-16 03:22:00', 1019, 54, '2005-06-22 23:27:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1572, '2005-06-16 03:23:22', 4179, 560, '2005-06-20 06:03:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1573, '2005-06-16 03:31:39', 4536, 371, '2005-06-25 04:04:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1574, '2005-06-16 03:39:56', 161, 305, '2005-06-22 05:40:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1575, '2005-06-16 03:41:38', 3317, 6, '2005-06-22 03:01:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1576, '2005-06-16 03:54:39', 1014, 442, '2005-06-24 21:55:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1577, '2005-06-16 04:03:28', 367, 327, '2005-06-24 22:40:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1578, '2005-06-16 04:08:16', 3397, 365, '2005-06-23 07:57:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1579, '2005-06-16 04:09:08', 158, 35, '2005-06-21 05:21:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1580, '2005-06-16 04:12:25', 2479, 87, '2005-06-20 06:53:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1581, '2005-06-16 04:28:45', 4004, 109, '2005-06-18 07:07:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1582, '2005-06-16 04:31:57', 163, 536, '2005-06-22 01:25:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1583, '2005-06-16 04:44:23', 270, 37, '2005-06-18 03:44:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1584, '2005-06-16 04:50:50', 3545, 434, '2005-06-21 22:51:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1585, '2005-06-16 04:51:13', 1708, 386, '2005-06-24 00:23:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1586, '2005-06-16 04:51:18', 769, 140, '2005-06-21 06:54:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1587, '2005-06-16 04:52:28', 1781, 62, '2005-06-23 07:36:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1588, '2005-06-16 04:53:21', 4472, 322, '2005-06-25 07:29:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1589, '2005-06-16 04:58:03', 4307, 293, '2005-06-24 08:36:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1590, '2005-06-16 05:11:41', 3685, 98, '2005-06-23 10:11:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1591, '2005-06-16 05:12:37', 1648, 83, '2005-06-25 06:28:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1592, '2005-06-16 05:14:37', 3798, 187, '2005-06-20 10:52:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1593, '2005-06-16 05:14:52', 766, 111, '2005-06-24 08:00:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1594, '2005-06-16 05:15:12', 3858, 470, '2005-06-25 00:38:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1595, '2005-06-16 05:23:46', 1481, 244, '2005-06-20 00:37:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1596, '2005-06-16 05:30:58', 2552, 416, '2005-06-21 04:18:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1597, '2005-06-16 05:47:03', 743, 432, '2005-06-18 04:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1598, '2005-06-16 06:02:39', 4171, 314, '2005-06-23 09:09:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1599, '2005-06-16 06:03:33', 1476, 215, '2005-06-21 07:46:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1600, '2005-06-16 06:04:12', 2264, 196, '2005-06-19 09:39:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1601, '2005-06-16 06:11:13', 3115, 428, '2005-06-21 08:57:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1602, '2005-06-16 06:12:40', 1777, 441, '2005-06-19 03:50:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1603, '2005-06-16 06:14:03', 3308, 395, '2005-06-17 06:04:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1604, '2005-06-16 06:14:25', 3226, 272, '2005-06-17 03:53:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1605, '2005-06-16 06:17:55', 593, 197, '2005-06-25 01:25:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1606, '2005-06-16 06:18:31', 4290, 253, '2005-06-25 09:15:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1607, '2005-06-16 06:25:35', 3289, 513, '2005-06-20 02:50:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1608, '2005-06-16 06:28:57', 2581, 386, '2005-06-24 05:20:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1609, '2005-06-16 06:34:59', 2279, 174, '2005-06-17 09:41:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1610, '2005-06-16 06:36:33', 3551, 534, '2005-06-19 07:12:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1611, '2005-06-16 06:41:35', 1739, 393, '2005-06-25 06:13:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1612, '2005-06-16 06:52:05', 3025, 355, '2005-06-19 01:51:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1613, '2005-06-16 06:55:10', 4462, 573, '2005-06-24 12:08:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1614, '2005-06-16 06:58:02', 23, 489, '2005-06-23 11:24:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1615, '2005-06-16 07:00:28', 3894, 362, '2005-06-25 08:53:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1616, '2005-06-16 07:04:52', 2296, 204, '2005-06-24 04:06:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1617, '2005-06-16 07:06:06', 1382, 83, '2005-06-25 03:35:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1618, '2005-06-16 07:08:38', 3741, 134, '2005-06-25 05:26:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1619, '2005-06-16 07:14:13', 4258, 232, '2005-06-19 05:50:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1620, '2005-06-16 07:21:30', 389, 561, '2005-06-17 09:46:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1621, '2005-06-16 07:24:12', 3677, 177, '2005-06-19 02:35:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1622, '2005-06-16 07:33:18', 1774, 311, '2005-06-21 07:23:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1623, '2005-06-16 07:48:50', 4485, 378, '2005-06-17 03:53:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1624, '2005-06-16 07:48:57', 1066, 314, '2005-06-17 05:52:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1625, '2005-06-16 07:49:08', 3367, 39, '2005-06-24 09:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1626, '2005-06-16 07:49:47', 694, 260, '2005-06-22 13:32:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1627, '2005-06-16 07:51:09', 4135, 468, '2005-06-24 02:24:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1628, '2005-06-16 07:52:55', 868, 427, '2005-06-25 11:09:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1629, '2005-06-16 07:53:47', 4375, 339, '2005-06-22 13:03:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1630, '2005-06-16 07:55:01', 2413, 130, '2005-06-19 06:38:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1631, '2005-06-16 08:01:02', 2466, 5, '2005-06-19 09:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1632, '2005-06-16 08:03:42', 1518, 319, '2005-06-17 03:40:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1633, '2005-06-16 08:08:40', 280, 4, '2005-06-17 11:12:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1634, '2005-06-16 08:16:05', 3990, 121, '2005-06-17 04:49:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1635, '2005-06-16 08:26:56', 1187, 566, '2005-06-25 06:17:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1636, '2005-06-16 08:28:54', 2052, 574, '2005-06-24 09:23:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1637, '2005-06-16 08:29:58', 906, 212, '2005-06-23 04:55:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1638, '2005-06-16 08:32:36', 1905, 181, '2005-06-18 07:11:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1639, '2005-06-16 08:33:39', 176, 450, '2005-06-25 07:51:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1640, '2005-06-16 08:35:39', 443, 86, '2005-06-17 05:37:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1641, '2005-06-16 08:46:26', 2925, 259, '2005-06-24 14:39:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1642, '2005-06-16 08:54:15', 3875, 287, '2005-06-18 12:36:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1643, '2005-06-16 08:55:35', 1352, 484, '2005-06-21 05:36:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1644, '2005-06-16 08:58:18', 749, 596, '2005-06-21 06:47:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1645, '2005-06-16 09:10:06', 4434, 234, '2005-06-23 04:36:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1646, '2005-06-16 09:12:53', 4037, 131, '2005-06-24 08:03:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1647, '2005-06-16 09:14:58', 1936, 454, '2005-06-17 10:46:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1648, '2005-06-16 09:17:07', 457, 427, '2005-06-24 06:31:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1649, '2005-06-16 09:20:33', 390, 352, '2005-06-18 13:42:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1650, '2005-06-16 09:23:20', 4125, 299, '2005-06-23 11:25:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1651, '2005-06-16 09:24:38', 4444, 524, '2005-06-17 09:50:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1652, '2005-06-16 09:31:37', 3416, 533, '2005-06-19 14:02:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1653, '2005-06-16 09:34:45', 2294, 517, '2005-06-18 09:13:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1654, '2005-06-16 09:42:48', 1039, 348, '2005-06-20 14:28:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1655, '2005-06-16 09:51:39', 3693, 488, '2005-06-23 14:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1656, '2005-06-16 10:05:40', 2253, 31, '2005-06-22 06:26:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1657, '2005-06-16 10:06:49', 953, 209, '2005-06-22 10:34:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1658, '2005-06-16 10:07:10', 272, 568, '2005-06-21 09:23:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1659, '2005-06-16 10:11:46', 1182, 296, '2005-06-20 13:51:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1660, '2005-06-16 10:12:55', 2374, 238, '2005-06-18 05:56:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1661, '2005-06-16 10:12:57', 2403, 508, '2005-06-24 09:23:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1662, '2005-06-16 10:13:35', 3552, 378, '2005-06-23 13:54:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1663, '2005-06-16 10:14:15', 1558, 186, '2005-06-23 08:34:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1664, '2005-06-16 10:15:20', 2464, 216, '2005-06-18 12:11:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1665, '2005-06-16 10:16:02', 2613, 490, '2005-06-23 09:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1666, '2005-06-16 10:17:19', 4019, 557, '2005-06-21 05:50:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1667, '2005-06-16 10:18:59', 2362, 333, '2005-06-22 14:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1668, '2005-06-16 10:19:52', 2483, 569, '2005-06-23 12:22:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1669, '2005-06-16 10:20:20', 360, 73, '2005-06-18 04:26:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1670, '2005-06-16 10:26:33', 2066, 328, '2005-06-19 07:15:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1671, '2005-06-16 10:30:22', 3805, 135, '2005-06-22 11:08:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1672, '2005-06-16 10:37:34', 4206, 216, '2005-06-23 05:30:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1673, '2005-06-16 10:40:17', 907, 534, '2005-06-18 16:13:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1674, '2005-06-16 10:57:00', 3606, 234, '2005-06-18 07:31:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1675, '2005-06-16 11:04:47', 3048, 371, '2005-06-24 06:56:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1676, '2005-06-16 11:06:09', 931, 171, '2005-06-21 05:17:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1677, '2005-06-16 11:07:11', 240, 191, '2005-06-23 10:50:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1678, '2005-06-16 11:08:28', 1856, 352, '2005-06-19 15:44:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1679, '2005-06-16 11:11:01', 3959, 227, '2005-06-23 08:11:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1680, '2005-06-16 11:17:22', 4441, 469, '2005-06-25 15:55:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1681, '2005-06-16 11:38:17', 530, 255, '2005-06-19 13:05:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1682, '2005-06-16 11:54:25', 2165, 476, '2005-06-22 11:09:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1683, '2005-06-16 11:54:55', 2361, 494, '2005-06-18 08:51:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1684, '2005-06-16 11:57:34', 806, 485, '2005-06-19 09:12:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1685, '2005-06-16 12:06:57', 2754, 85, '2005-06-21 16:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1686, '2005-06-16 12:08:20', 3883, 529, '2005-06-20 10:59:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1687, '2005-06-16 12:09:20', 3686, 140, '2005-06-18 06:18:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1688, '2005-06-16 12:11:20', 383, 49, '2005-06-18 08:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1689, '2005-06-16 12:18:41', 4036, 48, '2005-06-24 13:33:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1690, '2005-06-16 12:24:18', 1099, 286, '2005-06-25 15:00:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1691, '2005-06-16 12:24:28', 4438, 492, '2005-06-24 08:24:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1692, '2005-06-16 12:30:19', 3544, 514, '2005-06-17 17:31:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1693, '2005-06-16 12:39:51', 2386, 421, '2005-06-19 16:19:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1694, '2005-06-16 12:40:23', 147, 532, '2005-06-20 09:18:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1695, '2005-06-16 12:40:28', 4436, 159, '2005-06-22 13:41:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1696, '2005-06-16 12:50:01', 3928, 502, '2005-06-24 12:08:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1697, '2005-06-16 12:55:20', 1801, 340, '2005-06-23 17:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1698, '2005-06-16 13:04:42', 1474, 407, '2005-06-21 15:54:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1699, '2005-06-16 13:05:09', 4507, 27, '2005-06-17 09:53:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1700, '2005-06-16 13:18:23', 4251, 456, '2005-06-21 16:46:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1701, '2005-06-16 13:18:48', 3000, 315, '2005-06-22 15:00:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1702, '2005-06-16 13:21:05', 1822, 242, '2005-06-19 10:13:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1703, '2005-06-16 13:28:44', 2346, 589, '2005-06-17 11:03:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1704, '2005-06-16 13:45:56', 4425, 488, '2005-06-24 18:12:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1705, '2005-06-16 13:59:42', 123, 564, '2005-06-18 19:54:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1706, '2005-06-16 14:01:02', 2935, 26, '2005-06-25 19:29:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1707, '2005-06-16 14:01:27', 185, 4, '2005-06-18 09:35:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1708, '2005-06-16 14:08:44', 2259, 478, '2005-06-19 08:35:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1709, '2005-06-16 14:10:15', 3501, 426, '2005-06-24 16:38:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1710, '2005-06-16 14:11:24', 144, 77, '2005-06-22 15:26:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1711, '2005-06-16 14:11:52', 273, 347, '2005-06-25 08:49:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1712, '2005-06-16 14:25:09', 1363, 535, '2005-06-17 17:55:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1713, '2005-06-16 14:28:33', 2580, 164, '2005-06-18 09:02:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1714, '2005-06-16 14:29:59', 535, 477, '2005-06-24 17:27:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1715, '2005-06-16 14:37:12', 1594, 203, '2005-06-20 19:36:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1716, '2005-06-16 14:39:31', 20, 24, '2005-06-19 15:37:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1717, '2005-06-16 14:47:16', 3007, 277, '2005-06-19 10:11:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1718, '2005-06-16 14:52:02', 288, 516, '2005-06-25 10:53:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1719, '2005-06-16 14:55:53', 2699, 582, '2005-06-18 14:12:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1720, '2005-06-16 15:00:14', 3500, 543, '2005-06-21 13:57:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1721, '2005-06-16 15:01:36', 3521, 485, '2005-06-23 10:48:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1722, '2005-06-16 15:12:52', 2142, 364, '2005-06-19 13:01:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1723, '2005-06-16 15:14:18', 2417, 259, '2005-06-23 15:45:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1724, '2005-06-16 15:15:43', 61, 146, '2005-06-23 10:14:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1725, '2005-06-16 15:18:57', 726, 1, '2005-06-17 21:05:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1726, '2005-06-16 15:19:10', 116, 3, '2005-06-25 11:39:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1727, '2005-06-16 15:21:47', 2951, 457, '2005-06-17 14:12:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1728, '2005-06-16 15:29:29', 1366, 59, '2005-06-23 12:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1729, '2005-06-16 15:29:47', 3364, 523, '2005-06-25 20:55:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1730, '2005-06-16 15:30:01', 1372, 390, '2005-06-19 12:56:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1731, '2005-06-16 15:32:12', 3698, 344, '2005-06-19 18:58:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1732, '2005-06-16 15:34:41', 2287, 129, '2005-06-18 13:05:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1733, '2005-06-16 15:37:07', 542, 480, '2005-06-23 15:53:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1734, '2005-06-16 15:49:30', 1113, 94, '2005-06-22 13:52:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1735, '2005-06-16 15:51:52', 97, 4, '2005-06-20 13:27:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1736, '2005-06-16 15:52:32', 3771, 139, '2005-06-21 14:39:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1737, '2005-06-16 15:59:44', 4029, 467, '2005-06-23 12:22:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1738, '2005-06-16 16:07:27', 3260, 177, '2005-06-20 15:22:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1739, '2005-06-16 16:09:38', 2557, 450, '2005-06-22 18:04:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1740, '2005-06-16 16:29:00', 2282, 324, '2005-06-20 14:07:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1741, '2005-06-16 16:31:37', 3722, 176, '2005-06-25 21:38:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1742, '2005-06-16 16:37:48', 2772, 576, '2005-06-17 19:47:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1743, '2005-06-16 16:38:10', 2777, 258, '2005-06-17 13:13:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1744, '2005-06-16 16:39:58', 3075, 230, '2005-06-18 19:50:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1745, '2005-06-16 16:41:16', 2812, 178, '2005-06-23 21:02:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1746, '2005-06-16 16:41:19', 4272, 385, '2005-06-19 11:28:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1747, '2005-06-16 16:53:33', 1661, 273, '2005-06-25 21:48:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1748, '2005-06-16 16:54:03', 2434, 473, '2005-06-18 20:11:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1749, '2005-06-16 16:56:00', 1554, 283, '2005-06-21 21:02:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1750, '2005-06-16 16:57:36', 1103, 321, '2005-06-25 21:51:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1751, '2005-06-16 17:00:14', 138, 123, '2005-06-17 12:12:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1752, '2005-06-16 17:02:55', 3529, 12, '2005-06-23 19:09:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1753, '2005-06-16 17:08:17', 3817, 249, '2005-06-21 21:47:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1754, '2005-06-16 17:13:23', 4106, 25, '2005-06-22 20:46:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1755, '2005-06-16 17:18:44', 1721, 117, '2005-06-17 16:54:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1756, '2005-06-16 17:22:33', 1401, 571, '2005-06-21 16:52:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1757, '2005-06-16 17:32:24', 4491, 510, '2005-06-18 13:12:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1758, '2005-06-16 17:39:39', 2654, 474, '2005-06-25 13:06:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1759, '2005-06-16 17:46:37', 1402, 430, '2005-06-24 19:40:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1760, '2005-06-16 17:48:37', 3929, 261, '2005-06-18 16:01:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1761, '2005-06-16 17:49:57', 1570, 521, '2005-06-17 21:03:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1762, '2005-06-16 17:50:19', 3050, 116, '2005-06-19 21:35:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1763, '2005-06-16 17:51:01', 1941, 389, '2005-06-20 17:27:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1764, '2005-06-16 17:51:54', 705, 392, '2005-06-21 20:36:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1765, '2005-06-16 17:56:10', 822, 273, '2005-06-19 23:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1766, '2005-06-16 17:59:37', 2041, 118, '2005-06-18 16:32:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1767, '2005-06-16 18:01:36', 1162, 205, '2005-06-18 12:39:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1768, '2005-06-16 18:02:06', 2131, 131, '2005-06-23 17:19:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1769, '2005-06-16 18:07:48', 1229, 397, '2005-06-22 12:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1770, '2005-06-16 18:07:55', 1681, 359, '2005-06-23 23:49:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1771, '2005-06-16 18:12:17', 1769, 416, '2005-06-18 16:11:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1772, '2005-06-16 18:12:54', 1269, 525, '2005-06-24 19:55:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1773, '2005-06-16 18:13:43', 4396, 462, '2005-06-24 17:43:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1774, '2005-06-16 18:27:52', 3058, 442, '2005-06-21 13:35:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1775, '2005-06-16 18:28:19', 1922, 123, '2005-06-25 13:09:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1776, '2005-06-16 18:46:58', 1404, 472, '2005-06-24 16:01:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1777, '2005-06-16 18:52:12', 3325, 49, '2005-06-25 13:55:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1778, '2005-06-16 18:54:48', 2512, 341, '2005-06-22 16:08:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1779, '2005-06-16 18:55:11', 1044, 438, '2005-06-17 20:11:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1780, '2005-06-16 19:11:45', 146, 352, '2005-06-19 15:34:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1781, '2005-06-16 19:20:24', 2841, 429, '2005-06-25 17:02:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1782, '2005-06-16 19:21:12', 1820, 498, '2005-06-22 16:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1783, '2005-06-16 19:23:23', 50, 18, '2005-06-18 00:57:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1784, '2005-06-16 19:25:32', 3792, 134, '2005-06-20 00:00:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1785, '2005-06-16 19:27:12', 3413, 50, '2005-06-24 19:25:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1786, '2005-06-16 19:30:54', 263, 323, '2005-06-19 14:24:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1787, '2005-06-16 19:30:59', 3823, 546, '2005-06-21 18:25:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1788, '2005-06-16 19:47:18', 3794, 357, '2005-06-22 23:10:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1789, '2005-06-16 19:49:18', 4264, 105, '2005-06-23 17:07:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1790, '2005-06-16 19:58:40', 1070, 158, '2005-06-17 19:31:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1791, '2005-06-16 20:04:28', 301, 76, '2005-06-23 22:30:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1792, '2005-06-16 20:04:50', 3800, 351, '2005-06-26 00:57:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1793, '2005-06-16 20:07:27', 4356, 230, '2005-06-19 20:55:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1794, '2005-06-16 20:08:37', 497, 452, '2005-06-22 01:54:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1795, '2005-06-16 20:09:01', 536, 56, '2005-06-24 17:50:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1796, '2005-06-16 20:10:43', 3229, 283, '2005-06-20 19:12:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1797, '2005-06-16 20:13:03', 3435, 275, '2005-06-22 22:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1798, '2005-06-16 20:16:15', 1654, 429, '2005-06-20 22:23:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1799, '2005-06-16 20:17:20', 2847, 505, '2005-06-20 23:55:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1800, '2005-06-16 20:18:46', 2058, 149, '2005-06-20 17:12:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1801, '2005-06-16 20:21:53', 1015, 10, '2005-06-18 23:18:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1802, '2005-06-16 20:23:30', 4174, 455, '2005-06-21 20:02:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1803, '2005-06-16 20:32:47', 3784, 127, '2005-06-21 02:03:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1804, '2005-06-16 20:33:15', 1152, 570, '2005-06-18 02:31:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1805, '2005-06-16 20:36:00', 3962, 208, '2005-06-17 16:27:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1806, '2005-06-16 20:41:57', 2053, 45, '2005-06-18 19:25:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1807, '2005-06-16 20:58:59', 1174, 338, '2005-06-20 21:31:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1808, '2005-06-16 20:59:35', 2424, 466, '2005-06-24 15:31:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1809, '2005-06-16 21:00:20', 1071, 517, '2005-06-25 20:25:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1810, '2005-06-16 21:06:00', 2368, 7, '2005-06-21 21:24:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1811, '2005-06-16 21:06:20', 3700, 235, '2005-06-21 21:59:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1812, '2005-06-16 21:08:46', 751, 37, '2005-06-21 15:44:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1813, '2005-06-16 21:11:00', 1236, 259, '2005-06-24 15:30:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1814, '2005-06-16 21:15:22', 39, 144, '2005-06-23 17:00:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1815, '2005-06-16 21:16:07', 1551, 84, '2005-06-17 16:37:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1816, '2005-06-16 21:20:41', 2861, 594, '2005-06-18 02:21:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1817, '2005-06-16 21:20:52', 1354, 574, '2005-06-19 16:24:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1818, '2005-06-16 21:30:34', 1218, 63, '2005-06-20 03:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1819, '2005-06-16 21:32:50', 1689, 386, '2005-06-26 01:11:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1820, '2005-06-16 21:34:50', 3672, 120, '2005-06-20 16:50:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1821, '2005-06-16 21:42:49', 3207, 468, '2005-06-20 16:25:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1822, '2005-06-16 21:43:45', 674, 86, '2005-06-17 21:37:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1823, '2005-06-16 21:48:16', 3871, 448, '2005-06-22 03:09:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1824, '2005-06-16 21:51:04', 2269, 575, '2005-06-18 18:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1825, '2005-06-16 21:53:05', 2908, 55, '2005-06-20 17:22:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1826, '2005-06-16 21:53:52', 421, 578, '2005-06-25 18:46:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1827, '2005-06-16 21:54:40', 3804, 423, '2005-06-19 21:28:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1828, '2005-06-16 22:04:34', 316, 68, '2005-06-20 21:07:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1829, '2005-06-16 22:14:21', 617, 293, '2005-06-21 16:51:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1830, '2005-06-16 22:18:43', 4010, 499, '2005-06-23 21:14:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1831, '2005-06-16 22:22:17', 2610, 383, '2005-06-25 23:23:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1832, '2005-06-16 22:35:20', 500, 220, '2005-06-19 03:09:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1833, '2005-06-16 22:45:03', 1337, 121, '2005-06-20 22:02:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1834, '2005-06-16 22:49:08', 4018, 189, '2005-06-22 21:08:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1835, '2005-06-16 23:05:36', 1482, 112, '2005-06-19 04:46:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1836, '2005-06-16 23:13:05', 2753, 176, '2005-06-24 01:40:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1837, '2005-06-16 23:16:15', 1259, 309, '2005-06-21 21:54:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1838, '2005-06-16 23:20:16', 513, 31, '2005-06-20 02:34:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1839, '2005-06-16 23:22:22', 2750, 223, '2005-06-23 00:33:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1840, '2005-06-16 23:39:34', 340, 404, '2005-06-21 23:36:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1841, '2005-06-16 23:44:13', 2363, 6, '2005-06-22 04:09:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1842, '2005-06-16 23:45:59', 1472, 426, '2005-06-26 05:31:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1843, '2005-06-16 23:53:42', 2714, 132, '2005-06-22 18:33:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1844, '2005-06-16 23:53:53', 2307, 454, '2005-06-22 02:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1845, '2005-06-16 23:56:11', 3395, 215, '2005-06-19 01:41:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1846, '2005-06-17 00:02:44', 1725, 422, '2005-06-18 23:47:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1847, '2005-06-17 00:05:22', 1189, 363, '2005-06-20 21:09:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1848, '2005-06-17 00:07:07', 3797, 526, '2005-06-21 21:41:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1849, '2005-06-17 00:13:19', 2507, 341, '2005-06-23 18:37:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1850, '2005-06-17 00:31:35', 761, 517, '2005-06-25 05:19:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1851, '2005-06-17 00:32:26', 1121, 451, '2005-06-22 19:54:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1852, '2005-06-17 00:38:20', 4122, 271, '2005-06-22 20:04:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1853, '2005-06-17 00:39:54', 2949, 301, '2005-06-19 00:22:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1854, '2005-06-17 00:43:57', 119, 37, '2005-06-23 05:49:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1855, '2005-06-17 00:54:58', 4457, 492, '2005-06-20 19:29:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1856, '2005-06-17 01:02:00', 3034, 161, '2005-06-19 21:29:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1857, '2005-06-17 01:12:58', 4257, 427, '2005-06-21 04:49:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1858, '2005-06-17 01:13:11', 3200, 99, '2005-06-18 21:33:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1859, '2005-06-17 01:13:38', 3405, 533, '2005-06-18 03:13:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1860, '2005-06-17 01:17:12', 1853, 293, '2005-06-21 22:35:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1861, '2005-06-17 01:17:31', 135, 454, '2005-06-25 02:11:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1862, '2005-06-17 01:29:30', 3299, 553, '2005-06-25 20:43:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1863, '2005-06-17 01:31:46', 4466, 550, '2005-06-26 02:09:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1864, '2005-06-17 01:39:47', 1815, 130, '2005-06-24 19:39:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1865, '2005-06-17 01:49:36', 2657, 526, '2005-06-23 21:13:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1866, '2005-06-17 01:53:19', 2579, 575, '2005-06-19 06:14:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1867, '2005-06-17 02:01:37', 3537, 415, '2005-06-25 04:52:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1868, '2005-06-17 02:03:22', 2412, 380, '2005-06-25 04:38:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1869, '2005-06-17 02:08:00', 871, 351, '2005-06-19 21:43:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1870, '2005-06-17 02:24:36', 895, 191, '2005-06-17 23:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1871, '2005-06-17 02:25:12', 481, 204, '2005-06-23 03:16:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1872, '2005-06-17 02:27:03', 3596, 206, '2005-06-20 22:41:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1873, '2005-06-17 02:38:28', 2933, 71, '2005-06-23 04:39:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1874, '2005-06-17 02:39:20', 3884, 30, '2005-06-24 04:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1875, '2005-06-17 02:45:10', 1652, 528, '2005-06-22 22:54:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1876, '2005-06-17 02:50:51', 384, 459, '2005-06-18 07:21:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1877, '2005-06-17 02:54:16', 3404, 261, '2005-06-25 21:51:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1878, '2005-06-17 02:55:32', 3319, 381, '2005-06-21 03:44:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1879, '2005-06-17 02:57:34', 3983, 343, '2005-06-19 00:00:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1880, '2005-06-17 03:08:59', 1133, 289, '2005-06-19 07:16:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1881, '2005-06-17 03:09:56', 159, 134, '2005-06-18 01:49:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1882, '2005-06-17 03:17:21', 1400, 47, '2005-06-19 22:23:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1883, '2005-06-17 03:18:51', 3504, 550, '2005-06-18 05:46:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1884, '2005-06-17 03:19:20', 4567, 305, '2005-06-21 00:19:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1885, '2005-06-17 03:35:59', 740, 588, '2005-06-21 05:57:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1886, '2005-06-17 03:36:02', 2367, 505, '2005-06-19 08:12:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1887, '2005-06-17 03:53:18', 3591, 32, '2005-06-25 07:37:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1888, '2005-06-17 03:58:36', 2872, 405, '2005-06-22 09:28:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1889, '2005-06-17 04:05:12', 3909, 572, '2005-06-26 04:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1890, '2005-06-17 04:06:13', 1764, 447, '2005-06-22 07:46:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1891, '2005-06-17 04:16:44', 3576, 109, '2005-06-24 07:20:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1892, '2005-06-17 04:17:33', 139, 319, '2005-06-20 00:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1893, '2005-06-17 04:18:37', 3346, 390, '2005-06-23 23:35:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1894, '2005-06-17 04:18:48', 3707, 204, '2005-06-26 00:07:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1895, '2005-06-17 04:25:12', 680, 30, '2005-06-26 08:44:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1896, '2005-06-17 04:25:46', 2077, 270, '2005-06-26 09:37:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1897, '2005-06-17 04:26:23', 4142, 422, '2005-06-25 09:32:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1898, '2005-06-17 04:28:11', 2873, 143, '2005-06-25 07:04:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1899, '2005-06-17 04:29:15', 858, 200, '2005-06-26 08:39:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1900, '2005-06-17 04:29:58', 1425, 34, '2005-06-21 05:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1901, '2005-06-17 04:35:19', 2469, 292, '2005-06-25 06:09:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1902, '2005-06-17 04:35:52', 2905, 479, '2005-06-20 06:52:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1903, '2005-06-17 04:37:20', 1939, 588, '2005-06-26 09:05:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1904, '2005-06-17 04:45:41', 2472, 87, '2005-06-17 23:56:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1905, '2005-06-17 04:51:43', 1043, 39, '2005-06-24 09:35:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1906, '2005-06-17 04:53:35', 1049, 455, '2005-06-21 01:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1907, '2005-06-17 05:08:27', 988, 66, '2005-06-23 09:13:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1908, '2005-06-17 05:10:36', 399, 358, '2005-06-19 03:52:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1909, '2005-06-17 05:11:04', 2599, 269, '2005-06-19 04:33:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1910, '2005-06-17 05:11:27', 3903, 199, '2005-06-23 23:16:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1911, '2005-06-17 05:15:15', 910, 3, '2005-06-24 11:05:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1912, '2005-06-17 05:18:32', 4136, 538, '2005-06-20 10:01:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1913, '2005-06-17 05:19:47', 1825, 116, '2005-06-21 03:39:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1914, '2005-06-17 05:25:54', 3406, 450, '2005-06-24 04:25:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1915, '2005-06-17 05:28:28', 2620, 393, '2005-06-21 07:12:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1916, '2005-06-17 05:29:59', 4428, 429, '2005-06-26 05:35:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1917, '2005-06-17 05:36:07', 2667, 400, '2005-06-24 01:44:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1918, '2005-06-17 05:40:14', 3749, 310, '2005-06-21 08:53:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1919, '2005-06-17 05:40:52', 3855, 197, '2005-06-23 05:58:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1920, '2005-06-17 06:00:23', 2199, 75, '2005-06-24 04:49:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1921, '2005-06-17 06:04:16', 4369, 417, '2005-06-23 05:26:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1922, '2005-06-17 06:04:25', 2484, 343, '2005-06-18 09:15:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1923, '2005-06-17 06:06:10', 691, 400, '2005-06-24 04:29:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1924, '2005-06-17 06:13:34', 2577, 86, '2005-06-18 01:51:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1925, '2005-06-17 06:16:47', 3995, 510, '2005-06-21 06:03:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1926, '2005-06-17 06:24:30', 3509, 462, '2005-06-25 03:39:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1927, '2005-06-17 06:48:19', 3304, 188, '2005-06-21 03:23:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1928, '2005-06-17 06:48:31', 3454, 353, '2005-06-26 08:17:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1929, '2005-06-17 06:49:30', 573, 327, '2005-06-22 12:07:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1930, '2005-06-17 06:50:46', 79, 112, '2005-06-19 08:51:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1931, '2005-06-17 06:51:56', 1411, 391, '2005-06-22 08:27:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1932, '2005-06-17 06:54:41', 3185, 120, '2005-06-19 05:12:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1933, '2005-06-17 06:54:42', 980, 13, '2005-06-26 02:00:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1934, '2005-06-17 07:04:57', 4000, 16, '2005-06-25 12:21:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1935, '2005-06-17 07:14:15', 1962, 295, '2005-06-20 05:59:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1936, '2005-06-17 07:15:41', 3037, 213, '2005-06-18 11:37:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1937, '2005-06-17 07:16:46', 1266, 385, '2005-06-21 04:22:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1938, '2005-06-17 07:18:36', 570, 454, '2005-06-19 01:43:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1939, '2005-06-17 07:26:45', 605, 11, '2005-06-25 13:06:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1940, '2005-06-17 07:42:22', 105, 451, '2005-06-22 11:59:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1941, '2005-06-17 07:42:45', 1063, 519, '2005-06-20 07:12:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1942, '2005-06-17 07:43:39', 261, 143, '2005-06-25 02:24:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1943, '2005-06-17 07:49:17', 4327, 144, '2005-06-20 03:47:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1944, '2005-06-17 07:50:53', 318, 16, '2005-06-23 02:52:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1945, '2005-06-17 07:51:26', 3366, 207, '2005-06-23 13:22:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1946, '2005-06-17 07:58:39', 2335, 389, '2005-06-25 06:49:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1947, '2005-06-17 08:02:20', 3344, 479, '2005-06-25 10:25:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1948, '2005-06-17 08:06:53', 46, 89, '2005-06-21 05:00:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1949, '2005-06-17 08:19:22', 1478, 208, '2005-06-25 08:43:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1950, '2005-06-17 08:26:52', 723, 594, '2005-06-22 08:08:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1951, '2005-06-17 08:30:35', 955, 123, '2005-06-20 10:43:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1952, '2005-06-17 08:33:02', 1823, 338, '2005-06-21 14:00:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1953, '2005-06-17 08:34:57', 3549, 405, '2005-06-24 09:38:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1954, '2005-06-17 08:37:55', 3203, 533, '2005-06-20 02:55:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1955, '2005-06-17 08:40:22', 811, 311, '2005-06-19 10:47:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1956, '2005-06-17 08:43:32', 1403, 492, '2005-06-21 11:08:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1957, '2005-06-17 08:50:58', 2496, 68, '2005-06-26 13:39:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1958, '2005-06-17 08:52:01', 1843, 581, '2005-06-23 07:55:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1959, '2005-06-17 08:54:10', 1464, 554, '2005-06-20 05:02:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1960, '2005-06-17 08:59:57', 2202, 27, '2005-06-23 14:38:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1961, '2005-06-17 09:02:58', 2851, 384, '2005-06-20 03:07:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1962, '2005-06-17 09:08:58', 4386, 536, '2005-06-23 14:55:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1963, '2005-06-17 09:09:31', 1943, 154, '2005-06-24 13:16:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1964, '2005-06-17 09:10:09', 3390, 53, '2005-06-21 15:08:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1965, '2005-06-17 09:17:39', 480, 256, '2005-06-18 12:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1966, '2005-06-17 09:19:45', 2085, 6, '2005-06-20 11:19:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1967, '2005-06-17 09:19:52', 3225, 558, '2005-06-21 03:35:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1968, '2005-06-17 09:20:36', 1139, 246, '2005-06-18 11:06:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1969, '2005-06-17 09:22:22', 4450, 337, '2005-06-21 05:31:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1970, '2005-06-17 09:23:16', 1358, 303, '2005-06-22 09:40:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1971, '2005-06-17 09:23:59', 2870, 357, '2005-06-25 13:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1972, '2005-06-17 09:25:49', 2758, 526, '2005-06-24 09:59:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1973, '2005-06-17 09:26:15', 3669, 256, '2005-06-21 10:18:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1974, '2005-06-17 09:30:05', 1979, 111, '2005-06-21 12:10:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1975, '2005-06-17 09:32:10', 2520, 468, '2005-06-23 03:50:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1976, '2005-06-17 09:38:08', 3631, 184, '2005-06-23 07:23:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1977, '2005-06-17 09:38:22', 2468, 459, '2005-06-23 14:19:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1978, '2005-06-17 09:42:34', 1590, 278, '2005-06-20 09:13:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1979, '2005-06-17 09:45:30', 3470, 45, '2005-06-20 10:52:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1980, '2005-06-17 09:48:05', 2985, 328, '2005-06-23 14:43:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1981, '2005-06-17 10:03:34', 3186, 526, '2005-06-20 13:14:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1982, '2005-06-17 10:12:15', 1091, 566, '2005-06-20 13:56:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1983, '2005-06-17 10:22:13', 1955, 365, '2005-06-24 05:04:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1984, '2005-06-17 10:25:28', 3417, 380, '2005-06-23 08:18:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1985, '2005-06-17 10:31:37', 87, 411, '2005-06-22 11:17:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1986, '2005-06-17 10:34:59', 2894, 541, '2005-06-24 04:57:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1987, '2005-06-17 10:40:36', 110, 479, '2005-06-23 14:23:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1988, '2005-06-17 10:42:34', 3054, 261, '2005-06-25 11:47:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1989, '2005-06-17 10:47:24', 634, 35, '2005-06-19 05:12:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1990, '2005-06-17 10:48:44', 1471, 571, '2005-06-24 08:11:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1991, '2005-06-17 10:49:23', 3963, 105, '2005-06-25 10:48:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1992, '2005-06-17 10:58:53', 636, 233, '2005-06-19 08:42:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1993, '2005-06-17 10:59:24', 168, 234, '2005-06-23 07:30:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1994, '2005-06-17 11:07:06', 2203, 346, '2005-06-25 08:32:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1995, '2005-06-17 11:11:14', 1866, 10, '2005-06-26 16:37:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1996, '2005-06-17 11:17:45', 3074, 149, '2005-06-26 09:42:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1997, '2005-06-17 11:19:43', 846, 411, '2005-06-19 14:18:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1998, '2005-06-17 11:24:57', 4365, 562, '2005-06-26 09:48:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (1999, '2005-06-17 11:30:08', 3704, 111, '2005-06-23 08:36:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2000, '2005-06-17 11:32:30', 323, 163, '2005-06-22 13:37:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2001, '2005-06-17 11:35:09', 2069, 260, '2005-06-21 14:52:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2002, '2005-06-17 11:39:58', 2406, 514, '2005-06-24 15:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2003, '2005-06-17 11:40:35', 1581, 515, '2005-06-19 08:30:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2004, '2005-06-17 11:43:38', 1342, 171, '2005-06-24 08:05:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2005, '2005-06-17 11:44:54', 4177, 234, '2005-06-19 10:53:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2006, '2005-06-17 11:47:03', 992, 215, '2005-06-19 13:47:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2007, '2005-06-17 11:47:17', 1123, 572, '2005-06-21 07:19:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2008, '2005-06-17 11:48:05', 2081, 570, '2005-06-25 13:16:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2009, '2005-06-17 11:48:31', 1902, 119, '2005-06-18 09:34:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2010, '2005-06-17 11:54:15', 2845, 329, '2005-06-21 05:55:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2011, '2005-06-17 11:56:09', 734, 350, '2005-06-24 06:47:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2012, '2005-06-17 11:57:15', 3588, 84, '2005-06-24 17:18:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2013, '2005-06-17 12:03:01', 3256, 165, '2005-06-24 10:04:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2014, '2005-06-17 12:03:28', 2969, 337, '2005-06-25 16:00:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2015, '2005-06-17 12:16:29', 3776, 484, '2005-06-18 14:40:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2016, '2005-06-17 12:18:36', 4265, 282, '2005-06-20 12:13:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2017, '2005-06-17 12:33:30', 1434, 516, '2005-06-19 10:08:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2018, '2005-06-17 12:35:58', 1278, 380, '2005-06-26 13:16:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2019, '2005-06-17 12:38:44', 2314, 528, '2005-06-23 17:38:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2020, '2005-06-17 12:39:50', 1914, 384, '2005-06-19 14:59:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2021, '2005-06-17 12:41:18', 2852, 319, '2005-06-23 17:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2022, '2005-06-17 12:44:39', 3053, 547, '2005-06-25 12:32:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2023, '2005-06-17 12:52:58', 787, 169, '2005-06-23 11:07:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2024, '2005-06-17 13:00:51', 2566, 329, '2005-06-22 07:03:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2025, '2005-06-17 13:04:00', 1203, 447, '2005-06-18 18:45:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2026, '2005-06-17 13:05:38', 3681, 491, '2005-06-21 17:19:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2027, '2005-06-17 13:06:56', 4309, 265, '2005-06-23 13:46:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2028, '2005-06-17 13:08:08', 4451, 155, '2005-06-23 10:54:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2029, '2005-06-17 13:10:59', 914, 512, '2005-06-19 18:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2030, '2005-06-17 13:13:27', 4024, 457, '2005-06-19 10:44:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2031, '2005-06-17 13:14:03', 4275, 570, '2005-06-25 10:06:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2032, '2005-06-17 13:24:07', 425, 316, '2005-06-18 18:18:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2033, '2005-06-17 13:24:43', 58, 90, '2005-06-20 12:34:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2034, '2005-06-17 13:27:16', 1512, 587, '2005-06-22 08:53:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2035, '2005-06-17 13:45:09', 4371, 158, '2005-06-26 15:30:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2036, '2005-06-17 13:46:52', 100, 486, '2005-06-18 15:42:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2037, '2005-06-17 13:54:20', 2582, 308, '2005-06-20 14:49:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2038, '2005-06-17 14:00:51', 4231, 138, '2005-06-19 11:54:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2039, '2005-06-17 14:03:43', 1514, 304, '2005-06-24 09:21:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2040, '2005-06-17 14:18:37', 227, 260, '2005-06-22 19:08:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2041, '2005-06-17 14:19:00', 782, 348, '2005-06-26 08:38:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2042, '2005-06-17 14:31:02', 3102, 84, '2005-06-18 14:43:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2043, '2005-06-17 14:31:12', 2495, 4, '2005-06-19 11:04:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2044, '2005-06-17 14:37:57', 2418, 484, '2005-06-22 17:15:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2045, '2005-06-17 14:38:11', 561, 391, '2005-06-26 13:44:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2046, '2005-06-17 14:39:50', 872, 374, '2005-06-24 16:02:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2047, '2005-06-17 14:40:58', 2371, 201, '2005-06-21 08:52:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2048, '2005-06-17 14:55:29', 2055, 454, '2005-06-23 16:29:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2049, '2005-06-17 14:58:36', 1053, 182, '2005-06-22 14:53:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2050, '2005-06-17 15:07:30', 1963, 549, '2005-06-18 14:43:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2051, '2005-06-17 15:10:16', 2366, 191, '2005-06-19 20:45:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2052, '2005-06-17 15:14:43', 1686, 172, '2005-06-21 11:08:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2053, '2005-06-17 15:19:34', 4279, 521, '2005-06-19 10:06:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2054, '2005-06-17 15:26:37', 1588, 295, '2005-06-26 14:22:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2055, '2005-06-17 15:27:03', 1399, 593, '2005-06-25 13:44:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2056, '2005-06-17 15:27:33', 229, 42, '2005-06-20 13:04:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2057, '2005-06-17 15:31:58', 2803, 190, '2005-06-25 09:39:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2058, '2005-06-17 15:34:41', 1324, 57, '2005-06-25 14:50:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2059, '2005-06-17 15:36:12', 739, 114, '2005-06-18 19:01:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2060, '2005-06-17 15:42:42', 1523, 64, '2005-06-22 16:39:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2061, '2005-06-17 15:47:00', 4575, 108, '2005-06-24 16:36:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2062, '2005-06-17 15:56:43', 1749, 55, '2005-06-20 21:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2063, '2005-06-17 15:56:53', 4323, 5, '2005-06-21 14:19:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2064, '2005-06-17 15:57:56', 1970, 67, '2005-06-23 21:04:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2065, '2005-06-17 16:03:46', 844, 266, '2005-06-22 16:41:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2066, '2005-06-17 16:07:08', 2561, 248, '2005-06-24 15:20:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2067, '2005-06-17 16:11:08', 1711, 297, '2005-06-22 13:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2068, '2005-06-17 16:11:46', 4252, 387, '2005-06-20 11:28:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2069, '2005-06-17 16:19:39', 2746, 551, '2005-06-26 16:48:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2070, '2005-06-17 16:27:51', 2609, 24, '2005-06-20 20:46:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2071, '2005-06-17 16:33:17', 2867, 479, '2005-06-23 21:51:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2072, '2005-06-17 16:33:32', 86, 261, '2005-06-23 13:22:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2073, '2005-06-17 16:33:59', 3530, 410, '2005-06-19 11:57:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2074, '2005-06-17 16:40:03', 71, 495, '2005-06-20 21:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2075, '2005-06-17 16:40:33', 2415, 459, '2005-06-19 13:55:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2076, '2005-06-17 16:43:47', 2242, 217, '2005-06-24 11:12:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2077, '2005-06-17 16:46:11', 4478, 113, '2005-06-19 15:10:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2078, '2005-06-17 16:48:55', 2021, 278, '2005-06-19 18:01:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2079, '2005-06-17 16:49:45', 3853, 465, '2005-06-18 18:10:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2080, '2005-06-17 16:59:40', 1231, 476, '2005-06-21 11:28:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2081, '2005-06-17 17:05:02', 917, 253, '2005-06-26 20:26:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2082, '2005-06-17 17:13:32', 434, 254, '2005-06-19 16:16:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2083, '2005-06-17 17:14:00', 2423, 97, '2005-06-18 18:31:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2084, '2005-06-17 17:17:19', 428, 92, '2005-06-22 14:57:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2085, '2005-06-17 17:30:56', 2275, 214, '2005-06-23 12:13:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2086, '2005-06-17 17:32:07', 898, 326, '2005-06-21 20:19:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2087, '2005-06-17 17:35:10', 466, 398, '2005-06-26 13:52:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2088, '2005-06-17 17:35:30', 506, 310, '2005-06-23 20:13:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2089, '2005-06-17 17:45:09', 4030, 156, '2005-06-25 16:41:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2090, '2005-06-17 18:06:14', 17, 197, '2005-06-22 23:52:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2091, '2005-06-17 18:09:04', 4033, 260, '2005-06-26 12:11:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2092, '2005-06-17 18:12:16', 4427, 556, '2005-06-25 15:06:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2093, '2005-06-17 18:14:08', 814, 26, '2005-06-26 18:10:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2094, '2005-06-17 18:18:56', 2205, 308, '2005-06-18 19:36:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2095, '2005-06-17 18:21:35', 1907, 8, '2005-06-23 23:49:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2096, '2005-06-17 18:33:04', 1069, 431, '2005-06-21 17:29:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2097, '2005-06-17 18:40:04', 569, 439, '2005-06-23 13:49:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2098, '2005-06-17 18:42:09', 3951, 274, '2005-06-19 20:40:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2099, '2005-06-17 18:47:26', 3660, 146, '2005-06-24 22:31:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2100, '2005-06-17 18:53:21', 2267, 387, '2005-06-19 21:49:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2101, '2005-06-17 18:57:02', 2137, 581, '2005-06-20 15:38:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2102, '2005-06-17 19:05:22', 2316, 486, '2005-06-23 23:21:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2103, '2005-06-17 19:13:10', 1469, 456, '2005-06-21 21:32:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2104, '2005-06-17 19:14:30', 3084, 136, '2005-06-19 16:26:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2105, '2005-06-17 19:15:45', 4090, 57, '2005-06-20 16:00:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2106, '2005-06-17 19:29:03', 643, 66, '2005-06-23 18:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2107, '2005-06-17 19:31:16', 1270, 104, '2005-06-18 23:33:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2108, '2005-06-17 19:35:26', 1395, 503, '2005-06-25 15:45:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2109, '2005-06-17 19:41:42', 2292, 493, '2005-06-25 17:03:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2110, '2005-06-17 19:45:49', 3592, 163, '2005-06-26 18:59:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2111, '2005-06-17 19:47:21', 2108, 76, '2005-06-19 22:46:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2112, '2005-06-17 19:52:42', 1629, 18, '2005-06-25 00:00:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2113, '2005-06-17 19:57:46', 1509, 406, '2005-06-24 00:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2114, '2005-06-17 20:00:25', 3541, 358, '2005-06-23 18:51:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2115, '2005-06-17 20:02:16', 3448, 270, '2005-06-25 16:56:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2116, '2005-06-17 20:16:12', 2373, 24, '2005-06-18 17:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2117, '2005-06-17 20:24:00', 2, 170, '2005-06-23 17:45:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2118, '2005-06-17 20:28:29', 1261, 103, '2005-06-23 22:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2119, '2005-06-17 20:34:42', 2104, 561, '2005-06-22 00:05:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2120, '2005-06-17 20:36:50', 1498, 182, '2005-06-27 01:18:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2121, '2005-06-17 20:38:54', 141, 467, '2005-06-22 23:06:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2122, '2005-06-17 20:48:27', 2932, 245, '2005-06-23 00:58:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2123, '2005-06-17 20:48:30', 2497, 545, '2005-06-18 19:17:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2124, '2005-06-17 20:49:14', 1273, 178, '2005-06-23 17:44:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2125, '2005-06-17 20:53:42', 4303, 473, '2005-06-19 01:53:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2126, '2005-06-17 20:54:36', 4276, 263, '2005-06-27 02:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2127, '2005-06-17 20:54:48', 3757, 187, '2005-06-18 16:28:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2128, '2005-06-17 20:54:58', 352, 2, '2005-06-24 00:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2129, '2005-06-17 20:58:32', 1930, 249, '2005-06-23 22:22:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2130, '2005-06-17 21:00:44', 1369, 413, '2005-06-26 00:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2131, '2005-06-17 21:02:25', 4424, 85, '2005-06-25 18:45:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2132, '2005-06-17 21:05:06', 2636, 186, '2005-06-20 18:10:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2133, '2005-06-17 21:10:05', 932, 268, '2005-06-23 22:41:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2134, '2005-06-17 21:13:44', 1699, 378, '2005-06-26 16:28:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2135, '2005-06-17 21:14:02', 4091, 39, '2005-06-19 00:59:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2136, '2005-06-17 21:16:41', 2651, 20, '2005-06-24 22:42:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2137, '2005-06-17 21:18:28', 1158, 581, '2005-06-20 21:05:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2138, '2005-06-17 21:28:14', 512, 254, '2005-06-22 01:16:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2139, '2005-06-17 21:29:34', 807, 236, '2005-06-26 21:05:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2140, '2005-06-17 21:40:29', 2395, 56, '2005-06-19 00:42:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2141, '2005-06-17 21:41:34', 2176, 86, '2005-06-19 00:15:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2142, '2005-06-17 21:55:43', 1787, 253, '2005-06-26 19:41:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2143, '2005-06-17 21:58:13', 1257, 507, '2005-06-19 23:59:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2144, '2005-06-17 22:05:40', 3303, 46, '2005-06-21 02:53:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2145, '2005-06-17 22:10:36', 238, 388, '2005-06-18 21:07:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2146, '2005-06-17 22:26:23', 326, 456, '2005-06-26 17:10:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2147, '2005-06-17 22:28:13', 2752, 279, '2005-06-22 20:50:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2148, '2005-06-17 22:44:35', 315, 338, '2005-06-26 19:43:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2149, '2005-06-17 22:50:00', 3365, 333, '2005-06-26 18:40:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2150, '2005-06-17 22:50:36', 1910, 406, '2005-06-21 19:33:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2151, '2005-06-17 22:52:37', 407, 329, '2005-06-20 22:00:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2152, '2005-06-17 22:53:27', 2665, 307, '2005-06-23 19:19:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2153, '2005-06-17 22:58:04', 2440, 357, '2005-06-24 19:38:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2154, '2005-06-17 22:59:42', 1655, 30, '2005-06-24 04:11:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2155, '2005-06-17 23:07:29', 3640, 227, '2005-06-25 03:23:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2156, '2005-06-17 23:08:12', 623, 237, '2005-06-22 19:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2157, '2005-06-17 23:30:52', 1619, 201, '2005-06-24 01:56:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2158, '2005-06-17 23:36:27', 243, 530, '2005-06-19 19:25:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2159, '2005-06-17 23:37:29', 3095, 465, '2005-06-25 00:18:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2160, '2005-06-17 23:39:11', 1644, 32, '2005-06-22 20:04:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2161, '2005-06-17 23:39:50', 3149, 75, '2005-06-26 23:28:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2162, '2005-06-17 23:45:47', 1790, 277, '2005-06-21 21:03:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2163, '2005-06-17 23:46:16', 2600, 130, '2005-06-22 22:48:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2164, '2005-06-17 23:46:21', 3442, 227, '2005-06-24 19:10:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2165, '2005-06-17 23:51:10', 2392, 471, '2005-06-21 23:54:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2166, '2005-06-17 23:51:21', 4343, 305, '2005-06-27 01:06:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2167, '2005-06-17 23:51:28', 3796, 307, '2005-06-21 00:43:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2168, '2005-06-17 23:53:24', 802, 308, '2005-06-20 01:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2169, '2005-06-17 23:57:23', 785, 120, '2005-06-19 20:14:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2170, '2005-06-17 23:57:34', 3989, 42, '2005-06-22 03:37:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2171, '2005-06-18 00:06:04', 1768, 147, '2005-06-24 18:09:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2172, '2005-06-18 00:06:16', 2912, 457, '2005-06-26 00:50:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2173, '2005-06-18 00:08:20', 995, 65, '2005-06-25 05:30:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2174, '2005-06-18 00:09:01', 3279, 520, '2005-06-25 23:14:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2175, '2005-06-18 00:17:58', 4038, 17, '2005-06-22 23:18:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2176, '2005-06-18 00:29:51', 4201, 282, '2005-06-21 01:41:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2177, '2005-06-18 00:34:45', 492, 340, '2005-06-26 18:40:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2178, '2005-06-18 00:38:35', 2950, 260, '2005-06-21 02:56:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2179, '2005-06-18 00:41:36', 4334, 338, '2005-06-19 02:17:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2180, '2005-06-18 00:47:43', 3564, 497, '2005-06-25 04:12:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2181, '2005-06-18 00:48:31', 3481, 176, '2005-06-25 06:43:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2182, '2005-06-18 00:56:18', 3494, 454, '2005-06-26 20:01:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2183, '2005-06-18 01:06:01', 1776, 340, '2005-06-22 01:20:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2184, '2005-06-18 01:10:36', 3468, 537, '2005-06-21 05:59:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2185, '2005-06-18 01:12:22', 4326, 198, '2005-06-20 20:41:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2186, '2005-06-18 01:15:27', 2050, 204, '2005-06-21 06:16:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2187, '2005-06-18 01:17:27', 1385, 477, '2005-06-20 22:18:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2188, '2005-06-18 01:19:04', 712, 183, '2005-06-25 03:59:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2189, '2005-06-18 01:20:26', 249, 500, '2005-06-25 00:30:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2190, '2005-06-18 01:29:51', 4398, 342, '2005-06-26 04:31:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2191, '2005-06-18 01:33:09', 3369, 58, '2005-06-19 20:18:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2192, '2005-06-18 01:35:47', 1886, 456, '2005-06-23 23:38:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2193, '2005-06-18 01:38:45', 1013, 112, '2005-06-22 19:51:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2194, '2005-06-18 01:41:37', 1827, 149, '2005-06-25 04:27:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2195, '2005-06-18 01:44:46', 2247, 286, '2005-06-25 20:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2196, '2005-06-18 01:47:07', 1925, 240, '2005-06-26 03:18:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2197, '2005-06-18 01:50:27', 3350, 103, '2005-06-19 01:31:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2198, '2005-06-18 01:51:22', 1983, 109, '2005-06-26 06:57:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2199, '2005-06-18 01:57:56', 99, 171, '2005-06-23 20:34:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2200, '2005-06-18 01:59:16', 1085, 229, '2005-06-26 23:25:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2201, '2005-06-18 02:08:27', 1864, 489, '2005-06-23 01:40:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2202, '2005-06-18 02:09:24', 815, 297, '2005-06-26 07:17:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2203, '2005-06-18 02:10:42', 1347, 46, '2005-06-22 06:25:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2204, '2005-06-18 02:11:38', 1137, 426, '2005-06-24 00:28:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2205, '2005-06-18 02:14:34', 1245, 593, '2005-06-25 05:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2206, '2005-06-18 02:14:45', 3651, 438, '2005-06-24 23:20:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2207, '2005-06-18 02:19:21', 182, 78, '2005-06-24 02:25:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2208, '2005-06-18 02:22:07', 2345, 132, '2005-06-23 07:24:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2209, '2005-06-18 02:24:01', 2441, 13, '2005-06-22 04:13:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2210, '2005-06-18 02:27:01', 219, 108, '2005-06-21 00:45:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2211, '2005-06-18 02:29:10', 4114, 166, '2005-06-22 02:02:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2212, '2005-06-18 02:36:10', 2458, 336, '2005-06-19 21:21:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2213, '2005-06-18 02:36:47', 949, 98, '2005-06-23 05:02:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2214, '2005-06-18 02:44:37', 2430, 366, '2005-06-18 23:37:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2215, '2005-06-18 02:48:21', 2060, 239, '2005-06-22 01:03:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2216, '2005-06-18 03:08:17', 1428, 320, '2005-06-19 08:13:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2217, '2005-06-18 03:12:29', 2260, 118, '2005-06-20 06:08:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2218, '2005-06-18 03:13:13', 3577, 176, '2005-06-18 21:16:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2219, '2005-06-18 03:16:54', 1881, 393, '2005-06-22 01:29:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2220, '2005-06-18 03:21:36', 320, 587, '2005-06-21 07:45:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2221, '2005-06-18 03:24:56', 3905, 156, '2005-06-22 08:27:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2222, '2005-06-18 03:26:23', 3834, 10, '2005-06-26 08:50:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2223, '2005-06-18 03:27:03', 4068, 303, '2005-06-27 09:19:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2224, '2005-06-18 03:33:58', 1336, 153, '2005-06-18 22:10:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2225, '2005-06-18 03:35:40', 2829, 503, '2005-06-23 03:05:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2226, '2005-06-18 03:39:56', 3487, 225, '2005-06-24 07:26:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2227, '2005-06-18 03:43:23', 3623, 200, '2005-06-19 05:55:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2228, '2005-06-18 03:44:50', 490, 383, '2005-06-23 00:28:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2229, '2005-06-18 03:50:18', 2840, 35, '2005-06-26 07:16:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2230, '2005-06-18 03:50:49', 833, 256, '2005-06-25 01:12:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2231, '2005-06-18 03:52:14', 2280, 35, '2005-06-23 06:52:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2232, '2005-06-18 03:54:31', 2463, 52, '2005-06-22 07:29:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2233, '2005-06-18 03:57:36', 3063, 31, '2005-06-21 09:42:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2234, '2005-06-18 04:01:28', 234, 182, '2005-06-24 04:55:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2235, '2005-06-18 04:08:50', 3463, 21, '2005-06-27 07:58:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2236, '2005-06-18 04:12:33', 4001, 375, '2005-06-23 04:07:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2237, '2005-06-18 04:17:44', 1821, 205, '2005-06-27 09:08:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2238, '2005-06-18 04:22:06', 2859, 251, '2005-06-27 03:29:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2239, '2005-06-18 04:23:54', 4419, 437, '2005-06-26 00:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2240, '2005-06-18 04:28:27', 1409, 122, '2005-06-22 07:48:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2241, '2005-06-18 04:31:41', 921, 406, '2005-06-24 22:34:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2242, '2005-06-18 04:32:28', 1995, 146, '2005-06-24 03:26:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2243, '2005-06-18 04:33:03', 1254, 328, '2005-06-23 04:14:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2244, '2005-06-18 04:46:33', 3629, 233, '2005-06-20 04:28:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2245, '2005-06-18 04:52:59', 1496, 194, '2005-06-24 05:07:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2246, '2005-06-18 04:54:29', 4287, 414, '2005-06-22 09:14:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2248, '2005-06-18 04:59:48', 1999, 446, '2005-06-19 08:51:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2249, '2005-06-18 05:03:08', 117, 285, '2005-06-26 05:43:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2250, '2005-06-18 05:03:36', 4042, 7, '2005-06-22 02:25:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2251, '2005-06-18 05:05:08', 1458, 143, '2005-06-23 08:34:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2252, '2005-06-18 05:05:18', 1987, 383, '2005-06-21 08:19:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2253, '2005-06-18 05:11:43', 3719, 122, '2005-06-25 03:30:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2254, '2005-06-18 05:15:14', 1084, 281, '2005-06-27 04:10:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2255, '2005-06-18 05:21:12', 24, 410, '2005-06-26 09:19:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2256, '2005-06-18 05:21:56', 1863, 93, '2005-06-27 02:06:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2257, '2005-06-18 05:29:52', 2846, 34, '2005-06-22 00:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2258, '2005-06-18 05:30:36', 4573, 292, '2005-06-24 09:09:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2259, '2005-06-18 05:37:45', 4103, 491, '2005-06-21 01:51:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2260, '2005-06-18 05:38:36', 2773, 297, '2005-06-20 08:08:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2261, '2005-06-18 05:46:15', 1763, 570, '2005-06-24 05:06:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2262, '2005-06-18 05:49:46', 4172, 218, '2005-06-20 00:25:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2263, '2005-06-18 05:57:47', 3259, 452, '2005-06-20 06:13:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2264, '2005-06-18 05:58:45', 150, 240, '2005-06-19 00:57:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2265, '2005-06-18 06:03:27', 3069, 267, '2005-06-20 01:16:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2266, '2005-06-18 06:05:02', 2596, 452, '2005-06-20 06:54:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2267, '2005-06-18 06:10:23', 2086, 218, '2005-06-20 00:39:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2268, '2005-06-18 06:13:41', 4380, 21, '2005-06-22 08:53:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2269, '2005-06-18 06:20:54', 3088, 431, '2005-06-25 04:51:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2270, '2005-06-18 06:29:01', 3447, 588, '2005-06-26 07:21:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2271, '2005-06-18 06:29:52', 2416, 145, '2005-06-21 09:46:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2272, '2005-06-18 06:29:53', 1364, 599, '2005-06-23 10:58:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2273, '2005-06-18 06:30:02', 4456, 327, '2005-06-20 07:07:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2274, '2005-06-18 06:31:15', 3021, 347, '2005-06-21 01:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2275, '2005-06-18 06:31:29', 2805, 354, '2005-06-24 10:04:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2276, '2005-06-18 06:33:48', 1145, 594, '2005-06-25 00:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2277, '2005-06-18 06:35:03', 3770, 224, '2005-06-19 01:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2278, '2005-06-18 06:37:57', 1166, 450, '2005-06-22 10:57:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2279, '2005-06-18 06:38:22', 1953, 554, '2005-06-27 07:16:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2280, '2005-06-18 06:46:54', 4568, 548, '2005-06-26 09:48:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2281, '2005-06-18 06:47:29', 4212, 431, '2005-06-20 10:27:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2282, '2005-06-18 06:48:23', 4388, 113, '2005-06-24 11:04:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2283, '2005-06-18 06:56:06', 2056, 507, '2005-06-19 05:11:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2284, '2005-06-18 06:59:51', 2682, 228, '2005-06-24 04:58:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2285, '2005-06-18 07:00:54', 755, 447, '2005-06-25 08:58:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2286, '2005-06-18 07:02:32', 618, 287, '2005-06-27 12:33:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2287, '2005-06-18 07:04:36', 1473, 317, '2005-06-27 03:00:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2288, '2005-06-18 07:23:17', 877, 247, '2005-06-26 07:44:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2289, '2005-06-18 07:29:43', 2030, 392, '2005-06-24 11:16:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2290, '2005-06-18 07:34:37', 200, 513, '2005-06-26 11:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2291, '2005-06-18 07:36:46', 3949, 436, '2005-06-26 04:57:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2292, '2005-06-18 07:37:48', 173, 130, '2005-06-20 02:45:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2293, '2005-06-18 07:45:03', 3209, 178, '2005-06-24 08:12:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2294, '2005-06-18 07:46:34', 2096, 72, '2005-06-22 12:34:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2295, '2005-06-18 07:56:18', 3250, 106, '2005-06-21 07:10:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2296, '2005-06-18 08:10:42', 4558, 481, '2005-06-20 12:26:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2297, '2005-06-18 08:17:41', 2262, 111, '2005-06-26 05:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2298, '2005-06-18 08:18:29', 1227, 497, '2005-06-24 11:51:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2299, '2005-06-18 08:18:52', 4339, 28, '2005-06-26 11:48:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2300, '2005-06-18 08:22:34', 1617, 291, '2005-06-24 04:51:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2301, '2005-06-18 08:24:03', 869, 273, '2005-06-25 10:31:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2302, '2005-06-18 08:27:33', 1852, 42, '2005-06-22 02:46:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2303, '2005-06-18 08:27:59', 1524, 329, '2005-06-22 10:58:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2304, '2005-06-18 08:30:15', 3543, 327, '2005-06-23 06:17:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2305, '2005-06-18 08:31:18', 622, 149, '2005-06-24 06:18:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2306, '2005-06-18 08:33:23', 208, 477, '2005-06-27 10:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2307, '2005-06-18 08:34:59', 4576, 47, '2005-06-23 04:42:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2308, '2005-06-18 08:41:48', 197, 1, '2005-06-22 03:36:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2309, '2005-06-18 08:43:24', 611, 576, '2005-06-20 03:56:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2310, '2005-06-18 08:45:59', 2590, 409, '2005-06-26 05:06:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2311, '2005-06-18 08:51:29', 4506, 236, '2005-06-25 07:51:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2312, '2005-06-18 08:55:46', 402, 184, '2005-06-24 04:34:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2313, '2005-06-18 08:56:45', 3134, 379, '2005-06-26 10:30:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2314, '2005-06-18 09:03:19', 2157, 160, '2005-06-19 12:14:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2315, '2005-06-18 09:03:39', 2766, 372, '2005-06-22 11:18:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2316, '2005-06-18 09:04:59', 372, 289, '2005-06-20 09:39:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2317, '2005-06-18 09:12:18', 1602, 326, '2005-06-21 05:50:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2318, '2005-06-18 09:13:54', 2328, 383, '2005-06-23 07:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2319, '2005-06-18 09:24:22', 1521, 393, '2005-06-26 14:12:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2320, '2005-06-18 09:24:50', 597, 552, '2005-06-24 07:59:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2321, '2005-06-18 09:42:42', 1160, 565, '2005-06-25 14:28:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2322, '2005-06-18 09:44:21', 1893, 213, '2005-06-25 09:29:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2323, '2005-06-18 09:55:02', 207, 54, '2005-06-23 07:19:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2324, '2005-06-18 10:00:33', 2987, 268, '2005-06-23 14:10:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2325, '2005-06-18 10:08:07', 752, 406, '2005-06-21 15:07:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2326, '2005-06-18 10:14:22', 3829, 174, '2005-06-24 07:01:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2327, '2005-06-18 10:16:40', 1351, 571, '2005-06-20 15:06:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2328, '2005-06-18 10:17:21', 2304, 441, '2005-06-21 04:18:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2329, '2005-06-18 10:22:52', 4156, 587, '2005-06-20 12:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2330, '2005-06-18 10:41:19', 4285, 390, '2005-06-25 10:48:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2331, '2005-06-18 10:50:09', 1546, 221, '2005-06-25 14:30:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2332, '2005-06-18 10:53:51', 2152, 140, '2005-06-24 12:06:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2333, '2005-06-18 10:55:54', 2323, 283, '2005-06-25 07:09:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2334, '2005-06-18 10:56:24', 3076, 223, '2005-06-22 10:38:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2335, '2005-06-18 10:59:36', 3968, 446, '2005-06-26 06:42:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2336, '2005-06-18 11:00:05', 3888, 124, '2005-06-25 06:02:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2337, '2005-06-18 11:15:27', 4522, 582, '2005-06-26 06:59:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2338, '2005-06-18 11:24:54', 3165, 316, '2005-06-19 07:34:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2339, '2005-06-18 11:29:22', 313, 297, '2005-06-21 10:29:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2340, '2005-06-18 11:30:56', 1913, 157, '2005-06-23 06:00:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2341, '2005-06-18 11:35:30', 638, 31, '2005-06-27 11:56:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2342, '2005-06-18 11:42:40', 2169, 146, '2005-06-20 14:40:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2343, '2005-06-18 11:46:26', 4554, 20, '2005-06-22 11:37:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2344, '2005-06-18 12:01:47', 2015, 498, '2005-06-19 11:56:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2345, '2005-06-18 12:03:23', 1818, 6, '2005-06-22 14:25:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2346, '2005-06-18 12:08:16', 2575, 308, '2005-06-27 15:02:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2347, '2005-06-18 12:12:29', 4516, 194, '2005-06-23 14:03:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2348, '2005-06-18 12:15:43', 3622, 449, '2005-06-24 14:03:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2349, '2005-06-18 12:25:14', 1536, 495, '2005-06-19 11:24:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2350, '2005-06-18 12:25:29', 1179, 471, '2005-06-23 11:35:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2351, '2005-06-18 12:27:57', 2942, 216, '2005-06-23 16:14:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2352, '2005-06-18 12:40:15', 2141, 590, '2005-06-22 07:07:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2353, '2005-06-18 12:53:25', 3223, 361, '2005-06-19 13:53:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2354, '2005-06-18 12:54:18', 2793, 77, '2005-06-26 07:23:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2355, '2005-06-18 12:57:06', 3613, 125, '2005-06-26 07:32:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2356, '2005-06-18 12:59:23', 2207, 455, '2005-06-21 10:12:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2357, '2005-06-18 12:59:41', 1323, 561, '2005-06-26 16:40:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2358, '2005-06-18 13:00:51', 1728, 478, '2005-06-26 12:58:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2359, '2005-06-18 13:04:42', 3087, 201, '2005-06-25 11:52:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2360, '2005-06-18 13:11:13', 37, 57, '2005-06-23 15:32:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2361, '2005-06-18 13:19:05', 3547, 546, '2005-06-23 07:59:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2362, '2005-06-18 13:31:15', 2815, 514, '2005-06-19 12:35:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2363, '2005-06-18 13:33:59', 3497, 1, '2005-06-19 17:40:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2364, '2005-06-18 13:37:32', 2856, 512, '2005-06-23 14:18:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2365, '2005-06-18 13:45:34', 3109, 493, '2005-06-21 12:12:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2366, '2005-06-18 13:46:39', 1413, 162, '2005-06-23 18:49:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2367, '2005-06-18 14:00:31', 4086, 566, '2005-06-22 14:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2368, '2005-06-18 14:10:27', 1058, 99, '2005-06-23 10:49:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2369, '2005-06-18 14:25:29', 1515, 44, '2005-06-23 18:45:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2370, '2005-06-18 14:29:54', 2656, 489, '2005-06-24 10:23:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2371, '2005-06-18 14:35:29', 178, 248, '2005-06-22 09:38:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2372, '2005-06-18 14:37:37', 1567, 96, '2005-06-21 08:40:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2373, '2005-06-18 14:37:57', 2780, 544, '2005-06-23 19:29:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2374, '2005-06-18 14:44:06', 2634, 71, '2005-06-22 17:14:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2375, '2005-06-18 14:47:29', 2175, 259, '2005-06-26 13:52:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2376, '2005-06-18 14:55:30', 3664, 479, '2005-06-25 17:40:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2377, '2005-06-18 14:56:23', 3568, 193, '2005-06-27 12:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2378, '2005-06-18 14:57:49', 2796, 384, '2005-06-26 18:23:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2379, '2005-06-18 14:59:39', 2708, 597, '2005-06-24 13:26:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2380, '2005-06-18 15:00:04', 4413, 256, '2005-06-24 13:29:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2381, '2005-06-18 15:00:30', 1491, 167, '2005-06-22 11:38:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2382, '2005-06-18 15:03:52', 915, 568, '2005-06-20 10:16:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2383, '2005-06-18 15:17:59', 2459, 149, '2005-06-26 18:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2384, '2005-06-18 15:18:49', 3378, 132, '2005-06-21 18:10:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2385, '2005-06-18 15:22:40', 1641, 298, '2005-06-26 10:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2386, '2005-06-18 15:22:51', 1361, 293, '2005-06-22 20:01:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2387, '2005-06-18 15:24:19', 692, 289, '2005-06-25 17:41:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2388, '2005-06-18 15:26:30', 2923, 53, '2005-06-20 20:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2389, '2005-06-18 15:27:47', 731, 382, '2005-06-21 12:26:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2390, '2005-06-18 15:29:26', 2748, 239, '2005-06-23 17:50:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2391, '2005-06-18 15:33:30', 2850, 491, '2005-06-25 14:30:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2392, '2005-06-18 15:34:18', 2213, 261, '2005-06-19 16:22:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2393, '2005-06-18 15:37:55', 3143, 21, '2005-06-25 17:11:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2394, '2005-06-18 15:42:30', 2669, 60, '2005-06-26 16:12:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2395, '2005-06-18 15:45:15', 899, 544, '2005-06-27 19:11:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2396, '2005-06-18 15:49:48', 1986, 31, '2005-06-27 20:31:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2397, '2005-06-18 15:51:25', 2895, 76, '2005-06-24 15:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2398, '2005-06-18 15:56:53', 3001, 526, '2005-06-27 14:25:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2399, '2005-06-18 16:06:14', 2492, 577, '2005-06-26 16:56:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2400, '2005-06-18 16:10:46', 3194, 410, '2005-06-25 20:34:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2401, '2005-06-18 16:22:03', 85, 359, '2005-06-19 13:49:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2402, '2005-06-18 16:24:45', 2833, 360, '2005-06-27 14:39:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2403, '2005-06-18 16:33:22', 2697, 536, '2005-06-23 19:25:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2404, '2005-06-18 16:33:48', 4138, 456, '2005-06-23 20:39:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2405, '2005-06-18 16:36:38', 3604, 356, '2005-06-21 19:15:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2406, '2005-06-18 16:39:37', 1321, 497, '2005-06-23 12:04:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2407, '2005-06-18 16:50:41', 2547, 421, '2005-06-24 15:29:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2408, '2005-06-18 16:50:44', 258, 87, '2005-06-19 20:11:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2409, '2005-06-18 16:53:33', 656, 84, '2005-06-20 18:23:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2410, '2005-06-18 16:55:08', 265, 381, '2005-06-20 12:40:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2411, '2005-06-18 16:55:54', 3302, 558, '2005-06-25 12:44:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2412, '2005-06-18 16:58:58', 1946, 127, '2005-06-27 22:57:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2413, '2005-06-18 16:59:34', 1851, 170, '2005-06-27 16:10:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2414, '2005-06-18 17:01:55', 4500, 275, '2005-06-20 17:42:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2415, '2005-06-18 17:02:42', 3105, 434, '2005-06-25 13:16:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2416, '2005-06-18 17:07:34', 2868, 26, '2005-06-24 19:16:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2417, '2005-06-18 17:12:01', 1956, 219, '2005-06-26 13:32:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2418, '2005-06-18 17:14:42', 2756, 381, '2005-06-26 16:33:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2419, '2005-06-18 17:21:24', 1255, 102, '2005-06-26 18:25:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2420, '2005-06-18 17:22:28', 241, 502, '2005-06-23 17:45:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2421, '2005-06-18 17:25:05', 3524, 26, '2005-06-23 21:09:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2422, '2005-06-18 17:28:57', 3170, 527, '2005-06-23 15:22:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2423, '2005-06-18 17:32:08', 1744, 231, '2005-06-21 11:58:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2424, '2005-06-18 17:35:08', 1884, 233, '2005-06-23 15:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2425, '2005-06-18 17:37:45', 2630, 579, '2005-06-27 18:40:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2426, '2005-06-18 17:40:44', 474, 543, '2005-06-22 14:30:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2427, '2005-06-18 17:45:00', 4278, 176, '2005-06-27 20:07:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2428, '2005-06-18 17:47:34', 3892, 241, '2005-06-19 14:39:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2429, '2005-06-18 17:48:28', 3238, 583, '2005-06-27 15:52:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2430, '2005-06-18 17:51:46', 1984, 434, '2005-06-23 19:17:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2431, '2005-06-18 17:53:03', 1383, 295, '2005-06-25 15:08:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2432, '2005-06-18 17:59:18', 4420, 250, '2005-06-25 15:19:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2433, '2005-06-18 18:10:17', 937, 356, '2005-06-23 14:46:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2434, '2005-06-18 18:11:51', 3739, 12, '2005-06-23 12:52:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2435, '2005-06-18 18:12:26', 3548, 173, '2005-06-22 13:43:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2436, '2005-06-18 18:13:32', 3328, 534, '2005-06-21 13:33:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2437, '2005-06-18 18:30:26', 1799, 454, '2005-06-21 18:36:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2438, '2005-06-18 18:34:21', 184, 31, '2005-06-19 16:50:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2439, '2005-06-18 18:35:04', 909, 39, '2005-06-21 19:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2440, '2005-06-18 18:41:09', 2866, 380, '2005-06-22 12:46:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2441, '2005-06-18 18:45:11', 3148, 593, '2005-06-20 00:42:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2442, '2005-06-18 18:49:18', 4045, 364, '2005-06-22 16:18:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2443, '2005-06-18 18:52:30', 1622, 233, '2005-06-24 21:27:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2444, '2005-06-18 18:58:12', 2233, 576, '2005-06-27 20:48:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2445, '2005-06-18 19:02:11', 2887, 98, '2005-06-23 22:25:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2446, '2005-06-18 19:04:41', 1283, 466, '2005-06-27 17:10:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2447, '2005-06-18 19:10:55', 2353, 523, '2005-06-27 16:35:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2448, '2005-06-18 19:13:45', 1642, 308, '2005-06-27 14:43:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2449, '2005-06-18 19:18:36', 3630, 498, '2005-06-27 23:49:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2450, '2005-06-18 19:25:47', 863, 230, '2005-06-27 15:54:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2451, '2005-06-18 19:28:02', 835, 24, '2005-06-23 16:41:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2452, '2005-06-18 19:29:21', 4318, 77, '2005-06-26 22:27:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2453, '2005-06-18 19:30:53', 2562, 588, '2005-06-20 17:22:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2454, '2005-06-18 19:32:51', 314, 253, '2005-06-24 20:03:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2455, '2005-06-18 19:33:06', 870, 241, '2005-06-21 15:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2456, '2005-06-18 19:36:50', 553, 147, '2005-06-23 22:48:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2457, '2005-06-18 19:38:20', 1277, 91, '2005-06-26 20:48:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2458, '2005-06-18 19:39:05', 599, 572, '2005-06-21 13:54:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2459, '2005-06-18 19:44:08', 1024, 185, '2005-06-23 19:14:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2460, '2005-06-18 19:54:13', 3933, 553, '2005-06-27 22:36:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2461, '2005-06-18 19:58:12', 78, 343, '2005-06-28 01:35:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2462, '2005-06-18 20:00:15', 2151, 468, '2005-06-21 21:54:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2463, '2005-06-18 20:01:43', 1186, 194, '2005-06-25 15:04:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2464, '2005-06-18 20:06:05', 463, 380, '2005-06-20 19:22:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2465, '2005-06-18 20:07:02', 3783, 160, '2005-06-25 20:55:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2466, '2005-06-18 20:18:42', 1356, 427, '2005-06-20 01:32:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2467, '2005-06-18 20:20:05', 4387, 177, '2005-06-20 17:01:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2468, '2005-06-18 20:23:52', 1833, 382, '2005-06-23 14:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2469, '2005-06-18 20:24:23', 1993, 137, '2005-06-27 15:39:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2470, '2005-06-18 20:28:31', 4319, 40, '2005-06-25 18:48:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2471, '2005-06-18 20:31:00', 3399, 183, '2005-06-24 18:01:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2472, '2005-06-18 20:32:40', 4556, 70, '2005-06-20 00:40:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2473, '2005-06-18 20:42:45', 3876, 221, '2005-06-19 20:17:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2474, '2005-06-18 20:51:34', 3450, 151, '2005-06-25 01:39:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2475, '2005-06-18 20:52:46', 889, 336, '2005-06-21 19:40:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2476, '2005-06-18 20:57:12', 3998, 334, '2005-06-20 15:42:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2477, '2005-06-18 20:58:46', 2510, 206, '2005-06-22 21:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2478, '2005-06-18 21:01:21', 2798, 241, '2005-06-24 00:20:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2479, '2005-06-18 21:03:08', 1624, 408, '2005-06-22 16:49:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2480, '2005-06-18 21:04:09', 4078, 310, '2005-06-22 16:24:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2481, '2005-06-18 21:08:30', 800, 322, '2005-06-23 02:35:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2482, '2005-06-18 21:10:44', 452, 122, '2005-06-19 20:39:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2483, '2005-06-18 21:22:23', 4225, 88, '2005-06-25 01:14:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2484, '2005-06-18 21:25:23', 1511, 515, '2005-06-24 16:03:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2485, '2005-06-18 21:26:03', 1562, 56, '2005-06-21 22:09:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2486, '2005-06-18 21:26:56', 268, 15, '2005-06-22 23:42:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2487, '2005-06-18 21:32:54', 3683, 374, '2005-06-23 21:11:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2488, '2005-06-18 21:38:26', 1338, 403, '2005-06-24 02:08:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2489, '2005-06-18 22:00:44', 4012, 382, '2005-06-22 02:06:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2490, '2005-06-18 22:00:50', 1934, 402, '2005-06-19 23:45:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2491, '2005-06-18 22:01:31', 1779, 316, '2005-06-26 02:46:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2492, '2005-06-18 22:04:15', 2858, 237, '2005-06-23 21:58:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2493, '2005-06-18 22:12:09', 4121, 269, '2005-06-27 23:44:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2494, '2005-06-18 22:15:09', 1313, 434, '2005-06-25 17:23:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2495, '2005-06-18 22:15:42', 3826, 338, '2005-06-21 23:21:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2496, '2005-06-18 22:20:11', 646, 527, '2005-06-20 03:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2497, '2005-06-18 22:50:40', 2327, 171, '2005-06-26 22:39:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2498, '2005-06-18 22:56:26', 2291, 74, '2005-06-22 20:02:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2499, '2005-06-18 23:01:36', 3172, 348, '2005-06-20 21:50:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2500, '2005-06-18 23:07:12', 4241, 12, '2005-06-26 17:27:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2501, '2005-06-18 23:10:11', 1185, 450, '2005-06-24 18:40:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2502, '2005-06-18 23:12:13', 2622, 325, '2005-06-20 04:19:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2503, '2005-06-18 23:17:19', 2486, 176, '2005-06-23 03:57:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2504, '2005-06-18 23:19:53', 1684, 452, '2005-06-21 04:43:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2505, '2005-06-18 23:28:27', 1670, 519, '2005-06-26 01:36:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2506, '2005-06-18 23:29:53', 2308, 82, '2005-06-25 18:11:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2507, '2005-06-18 23:39:22', 3121, 325, '2005-06-21 19:23:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2508, '2005-06-18 23:43:58', 4322, 476, '2005-06-20 19:26:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2509, '2005-06-18 23:44:08', 4469, 213, '2005-06-20 01:36:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2510, '2005-06-18 23:44:21', 3827, 384, '2005-06-24 00:31:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2511, '2005-06-18 23:45:30', 1824, 234, '2005-06-24 01:21:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2512, '2005-06-18 23:48:47', 4515, 27, '2005-06-21 04:58:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2513, '2005-06-18 23:53:15', 3379, 515, '2005-06-24 21:16:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2514, '2005-06-18 23:56:44', 2559, 382, '2005-06-23 21:10:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2515, '2005-06-18 23:57:31', 3213, 188, '2005-06-22 05:31:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2516, '2005-06-19 00:03:28', 2678, 87, '2005-06-21 00:30:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2517, '2005-06-19 00:11:26', 53, 74, '2005-06-25 02:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2518, '2005-06-19 00:16:23', 3503, 86, '2005-06-25 19:28:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2519, '2005-06-19 00:19:21', 1172, 128, '2005-06-25 01:46:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2520, '2005-06-19 00:29:00', 4181, 446, '2005-06-28 04:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2521, '2005-06-19 00:41:08', 132, 92, '2005-06-22 00:40:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2522, '2005-06-19 00:43:42', 550, 579, '2005-06-28 04:26:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2523, '2005-06-19 00:45:56', 460, 89, '2005-06-21 00:54:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2524, '2005-06-19 00:48:11', 441, 465, '2005-06-25 01:46:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2525, '2005-06-19 00:48:22', 1307, 365, '2005-06-24 19:10:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2526, '2005-06-19 01:03:07', 3309, 500, '2005-06-28 06:57:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2527, '2005-06-19 01:10:31', 387, 463, '2005-06-20 05:37:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2528, '2005-06-19 01:14:12', 1836, 331, '2005-06-26 05:08:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2529, '2005-06-19 01:18:27', 2306, 478, '2005-06-24 00:26:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2530, '2005-06-19 01:20:00', 4166, 31, '2005-06-23 04:10:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2531, '2005-06-19 01:20:49', 768, 368, '2005-06-22 01:50:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2532, '2005-06-19 01:27:46', 1870, 26, '2005-06-20 02:15:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2533, '2005-06-19 01:34:26', 4564, 187, '2005-06-22 20:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2534, '2005-06-19 01:38:39', 2540, 517, '2005-06-23 00:16:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2535, '2005-06-19 01:39:04', 901, 130, '2005-06-28 01:33:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2536, '2005-06-19 01:41:34', 4232, 163, '2005-06-27 03:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2537, '2005-06-19 01:52:21', 3499, 388, '2005-06-26 02:09:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2538, '2005-06-19 01:56:59', 1287, 472, '2005-06-25 00:54:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2539, '2005-06-19 01:58:39', 4474, 527, '2005-06-19 22:17:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2540, '2005-06-19 02:04:48', 4305, 363, '2005-06-20 22:42:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2541, '2005-06-19 02:08:10', 129, 360, '2005-06-23 23:32:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2542, '2005-06-19 02:08:39', 1446, 67, '2005-06-26 20:25:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2543, '2005-06-19 02:14:11', 1729, 58, '2005-06-21 00:40:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2544, '2005-06-19 02:16:17', 1465, 558, '2005-06-22 21:45:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2545, '2005-06-19 02:23:36', 3237, 413, '2005-06-20 03:17:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2546, '2005-06-19 02:39:39', 971, 272, '2005-06-23 03:56:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2547, '2005-06-19 02:44:17', 4560, 162, '2005-06-24 08:01:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2548, '2005-06-19 02:45:35', 4292, 561, '2005-06-22 06:52:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2549, '2005-06-19 02:46:39', 3854, 495, '2005-06-26 22:30:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2550, '2005-06-19 02:49:55', 1370, 38, '2005-06-24 01:37:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2551, '2005-06-19 02:51:04', 2007, 444, '2005-06-28 05:02:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2552, '2005-06-19 03:01:29', 664, 389, '2005-06-28 04:13:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2553, '2005-06-19 03:04:59', 923, 473, '2005-06-26 02:36:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2554, '2005-06-19 03:05:38', 3916, 322, '2005-06-25 23:03:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2555, '2005-06-19 03:07:02', 260, 191, '2005-06-25 05:25:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2556, '2005-06-19 03:07:32', 125, 377, '2005-06-23 23:09:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2557, '2005-06-19 03:08:51', 4546, 257, '2005-06-20 07:59:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2558, '2005-06-19 03:09:16', 2920, 361, '2005-06-24 05:29:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2559, '2005-06-19 03:09:46', 4433, 414, '2005-06-28 07:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2560, '2005-06-19 03:12:42', 3340, 309, '2005-06-28 02:28:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2561, '2005-06-19 03:14:52', 4128, 256, '2005-06-21 02:42:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2562, '2005-06-19 03:15:05', 51, 265, '2005-06-21 08:26:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2563, '2005-06-19 03:24:17', 1935, 41, '2005-06-23 04:08:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2564, '2005-06-19 03:41:10', 4008, 408, '2005-06-24 03:10:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2565, '2005-06-19 03:44:03', 2347, 128, '2005-06-24 01:26:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2566, '2005-06-19 03:45:39', 495, 486, '2005-06-25 08:43:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2567, '2005-06-19 04:04:46', 216, 496, '2005-06-19 23:39:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2568, '2005-06-19 04:09:03', 3032, 190, '2005-06-24 23:24:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2569, '2005-06-19 04:19:04', 30, 213, '2005-06-26 04:31:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2570, '2005-06-19 04:20:13', 1105, 5, '2005-06-25 07:00:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2571, '2005-06-19 04:20:14', 1800, 66, '2005-06-21 07:28:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2572, '2005-06-19 04:21:26', 2449, 159, '2005-06-23 09:22:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2573, '2005-06-19 04:23:18', 3354, 563, '2005-06-23 06:04:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2574, '2005-06-19 04:23:52', 3320, 143, '2005-06-20 05:24:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2575, '2005-06-19 04:32:52', 354, 336, '2005-06-24 09:37:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2576, '2005-06-19 04:34:15', 2928, 559, '2005-06-28 10:02:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2577, '2005-06-19 04:36:03', 447, 66, '2005-06-28 00:38:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2578, '2005-06-19 04:40:06', 1695, 267, '2005-06-26 09:37:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2579, '2005-06-19 04:40:44', 3836, 493, '2005-06-22 09:22:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2580, '2005-06-19 04:44:30', 2527, 219, '2005-06-23 04:15:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2581, '2005-06-19 04:54:13', 376, 456, '2005-06-23 23:28:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2582, '2005-06-19 04:56:27', 201, 267, '2005-06-26 08:56:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2583, '2005-06-19 05:01:40', 3999, 523, '2005-06-28 00:04:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2584, '2005-06-19 05:02:36', 3733, 90, '2005-06-28 04:52:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2585, '2005-06-19 05:05:03', 91, 406, '2005-06-20 09:28:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2586, '2005-06-19 05:05:11', 4104, 537, '2005-06-27 00:23:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2587, '2005-06-19 05:06:14', 2188, 331, '2005-06-24 10:50:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2588, '2005-06-19 05:20:31', 3626, 143, '2005-06-22 04:20:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2589, '2005-06-19 05:21:27', 225, 164, '2005-06-21 09:55:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2590, '2005-06-19 05:31:40', 3572, 324, '2005-06-20 07:58:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2591, '2005-06-19 05:32:22', 4481, 438, '2005-06-25 23:42:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2592, '2005-06-19 05:36:54', 282, 208, '2005-06-21 08:44:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2593, '2005-06-19 05:40:11', 2031, 556, '2005-06-28 08:11:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2594, '2005-06-19 05:43:43', 829, 123, '2005-06-25 03:41:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2595, '2005-06-19 05:43:55', 3197, 122, '2005-06-25 10:20:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2596, '2005-06-19 05:48:26', 2229, 80, '2005-06-24 10:16:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2597, '2005-06-19 05:53:46', 2278, 407, '2005-06-20 05:14:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2598, '2005-06-19 05:59:57', 2079, 265, '2005-06-24 11:44:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2599, '2005-06-19 06:06:07', 461, 171, '2005-06-27 01:10:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2600, '2005-06-19 06:07:25', 469, 423, '2005-06-28 03:37:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2601, '2005-06-19 06:09:44', 2898, 98, '2005-06-20 08:03:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2602, '2005-06-19 06:10:08', 4124, 173, '2005-06-24 00:39:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2603, '2005-06-19 06:21:25', 587, 222, '2005-06-26 03:19:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2604, '2005-06-19 06:30:10', 2889, 28, '2005-06-25 11:16:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2605, '2005-06-19 06:48:01', 2342, 38, '2005-06-25 07:00:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2606, '2005-06-19 06:51:32', 4133, 364, '2005-06-21 03:15:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2607, '2005-06-19 06:55:01', 3922, 340, '2005-06-25 03:21:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2608, '2005-06-19 07:10:36', 1618, 132, '2005-06-24 13:09:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2609, '2005-06-19 07:13:12', 2254, 383, '2005-06-28 12:30:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2610, '2005-06-19 07:16:20', 3845, 542, '2005-06-25 09:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2611, '2005-06-19 07:18:17', 3682, 301, '2005-06-21 10:19:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2612, '2005-06-19 07:19:41', 1691, 287, '2005-06-25 11:10:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2613, '2005-06-19 07:25:50', 3830, 179, '2005-06-21 03:04:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2614, '2005-06-19 07:28:11', 4147, 145, '2005-06-22 12:33:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2615, '2005-06-19 07:29:13', 3810, 578, '2005-06-27 12:50:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2616, '2005-06-19 07:33:00', 581, 478, '2005-06-28 03:05:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2617, '2005-06-19 07:48:31', 204, 313, '2005-06-27 11:56:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2618, '2005-06-19 08:03:01', 2465, 310, '2005-06-24 03:23:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2619, '2005-06-19 08:03:12', 1848, 350, '2005-06-21 05:02:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2620, '2005-06-19 08:06:29', 3183, 94, '2005-06-24 11:42:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2621, '2005-06-19 08:07:31', 1746, 439, '2005-06-28 05:36:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2622, '2005-06-19 08:10:41', 1393, 573, '2005-06-28 10:44:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2623, '2005-06-19 08:11:51', 4477, 12, '2005-06-26 12:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2624, '2005-06-19 08:22:09', 3071, 32, '2005-06-27 11:13:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2625, '2005-06-19 08:23:11', 3946, 25, '2005-06-26 09:52:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2626, '2005-06-19 08:28:44', 2816, 450, '2005-06-24 03:58:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2627, '2005-06-19 08:32:00', 2779, 592, '2005-06-24 04:31:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2628, '2005-06-19 08:34:53', 3917, 3, '2005-06-28 04:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2629, '2005-06-19 08:42:12', 1810, 458, '2005-06-28 03:38:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2630, '2005-06-19 08:47:21', 3904, 236, '2005-06-25 09:31:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2631, '2005-06-19 08:49:53', 3471, 39, '2005-06-26 03:25:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2632, '2005-06-19 08:51:47', 2274, 574, '2005-06-23 07:13:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2633, '2005-06-19 08:53:10', 3462, 68, '2005-06-20 07:56:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2634, '2005-06-19 08:55:17', 3687, 318, '2005-06-20 11:44:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2635, '2005-06-19 09:08:45', 3332, 105, '2005-06-26 09:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2636, '2005-06-19 09:13:06', 2102, 253, '2005-06-25 07:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2637, '2005-06-19 09:20:56', 2736, 327, '2005-06-27 10:09:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2638, '2005-06-19 09:23:30', 2944, 295, '2005-06-26 14:56:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2639, '2005-06-19 09:24:02', 3971, 116, '2005-06-21 14:16:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2640, '2005-06-19 09:26:13', 721, 540, '2005-06-20 14:38:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2641, '2005-06-19 09:38:33', 231, 374, '2005-06-22 09:55:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2642, '2005-06-19 09:39:01', 2065, 4, '2005-06-25 08:33:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2643, '2005-06-19 09:39:27', 1928, 318, '2005-06-26 10:27:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2644, '2005-06-19 09:42:30', 1923, 309, '2005-06-27 07:23:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2645, '2005-06-19 09:50:35', 2284, 181, '2005-06-28 06:47:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2646, '2005-06-19 09:56:01', 3511, 275, '2005-06-21 04:15:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2647, '2005-06-19 09:57:56', 1954, 54, '2005-06-22 15:55:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2648, '2005-06-19 10:06:20', 1620, 31, '2005-06-21 04:30:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2649, '2005-06-19 10:20:09', 98, 153, '2005-06-21 10:05:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2650, '2005-06-19 10:21:45', 4211, 209, '2005-06-21 08:01:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2651, '2005-06-19 10:22:56', 2181, 576, '2005-06-27 13:37:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2652, '2005-06-19 10:35:26', 3108, 589, '2005-06-28 08:03:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2653, '2005-06-19 10:36:53', 3528, 340, '2005-06-26 15:15:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2654, '2005-06-19 10:37:54', 3697, 405, '2005-06-27 11:44:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2655, '2005-06-19 10:38:42', 1649, 29, '2005-06-23 14:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2656, '2005-06-19 10:42:33', 559, 280, '2005-06-24 08:31:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2657, '2005-06-19 10:42:59', 3595, 19, '2005-06-28 12:37:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2658, '2005-06-19 10:43:42', 3281, 156, '2005-06-24 16:23:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2659, '2005-06-19 10:47:42', 66, 139, '2005-06-23 14:03:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2660, '2005-06-19 10:50:02', 4341, 221, '2005-06-28 12:49:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2661, '2005-06-19 10:50:52', 3652, 452, '2005-06-25 08:44:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2662, '2005-06-19 10:53:42', 3936, 68, '2005-06-20 11:41:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2663, '2005-06-19 10:54:00', 1012, 583, '2005-06-20 16:48:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2664, '2005-06-19 11:11:23', 3496, 299, '2005-06-28 08:30:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2665, '2005-06-19 11:12:35', 4531, 133, '2005-06-26 11:55:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2666, '2005-06-19 11:17:12', 1872, 454, '2005-06-28 12:47:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2667, '2005-06-19 11:28:46', 1028, 200, '2005-06-27 11:48:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2668, '2005-06-19 11:28:47', 3127, 568, '2005-06-24 10:12:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2669, '2005-06-19 11:28:52', 2734, 523, '2005-06-20 16:43:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2670, '2005-06-19 11:30:16', 3518, 457, '2005-06-21 17:25:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2671, '2005-06-19 11:33:11', 2164, 451, '2005-06-26 14:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2672, '2005-06-19 11:42:04', 1164, 420, '2005-06-25 09:14:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2673, '2005-06-19 11:42:20', 2487, 29, '2005-06-23 07:16:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2674, '2005-06-19 11:47:59', 3744, 585, '2005-06-20 08:09:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2675, '2005-06-19 11:52:15', 3078, 230, '2005-06-23 16:45:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2676, '2005-06-19 11:54:57', 3938, 477, '2005-06-24 15:34:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2677, '2005-06-19 12:01:59', 4384, 428, '2005-06-21 06:15:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2678, '2005-06-19 12:12:23', 4230, 258, '2005-06-21 16:28:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2679, '2005-06-19 12:12:30', 1994, 109, '2005-06-27 08:27:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2680, '2005-06-19 12:13:37', 865, 114, '2005-06-27 15:15:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2681, '2005-06-19 12:15:27', 2704, 196, '2005-06-21 16:48:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2682, '2005-06-19 12:18:17', 3609, 538, '2005-06-28 14:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2683, '2005-06-19 12:27:19', 2860, 241, '2005-06-21 16:26:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2684, '2005-06-19 12:29:08', 1225, 17, '2005-06-28 08:50:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2685, '2005-06-19 12:35:21', 1170, 283, '2005-06-22 16:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2686, '2005-06-19 12:44:20', 2686, 68, '2005-06-20 16:00:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2687, '2005-06-19 12:46:52', 3152, 254, '2005-06-23 06:58:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2688, '2005-06-19 12:50:56', 4281, 309, '2005-06-28 17:58:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2689, '2005-06-19 12:58:53', 2478, 567, '2005-06-24 17:35:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2690, '2005-06-19 13:00:02', 1381, 391, '2005-06-27 14:29:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2691, '2005-06-19 13:06:50', 3469, 242, '2005-06-26 15:56:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2692, '2005-06-19 13:08:19', 3162, 388, '2005-06-21 16:45:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2693, '2005-06-19 13:11:47', 2570, 107, '2005-06-27 11:17:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2694, '2005-06-19 13:17:21', 380, 368, '2005-06-24 15:09:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2695, '2005-06-19 13:25:53', 190, 208, '2005-06-24 17:12:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2696, '2005-06-19 13:28:42', 2110, 597, '2005-06-28 14:06:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2697, '2005-06-19 13:29:08', 2271, 448, '2005-06-23 13:21:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2698, '2005-06-19 13:29:11', 3900, 420, '2005-06-20 07:31:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2699, '2005-06-19 13:29:28', 72, 267, '2005-06-24 11:15:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2700, '2005-06-19 13:31:52', 928, 180, '2005-06-27 19:30:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2701, '2005-06-19 13:33:06', 1623, 29, '2005-06-28 15:11:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2702, '2005-06-19 13:35:56', 1736, 329, '2005-06-20 14:07:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2703, '2005-06-19 13:36:06', 4080, 319, '2005-06-28 08:26:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2704, '2005-06-19 13:50:10', 2026, 246, '2005-06-26 18:25:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2705, '2005-06-19 13:54:30', 1191, 562, '2005-06-20 12:31:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2706, '2005-06-19 13:56:51', 373, 559, '2005-06-21 17:23:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2707, '2005-06-19 13:57:08', 4486, 589, '2005-06-27 11:09:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2708, '2005-06-19 13:59:05', 2659, 541, '2005-06-24 10:02:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2709, '2005-06-19 14:00:26', 2877, 7, '2005-06-23 14:56:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2710, '2005-06-19 14:03:56', 2965, 446, '2005-06-21 16:15:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2711, '2005-06-19 14:12:22', 3944, 313, '2005-06-21 09:29:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2712, '2005-06-19 14:20:13', 3132, 411, '2005-06-22 19:08:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2713, '2005-06-19 14:23:09', 3979, 378, '2005-06-20 17:55:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2714, '2005-06-19 14:26:09', 2853, 81, '2005-06-23 17:24:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2715, '2005-06-19 14:29:35', 2082, 404, '2005-06-26 08:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2716, '2005-06-19 14:40:17', 944, 252, '2005-06-27 17:45:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2717, '2005-06-19 14:46:10', 140, 200, '2005-06-22 20:17:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2718, '2005-06-19 14:49:42', 4443, 139, '2005-06-26 19:37:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2719, '2005-06-19 14:50:19', 1200, 336, '2005-06-20 14:33:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2720, '2005-06-19 14:51:55', 3597, 504, '2005-06-27 13:06:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2721, '2005-06-19 14:53:24', 3786, 358, '2005-06-21 18:22:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2722, '2005-06-19 14:55:17', 952, 45, '2005-06-25 13:11:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2723, '2005-06-19 14:55:23', 4317, 277, '2005-06-20 14:28:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2724, '2005-06-19 14:57:54', 3879, 103, '2005-06-22 16:31:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2725, '2005-06-19 15:01:23', 63, 246, '2005-06-22 09:08:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2726, '2005-06-19 15:02:20', 2970, 420, '2005-06-21 15:38:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2727, '2005-06-19 15:02:39', 3261, 129, '2005-06-28 17:49:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2728, '2005-06-19 15:04:04', 775, 408, '2005-06-22 12:22:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2729, '2005-06-19 15:06:15', 4449, 510, '2005-06-27 17:58:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2730, '2005-06-19 15:10:09', 1264, 30, '2005-06-28 13:05:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2731, '2005-06-19 15:14:55', 4218, 138, '2005-06-27 14:30:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2732, '2005-06-19 15:19:39', 610, 386, '2005-06-25 19:39:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2733, '2005-06-19 15:21:53', 1535, 188, '2005-06-23 11:58:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2734, '2005-06-19 15:36:27', 794, 204, '2005-06-20 13:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2735, '2005-06-19 15:42:07', 4550, 29, '2005-06-22 17:28:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2736, '2005-06-19 15:43:20', 4510, 359, '2005-06-21 13:03:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2737, '2005-06-19 15:48:33', 3131, 513, '2005-06-26 18:44:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2738, '2005-06-19 15:56:30', 350, 75, '2005-06-20 16:14:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2739, '2005-06-19 15:58:38', 213, 212, '2005-06-27 15:01:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2740, '2005-06-19 15:59:04', 1534, 92, '2005-06-28 12:18:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2741, '2005-06-19 16:05:41', 1662, 36, '2005-06-20 20:48:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2742, '2005-06-19 16:05:47', 4154, 187, '2005-06-26 21:34:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2743, '2005-06-19 16:15:56', 2611, 35, '2005-06-23 12:30:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2744, '2005-06-19 16:20:40', 4511, 368, '2005-06-22 11:44:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2745, '2005-06-19 16:21:19', 1253, 26, '2005-06-21 22:07:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2746, '2005-06-19 16:21:40', 933, 562, '2005-06-28 11:56:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2747, '2005-06-19 16:22:07', 1374, 422, '2005-06-24 19:28:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2748, '2005-06-19 16:22:26', 511, 473, '2005-06-21 21:55:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2749, '2005-06-19 16:27:35', 1540, 358, '2005-06-25 21:06:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2750, '2005-06-19 16:37:24', 3775, 197, '2005-06-20 13:55:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2751, '2005-06-19 16:39:23', 1291, 148, '2005-06-25 13:57:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2752, '2005-06-19 16:44:18', 386, 149, '2005-06-22 12:40:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2753, '2005-06-19 16:44:35', 2408, 23, '2005-06-24 13:45:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2754, '2005-06-19 16:55:59', 1761, 267, '2005-06-26 18:11:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2755, '2005-06-19 16:56:31', 946, 506, '2005-06-27 12:02:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2756, '2005-06-19 16:57:42', 3264, 144, '2005-06-26 15:30:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2757, '2005-06-19 17:01:14', 3814, 243, '2005-06-28 11:38:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2758, '2005-06-19 17:04:35', 3558, 423, '2005-06-26 14:45:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2759, '2005-06-19 17:10:24', 687, 351, '2005-06-24 21:56:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2760, '2005-06-19 17:16:33', 2602, 192, '2005-06-26 14:58:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2761, '2005-06-19 17:22:17', 2134, 431, '2005-06-20 20:20:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2762, '2005-06-19 17:22:31', 3431, 457, '2005-06-25 22:43:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2763, '2005-06-19 17:23:34', 3096, 276, '2005-06-21 21:37:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2764, '2005-06-19 17:27:25', 1718, 479, '2005-06-28 17:18:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2765, '2005-06-19 17:34:39', 1017, 478, '2005-06-27 23:26:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2766, '2005-06-19 17:45:15', 3421, 345, '2005-06-23 20:11:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2767, '2005-06-19 17:46:35', 4052, 596, '2005-06-24 22:42:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2768, '2005-06-19 17:46:52', 3018, 129, '2005-06-25 21:49:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2769, '2005-06-19 17:52:14', 1222, 354, '2005-06-26 20:30:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2770, '2005-06-19 17:54:22', 3042, 533, '2005-06-26 23:09:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2771, '2005-06-19 17:54:48', 40, 262, '2005-06-27 17:14:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2772, '2005-06-19 17:59:27', 1221, 520, '2005-06-23 17:52:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2773, '2005-06-19 18:04:18', 4155, 505, '2005-06-28 23:52:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2774, '2005-06-19 18:05:11', 2809, 299, '2005-06-21 16:21:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2775, '2005-06-19 18:14:20', 672, 590, '2005-06-26 19:52:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2776, '2005-06-19 18:16:24', 1726, 551, '2005-06-26 14:43:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2777, '2005-06-19 18:16:26', 4092, 230, '2005-06-20 13:43:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2778, '2005-06-19 18:18:12', 3357, 422, '2005-06-28 21:43:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2779, '2005-06-19 18:19:07', 1020, 376, '2005-06-23 18:25:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2780, '2005-06-19 18:19:33', 1513, 360, '2005-06-28 22:29:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2781, '2005-06-19 18:24:42', 1230, 197, '2005-06-27 17:02:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2782, '2005-06-19 18:25:07', 3644, 156, '2005-06-22 14:10:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2783, '2005-06-19 18:29:10', 2778, 113, '2005-06-21 22:09:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2784, '2005-06-19 18:40:29', 2305, 289, '2005-06-28 15:27:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2785, '2005-06-19 18:43:57', 826, 137, '2005-06-24 15:36:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2786, '2005-06-19 18:46:43', 2255, 594, '2005-06-22 16:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2787, '2005-06-19 18:47:00', 3371, 307, '2005-06-22 20:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2788, '2005-06-19 18:48:11', 1457, 171, '2005-06-21 13:32:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2789, '2005-06-19 18:48:21', 2398, 514, '2005-06-21 21:50:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2790, '2005-06-19 18:49:45', 202, 97, '2005-06-21 00:13:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2791, '2005-06-19 18:51:27', 2174, 299, '2005-06-22 19:35:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2792, '2005-06-19 18:52:25', 3057, 437, '2005-06-23 17:39:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2793, '2005-06-19 18:52:37', 732, 419, '2005-06-25 19:45:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2794, '2005-06-19 18:53:05', 1957, 85, '2005-06-22 13:15:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2795, '2005-06-19 18:58:53', 3694, 129, '2005-06-28 18:56:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2796, '2005-06-19 19:00:37', 2337, 209, '2005-06-25 17:18:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2797, '2005-06-19 19:04:32', 3222, 486, '2005-06-20 22:43:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2798, '2005-06-19 19:07:48', 1343, 180, '2005-06-23 00:09:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2799, '2005-06-19 19:15:21', 4579, 576, '2005-06-21 21:35:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2800, '2005-06-19 19:15:56', 183, 146, '2005-06-23 00:15:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2801, '2005-06-19 19:18:09', 4572, 29, '2005-06-20 20:11:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2802, '2005-06-19 19:18:17', 4067, 489, '2005-06-21 17:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2803, '2005-06-19 19:18:27', 103, 120, '2005-06-27 21:48:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2804, '2005-06-19 19:24:54', 88, 426, '2005-06-25 01:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2805, '2005-06-19 19:29:17', 2153, 80, '2005-06-27 23:14:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2806, '2005-06-19 19:30:48', 2114, 510, '2005-06-20 19:42:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2807, '2005-06-19 19:32:53', 2825, 194, '2005-06-25 00:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2808, '2005-06-19 19:34:45', 65, 325, '2005-06-27 14:49:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2809, '2005-06-19 19:40:27', 1786, 44, '2005-06-27 15:28:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2810, '2005-06-19 19:44:12', 2558, 67, '2005-06-20 19:41:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2811, '2005-06-19 19:53:30', 3890, 457, '2005-06-22 23:21:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2812, '2005-06-19 19:58:16', 3016, 211, '2005-06-26 15:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2813, '2005-06-19 20:01:47', 3420, 284, '2005-06-27 01:51:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2814, '2005-06-19 20:01:59', 1783, 10, '2005-06-26 01:28:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2815, '2005-06-19 20:03:29', 3046, 27, '2005-06-25 22:50:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2816, '2005-06-19 20:04:23', 2180, 94, '2005-06-20 21:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2817, '2005-06-19 20:05:22', 3476, 510, '2005-06-24 23:29:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2818, '2005-06-19 20:05:52', 2376, 497, '2005-06-22 01:01:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2819, '2005-06-19 20:13:33', 4100, 82, '2005-06-26 16:44:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2820, '2005-06-19 20:20:33', 851, 316, '2005-06-26 20:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2821, '2005-06-19 20:26:52', 2551, 532, '2005-06-27 23:48:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2822, '2005-06-19 20:29:24', 3599, 48, '2005-06-23 02:21:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2823, '2005-06-19 20:30:21', 3566, 260, '2005-06-26 17:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2824, '2005-06-19 20:31:45', 2878, 506, '2005-06-29 00:40:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2825, '2005-06-19 20:32:19', 2601, 418, '2005-06-22 22:32:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2826, '2005-06-19 20:41:35', 2980, 125, '2005-06-25 17:23:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2827, '2005-06-19 20:50:01', 2745, 23, '2005-06-20 18:54:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2828, '2005-06-19 20:51:33', 3230, 526, '2005-06-25 17:38:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2829, '2005-06-19 21:11:30', 2047, 341, '2005-06-24 18:10:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2830, '2005-06-19 21:14:33', 2080, 21, '2005-06-21 17:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2831, '2005-06-19 21:17:06', 4089, 468, '2005-06-22 16:56:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2832, '2005-06-19 21:21:53', 828, 593, '2005-06-28 23:00:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2833, '2005-06-19 21:34:54', 1976, 232, '2005-06-28 16:21:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2834, '2005-06-19 21:41:46', 2876, 122, '2005-06-24 20:47:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2835, '2005-06-19 21:44:11', 4411, 89, '2005-06-26 16:46:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2836, '2005-06-19 21:58:21', 1453, 306, '2005-06-27 00:41:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2837, '2005-06-19 22:03:50', 417, 371, '2005-06-20 21:24:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2838, '2005-06-19 22:06:06', 143, 292, '2005-06-25 22:30:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2839, '2005-06-19 22:07:24', 3856, 256, '2005-06-23 16:37:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2840, '2005-06-19 22:17:44', 1102, 236, '2005-06-26 00:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2841, '2005-06-19 22:21:06', 614, 193, '2005-06-28 00:56:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2842, '2005-06-19 22:34:20', 4183, 217, '2005-06-22 03:46:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2843, '2005-06-19 22:36:39', 1520, 148, '2005-06-26 22:33:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2844, '2005-06-19 22:40:12', 4452, 178, '2005-06-24 03:58:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2845, '2005-06-19 22:46:37', 3948, 583, '2005-06-23 03:31:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2846, '2005-06-19 22:52:14', 651, 193, '2005-06-22 17:12:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2847, '2005-06-19 22:54:01', 1247, 148, '2005-06-27 23:05:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2848, '2005-06-19 22:55:37', 3449, 19, '2005-06-25 23:10:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2849, '2005-06-19 23:06:00', 3628, 283, '2005-06-25 18:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2850, '2005-06-19 23:06:28', 206, 262, '2005-06-28 03:30:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2851, '2005-06-19 23:07:03', 2168, 361, '2005-06-22 17:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2852, '2005-06-19 23:08:50', 2695, 453, '2005-06-26 04:00:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2853, '2005-06-19 23:09:41', 2578, 453, '2005-06-28 00:51:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2854, '2005-06-19 23:11:48', 4453, 81, '2005-06-23 19:37:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2855, '2005-06-19 23:11:49', 3495, 483, '2005-06-26 21:52:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2856, '2005-06-19 23:13:04', 1859, 210, '2005-06-23 22:47:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2857, '2005-06-19 23:15:15', 2886, 364, '2005-06-25 04:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2858, '2005-06-19 23:17:11', 2628, 268, '2005-06-21 19:07:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2859, '2005-06-19 23:18:42', 126, 147, '2005-06-20 22:38:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2860, '2005-06-19 23:20:40', 3045, 107, '2005-06-21 04:59:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2861, '2005-06-19 23:21:34', 1489, 116, '2005-06-26 17:32:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2862, '2005-06-19 23:47:24', 4260, 52, '2005-06-23 03:39:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2863, '2005-06-19 23:58:38', 2410, 228, '2005-06-23 23:27:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2864, '2005-06-20 00:00:52', 1056, 493, '2005-06-26 04:21:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2865, '2005-06-20 00:00:55', 1569, 10, '2005-06-21 02:20:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2866, '2005-06-20 00:01:36', 2718, 44, '2005-06-20 21:39:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2867, '2005-06-20 00:08:38', 95, 483, '2005-06-23 19:35:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2868, '2005-06-20 00:08:58', 1213, 214, '2005-06-25 21:23:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2869, '2005-06-20 00:09:25', 1331, 155, '2005-06-24 04:40:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2870, '2005-06-20 00:17:46', 214, 467, '2005-06-28 20:21:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2871, '2005-06-20 00:27:49', 1731, 443, '2005-06-29 01:36:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2872, '2005-06-20 00:38:21', 3779, 240, '2005-06-26 19:56:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2873, '2005-06-20 00:41:25', 3321, 160, '2005-06-25 02:06:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2874, '2005-06-20 00:42:26', 331, 166, '2005-06-28 01:37:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2875, '2005-06-20 00:47:18', 3012, 186, '2005-06-25 18:54:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2876, '2005-06-20 01:06:34', 3117, 39, '2005-06-23 04:55:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2877, '2005-06-20 01:07:16', 485, 267, '2005-06-24 01:05:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2878, '2005-06-20 01:09:14', 4120, 88, '2005-06-21 21:40:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2879, '2005-06-20 01:24:10', 1920, 583, '2005-06-28 20:12:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2880, '2005-06-20 01:24:54', 1700, 193, '2005-06-23 02:42:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2881, '2005-06-20 01:26:18', 1391, 307, '2005-06-26 23:42:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2882, '2005-06-20 01:26:26', 205, 152, '2005-06-21 19:33:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2883, '2005-06-20 01:29:10', 585, 320, '2005-06-28 06:12:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2884, '2005-06-20 01:31:16', 3384, 319, '2005-06-21 04:03:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2885, '2005-06-20 01:33:42', 2701, 330, '2005-06-22 22:23:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2886, '2005-06-20 01:38:39', 1755, 154, '2005-06-23 04:28:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2887, '2005-06-20 01:39:43', 1073, 453, '2005-06-25 05:22:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2888, '2005-06-20 01:50:56', 468, 7, '2005-06-22 05:05:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2889, '2005-06-20 01:54:08', 151, 213, '2005-06-23 06:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2890, '2005-06-20 02:00:45', 3437, 392, '2005-06-27 21:12:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2891, '2005-06-20 02:02:05', 343, 32, '2005-06-25 02:45:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2892, '2005-06-20 02:06:39', 2993, 430, '2005-06-21 02:50:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2893, '2005-06-20 02:22:08', 397, 153, '2005-06-26 21:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2894, '2005-06-20 02:22:42', 4316, 76, '2005-06-22 00:38:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2895, '2005-06-20 02:26:31', 4445, 141, '2005-06-27 23:42:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2896, '2005-06-20 02:33:42', 1086, 40, '2005-06-26 05:29:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2897, '2005-06-20 02:34:23', 3464, 107, '2005-06-25 05:29:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2898, '2005-06-20 02:38:06', 3106, 178, '2005-06-29 08:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2899, '2005-06-20 02:39:21', 1919, 459, '2005-06-23 06:47:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2900, '2005-06-20 02:40:04', 3407, 294, '2005-06-27 20:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2901, '2005-06-20 02:41:28', 667, 25, '2005-06-23 04:43:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2902, '2005-06-20 02:45:35', 2787, 304, '2005-06-26 07:51:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2903, '2005-06-20 02:49:01', 3580, 53, '2005-06-25 05:03:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2904, '2005-06-20 02:54:06', 2195, 55, '2005-06-21 06:57:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2905, '2005-06-20 02:56:16', 3898, 189, '2005-06-24 23:51:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2906, '2005-06-20 03:04:56', 1087, 58, '2005-06-23 05:57:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2907, '2005-06-20 03:15:09', 2516, 208, '2005-06-20 21:56:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2908, '2005-06-20 03:16:52', 517, 91, '2005-06-22 08:46:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2909, '2005-06-20 03:19:10', 1701, 451, '2005-06-25 06:06:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2910, '2005-06-20 03:31:18', 630, 57, '2005-06-28 00:35:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2911, '2005-06-20 03:32:37', 3645, 502, '2005-06-22 22:06:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2912, '2005-06-20 03:32:45', 1076, 196, '2005-06-21 23:32:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2913, '2005-06-20 03:42:27', 3456, 402, '2005-06-23 04:47:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2914, '2005-06-20 03:43:18', 2419, 342, '2005-06-25 03:44:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2915, '2005-06-20 03:57:17', 1293, 262, '2005-06-24 05:59:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2916, '2005-06-20 04:01:04', 3086, 590, '2005-06-27 22:40:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2917, '2005-06-20 04:08:35', 647, 451, '2005-06-24 01:17:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2918, '2005-06-20 04:09:04', 1985, 215, '2005-06-21 10:07:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2919, '2005-06-20 04:10:16', 2835, 509, '2005-06-27 06:34:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2920, '2005-06-20 04:12:46', 487, 588, '2005-06-26 23:34:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2921, '2005-06-20 04:13:04', 1785, 59, '2005-06-28 01:28:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2922, '2005-06-20 04:13:47', 1671, 176, '2005-06-22 04:38:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2923, '2005-06-20 04:16:07', 109, 29, '2005-06-21 05:04:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2924, '2005-06-20 04:20:14', 580, 132, '2005-06-21 01:13:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2925, '2005-06-20 04:23:49', 804, 301, '2005-06-22 04:37:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2926, '2005-06-20 04:37:45', 1055, 379, '2005-06-26 02:17:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2927, '2005-06-20 04:41:41', 393, 403, '2005-06-23 01:59:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2928, '2005-06-20 04:43:45', 1265, 104, '2005-06-21 06:58:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2929, '2005-06-20 04:47:39', 3389, 333, '2005-06-25 23:16:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2930, '2005-06-20 04:50:29', 3615, 585, '2005-06-28 06:00:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2931, '2005-06-20 04:50:45', 3122, 258, '2005-06-29 09:18:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2932, '2005-06-20 04:51:19', 4418, 526, '2005-06-29 08:31:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2933, '2005-06-20 04:52:23', 4483, 323, '2005-06-26 07:12:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2934, '2005-06-20 05:05:53', 697, 228, '2005-06-22 02:44:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2935, '2005-06-20 05:07:24', 2735, 384, '2005-06-28 09:17:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2936, '2005-06-20 05:09:27', 2675, 330, '2005-06-26 10:16:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2937, '2005-06-20 05:15:37', 1998, 15, '2005-06-27 02:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2938, '2005-06-20 05:17:22', 1795, 504, '2005-06-26 09:38:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2939, '2005-06-20 05:18:16', 2638, 203, '2005-06-26 06:56:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2940, '2005-06-20 05:20:01', 2504, 73, '2005-06-28 06:11:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2941, '2005-06-20 05:22:18', 3632, 135, '2005-06-26 07:40:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2942, '2005-06-20 05:27:31', 999, 242, '2005-06-29 00:35:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2943, '2005-06-20 05:43:05', 2591, 418, '2005-06-25 04:31:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2944, '2005-06-20 05:43:42', 1550, 474, '2005-06-29 09:40:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2945, '2005-06-20 05:49:27', 4193, 153, '2005-06-26 09:48:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2946, '2005-06-20 05:50:40', 3737, 213, '2005-06-21 00:42:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2947, '2005-06-20 06:00:21', 4302, 151, '2005-06-23 10:04:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2948, '2005-06-20 06:02:35', 4254, 289, '2005-06-29 09:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2949, '2005-06-20 06:05:53', 375, 78, '2005-06-29 03:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2950, '2005-06-20 06:08:36', 1438, 561, '2005-06-27 07:45:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2951, '2005-06-20 06:23:01', 2903, 404, '2005-06-24 00:26:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2952, '2005-06-20 06:26:57', 3759, 13, '2005-06-22 11:51:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2953, '2005-06-20 06:39:11', 1829, 540, '2005-06-26 06:19:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2954, '2005-06-20 06:45:00', 377, 336, '2005-06-23 11:43:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2955, '2005-06-20 06:46:35', 2312, 244, '2005-06-25 05:34:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2956, '2005-06-20 06:47:23', 2684, 533, '2005-06-22 07:24:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2957, '2005-06-20 06:53:47', 4034, 542, '2005-06-29 09:21:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2958, '2005-06-20 06:56:20', 1380, 260, '2005-06-29 02:33:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2959, '2005-06-20 07:07:54', 4185, 372, '2005-06-27 03:31:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2960, '2005-06-20 07:10:09', 3970, 16, '2005-06-26 08:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2961, '2005-06-20 07:29:15', 4539, 399, '2005-06-24 08:05:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2962, '2005-06-20 07:31:55', 2978, 364, '2005-06-26 04:43:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2963, '2005-06-20 07:33:09', 1444, 24, '2005-06-28 09:23:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2964, '2005-06-20 07:33:29', 1201, 590, '2005-06-29 12:48:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2965, '2005-06-20 07:33:38', 27, 46, '2005-06-29 11:45:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2966, '2005-06-20 07:39:33', 3483, 511, '2005-06-29 07:48:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2967, '2005-06-20 07:40:35', 4243, 311, '2005-06-29 05:50:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2968, '2005-06-20 07:41:47', 4415, 252, '2005-06-23 04:27:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2969, '2005-06-20 07:44:27', 1748, 418, '2005-06-22 06:12:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2970, '2005-06-20 07:51:51', 1167, 449, '2005-06-28 10:14:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2971, '2005-06-20 07:56:00', 1585, 410, '2005-06-27 11:38:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2972, '2005-06-20 07:57:54', 2232, 531, '2005-06-21 12:48:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2973, '2005-06-20 07:59:27', 2626, 96, '2005-06-24 12:31:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2974, '2005-06-20 08:00:24', 2322, 472, '2005-06-25 05:10:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2975, '2005-06-20 08:06:18', 4534, 46, '2005-06-21 08:01:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2976, '2005-06-20 08:09:11', 4210, 55, '2005-06-21 10:45:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2977, '2005-06-20 08:15:27', 2645, 571, '2005-06-29 04:30:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2978, '2005-06-20 08:25:16', 4364, 548, '2005-06-23 05:42:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2979, '2005-06-20 08:31:05', 3961, 589, '2005-06-27 12:25:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2980, '2005-06-20 08:35:03', 310, 343, '2005-06-29 07:57:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2981, '2005-06-20 08:35:17', 522, 387, '2005-06-28 09:14:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2982, '2005-06-20 08:38:29', 2574, 130, '2005-06-28 13:21:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2983, '2005-06-20 08:41:42', 1349, 322, '2005-06-29 04:02:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2984, '2005-06-20 08:43:44', 1819, 435, '2005-06-22 03:08:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2985, '2005-06-20 08:45:08', 122, 154, '2005-06-22 04:26:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2986, '2005-06-20 08:50:28', 478, 556, '2005-06-26 05:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2987, '2005-06-20 08:55:50', 1531, 349, '2005-06-28 13:02:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2988, '2005-06-20 08:59:08', 3160, 557, '2005-06-28 04:31:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2989, '2005-06-20 08:59:37', 1586, 56, '2005-06-22 03:27:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2990, '2005-06-20 09:02:51', 4559, 18, '2005-06-29 13:19:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2991, '2005-06-20 09:10:43', 4308, 472, '2005-06-23 13:04:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2992, '2005-06-20 09:11:51', 3347, 439, '2005-06-24 05:59:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2993, '2005-06-20 09:12:12', 1527, 40, '2005-06-22 13:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2994, '2005-06-20 09:17:05', 1290, 163, '2005-06-29 04:41:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2995, '2005-06-20 09:18:22', 4544, 573, '2005-06-26 14:31:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2996, '2005-06-20 09:20:29', 4064, 500, '2005-06-27 09:18:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2997, '2005-06-20 09:23:45', 1449, 519, '2005-06-29 08:15:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2998, '2005-06-20 09:30:22', 1288, 380, '2005-06-24 06:31:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (2999, '2005-06-20 09:30:34', 735, 295, '2005-06-26 05:51:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3000, '2005-06-20 09:32:33', 549, 50, '2005-06-22 07:45:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3001, '2005-06-20 09:50:16', 2941, 393, '2005-06-28 05:13:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3002, '2005-06-20 09:56:12', 2749, 266, '2005-06-24 12:15:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3003, '2005-06-20 10:00:51', 616, 38, '2005-06-22 06:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3004, '2005-06-20 10:04:36', 2836, 113, '2005-06-23 07:38:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3005, '2005-06-20 10:10:29', 286, 598, '2005-06-28 15:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3006, '2005-06-20 10:10:29', 1677, 133, '2005-06-22 07:26:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3007, '2005-06-20 10:11:53', 1950, 7, '2005-06-25 04:51:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3008, '2005-06-20 10:23:25', 3383, 202, '2005-06-26 11:00:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3009, '2005-06-20 10:24:44', 2721, 280, '2005-06-23 13:39:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3010, '2005-06-20 10:29:59', 1298, 567, '2005-06-27 06:52:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3011, '2005-06-20 10:39:10', 4376, 147, '2005-06-28 07:02:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3012, '2005-06-20 10:43:13', 1392, 206, '2005-06-28 10:07:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3013, '2005-06-20 10:45:09', 4146, 290, '2005-06-26 04:55:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3014, '2005-06-20 10:45:20', 2179, 434, '2005-06-23 06:29:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3015, '2005-06-20 10:48:56', 1311, 23, '2005-06-26 11:30:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3016, '2005-06-20 10:55:08', 3514, 558, '2005-06-24 14:05:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3017, '2005-06-20 11:08:56', 2513, 151, '2005-06-28 16:26:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3018, '2005-06-20 11:10:35', 4150, 112, '2005-06-25 07:17:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3019, '2005-06-20 11:11:52', 491, 144, '2005-06-27 08:30:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3020, '2005-06-20 11:12:04', 4363, 74, '2005-06-27 07:31:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3021, '2005-06-20 11:13:01', 120, 62, '2005-06-28 16:15:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3022, '2005-06-20 11:17:20', 3745, 466, '2005-06-26 13:15:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3023, '2005-06-20 11:18:11', 4304, 106, '2005-06-21 12:43:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3024, '2005-06-20 11:29:17', 1966, 328, '2005-06-27 12:51:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3025, '2005-06-20 11:46:48', 1309, 293, '2005-06-22 08:43:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3026, '2005-06-20 11:48:00', 4032, 347, '2005-06-21 12:51:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3027, '2005-06-20 11:50:30', 4028, 397, '2005-06-25 15:58:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3028, '2005-06-20 11:50:52', 886, 264, '2005-06-21 11:05:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3029, '2005-06-20 11:51:30', 327, 317, '2005-06-25 16:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3030, '2005-06-20 11:51:59', 1543, 395, '2005-06-24 10:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3031, '2005-06-20 11:52:49', 1184, 491, '2005-06-22 07:00:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3032, '2005-06-20 11:58:30', 3734, 172, '2005-06-24 09:49:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3033, '2005-06-20 12:02:05', 4422, 107, '2005-06-26 15:58:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3034, '2005-06-20 12:15:50', 2755, 296, '2005-06-24 06:21:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3035, '2005-06-20 12:17:03', 1223, 62, '2005-06-26 17:42:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3036, '2005-06-20 12:18:31', 4463, 399, '2005-06-29 09:52:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3037, '2005-06-20 12:28:03', 2033, 434, '2005-06-21 08:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3038, '2005-06-20 12:28:59', 2919, 27, '2005-06-25 07:48:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3039, '2005-06-20 12:32:30', 4098, 186, '2005-06-21 07:38:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3040, '2005-06-20 12:34:13', 2568, 162, '2005-06-21 12:33:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3041, '2005-06-20 12:35:44', 2676, 459, '2005-06-23 18:28:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3042, '2005-06-20 12:38:27', 3103, 291, '2005-06-26 11:18:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3043, '2005-06-20 12:38:35', 633, 599, '2005-06-29 14:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3044, '2005-06-20 12:38:49', 3216, 424, '2005-06-25 07:49:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3045, '2005-06-20 12:42:00', 3065, 459, '2005-06-23 10:49:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3046, '2005-06-20 12:42:59', 471, 559, '2005-06-26 17:40:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3047, '2005-06-20 12:45:33', 624, 13, '2005-06-29 13:09:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3048, '2005-06-20 12:49:55', 4389, 482, '2005-06-26 11:06:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3049, '2005-06-20 12:51:01', 518, 403, '2005-06-29 10:53:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3050, '2005-06-20 13:03:03', 2397, 557, '2005-06-29 07:22:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3051, '2005-06-20 13:06:52', 1408, 65, '2005-06-25 13:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3052, '2005-06-20 13:09:19', 2359, 329, '2005-06-29 11:55:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3053, '2005-06-20 13:10:30', 818, 329, '2005-06-25 17:22:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3054, '2005-06-20 13:16:41', 2817, 322, '2005-06-28 13:45:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3055, '2005-06-20 13:19:58', 1510, 23, '2005-06-27 14:54:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3056, '2005-06-20 13:20:58', 2010, 95, '2005-06-26 08:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3057, '2005-06-20 13:22:48', 1101, 307, '2005-06-26 17:22:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3058, '2005-06-20 13:28:35', 938, 137, '2005-06-28 13:57:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3059, '2005-06-20 13:38:41', 2911, 266, '2005-06-21 10:13:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3060, '2005-06-20 13:47:20', 2075, 446, '2005-06-25 16:00:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3061, '2005-06-20 13:48:21', 4202, 330, '2005-06-22 17:36:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3062, '2005-06-20 13:50:00', 591, 75, '2005-06-27 08:18:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3063, '2005-06-20 13:52:03', 3954, 515, '2005-06-28 13:36:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3064, '2005-06-20 13:53:13', 2624, 276, '2005-06-25 16:33:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3065, '2005-06-20 13:53:53', 1687, 227, '2005-06-24 11:31:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3066, '2005-06-20 13:55:41', 1116, 268, '2005-06-26 09:38:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3067, '2005-06-20 13:59:21', 3094, 349, '2005-06-28 19:09:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3068, '2005-06-20 14:02:22', 1958, 516, '2005-06-22 12:52:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3069, '2005-06-20 14:13:00', 1952, 237, '2005-06-28 10:57:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3070, '2005-06-20 14:15:39', 3860, 543, '2005-06-25 12:52:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3071, '2005-06-20 14:20:42', 1198, 582, '2005-06-24 19:01:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3072, '2005-06-20 14:21:31', 4131, 423, '2005-06-27 18:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3073, '2005-06-20 14:33:26', 3164, 471, '2005-06-26 08:42:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3074, '2005-06-20 14:41:41', 1441, 299, '2005-06-21 15:56:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3075, '2005-06-20 14:52:19', 4346, 161, '2005-06-28 18:48:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3076, '2005-06-20 15:01:19', 1344, 109, '2005-06-28 16:53:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3077, '2005-06-20 15:05:18', 1675, 303, '2005-06-26 20:52:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3078, '2005-06-20 15:09:48', 3642, 367, '2005-06-24 16:54:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3079, '2005-06-20 15:13:40', 2135, 350, '2005-06-21 12:03:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3080, '2005-06-20 15:22:32', 118, 377, '2005-06-24 11:08:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3081, '2005-06-20 15:29:13', 2071, 342, '2005-06-24 21:00:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3082, '2005-06-20 15:32:11', 4431, 164, '2005-06-28 13:08:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3083, '2005-06-20 15:33:47', 2896, 257, '2005-06-26 16:14:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3084, '2005-06-20 15:35:24', 3578, 514, '2005-06-23 19:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3085, '2005-06-20 15:42:33', 4282, 166, '2005-06-21 16:51:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3086, '2005-06-20 15:42:40', 4437, 377, '2005-06-25 19:21:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3087, '2005-06-20 15:53:59', 1305, 111, '2005-06-27 10:54:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3088, '2005-06-20 15:56:05', 3049, 384, '2005-06-29 13:02:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3089, '2005-06-20 15:57:01', 539, 151, '2005-06-25 13:15:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3090, '2005-06-20 16:00:19', 3301, 267, '2005-06-23 14:55:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3091, '2005-06-20 16:02:59', 854, 383, '2005-06-22 21:30:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3092, '2005-06-20 16:04:42', 4344, 347, '2005-06-27 19:54:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3093, '2005-06-20 16:06:14', 2534, 556, '2005-06-22 13:22:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3094, '2005-06-20 16:06:51', 2048, 114, '2005-06-24 13:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3095, '2005-06-20 16:16:53', 3937, 298, '2005-06-22 10:35:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3096, '2005-06-20 16:17:56', 3851, 79, '2005-06-24 10:17:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3097, '2005-06-20 16:26:14', 4337, 280, '2005-06-23 14:46:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3098, '2005-06-20 16:37:01', 3409, 498, '2005-06-22 22:24:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3099, '2005-06-20 16:44:33', 3756, 380, '2005-06-27 12:17:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3100, '2005-06-20 16:47:57', 2428, 487, '2005-06-26 16:59:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3101, '2005-06-20 16:48:58', 1738, 384, '2005-06-27 18:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3102, '2005-06-20 16:55:55', 1144, 522, '2005-06-29 13:49:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3103, '2005-06-20 16:58:19', 1877, 553, '2005-06-25 21:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3104, '2005-06-20 17:06:46', 1490, 196, '2005-06-28 13:18:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3105, '2005-06-20 17:11:46', 130, 385, '2005-06-21 11:48:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3106, '2005-06-20 17:18:06', 2637, 201, '2005-06-24 14:50:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3107, '2005-06-20 17:26:05', 4527, 303, '2005-06-25 12:36:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3108, '2005-06-20 17:28:43', 2218, 189, '2005-06-27 21:23:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3109, '2005-06-20 17:33:55', 977, 93, '2005-06-22 23:09:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3110, '2005-06-20 17:40:12', 2008, 333, '2005-06-24 17:09:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3111, '2005-06-20 17:46:47', 4494, 579, '2005-06-29 19:45:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3112, '2005-06-20 17:53:30', 3725, 35, '2005-06-26 16:03:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3113, '2005-06-20 17:56:40', 3620, 517, '2005-06-23 14:45:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3114, '2005-06-20 17:57:47', 2388, 8, '2005-06-21 19:18:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3115, '2005-06-20 17:59:05', 2193, 457, '2005-06-26 13:28:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3116, '2005-06-20 18:04:55', 276, 108, '2005-06-21 12:12:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3117, '2005-06-20 18:05:15', 2184, 31, '2005-06-26 17:28:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3118, '2005-06-20 18:05:57', 1258, 125, '2005-06-23 23:01:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3119, '2005-06-20 18:11:44', 683, 296, '2005-06-27 16:14:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3120, '2005-06-20 18:19:29', 2530, 107, '2005-06-23 23:40:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3121, '2005-06-20 18:23:30', 797, 132, '2005-06-21 20:36:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3122, '2005-06-20 18:25:57', 2720, 87, '2005-06-29 16:08:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3123, '2005-06-20 18:26:14', 1656, 289, '2005-06-29 17:17:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3124, '2005-06-20 18:28:19', 3342, 113, '2005-06-28 21:08:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3125, '2005-06-20 18:31:58', 3293, 382, '2005-06-21 15:03:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3126, '2005-06-20 18:38:22', 1183, 5, '2005-06-26 00:00:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3127, '2005-06-20 18:39:43', 1292, 461, '2005-06-28 17:55:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3128, '2005-06-20 18:41:47', 189, 543, '2005-06-24 20:54:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3129, '2005-06-20 18:57:48', 1789, 495, '2005-06-28 13:45:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3130, '2005-06-20 19:03:22', 2569, 341, '2005-06-29 18:05:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3131, '2005-06-20 19:08:00', 3678, 146, '2005-06-24 20:59:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3132, '2005-06-20 19:09:46', 711, 90, '2005-06-24 19:42:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3133, '2005-06-20 19:18:32', 4529, 120, '2005-06-26 17:54:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3134, '2005-06-20 19:29:09', 1389, 537, '2005-06-29 19:31:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3135, '2005-06-20 19:33:52', 1122, 12, '2005-06-29 18:20:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3136, '2005-06-20 19:39:08', 3349, 377, '2005-06-22 23:35:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3137, '2005-06-20 19:41:28', 786, 505, '2005-06-28 00:32:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3138, '2005-06-20 19:43:45', 2265, 570, '2005-06-26 20:41:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3139, '2005-06-20 19:44:45', 3474, 354, '2005-06-23 16:24:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3140, '2005-06-20 19:47:12', 2936, 53, '2005-06-24 23:24:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3141, '2005-06-20 19:55:47', 1806, 398, '2005-06-30 00:31:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3142, '2005-06-20 19:59:28', 3926, 9, '2005-06-28 19:51:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3143, '2005-06-20 20:01:52', 1355, 215, '2005-06-26 19:26:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3144, '2005-06-20 20:14:20', 1300, 114, '2005-06-30 01:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3145, '2005-06-20 20:21:17', 2211, 144, '2005-06-22 14:44:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3146, '2005-06-20 20:21:48', 2249, 339, '2005-06-29 22:57:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3147, '2005-06-20 20:25:17', 615, 390, '2005-06-28 20:22:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3148, '2005-06-20 20:27:18', 4490, 202, '2005-06-24 20:30:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3149, '2005-06-20 20:34:55', 3295, 55, '2005-06-21 18:51:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3150, '2005-06-20 20:35:28', 94, 34, '2005-06-26 01:01:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3151, '2005-06-20 20:36:53', 2976, 77, '2005-06-25 18:56:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3152, '2005-06-20 20:42:41', 1022, 246, '2005-06-28 21:12:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3153, '2005-06-20 20:44:15', 659, 430, '2005-06-23 16:04:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3154, '2005-06-20 20:44:40', 3195, 550, '2005-06-23 19:10:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3155, '2005-06-20 21:02:38', 458, 450, '2005-06-27 19:34:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3156, '2005-06-20 21:03:46', 2217, 365, '2005-06-21 23:32:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3157, '2005-06-20 21:07:54', 1899, 245, '2005-06-23 16:01:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3158, '2005-06-20 21:08:19', 3461, 592, '2005-06-29 18:59:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3159, '2005-06-20 21:11:50', 33, 388, '2005-06-29 19:35:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3160, '2005-06-20 21:20:51', 4333, 561, '2005-06-29 18:06:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3161, '2005-06-20 21:21:01', 1326, 373, '2005-06-21 18:22:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3162, '2005-06-20 21:21:15', 3220, 113, '2005-06-29 18:42:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3163, '2005-06-20 21:22:13', 2632, 391, '2005-06-26 15:22:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3164, '2005-06-20 21:29:00', 155, 270, '2005-06-27 15:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3165, '2005-06-20 21:29:17', 796, 85, '2005-06-22 18:03:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3166, '2005-06-20 21:32:32', 1850, 424, '2005-06-27 20:29:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3167, '2005-06-20 21:42:29', 353, 464, '2005-06-22 00:36:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3168, '2005-06-20 21:46:01', 2407, 446, '2005-06-22 20:40:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3169, '2005-06-20 21:55:54', 2437, 50, '2005-06-25 19:45:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3170, '2005-06-20 22:02:54', 1306, 421, '2005-06-29 00:41:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3171, '2005-06-20 22:15:47', 2838, 140, '2005-06-24 18:14:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3172, '2005-06-20 22:19:25', 1758, 31, '2005-06-24 17:18:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3173, '2005-06-20 22:21:10', 4306, 33, '2005-06-27 19:41:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3174, '2005-06-20 22:24:00', 3331, 107, '2005-06-22 21:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3175, '2005-06-20 22:30:23', 4093, 249, '2005-06-30 03:28:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3176, '2005-06-20 22:31:54', 1982, 371, '2005-06-25 02:58:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3177, '2005-06-20 22:32:44', 2546, 300, '2005-06-22 23:01:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3178, '2005-06-20 22:35:12', 3517, 79, '2005-06-23 19:39:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3179, '2005-06-20 22:37:59', 2214, 163, '2005-06-26 22:26:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3180, '2005-06-20 22:48:44', 3997, 162, '2005-06-21 21:25:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3181, '2005-06-20 22:51:02', 3473, 238, '2005-06-27 21:21:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3182, '2005-06-20 22:52:18', 4017, 15, '2005-06-21 21:00:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3183, '2005-06-20 22:55:55', 4397, 129, '2005-06-23 17:22:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3184, '2005-06-20 22:57:44', 3179, 457, '2005-06-29 20:57:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3185, '2005-06-20 22:58:01', 601, 234, '2005-06-27 00:26:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3186, '2005-06-20 23:04:20', 3198, 406, '2005-06-29 02:56:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3187, '2005-06-20 23:06:07', 4357, 150, '2005-06-27 01:14:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3188, '2005-06-20 23:10:27', 2471, 522, '2005-06-25 19:37:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3189, '2005-06-20 23:19:33', 1502, 538, '2005-06-24 17:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3190, '2005-06-20 23:27:15', 351, 200, '2005-06-28 01:22:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3191, '2005-06-20 23:46:39', 4358, 522, '2005-06-25 03:21:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3192, '2005-06-20 23:49:12', 3713, 11, '2005-06-24 03:00:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3193, '2005-06-20 23:52:30', 3176, 260, '2005-06-22 21:21:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3194, '2005-06-20 23:59:57', 1835, 432, '2005-06-24 19:21:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3195, '2005-06-21 00:02:10', 2383, 165, '2005-06-21 23:11:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3196, '2005-06-21 00:02:28', 1575, 52, '2005-06-22 23:08:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3197, '2005-06-21 00:07:23', 1811, 362, '2005-06-23 00:53:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3198, '2005-06-21 00:08:54', 1626, 295, '2005-06-29 02:11:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3199, '2005-06-21 00:12:40', 3824, 234, '2005-06-27 23:26:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3200, '2005-06-21 00:22:47', 4117, 221, '2005-06-27 05:52:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3201, '2005-06-21 00:30:26', 6, 597, '2005-06-28 03:42:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3202, '2005-06-21 00:33:47', 2725, 273, '2005-06-24 04:05:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3203, '2005-06-21 00:34:56', 442, 158, '2005-06-29 23:30:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3204, '2005-06-21 00:37:50', 2848, 336, '2005-06-22 23:46:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3205, '2005-06-21 00:38:47', 2964, 31, '2005-06-21 22:49:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3206, '2005-06-21 00:39:39', 2196, 350, '2005-06-22 05:12:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3207, '2005-06-21 00:43:16', 4020, 86, '2005-06-24 22:13:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3208, '2005-06-21 00:50:03', 3169, 229, '2005-06-24 06:15:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3209, '2005-06-21 00:51:06', 287, 307, '2005-06-22 21:49:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3210, '2005-06-21 01:00:25', 467, 75, '2005-06-23 06:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3211, '2005-06-21 01:01:29', 1150, 415, '2005-06-23 04:05:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3212, '2005-06-21 01:04:35', 4178, 21, '2005-06-30 00:10:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3213, '2005-06-21 01:05:19', 3832, 534, '2005-06-27 21:55:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3214, '2005-06-21 01:08:26', 776, 142, '2005-06-23 03:24:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3215, '2005-06-21 01:11:32', 4140, 279, '2005-06-26 19:42:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3216, '2005-06-21 01:19:37', 719, 534, '2005-06-29 06:45:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3217, '2005-06-21 01:28:12', 1027, 463, '2005-06-25 02:51:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3218, '2005-06-21 01:38:09', 1828, 117, '2005-06-23 02:00:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3219, '2005-06-21 01:43:26', 3024, 129, '2005-06-28 23:50:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3220, '2005-06-21 01:46:25', 1880, 574, '2005-06-26 07:44:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3221, '2005-06-21 01:49:47', 245, 454, '2005-06-25 06:31:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3222, '2005-06-21 01:50:29', 4023, 501, '2005-06-27 00:52:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3223, '2005-06-21 02:06:45', 1033, 299, '2005-06-22 07:16:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3224, '2005-06-21 02:11:36', 3318, 173, '2005-06-23 21:17:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3225, '2005-06-21 02:16:55', 1003, 448, '2005-06-27 05:39:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3226, '2005-06-21 02:18:14', 4079, 576, '2005-06-26 22:32:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3227, '2005-06-21 02:18:25', 1156, 568, '2005-06-27 00:59:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3228, '2005-06-21 02:20:24', 2489, 535, '2005-06-29 00:50:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3229, '2005-06-21 02:20:41', 2301, 81, '2005-06-26 00:39:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3230, '2005-06-21 02:23:16', 215, 83, '2005-06-22 01:37:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3231, '2005-06-21 02:25:00', 237, 28, '2005-06-23 05:46:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3232, '2005-06-21 02:30:37', 1972, 555, '2005-06-29 03:10:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3233, '2005-06-21 02:39:31', 3542, 353, '2005-06-28 05:23:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3234, '2005-06-21 02:39:44', 3252, 459, '2005-06-29 07:27:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3235, '2005-06-21 02:46:17', 212, 49, '2005-06-22 20:58:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3236, '2005-06-21 02:47:43', 1492, 550, '2005-06-29 08:04:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3237, '2005-06-21 02:47:56', 4399, 466, '2005-06-27 03:16:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3238, '2005-06-21 02:48:21', 2732, 77, '2005-06-23 04:43:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3239, '2005-06-21 02:48:40', 3402, 328, '2005-06-22 02:49:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3240, '2005-06-21 02:53:17', 2938, 405, '2005-06-30 03:25:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3241, '2005-06-21 02:54:32', 1442, 499, '2005-06-26 21:56:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3242, '2005-06-21 02:56:24', 1421, 562, '2005-06-29 21:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3243, '2005-06-21 03:00:11', 2556, 426, '2005-06-25 21:53:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3244, '2005-06-21 03:01:10', 291, 53, '2005-06-24 06:59:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3245, '2005-06-21 03:06:11', 2057, 358, '2005-06-25 08:06:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3246, '2005-06-21 03:10:01', 4432, 41, '2005-06-28 00:46:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3247, '2005-06-21 03:12:15', 1406, 277, '2005-06-27 00:44:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3248, '2005-06-21 03:12:21', 3656, 78, '2005-06-28 03:54:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3249, '2005-06-21 03:13:19', 703, 410, '2005-06-29 04:04:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3250, '2005-06-21 03:16:36', 736, 467, '2005-06-29 00:53:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3251, '2005-06-21 03:20:37', 1414, 317, '2005-06-23 04:54:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3252, '2005-06-21 03:25:26', 2009, 213, '2005-06-24 00:38:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3253, '2005-06-21 03:25:37', 1906, 405, '2005-06-27 02:46:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3254, '2005-06-21 03:27:10', 3893, 472, '2005-06-22 22:01:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3255, '2005-06-21 03:39:52', 2564, 482, '2005-06-24 04:02:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3256, '2005-06-21 03:45:42', 1235, 319, '2005-06-30 02:51:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3257, '2005-06-21 03:47:19', 3975, 263, '2005-06-28 01:24:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3258, '2005-06-21 03:53:58', 4417, 241, '2005-06-22 22:49:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3259, '2005-06-21 03:57:15', 2751, 478, '2005-06-24 03:32:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3260, '2005-06-21 03:59:13', 3627, 380, '2005-06-23 03:29:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3261, '2005-06-21 04:07:41', 2029, 169, '2005-06-24 06:25:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3262, '2005-06-21 04:08:43', 3773, 9, '2005-06-28 02:55:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3263, '2005-06-21 04:15:52', 3491, 118, '2005-06-24 02:19:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3264, '2005-06-21 04:19:03', 1666, 340, '2005-06-23 01:29:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3265, '2005-06-21 04:23:13', 3637, 437, '2005-06-28 03:37:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3266, '2005-06-21 04:49:07', 2533, 175, '2005-06-26 05:19:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3267, '2005-06-21 04:55:21', 1118, 134, '2005-06-29 23:46:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3268, '2005-06-21 04:55:49', 4366, 329, '2005-06-30 00:23:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3269, '2005-06-21 05:06:30', 3828, 17, '2005-06-27 09:26:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3270, '2005-06-21 05:07:31', 1578, 86, '2005-06-22 07:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3271, '2005-06-21 05:16:10', 4191, 196, '2005-06-27 10:46:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3272, '2005-06-21 05:18:27', 1090, 550, '2005-06-30 02:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3273, '2005-06-21 05:24:17', 3538, 104, '2005-06-23 01:21:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3274, '2005-06-21 05:30:36', 2156, 277, '2005-06-24 05:12:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3275, '2005-06-21 05:33:04', 2320, 368, '2005-06-30 00:37:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3276, '2005-06-21 05:35:52', 1890, 425, '2005-06-29 03:26:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3277, '2005-06-21 05:36:37', 1330, 229, '2005-06-29 10:54:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3278, '2005-06-21 05:41:30', 2832, 554, '2005-06-22 03:43:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3279, '2005-06-21 06:05:53', 1672, 462, '2005-06-25 09:40:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3280, '2005-06-21 06:08:12', 661, 229, '2005-06-24 09:34:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3281, '2005-06-21 06:08:47', 4006, 363, '2005-06-24 11:22:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3282, '2005-06-21 06:18:42', 1676, 224, '2005-06-28 09:18:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3283, '2005-06-21 06:19:07', 3988, 372, '2005-06-26 10:59:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3284, '2005-06-21 06:24:45', 4566, 1, '2005-06-28 03:28:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3285, '2005-06-21 06:30:13', 948, 481, '2005-06-23 10:31:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3286, '2005-06-21 06:31:29', 742, 577, '2005-06-25 00:46:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3287, '2005-06-21 06:32:39', 4406, 62, '2005-06-24 09:29:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3288, '2005-06-21 06:36:59', 1961, 299, '2005-06-30 06:50:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3289, '2005-06-21 06:41:48', 2248, 115, '2005-06-30 00:54:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3290, '2005-06-21 06:45:34', 2727, 293, '2005-06-28 09:44:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3291, '2005-06-21 06:55:36', 3866, 274, '2005-06-29 03:41:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3292, '2005-06-21 06:59:11', 3288, 412, '2005-06-23 07:11:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3293, '2005-06-21 06:59:33', 4407, 481, '2005-06-25 06:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3294, '2005-06-21 07:03:23', 2390, 439, '2005-06-30 02:22:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3295, '2005-06-21 07:04:17', 1703, 573, '2005-06-29 01:52:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3296, '2005-06-21 07:04:53', 2453, 284, '2005-06-25 08:36:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3297, '2005-06-21 07:08:19', 3969, 193, '2005-06-28 11:53:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3298, '2005-06-21 07:09:44', 444, 492, '2005-06-30 11:26:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3299, '2005-06-21 07:23:34', 3427, 199, '2005-06-27 04:02:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3300, '2005-06-21 07:25:01', 2505, 565, '2005-06-25 01:47:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3301, '2005-06-21 07:32:25', 503, 444, '2005-06-28 06:26:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3302, '2005-06-21 07:33:40', 562, 594, '2005-06-29 06:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3303, '2005-06-21 07:34:14', 1565, 361, '2005-06-26 13:18:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3304, '2005-06-21 07:43:40', 2154, 431, '2005-06-27 08:06:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3305, '2005-06-21 07:46:57', 2811, 578, '2005-06-27 06:16:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3306, '2005-06-21 07:46:58', 1669, 406, '2005-06-26 11:22:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3307, '2005-06-21 07:52:30', 462, 85, '2005-06-25 02:36:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3308, '2005-06-21 07:58:36', 3129, 96, '2005-06-23 05:23:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3309, '2005-06-21 08:00:49', 248, 463, '2005-06-29 04:11:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3310, '2005-06-21 08:04:51', 1717, 395, '2005-06-22 04:20:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3311, '2005-06-21 08:05:27', 3438, 518, '2005-06-22 06:51:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3312, '2005-06-21 08:05:32', 1008, 554, '2005-06-27 03:34:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3313, '2005-06-21 08:11:18', 4267, 213, '2005-06-23 04:28:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3314, '2005-06-21 08:17:00', 4332, 185, '2005-06-22 06:00:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3315, '2005-06-21 08:17:04', 4108, 438, '2005-06-24 11:04:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3316, '2005-06-21 08:20:18', 3271, 451, '2005-06-28 07:44:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3317, '2005-06-21 08:22:32', 4095, 584, '2005-06-26 14:18:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3318, '2005-06-21 08:23:05', 1111, 414, '2005-06-27 14:07:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3319, '2005-06-21 08:25:46', 2482, 461, '2005-06-27 03:54:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3320, '2005-06-21 08:29:41', 860, 47, '2005-06-29 13:54:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3321, '2005-06-21 08:33:26', 1750, 144, '2005-06-24 10:09:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3322, '2005-06-21 08:42:37', 4324, 458, '2005-06-22 13:17:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3323, '2005-06-21 08:45:33', 2252, 272, '2005-06-28 08:17:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3324, '2005-06-21 08:49:16', 2830, 29, '2005-06-22 12:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3325, '2005-06-21 08:51:44', 1720, 185, '2005-06-27 06:16:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3326, '2005-06-21 09:04:50', 1025, 347, '2005-06-30 12:10:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3327, '2005-06-21 09:04:50', 3083, 62, '2005-06-30 05:45:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3328, '2005-06-21 09:08:44', 2462, 292, '2005-06-30 12:28:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3329, '2005-06-21 09:20:31', 3506, 335, '2005-06-22 10:00:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3330, '2005-06-21 09:22:37', 299, 294, '2005-06-23 07:16:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3331, '2005-06-21 09:37:53', 2913, 352, '2005-06-26 04:01:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3332, '2005-06-21 09:55:12', 1975, 82, '2005-06-25 08:32:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3333, '2005-06-21 10:01:36', 3688, 111, '2005-06-25 10:27:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3334, '2005-06-21 10:04:33', 2491, 66, '2005-06-29 06:09:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3335, '2005-06-21 10:09:08', 3033, 339, '2005-06-27 11:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3336, '2005-06-21 10:14:27', 2122, 173, '2005-06-22 09:29:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3337, '2005-06-21 10:24:35', 1176, 318, '2005-06-22 13:51:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3338, '2005-06-21 10:27:31', 2097, 171, '2005-06-30 14:15:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3339, '2005-06-21 10:37:11', 312, 526, '2005-06-30 05:04:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3340, '2005-06-21 10:37:23', 2962, 540, '2005-06-26 07:21:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3341, '2005-06-21 10:37:25', 2189, 591, '2005-06-26 15:38:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3342, '2005-06-21 10:46:36', 2884, 196, '2005-06-23 09:46:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3343, '2005-06-21 10:56:59', 2038, 466, '2005-06-25 16:41:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3344, '2005-06-21 10:57:27', 4401, 277, '2005-06-28 10:53:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3345, '2005-06-21 11:05:07', 4442, 71, '2005-06-26 15:14:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3346, '2005-06-21 11:06:53', 4393, 189, '2005-06-22 15:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3347, '2005-06-21 11:08:32', 4330, 448, '2005-06-28 09:59:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3348, '2005-06-21 11:16:42', 2945, 16, '2005-06-27 13:50:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3349, '2005-06-21 11:17:35', 3885, 336, '2005-06-22 12:51:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3350, '2005-06-21 11:21:38', 3221, 20, '2005-06-28 15:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3351, '2005-06-21 11:21:39', 1591, 386, '2005-06-23 07:23:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3352, '2005-06-21 11:26:29', 578, 510, '2005-06-28 07:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3353, '2005-06-21 11:29:23', 3984, 236, '2005-06-27 15:06:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3354, '2005-06-21 11:29:49', 1083, 529, '2005-06-25 07:39:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3355, '2005-06-21 11:30:47', 1960, 275, '2005-06-23 06:04:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3356, '2005-06-21 11:38:45', 4532, 403, '2005-06-26 17:18:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3357, '2005-06-21 11:55:42', 2528, 57, '2005-06-22 07:19:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3358, '2005-06-21 11:56:40', 1772, 69, '2005-06-26 08:28:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3359, '2005-06-21 12:08:18', 3825, 67, '2005-06-25 16:35:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3360, '2005-06-21 12:12:41', 2792, 498, '2005-06-26 06:32:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3361, '2005-06-21 12:14:23', 2671, 268, '2005-06-26 10:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3362, '2005-06-21 12:19:54', 1284, 454, '2005-06-23 06:59:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3363, '2005-06-21 12:25:07', 538, 261, '2005-06-27 11:52:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3364, '2005-06-21 12:37:46', 2329, 201, '2005-06-28 07:18:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3365, '2005-06-21 12:55:48', 657, 133, '2005-06-23 13:38:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3366, '2005-06-21 13:03:37', 2584, 511, '2005-06-26 16:29:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3367, '2005-06-21 13:08:21', 2442, 80, '2005-06-26 08:43:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3368, '2005-06-21 13:18:38', 548, 438, '2005-06-23 11:13:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3369, '2005-06-21 13:20:31', 303, 431, '2005-06-30 13:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3370, '2005-06-21 13:27:01', 1573, 559, '2005-06-25 09:27:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3371, '2005-06-21 13:27:22', 2526, 595, '2005-06-29 14:04:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3372, '2005-06-21 13:34:19', 4169, 346, '2005-06-27 08:41:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3373, '2005-06-21 13:35:32', 2219, 316, '2005-06-30 12:03:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3374, '2005-06-21 13:36:30', 1067, 279, '2005-06-23 15:10:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3375, '2005-06-21 13:37:18', 912, 279, '2005-06-22 11:26:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3376, '2005-06-21 13:43:02', 3055, 318, '2005-06-28 18:07:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3377, '2005-06-21 13:51:12', 1845, 428, '2005-06-22 18:16:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3378, '2005-06-21 13:51:28', 35, 387, '2005-06-25 09:21:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3379, '2005-06-21 13:54:58', 2022, 566, '2005-06-23 13:43:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3380, '2005-06-21 13:58:46', 3212, 483, '2005-06-30 09:29:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3381, '2005-06-21 14:02:59', 1373, 183, '2005-06-29 18:11:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3382, '2005-06-21 14:05:23', 131, 341, '2005-06-29 19:13:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3383, '2005-06-21 14:07:19', 2968, 239, '2005-06-29 17:00:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3384, '2005-06-21 14:07:35', 409, 91, '2005-06-26 16:34:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3385, '2005-06-21 14:16:48', 2810, 514, '2005-06-24 10:32:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3386, '2005-06-21 14:21:06', 1224, 190, '2005-06-24 08:32:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3387, '2005-06-21 14:21:49', 2709, 305, '2005-06-24 16:46:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3388, '2005-06-21 14:34:51', 556, 119, '2005-06-28 18:19:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3389, '2005-06-21 14:37:55', 727, 395, '2005-06-28 18:13:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3390, '2005-06-21 15:10:50', 2034, 151, '2005-06-26 12:38:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3391, '2005-06-21 15:11:02', 26, 45, '2005-06-25 14:12:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3392, '2005-06-21 15:12:44', 3343, 38, '2005-06-29 18:19:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3393, '2005-06-21 15:14:27', 1631, 362, '2005-06-25 19:54:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3394, '2005-06-21 15:17:39', 3393, 295, '2005-06-30 13:55:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3395, '2005-06-21 15:19:19', 3764, 66, '2005-06-29 14:23:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3396, '2005-06-21 15:23:08', 2744, 371, '2005-06-23 10:25:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3397, '2005-06-21 15:30:11', 602, 552, '2005-06-22 21:12:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3398, '2005-06-21 15:34:38', 221, 599, '2005-06-29 11:23:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3399, '2005-06-21 15:47:48', 619, 98, '2005-06-26 13:46:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3400, '2005-06-21 15:50:30', 1697, 298, '2005-06-25 18:07:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3401, '2005-06-21 15:52:43', 3423, 577, '2005-06-30 21:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3402, '2005-06-21 15:54:37', 596, 187, '2005-06-30 13:43:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3403, '2005-06-21 15:55:06', 1741, 264, '2005-06-27 12:34:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3404, '2005-06-21 15:57:52', 2005, 424, '2005-06-24 20:58:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3405, '2005-06-21 15:58:25', 2344, 155, '2005-06-23 10:58:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3406, '2005-06-21 16:00:18', 2049, 203, '2005-06-23 18:25:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3407, '2005-06-21 16:14:02', 3919, 343, '2005-06-24 15:38:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3408, '2005-06-21 16:15:11', 3453, 282, '2005-06-27 14:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3409, '2005-06-21 16:17:38', 3374, 429, '2005-06-22 14:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3410, '2005-06-21 16:20:47', 1197, 321, '2005-06-24 19:09:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3411, '2005-06-21 16:31:27', 4250, 12, '2005-06-28 12:27:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3412, '2005-06-21 16:44:31', 3036, 501, '2005-06-28 16:15:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3413, '2005-06-21 16:57:07', 666, 322, '2005-06-30 12:03:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3414, '2005-06-21 16:58:50', 2929, 226, '2005-06-24 17:26:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3415, '2005-06-21 16:59:49', 3540, 444, '2005-06-27 17:19:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3416, '2005-06-21 17:05:29', 1215, 76, '2005-06-23 17:58:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3417, '2005-06-21 17:06:20', 874, 282, '2005-06-23 17:00:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3418, '2005-06-21 17:06:38', 4115, 85, '2005-06-25 19:43:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3419, '2005-06-21 17:18:01', 4022, 22, '2005-06-22 15:08:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3420, '2005-06-21 17:22:36', 2523, 27, '2005-06-28 12:34:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3421, '2005-06-21 17:22:58', 3930, 346, '2005-06-24 18:57:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3422, '2005-06-21 17:24:40', 2724, 251, '2005-06-29 13:59:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3423, '2005-06-21 17:38:02', 3612, 19, '2005-06-23 19:47:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3424, '2005-06-21 17:42:51', 1279, 583, '2005-06-24 23:22:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3425, '2005-06-21 18:07:07', 4548, 381, '2005-06-27 22:59:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3426, '2005-06-21 18:12:10', 3019, 95, '2005-06-23 18:22:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3427, '2005-06-21 18:31:09', 560, 561, '2005-06-22 14:18:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3428, '2005-06-21 18:39:34', 1959, 40, '2005-06-22 18:23:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3429, '2005-06-21 18:46:05', 456, 599, '2005-06-30 17:28:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3430, '2005-06-21 18:46:08', 1613, 503, '2005-06-22 13:49:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3431, '2005-06-21 18:46:48', 133, 516, '2005-06-26 23:08:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3432, '2005-06-21 19:02:03', 1814, 216, '2005-06-25 00:57:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3433, '2005-06-21 19:07:19', 1077, 228, '2005-06-29 18:01:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3434, '2005-06-21 19:08:28', 2295, 141, '2005-06-23 14:25:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3435, '2005-06-21 19:14:58', 451, 591, '2005-06-24 19:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3436, '2005-06-21 19:16:09', 2740, 137, '2005-06-30 13:58:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3437, '2005-06-21 19:20:17', 1798, 211, '2005-07-01 01:09:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3438, '2005-06-21 19:31:40', 1757, 556, '2005-06-30 19:08:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3439, '2005-06-21 19:36:15', 1529, 46, '2005-06-23 14:54:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3440, '2005-06-21 19:58:18', 853, 491, '2005-06-27 22:08:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3441, '2005-06-21 20:00:12', 2863, 326, '2005-06-24 00:24:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3442, '2005-06-21 20:06:51', 1896, 255, '2005-06-25 17:35:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3443, '2005-06-21 20:19:00', 1639, 377, '2005-06-30 15:39:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3444, '2005-06-21 20:39:39', 493, 45, '2005-06-25 23:44:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3445, '2005-06-21 20:40:28', 2381, 74, '2005-06-29 00:47:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3446, '2005-06-21 20:45:51', 1817, 174, '2005-06-26 17:02:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3447, '2005-06-21 20:53:31', 1146, 25, '2005-06-24 02:20:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3448, '2005-06-21 20:59:20', 592, 476, '2005-06-24 15:40:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3449, '2005-06-21 21:01:27', 210, 181, '2005-06-27 21:20:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3450, '2005-06-21 21:01:57', 2268, 126, '2005-06-25 23:57:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3451, '2005-06-21 21:10:39', 3489, 558, '2005-06-30 19:03:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3452, '2005-06-21 21:11:27', 2646, 293, '2005-06-24 16:31:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3453, '2005-06-21 21:12:11', 842, 278, '2005-06-23 17:39:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3454, '2005-06-21 21:12:13', 3009, 524, '2005-06-25 23:23:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3455, '2005-06-21 21:17:51', 4403, 340, '2005-06-23 17:22:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3456, '2005-06-21 21:19:47', 1119, 150, '2005-06-28 18:18:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3457, '2005-06-21 21:42:33', 883, 312, '2005-06-30 19:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3458, '2005-06-21 21:42:49', 2136, 338, '2005-06-29 01:26:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3459, '2005-06-21 21:45:47', 3080, 97, '2005-06-25 00:46:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3460, '2005-06-21 21:46:56', 1765, 236, '2005-06-29 20:08:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3461, '2005-06-21 21:49:18', 1715, 23, '2005-06-26 19:51:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3462, '2005-06-21 21:52:52', 547, 568, '2005-06-28 21:41:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3463, '2005-06-21 22:00:00', 3436, 96, '2005-06-22 19:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3464, '2005-06-21 22:08:58', 2698, 251, '2005-06-26 16:23:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3465, '2005-06-21 22:10:01', 1488, 510, '2005-06-30 21:35:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3466, '2005-06-21 22:13:33', 371, 226, '2005-06-25 21:01:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3467, '2005-06-21 22:19:25', 729, 543, '2005-06-27 00:03:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3468, '2005-06-21 22:43:45', 2899, 100, '2005-06-30 01:49:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3469, '2005-06-21 22:48:59', 4087, 181, '2005-06-28 19:32:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3470, '2005-07-05 22:49:24', 883, 565, '2005-07-07 19:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3471, '2005-07-05 22:51:44', 1724, 242, '2005-07-13 01:38:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3472, '2005-07-05 22:56:33', 841, 37, '2005-07-13 17:18:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3473, '2005-07-05 22:57:34', 2735, 60, '2005-07-12 23:53:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3474, '2005-07-05 22:59:53', 97, 594, '2005-07-08 20:32:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3475, '2005-07-05 23:01:21', 2189, 8, '2005-07-13 23:07:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3476, '2005-07-05 23:02:37', 3011, 490, '2005-07-10 22:17:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3477, '2005-07-05 23:05:17', 4289, 476, '2005-07-15 02:20:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3478, '2005-07-05 23:05:44', 2528, 322, '2005-07-07 00:14:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3479, '2005-07-05 23:08:53', 2277, 298, '2005-07-11 21:42:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3480, '2005-07-05 23:11:43', 1488, 382, '2005-07-12 02:01:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3481, '2005-07-05 23:13:07', 3575, 138, '2005-07-07 20:36:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3482, '2005-07-05 23:13:22', 1291, 520, '2005-07-12 19:02:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3483, '2005-07-05 23:13:51', 79, 536, '2005-07-13 18:31:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3484, '2005-07-05 23:23:11', 1934, 114, '2005-07-11 00:27:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3485, '2005-07-05 23:25:54', 117, 111, '2005-07-09 17:38:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3486, '2005-07-05 23:29:55', 4067, 296, '2005-07-13 19:54:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3487, '2005-07-05 23:30:36', 1575, 586, '2005-07-11 04:00:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3488, '2005-07-05 23:32:49', 898, 349, '2005-07-15 02:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3489, '2005-07-05 23:33:40', 2936, 397, '2005-07-15 02:15:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3490, '2005-07-05 23:37:13', 3041, 369, '2005-07-12 22:07:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3491, '2005-07-05 23:41:08', 1835, 421, '2005-07-13 21:53:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3492, '2005-07-05 23:44:37', 980, 142, '2005-07-14 03:54:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3493, '2005-07-05 23:46:19', 473, 169, '2005-07-15 02:31:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3494, '2005-07-05 23:47:30', 3149, 348, '2005-07-11 18:10:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3495, '2005-07-05 23:50:04', 2306, 553, '2005-07-10 01:06:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3496, '2005-07-05 23:59:15', 2430, 295, '2005-07-09 19:39:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3497, '2005-07-06 00:00:03', 1970, 299, '2005-07-09 01:27:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3498, '2005-07-06 00:02:08', 1869, 444, '2005-07-10 00:19:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3499, '2005-07-06 00:04:20', 1850, 520, '2005-07-14 21:12:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3500, '2005-07-06 00:11:13', 2447, 32, '2005-07-13 19:01:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3501, '2005-07-06 00:11:28', 2219, 270, '2005-07-10 20:32:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3502, '2005-07-06 00:15:06', 1026, 126, '2005-07-13 01:35:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3503, '2005-07-06 00:17:24', 2944, 449, '2005-07-08 03:47:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3504, '2005-07-06 00:18:29', 268, 209, '2005-07-10 00:24:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3505, '2005-07-06 00:19:32', 2630, 331, '2005-07-14 20:14:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3506, '2005-07-06 00:22:29', 19, 459, '2005-07-07 22:15:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3507, '2005-07-06 00:23:43', 166, 480, '2005-07-15 04:19:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3508, '2005-07-06 00:24:25', 2381, 34, '2005-07-10 05:38:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3509, '2005-07-06 00:24:57', 4394, 182, '2005-07-09 18:48:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3510, '2005-07-06 00:27:41', 2250, 443, '2005-07-14 23:20:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3511, '2005-07-06 00:42:01', 2128, 494, '2005-07-09 23:08:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3512, '2005-07-06 00:43:06', 371, 291, '2005-07-12 06:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3513, '2005-07-06 00:45:57', 4225, 223, '2005-07-11 19:04:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3514, '2005-07-06 00:46:54', 4546, 536, '2005-07-09 05:47:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3515, '2005-07-06 00:48:55', 3220, 131, '2005-07-09 00:15:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3516, '2005-07-06 00:50:30', 385, 338, '2005-07-09 19:12:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3517, '2005-07-06 00:52:35', 2762, 314, '2005-07-08 20:10:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3518, '2005-07-06 00:56:03', 2502, 167, '2005-07-14 02:27:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3519, '2005-07-06 00:57:29', 4314, 320, '2005-07-10 21:12:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3520, '2005-07-06 00:58:27', 2872, 102, '2005-07-14 05:56:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3521, '2005-07-06 01:00:11', 1440, 262, '2005-07-11 19:15:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3522, '2005-07-06 01:00:21', 4522, 469, '2005-07-11 01:18:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3523, '2005-07-06 01:01:38', 2171, 549, '2005-07-10 20:24:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3524, '2005-07-06 01:01:51', 1626, 88, '2005-07-11 19:52:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3525, '2005-07-06 01:02:39', 208, 51, '2005-07-14 02:27:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3526, '2005-07-06 01:03:29', 3871, 469, '2005-07-15 01:22:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3527, '2005-07-06 01:11:08', 4537, 389, '2005-07-08 01:21:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3528, '2005-07-06 01:13:27', 1954, 201, '2005-07-06 23:45:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3529, '2005-07-06 01:15:26', 4316, 350, '2005-07-07 04:28:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3530, '2005-07-06 01:22:45', 4542, 168, '2005-07-10 03:23:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3531, '2005-07-06 01:24:08', 1890, 165, '2005-07-11 22:00:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3532, '2005-07-06 01:24:38', 2635, 274, '2005-07-11 06:42:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3533, '2005-07-06 01:26:44', 2028, 206, '2005-07-14 21:37:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3534, '2005-07-06 01:32:27', 2055, 283, '2005-07-08 23:14:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3535, '2005-07-06 01:32:46', 4214, 65, '2005-07-11 03:15:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3536, '2005-07-06 01:36:11', 2328, 339, '2005-07-12 20:00:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3537, '2005-07-06 01:36:53', 4220, 479, '2005-07-13 07:01:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3538, '2005-07-06 01:37:07', 4361, 228, '2005-07-11 06:02:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3539, '2005-07-06 01:39:08', 4081, 444, '2005-07-07 05:38:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3540, '2005-07-06 01:47:20', 1295, 97, '2005-07-08 23:48:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3541, '2005-07-06 01:50:11', 1204, 501, '2005-07-12 03:24:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3542, '2005-07-06 01:51:42', 4391, 593, '2005-07-11 03:29:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3543, '2005-07-06 02:01:08', 3997, 394, '2005-07-07 03:14:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3544, '2005-07-06 02:06:32', 3098, 115, '2005-07-09 04:35:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3545, '2005-07-06 02:16:17', 3924, 442, '2005-07-11 00:54:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3546, '2005-07-06 02:17:54', 959, 594, '2005-07-07 00:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3547, '2005-07-06 02:18:06', 2730, 239, '2005-07-08 05:24:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3548, '2005-07-06 02:23:39', 4498, 16, '2005-07-08 07:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3549, '2005-07-06 02:24:55', 3921, 19, '2005-07-06 21:40:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3550, '2005-07-06 02:29:21', 2417, 15, '2005-07-13 05:26:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3551, '2005-07-06 02:33:48', 3602, 111, '2005-07-13 04:38:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3552, '2005-07-06 02:34:09', 1099, 239, '2005-07-12 05:31:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3553, '2005-07-06 02:35:41', 4510, 422, '2005-07-08 06:38:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3554, '2005-07-06 02:37:10', 793, 538, '2005-07-09 01:58:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3555, '2005-07-06 02:45:35', 869, 537, '2005-07-10 07:17:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3556, '2005-07-06 02:46:13', 3142, 273, '2005-07-06 22:08:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3557, '2005-07-06 02:48:39', 3832, 292, '2005-07-08 22:52:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3558, '2005-07-06 02:49:06', 1742, 575, '2005-07-15 01:38:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3559, '2005-07-06 02:49:42', 2211, 483, '2005-07-12 04:44:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3560, '2005-07-06 02:51:37', 888, 592, '2005-07-10 01:35:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3561, '2005-07-06 02:54:33', 213, 231, '2005-07-14 07:44:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3562, '2005-07-06 02:54:36', 1660, 587, '2005-07-11 05:48:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3563, '2005-07-06 02:57:01', 4261, 210, '2005-07-14 02:25:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3564, '2005-07-06 03:02:13', 1096, 402, '2005-07-13 01:41:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3565, '2005-07-06 03:02:58', 599, 97, '2005-07-13 21:31:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3566, '2005-07-06 03:08:51', 2774, 392, '2005-07-12 05:04:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3567, '2005-07-06 03:09:36', 27, 355, '2005-07-12 02:15:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3568, '2005-07-06 03:11:57', 2084, 283, '2005-07-15 03:14:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3569, '2005-07-06 03:17:23', 1929, 496, '2005-07-14 03:58:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3570, '2005-07-06 03:23:43', 1300, 450, '2005-07-14 07:28:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3571, '2005-07-06 03:32:31', 4166, 580, '2005-07-11 06:15:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3572, '2005-07-06 03:33:23', 1915, 284, '2005-07-08 07:54:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3573, '2005-07-06 03:33:48', 146, 66, '2005-07-07 22:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3574, '2005-07-06 03:36:01', 2799, 225, '2005-07-10 01:29:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3575, '2005-07-06 03:36:19', 3234, 49, '2005-07-08 06:21:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3576, '2005-07-06 03:40:01', 324, 227, '2005-07-15 07:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3577, '2005-07-06 03:40:36', 4390, 152, '2005-07-10 05:54:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3578, '2005-07-06 03:47:05', 2954, 263, '2005-07-08 02:26:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3579, '2005-07-06 03:47:47', 3309, 485, '2005-07-08 02:16:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3580, '2005-07-06 03:48:44', 3837, 200, '2005-07-13 01:15:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3581, '2005-07-06 03:57:35', 4520, 235, '2005-07-07 08:07:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3582, '2005-07-06 04:10:35', 1866, 297, '2005-07-11 01:29:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3583, '2005-07-06 04:10:43', 204, 574, '2005-07-14 22:17:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3584, '2005-07-06 04:16:43', 367, 207, '2005-07-13 07:08:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3585, '2005-07-06 04:22:36', 2726, 266, '2005-07-09 06:16:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3586, '2005-07-06 04:24:42', 616, 493, '2005-07-09 02:37:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3587, '2005-07-06 04:27:52', 462, 110, '2005-07-13 08:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3588, '2005-07-06 04:29:13', 3154, 289, '2005-07-07 23:49:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3589, '2005-07-06 04:30:18', 3740, 137, '2005-07-10 09:18:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3590, '2005-07-06 04:35:12', 1510, 283, '2005-07-10 05:14:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3591, '2005-07-06 04:37:10', 1241, 53, '2005-07-09 23:32:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3592, '2005-07-06 04:38:50', 1272, 286, '2005-07-15 06:36:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3593, '2005-07-06 04:39:52', 619, 78, '2005-07-11 23:20:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3594, '2005-07-06 04:42:47', 4566, 522, '2005-07-10 00:49:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3595, '2005-07-06 04:59:49', 1431, 92, '2005-07-15 06:26:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3596, '2005-07-06 05:03:11', 594, 419, '2005-07-07 05:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3597, '2005-07-06 05:03:59', 4080, 35, '2005-07-13 06:49:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3598, '2005-07-06 05:11:04', 1317, 68, '2005-07-09 02:03:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3599, '2005-07-06 05:16:36', 3262, 577, '2005-07-13 07:14:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3600, '2005-07-06 05:19:42', 2748, 511, '2005-07-11 00:34:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3601, '2005-07-06 05:20:25', 2806, 205, '2005-07-15 03:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3602, '2005-07-06 05:23:10', 2192, 100, '2005-07-15 03:22:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3603, '2005-07-06 05:25:03', 2442, 330, '2005-07-12 08:14:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3604, '2005-07-06 05:25:22', 1380, 242, '2005-07-07 23:52:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3605, '2005-07-06 05:27:15', 384, 347, '2005-07-10 00:05:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3606, '2005-07-06 05:28:02', 1737, 166, '2005-07-10 04:51:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3607, '2005-07-06 05:30:09', 542, 335, '2005-07-08 01:36:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3608, '2005-07-06 05:35:39', 3095, 368, '2005-07-10 07:46:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3609, '2005-07-06 05:36:22', 1064, 373, '2005-07-10 05:55:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3610, '2005-07-06 05:36:59', 1509, 348, '2005-07-13 07:07:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3611, '2005-07-06 05:37:18', 4502, 86, '2005-07-10 05:14:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3612, '2005-07-06 05:37:26', 2465, 402, '2005-07-14 01:51:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3613, '2005-07-06 05:45:53', 3776, 331, '2005-07-07 10:02:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3614, '2005-07-06 05:46:05', 853, 502, '2005-07-11 01:24:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3615, '2005-07-06 05:47:47', 711, 49, '2005-07-11 05:01:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3616, '2005-07-06 05:52:13', 557, 571, '2005-07-10 10:24:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3617, '2005-07-06 05:58:06', 1337, 125, '2005-07-13 02:10:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3618, '2005-07-06 05:58:45', 330, 264, '2005-07-15 09:13:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3619, '2005-07-06 05:59:44', 3350, 526, '2005-07-11 08:58:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3620, '2005-07-06 06:01:50', 1661, 88, '2005-07-08 05:04:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3621, '2005-07-06 06:03:55', 3132, 171, '2005-07-11 09:25:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3622, '2005-07-06 06:05:04', 3489, 454, '2005-07-12 03:14:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3623, '2005-07-06 06:05:23', 430, 80, '2005-07-07 05:59:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3624, '2005-07-06 06:06:27', 1778, 115, '2005-07-13 08:30:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3625, '2005-07-06 06:12:52', 1133, 175, '2005-07-12 07:37:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3626, '2005-07-06 06:15:35', 1599, 337, '2005-07-10 10:18:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3627, '2005-07-06 06:19:25', 1087, 322, '2005-07-11 05:53:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3628, '2005-07-06 06:19:43', 3509, 588, '2005-07-07 02:23:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3629, '2005-07-06 06:23:22', 4019, 441, '2005-07-08 09:32:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3630, '2005-07-06 06:27:15', 2448, 102, '2005-07-12 10:36:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3631, '2005-07-06 06:36:53', 4068, 47, '2005-07-07 10:32:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3632, '2005-07-06 06:38:21', 2583, 366, '2005-07-11 03:19:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3633, '2005-07-06 06:43:26', 2978, 95, '2005-07-10 04:54:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3634, '2005-07-06 06:51:14', 3688, 245, '2005-07-10 02:30:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3635, '2005-07-06 06:55:36', 421, 250, '2005-07-09 07:57:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3636, '2005-07-06 07:03:52', 3379, 591, '2005-07-08 03:14:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3637, '2005-07-06 07:06:31', 3823, 380, '2005-07-10 02:11:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3638, '2005-07-06 07:08:17', 190, 452, '2005-07-13 12:30:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3639, '2005-07-06 07:09:17', 2812, 7, '2005-07-15 05:12:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3640, '2005-07-06 07:12:26', 3432, 271, '2005-07-10 04:54:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3641, '2005-07-06 07:17:09', 3834, 79, '2005-07-11 07:25:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3642, '2005-07-06 07:18:20', 4204, 166, '2005-07-09 01:37:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3643, '2005-07-06 07:20:08', 845, 176, '2005-07-11 07:01:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3644, '2005-07-06 07:20:11', 4309, 403, '2005-07-11 10:26:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3645, '2005-07-06 07:22:09', 3390, 236, '2005-07-10 11:45:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3646, '2005-07-06 07:28:59', 3591, 322, '2005-07-11 05:19:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3647, '2005-07-06 07:29:17', 3762, 145, '2005-07-13 08:32:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3648, '2005-07-06 07:30:41', 2810, 598, '2005-07-10 06:00:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3649, '2005-07-06 07:32:42', 3564, 24, '2005-07-12 09:37:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3650, '2005-07-06 07:34:15', 3606, 482, '2005-07-08 01:50:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3651, '2005-07-06 07:40:31', 3323, 170, '2005-07-08 03:39:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3652, '2005-07-06 07:44:30', 1231, 518, '2005-07-08 04:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3653, '2005-07-06 07:45:13', 2513, 148, '2005-07-10 11:51:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3654, '2005-07-06 07:45:31', 1621, 528, '2005-07-12 09:59:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3655, '2005-07-06 07:52:54', 1540, 493, '2005-07-15 10:49:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3656, '2005-07-06 07:55:22', 4544, 314, '2005-07-13 10:36:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3657, '2005-07-06 07:55:30', 4134, 113, '2005-07-11 07:18:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3658, '2005-07-06 08:01:08', 3453, 253, '2005-07-15 06:36:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3659, '2005-07-06 08:03:14', 2271, 330, '2005-07-12 09:50:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3660, '2005-07-06 08:07:29', 1129, 507, '2005-07-14 08:46:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3661, '2005-07-06 08:10:02', 2600, 442, '2005-07-10 10:17:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3662, '2005-07-06 08:11:48', 3827, 334, '2005-07-09 12:25:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3663, '2005-07-06 08:15:47', 2646, 566, '2005-07-07 08:57:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3664, '2005-07-06 08:15:57', 3366, 528, '2005-07-08 06:11:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3665, '2005-07-06 08:23:08', 922, 102, '2005-07-13 13:38:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3666, '2005-07-06 08:27:43', 4212, 347, '2005-07-09 07:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3667, '2005-07-06 08:36:34', 447, 373, '2005-07-15 04:25:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3668, '2005-07-06 08:36:48', 269, 514, '2005-07-10 11:31:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3669, '2005-07-06 08:38:29', 1299, 530, '2005-07-10 05:28:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3670, '2005-07-06 08:56:43', 4271, 268, '2005-07-11 09:11:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3671, '2005-07-06 09:01:29', 2821, 179, '2005-07-15 08:08:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3672, '2005-07-06 09:01:56', 3883, 283, '2005-07-11 14:18:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3673, '2005-07-06 09:02:09', 1837, 88, '2005-07-15 06:45:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3674, '2005-07-06 09:03:13', 3686, 559, '2005-07-13 08:43:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3675, '2005-07-06 09:09:19', 3662, 282, '2005-07-12 08:51:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3676, '2005-07-06 09:10:37', 1967, 137, '2005-07-14 08:24:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3677, '2005-07-06 09:11:58', 600, 5, '2005-07-08 10:50:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3678, '2005-07-06 09:15:15', 3861, 364, '2005-07-10 05:01:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3679, '2005-07-06 09:15:57', 2186, 547, '2005-07-08 03:20:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3680, '2005-07-06 09:16:10', 2427, 82, '2005-07-08 07:52:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3681, '2005-07-06 09:19:30', 3325, 294, '2005-07-11 09:40:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3682, '2005-07-06 09:22:48', 2597, 98, '2005-07-14 11:17:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3683, '2005-07-06 09:25:56', 3020, 43, '2005-07-14 12:10:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3684, '2005-07-06 09:29:22', 3261, 395, '2005-07-12 08:19:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3685, '2005-07-06 09:30:45', 2015, 58, '2005-07-11 15:16:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3686, '2005-07-06 09:37:50', 376, 548, '2005-07-09 10:15:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3687, '2005-07-06 09:38:33', 2040, 207, '2005-07-14 07:50:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3688, '2005-07-06 09:41:53', 1102, 380, '2005-07-14 10:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3689, '2005-07-06 09:43:01', 3168, 129, '2005-07-11 09:57:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3690, '2005-07-06 09:46:03', 4405, 435, '2005-07-07 12:12:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3691, '2005-07-06 09:46:12', 1937, 478, '2005-07-07 14:08:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3692, '2005-07-06 09:54:12', 1237, 286, '2005-07-11 09:42:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3693, '2005-07-06 09:56:09', 2989, 545, '2005-07-15 06:50:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3694, '2005-07-06 10:01:23', 3848, 419, '2005-07-08 11:44:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3695, '2005-07-06 10:02:08', 2823, 441, '2005-07-09 15:43:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3696, '2005-07-06 10:04:55', 3244, 497, '2005-07-11 15:58:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3697, '2005-07-06 10:07:22', 1223, 182, '2005-07-13 14:04:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3698, '2005-07-06 10:09:20', 1263, 461, '2005-07-08 15:49:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3699, '2005-07-06 10:11:25', 418, 262, '2005-07-14 05:18:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3700, '2005-07-06 10:12:19', 343, 72, '2005-07-07 14:21:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3701, '2005-07-06 10:12:45', 3679, 31, '2005-07-09 08:52:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3702, '2005-07-06 10:13:56', 2204, 428, '2005-07-10 08:12:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3703, '2005-07-06 10:15:26', 4276, 421, '2005-07-13 13:00:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3704, '2005-07-06 10:16:45', 2687, 323, '2005-07-13 12:44:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3705, '2005-07-06 10:17:59', 65, 223, '2005-07-10 15:31:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3706, '2005-07-06 10:18:01', 681, 132, '2005-07-09 09:07:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3707, '2005-07-06 10:21:49', 1080, 14, '2005-07-12 05:14:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3708, '2005-07-06 10:23:27', 2105, 201, '2005-07-14 09:26:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3709, '2005-07-06 10:26:56', 4033, 187, '2005-07-15 13:51:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3710, '2005-07-06 10:28:53', 2596, 228, '2005-07-15 06:17:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3711, '2005-07-06 10:46:15', 1914, 75, '2005-07-07 09:25:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3712, '2005-07-06 10:47:35', 3741, 504, '2005-07-15 09:39:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3713, '2005-07-06 10:49:30', 1823, 504, '2005-07-13 10:44:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3714, '2005-07-06 10:51:28', 1985, 276, '2005-07-09 13:57:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3715, '2005-07-06 10:51:48', 4456, 228, '2005-07-11 06:08:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3716, '2005-07-06 10:52:32', 3271, 92, '2005-07-14 08:45:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3717, '2005-07-06 10:53:34', 1677, 173, '2005-07-07 13:43:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3718, '2005-07-06 10:57:56', 2624, 56, '2005-07-12 12:54:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3719, '2005-07-06 11:05:55', 3573, 376, '2005-07-11 08:10:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3720, '2005-07-06 11:06:57', 2958, 96, '2005-07-09 14:16:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3721, '2005-07-06 11:10:09', 2654, 226, '2005-07-11 07:45:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3722, '2005-07-06 11:10:27', 604, 83, '2005-07-13 12:56:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3723, '2005-07-06 11:12:02', 4554, 501, '2005-07-14 16:45:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3724, '2005-07-06 11:12:48', 3622, 468, '2005-07-14 14:41:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3725, '2005-07-06 11:15:04', 2789, 126, '2005-07-09 06:39:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3726, '2005-07-06 11:15:49', 742, 363, '2005-07-11 05:54:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3727, '2005-07-06 11:16:43', 2886, 57, '2005-07-07 15:39:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3728, '2005-07-06 11:29:00', 1798, 298, '2005-07-11 06:28:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3729, '2005-07-06 11:30:29', 3156, 90, '2005-07-12 07:18:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3730, '2005-07-06 11:31:24', 1665, 355, '2005-07-15 06:53:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3731, '2005-07-06 11:33:36', 4133, 558, '2005-07-15 12:23:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3732, '2005-07-06 11:33:37', 106, 318, '2005-07-08 08:31:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3733, '2005-07-06 11:33:55', 3242, 586, '2005-07-09 10:08:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3734, '2005-07-06 11:40:27', 4569, 37, '2005-07-14 12:08:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3735, '2005-07-06 11:42:04', 2262, 534, '2005-07-12 14:33:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3736, '2005-07-06 11:43:44', 1515, 23, '2005-07-13 07:55:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3737, '2005-07-06 11:45:53', 123, 403, '2005-07-13 15:27:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3738, '2005-07-06 11:50:57', 578, 546, '2005-07-09 08:07:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3739, '2005-07-06 11:54:18', 4333, 157, '2005-07-09 10:48:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3740, '2005-07-06 11:55:35', 1829, 277, '2005-07-14 09:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3741, '2005-07-06 12:00:18', 1449, 584, '2005-07-12 09:02:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3742, '2005-07-06 12:01:38', 2873, 96, '2005-07-15 10:46:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3743, '2005-07-06 12:03:54', 1012, 456, '2005-07-13 10:56:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3744, '2005-07-06 12:10:02', 3343, 510, '2005-07-08 11:49:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3745, '2005-07-06 12:10:32', 1518, 171, '2005-07-12 15:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3746, '2005-07-06 12:10:51', 3387, 424, '2005-07-07 11:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3747, '2005-07-06 12:11:14', 1093, 437, '2005-07-09 17:14:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3748, '2005-07-06 12:11:22', 2920, 79, '2005-07-12 07:22:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3749, '2005-07-06 12:18:03', 1531, 170, '2005-07-11 07:25:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3750, '2005-07-06 12:19:28', 2422, 103, '2005-07-14 13:16:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3751, '2005-07-06 12:23:41', 3652, 128, '2005-07-10 06:58:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3752, '2005-07-06 12:30:12', 4561, 235, '2005-07-13 12:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3753, '2005-07-06 12:34:06', 774, 358, '2005-07-07 14:19:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3754, '2005-07-06 12:35:44', 4042, 83, '2005-07-08 16:28:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3755, '2005-07-06 12:37:16', 3147, 402, '2005-07-13 07:22:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3756, '2005-07-06 12:40:38', 30, 320, '2005-07-11 09:29:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3757, '2005-07-06 12:42:26', 2816, 66, '2005-07-11 10:30:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3758, '2005-07-06 12:43:11', 2498, 48, '2005-07-14 12:52:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3759, '2005-07-06 12:46:38', 4165, 378, '2005-07-10 11:31:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3760, '2005-07-06 12:49:28', 1306, 330, '2005-07-09 16:29:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3761, '2005-07-06 12:52:44', 4304, 464, '2005-07-08 17:22:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3762, '2005-07-06 12:52:49', 1941, 413, '2005-07-12 11:41:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3763, '2005-07-06 12:56:31', 1573, 189, '2005-07-09 14:49:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3764, '2005-07-06 13:01:03', 3115, 470, '2005-07-13 15:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3765, '2005-07-06 13:01:47', 1805, 547, '2005-07-09 07:10:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3766, '2005-07-06 13:04:35', 4504, 312, '2005-07-07 15:46:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3767, '2005-07-06 13:07:27', 923, 582, '2005-07-08 18:48:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3768, '2005-07-06 13:07:30', 3995, 573, '2005-07-09 16:26:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3769, '2005-07-06 13:11:33', 467, 567, '2005-07-14 17:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3770, '2005-07-06 13:14:28', 3836, 198, '2005-07-13 09:23:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3771, '2005-07-06 13:19:34', 1373, 56, '2005-07-10 10:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3772, '2005-07-06 13:22:53', 434, 338, '2005-07-10 11:54:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3773, '2005-07-06 13:23:34', 2034, 263, '2005-07-08 17:23:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3774, '2005-07-06 13:25:07', 4044, 439, '2005-07-15 12:56:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3775, '2005-07-06 13:27:33', 3696, 300, '2005-07-09 10:27:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3776, '2005-07-06 13:31:37', 4387, 278, '2005-07-10 10:53:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3777, '2005-07-06 13:36:48', 2470, 548, '2005-07-11 14:26:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3778, '2005-07-06 13:44:48', 2181, 122, '2005-07-13 09:31:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3779, '2005-07-06 13:46:36', 634, 583, '2005-07-10 15:49:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3780, '2005-07-06 13:52:02', 1209, 99, '2005-07-15 08:41:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3781, '2005-07-06 13:53:41', 3894, 23, '2005-07-15 10:03:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3782, '2005-07-06 13:57:03', 3365, 515, '2005-07-09 11:13:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3783, '2005-07-06 13:57:31', 2345, 386, '2005-07-14 10:44:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3784, '2005-07-06 13:57:56', 2287, 165, '2005-07-14 17:24:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3785, '2005-07-06 14:00:13', 3279, 577, '2005-07-14 10:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3786, '2005-07-06 14:00:41', 4508, 152, '2005-07-13 16:49:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3787, '2005-07-06 14:02:01', 288, 474, '2005-07-09 19:09:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3788, '2005-07-06 14:02:02', 1363, 379, '2005-07-10 18:24:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3789, '2005-07-06 14:02:26', 3560, 595, '2005-07-14 18:13:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3790, '2005-07-06 14:13:45', 1711, 10, '2005-07-14 13:35:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3791, '2005-07-06 14:24:56', 3426, 452, '2005-07-14 11:06:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3792, '2005-07-06 14:26:38', 2651, 312, '2005-07-11 16:34:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3793, '2005-07-06 14:32:44', 4558, 553, '2005-07-08 13:55:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3794, '2005-07-06 14:35:26', 584, 499, '2005-07-11 14:40:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3795, '2005-07-06 14:37:41', 240, 153, '2005-07-11 20:27:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3796, '2005-07-06 14:45:22', 1649, 228, '2005-07-07 11:01:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3797, '2005-07-06 14:54:52', 1047, 374, '2005-07-10 09:50:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3798, '2005-07-06 14:57:53', 1942, 479, '2005-07-07 10:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3799, '2005-07-06 15:00:14', 4532, 251, '2005-07-10 15:39:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3800, '2005-07-06 15:01:27', 4004, 100, '2005-07-15 11:12:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3801, '2005-07-06 15:05:50', 4209, 68, '2005-07-12 12:56:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3802, '2005-07-06 15:06:09', 1017, 91, '2005-07-08 09:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3803, '2005-07-06 15:06:55', 2062, 494, '2005-07-08 18:53:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3804, '2005-07-06 15:08:08', 537, 126, '2005-07-15 14:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3805, '2005-07-06 15:08:42', 1716, 418, '2005-07-07 14:34:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3806, '2005-07-06 15:09:41', 3555, 154, '2005-07-14 09:14:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3807, '2005-07-06 15:11:44', 39, 425, '2005-07-10 09:20:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3808, '2005-07-06 15:15:35', 4339, 314, '2005-07-07 16:10:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3809, '2005-07-06 15:16:37', 2932, 358, '2005-07-09 14:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3810, '2005-07-06 15:18:44', 342, 296, '2005-07-12 09:52:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3811, '2005-07-06 15:20:37', 695, 208, '2005-07-08 16:26:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3812, '2005-07-06 15:22:19', 4490, 381, '2005-07-08 13:04:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3813, '2005-07-06 15:23:34', 4100, 189, '2005-07-08 19:03:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3814, '2005-07-06 15:23:56', 3826, 306, '2005-07-13 20:51:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3815, '2005-07-06 15:26:36', 4038, 472, '2005-07-11 17:07:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3816, '2005-07-06 15:27:04', 2941, 489, '2005-07-14 13:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3817, '2005-07-06 15:31:45', 2933, 267, '2005-07-11 17:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3818, '2005-07-06 15:33:31', 653, 97, '2005-07-11 16:35:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3819, '2005-07-06 15:35:06', 1814, 74, '2005-07-14 19:08:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3820, '2005-07-06 15:35:26', 4192, 460, '2005-07-11 12:22:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3821, '2005-07-06 15:36:20', 4385, 354, '2005-07-11 20:04:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3822, '2005-07-06 15:41:15', 1314, 241, '2005-07-07 16:41:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3823, '2005-07-06 15:41:27', 124, 265, '2005-07-09 09:48:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3824, '2005-07-06 15:43:15', 3107, 107, '2005-07-13 16:05:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3825, '2005-07-06 15:50:03', 630, 132, '2005-07-09 19:20:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3826, '2005-07-06 15:51:58', 73, 451, '2005-07-13 12:35:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3827, '2005-07-06 15:52:03', 2072, 41, '2005-07-08 21:43:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3828, '2005-07-06 15:57:30', 4493, 498, '2005-07-10 12:17:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3829, '2005-07-06 15:59:40', 4126, 356, '2005-07-11 10:29:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3830, '2005-07-06 16:01:16', 553, 310, '2005-07-15 19:35:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3831, '2005-07-06 16:06:35', 1338, 206, '2005-07-08 15:14:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3832, '2005-07-06 16:12:23', 4499, 233, '2005-07-12 21:29:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3833, '2005-07-06 16:18:28', 3232, 416, '2005-07-14 20:09:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3834, '2005-07-06 16:19:56', 3001, 366, '2005-07-13 11:38:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3835, '2005-07-06 16:22:45', 935, 486, '2005-07-11 17:04:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3836, '2005-07-06 16:26:04', 1148, 351, '2005-07-10 15:08:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3837, '2005-07-06 16:27:43', 3166, 309, '2005-07-07 18:02:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3838, '2005-07-06 16:29:43', 3404, 565, '2005-07-11 20:50:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3839, '2005-07-06 16:30:30', 3230, 231, '2005-07-11 19:00:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3840, '2005-07-06 16:30:59', 4384, 468, '2005-07-15 22:08:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3841, '2005-07-06 16:34:00', 4228, 470, '2005-07-08 15:12:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3842, '2005-07-06 16:34:32', 3119, 583, '2005-07-08 11:55:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3843, '2005-07-06 16:35:40', 3844, 62, '2005-07-07 18:29:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3844, '2005-07-06 16:37:58', 2814, 179, '2005-07-09 19:54:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3845, '2005-07-06 16:38:14', 4495, 28, '2005-07-09 14:59:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3846, '2005-07-06 16:43:10', 2829, 88, '2005-07-14 11:09:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3847, '2005-07-06 16:44:41', 782, 206, '2005-07-07 21:54:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3848, '2005-07-06 16:47:32', 2906, 188, '2005-07-14 15:00:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3849, '2005-07-06 16:49:43', 3660, 60, '2005-07-12 17:20:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3850, '2005-07-06 16:51:21', 1700, 103, '2005-07-12 13:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3851, '2005-07-06 16:54:12', 493, 436, '2005-07-11 22:49:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3852, '2005-07-06 16:57:49', 3329, 511, '2005-07-11 17:11:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3853, '2005-07-06 16:59:20', 1411, 537, '2005-07-07 12:30:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3854, '2005-07-06 17:02:33', 2054, 243, '2005-07-12 17:32:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3855, '2005-07-06 17:03:48', 2931, 46, '2005-07-12 14:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3856, '2005-07-06 17:04:46', 3083, 498, '2005-07-14 19:23:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3857, '2005-07-06 17:07:54', 1135, 236, '2005-07-07 13:28:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3858, '2005-07-06 17:17:57', 829, 377, '2005-07-10 23:10:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3859, '2005-07-06 17:18:15', 2548, 553, '2005-07-09 16:48:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3860, '2005-07-06 17:20:24', 144, 514, '2005-07-09 22:33:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3861, '2005-07-06 17:24:49', 4506, 202, '2005-07-15 22:19:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3862, '2005-07-06 17:35:22', 471, 181, '2005-07-15 17:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3863, '2005-07-06 17:40:18', 363, 481, '2005-07-07 17:58:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3864, '2005-07-06 17:41:42', 2811, 68, '2005-07-08 14:17:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3865, '2005-07-06 17:46:57', 3579, 357, '2005-07-12 12:20:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3866, '2005-07-06 17:47:20', 194, 409, '2005-07-15 18:12:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3867, '2005-07-06 17:52:19', 3620, 580, '2005-07-13 21:48:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3868, '2005-07-06 17:54:13', 1606, 416, '2005-07-10 14:51:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3869, '2005-07-06 17:56:46', 2540, 183, '2005-07-10 20:44:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3870, '2005-07-06 17:57:54', 3357, 12, '2005-07-13 12:30:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3871, '2005-07-06 17:58:51', 3114, 331, '2005-07-15 22:18:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3872, '2005-07-06 18:00:19', 1785, 513, '2005-07-07 17:26:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3873, '2005-07-06 18:03:16', 4148, 394, '2005-07-15 23:58:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3874, '2005-07-06 18:06:12', 1870, 137, '2005-07-12 16:55:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3875, '2005-07-06 18:15:39', 712, 108, '2005-07-11 17:34:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3876, '2005-07-06 18:21:13', 4039, 295, '2005-07-14 16:57:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3877, '2005-07-06 18:22:10', 2796, 576, '2005-07-07 23:38:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3878, '2005-07-06 18:27:09', 4022, 385, '2005-07-15 20:13:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3879, '2005-07-06 18:31:20', 1376, 81, '2005-07-09 19:03:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3880, '2005-07-06 18:32:49', 42, 507, '2005-07-07 20:46:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3881, '2005-07-06 18:35:37', 143, 456, '2005-07-10 00:06:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3882, '2005-07-06 18:38:21', 788, 254, '2005-07-09 14:55:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3883, '2005-07-06 18:39:38', 3238, 69, '2005-07-14 15:59:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3884, '2005-07-06 18:41:33', 1806, 210, '2005-07-07 22:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3885, '2005-07-06 18:43:43', 1820, 282, '2005-07-12 19:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3886, '2005-07-06 18:44:24', 2368, 326, '2005-07-08 15:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3887, '2005-07-06 18:46:34', 1695, 530, '2005-07-07 13:15:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3888, '2005-07-06 18:54:20', 1945, 412, '2005-07-12 17:13:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3889, '2005-07-06 18:56:25', 2005, 576, '2005-07-08 21:22:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3890, '2005-07-06 18:58:15', 2570, 553, '2005-07-10 18:51:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3891, '2005-07-06 18:58:25', 3216, 553, '2005-07-09 23:20:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3892, '2005-07-06 18:58:58', 778, 549, '2005-07-10 19:29:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3893, '2005-07-06 18:59:31', 1281, 350, '2005-07-12 19:21:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3894, '2005-07-06 19:01:39', 2087, 149, '2005-07-12 21:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3895, '2005-07-06 19:04:24', 145, 584, '2005-07-15 17:48:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3896, '2005-07-06 19:09:15', 1755, 309, '2005-07-16 00:52:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3897, '2005-07-06 19:11:43', 14, 277, '2005-07-11 21:50:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3898, '2005-07-06 19:12:37', 3858, 53, '2005-07-11 15:50:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3899, '2005-07-06 19:12:40', 4020, 485, '2005-07-13 23:41:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3900, '2005-07-06 19:21:28', 1497, 129, '2005-07-15 21:06:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3901, '2005-07-06 19:24:55', 3367, 321, '2005-07-14 20:30:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3902, '2005-07-06 19:25:18', 2868, 192, '2005-07-10 17:42:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3903, '2005-07-06 19:27:32', 3614, 369, '2005-07-08 23:27:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3904, '2005-07-06 19:30:57', 3600, 485, '2005-07-11 18:47:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3905, '2005-07-06 19:33:34', 3817, 526, '2005-07-15 17:55:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3906, '2005-07-06 19:35:55', 1383, 293, '2005-07-15 22:35:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3907, '2005-07-06 19:39:14', 2507, 452, '2005-07-11 17:45:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3908, '2005-07-06 19:47:26', 3980, 116, '2005-07-13 19:59:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3909, '2005-07-06 19:54:41', 3423, 396, '2005-07-15 18:11:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3910, '2005-07-06 20:05:18', 2085, 248, '2005-07-10 18:51:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3911, '2005-07-06 20:09:11', 4548, 34, '2005-07-08 23:53:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3912, '2005-07-06 20:10:03', 2449, 154, '2005-07-08 18:39:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3913, '2005-07-06 20:11:00', 752, 494, '2005-07-08 14:42:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3914, '2005-07-06 20:11:10', 4092, 159, '2005-07-14 14:42:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3915, '2005-07-06 20:16:46', 125, 163, '2005-07-10 17:24:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3916, '2005-07-06 20:18:50', 3198, 46, '2005-07-12 21:56:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3917, '2005-07-06 20:19:29', 2747, 471, '2005-07-11 00:49:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3918, '2005-07-06 20:26:15', 1111, 435, '2005-07-15 20:32:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3919, '2005-07-06 20:26:21', 2695, 147, '2005-07-15 00:13:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3920, '2005-07-06 20:26:40', 1551, 321, '2005-07-15 15:00:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3921, '2005-07-06 20:29:48', 949, 531, '2005-07-14 01:44:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3922, '2005-07-06 20:32:27', 2878, 470, '2005-07-14 19:00:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3923, '2005-07-06 20:34:10', 2039, 63, '2005-07-13 19:20:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3924, '2005-07-06 20:38:02', 187, 114, '2005-07-11 23:35:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3925, '2005-07-06 20:41:44', 2653, 428, '2005-07-15 21:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3926, '2005-07-06 20:42:35', 4241, 500, '2005-07-09 16:30:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3927, '2005-07-06 20:48:14', 2194, 404, '2005-07-10 15:37:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3928, '2005-07-06 20:52:09', 1960, 411, '2005-07-08 18:51:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3929, '2005-07-06 20:52:39', 1235, 453, '2005-07-12 00:27:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3930, '2005-07-06 20:54:07', 165, 573, '2005-07-10 18:31:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3931, '2005-07-06 21:03:46', 182, 176, '2005-07-16 01:32:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3932, '2005-07-06 21:06:17', 4396, 490, '2005-07-07 19:25:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3933, '2005-07-06 21:06:37', 1202, 229, '2005-07-08 20:23:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3934, '2005-07-06 21:07:23', 3187, 576, '2005-07-10 18:20:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3935, '2005-07-06 21:08:29', 3402, 503, '2005-07-15 23:28:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3936, '2005-07-06 21:15:03', 4258, 129, '2005-07-08 17:45:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3937, '2005-07-06 21:15:38', 2091, 211, '2005-07-15 00:01:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3938, '2005-07-06 21:15:45', 1991, 341, '2005-07-13 20:02:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3939, '2005-07-06 21:16:32', 3627, 149, '2005-07-11 03:12:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3940, '2005-07-06 21:16:59', 1502, 116, '2005-07-07 19:17:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3941, '2005-07-06 21:20:37', 382, 560, '2005-07-09 01:35:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3942, '2005-07-06 21:21:34', 677, 553, '2005-07-15 02:34:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3943, '2005-07-06 21:22:17', 1816, 566, '2005-07-07 21:26:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3944, '2005-07-06 21:34:11', 4213, 436, '2005-07-08 23:46:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3945, '2005-07-06 21:35:00', 754, 86, '2005-07-08 00:31:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3946, '2005-07-06 21:39:24', 294, 13, '2005-07-11 16:10:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3947, '2005-07-06 21:42:21', 4188, 324, '2005-07-08 19:37:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3948, '2005-07-06 21:45:53', 2254, 161, '2005-07-08 19:24:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3949, '2005-07-06 21:46:36', 1765, 153, '2005-07-11 03:18:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3950, '2005-07-06 21:48:44', 4153, 598, '2005-07-14 02:25:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3951, '2005-07-06 21:50:41', 2288, 250, '2005-07-12 02:09:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3952, '2005-07-06 21:51:31', 1719, 417, '2005-07-13 15:54:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3953, '2005-07-06 21:54:55', 3879, 385, '2005-07-09 18:52:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3954, '2005-07-06 21:57:44', 4250, 558, '2005-07-08 02:37:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3955, '2005-07-06 21:58:08', 2523, 247, '2005-07-08 03:43:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3956, '2005-07-06 22:01:51', 15, 147, '2005-07-12 21:35:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3957, '2005-07-06 22:05:47', 443, 414, '2005-07-16 01:08:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3958, '2005-07-06 22:07:33', 4117, 288, '2005-07-10 19:31:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3959, '2005-07-06 22:07:58', 40, 448, '2005-07-13 02:30:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3960, '2005-07-06 22:08:53', 2090, 594, '2005-07-07 23:21:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3961, '2005-07-06 22:11:43', 4320, 364, '2005-07-09 03:14:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3962, '2005-07-06 22:13:45', 379, 307, '2005-07-15 00:22:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3963, '2005-07-06 22:19:17', 3912, 111, '2005-07-15 01:22:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3964, '2005-07-06 22:23:02', 1853, 30, '2005-07-07 22:21:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3965, '2005-07-06 22:36:20', 2863, 243, '2005-07-09 17:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3966, '2005-07-06 22:38:49', 556, 495, '2005-07-07 23:33:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3967, '2005-07-06 22:45:10', 2510, 31, '2005-07-09 23:54:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3968, '2005-07-06 22:47:09', 558, 235, '2005-07-12 21:01:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3969, '2005-07-06 22:47:59', 383, 587, '2005-07-08 02:11:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3970, '2005-07-06 22:48:17', 701, 381, '2005-07-15 19:07:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3971, '2005-07-06 22:50:40', 4415, 473, '2005-07-08 01:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3972, '2005-07-06 22:53:57', 1895, 598, '2005-07-11 01:32:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3973, '2005-07-06 22:58:31', 2625, 592, '2005-07-16 03:27:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3974, '2005-07-06 22:59:16', 4282, 318, '2005-07-11 22:30:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3975, '2005-07-06 23:00:09', 4343, 545, '2005-07-10 01:39:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3976, '2005-07-06 23:00:20', 2424, 329, '2005-07-07 21:51:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3977, '2005-07-06 23:00:49', 1284, 449, '2005-07-15 00:41:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3978, '2005-07-06 23:04:33', 4341, 343, '2005-07-10 17:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3979, '2005-07-06 23:04:35', 794, 550, '2005-07-13 01:38:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3980, '2005-07-06 23:11:11', 1845, 475, '2005-07-14 18:22:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3981, '2005-07-06 23:12:12', 842, 375, '2005-07-13 01:47:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3982, '2005-07-06 23:14:16', 4327, 64, '2005-07-08 21:21:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3983, '2005-07-06 23:14:21', 1261, 6, '2005-07-12 17:55:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3984, '2005-07-06 23:22:36', 2205, 570, '2005-07-08 21:40:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3985, '2005-07-06 23:24:03', 2096, 307, '2005-07-10 00:20:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3986, '2005-07-06 23:25:13', 3737, 122, '2005-07-09 21:26:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3987, '2005-07-06 23:28:24', 3104, 270, '2005-07-15 00:52:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3988, '2005-07-06 23:30:42', 2981, 421, '2005-07-13 03:06:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3989, '2005-07-06 23:30:54', 2366, 213, '2005-07-12 01:28:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3990, '2005-07-06 23:32:44', 2009, 558, '2005-07-14 01:35:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3991, '2005-07-06 23:33:41', 587, 583, '2005-07-16 01:31:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3992, '2005-07-06 23:36:56', 3219, 448, '2005-07-15 03:13:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3993, '2005-07-06 23:37:06', 1061, 525, '2005-07-14 19:31:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3994, '2005-07-06 23:39:01', 902, 487, '2005-07-14 00:33:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3995, '2005-07-06 23:43:03', 3990, 128, '2005-07-13 04:13:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3996, '2005-07-06 23:46:43', 2857, 551, '2005-07-14 22:34:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3997, '2005-07-06 23:46:52', 3895, 52, '2005-07-14 05:39:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3998, '2005-07-06 23:49:20', 1245, 566, '2005-07-12 20:39:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (3999, '2005-07-06 23:50:54', 707, 390, '2005-07-09 22:09:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4000, '2005-07-06 23:58:37', 2122, 95, '2005-07-08 21:43:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4001, '2005-07-07 00:07:00', 864, 120, '2005-07-13 21:27:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4002, '2005-07-07 00:08:18', 2790, 308, '2005-07-14 01:29:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4003, '2005-07-07 00:09:02', 4054, 8, '2005-07-08 04:27:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4004, '2005-07-07 00:20:51', 667, 574, '2005-07-11 18:55:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4005, '2005-07-07 00:22:26', 3677, 190, '2005-07-15 04:34:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4006, '2005-07-07 00:25:29', 397, 473, '2005-07-08 05:30:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4007, '2005-07-07 00:26:05', 2071, 285, '2005-07-15 19:53:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4008, '2005-07-07 00:26:43', 1107, 505, '2005-07-16 03:58:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4009, '2005-07-07 00:28:55', 3607, 394, '2005-07-10 00:37:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4010, '2005-07-07 00:47:00', 4509, 476, '2005-07-12 06:23:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4011, '2005-07-07 00:48:25', 2052, 20, '2005-07-13 06:30:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4012, '2005-07-07 00:56:09', 1400, 104, '2005-07-10 21:49:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4013, '2005-07-07 00:58:00', 2344, 475, '2005-07-15 19:42:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4014, '2005-07-07 00:58:54', 583, 510, '2005-07-12 02:40:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4015, '2005-07-07 00:59:46', 3032, 233, '2005-07-14 03:16:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4016, '2005-07-07 01:05:50', 3318, 335, '2005-07-09 05:59:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4017, '2005-07-07 01:08:18', 3117, 595, '2005-07-09 01:47:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4018, '2005-07-07 01:10:33', 906, 207, '2005-07-12 20:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4019, '2005-07-07 01:27:44', 3200, 294, '2005-07-10 21:30:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4020, '2005-07-07 01:42:22', 3760, 471, '2005-07-10 00:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4021, '2005-07-07 01:46:44', 1676, 315, '2005-07-12 00:16:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4022, '2005-07-07 01:50:06', 3914, 390, '2005-07-09 21:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4023, '2005-07-07 01:55:25', 274, 573, '2005-07-08 02:43:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4024, '2005-07-07 02:11:23', 3976, 448, '2005-07-11 02:00:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4025, '2005-07-07 02:13:24', 3908, 114, '2005-07-08 00:47:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4026, '2005-07-07 02:15:48', 4142, 251, '2005-07-14 04:15:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4027, '2005-07-07 02:19:01', 56, 116, '2005-07-10 01:12:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4028, '2005-07-07 02:19:14', 1651, 344, '2005-07-15 08:09:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4029, '2005-07-07 02:19:44', 4075, 518, '2005-07-15 02:30:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4030, '2005-07-07 02:25:42', 1734, 300, '2005-07-08 22:53:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4031, '2005-07-07 02:32:07', 3094, 143, '2005-07-14 06:01:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4032, '2005-07-07 02:34:13', 2628, 335, '2005-07-14 22:43:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4033, '2005-07-07 02:35:46', 203, 453, '2005-07-16 01:12:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4034, '2005-07-07 02:36:33', 1666, 354, '2005-07-09 08:32:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4035, '2005-07-07 02:45:02', 3611, 539, '2005-07-14 01:41:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4036, '2005-07-07 02:48:00', 500, 397, '2005-07-07 22:46:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4037, '2005-07-07 02:52:52', 3903, 594, '2005-07-16 00:09:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4038, '2005-07-07 02:52:53', 1264, 27, '2005-07-11 22:32:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4039, '2005-07-07 02:57:59', 4050, 290, '2005-07-12 03:44:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4040, '2005-07-07 03:02:40', 3046, 103, '2005-07-16 06:05:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4041, '2005-07-07 03:03:33', 2217, 445, '2005-07-09 07:57:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4042, '2005-07-07 03:06:40', 50, 10, '2005-07-10 02:37:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4043, '2005-07-07 03:09:50', 3427, 204, '2005-07-10 07:49:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4044, '2005-07-07 03:22:23', 3263, 94, '2005-07-13 03:23:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4045, '2005-07-07 03:26:14', 1422, 529, '2005-07-11 06:52:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4046, '2005-07-07 03:27:59', 3518, 491, '2005-07-14 01:14:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4047, '2005-07-07 03:28:49', 3475, 364, '2005-07-09 02:42:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4048, '2005-07-07 03:30:52', 659, 474, '2005-07-14 05:05:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4049, '2005-07-07 03:34:53', 4172, 79, '2005-07-15 04:10:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4050, '2005-07-07 03:35:33', 104, 528, '2005-07-15 03:11:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4051, '2005-07-07 03:37:28', 2715, 331, '2005-07-09 01:40:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4052, '2005-07-07 03:38:22', 206, 442, '2005-07-13 02:56:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4053, '2005-07-07 03:39:22', 2889, 377, '2005-07-09 22:32:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4054, '2005-07-07 03:42:07', 3885, 260, '2005-07-10 03:22:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4055, '2005-07-07 03:49:13', 2561, 513, '2005-07-11 03:15:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4056, '2005-07-07 03:57:36', 4211, 360, '2005-07-09 08:53:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4057, '2005-07-07 04:00:20', 2838, 141, '2005-07-12 08:14:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4058, '2005-07-07 04:02:50', 3877, 442, '2005-07-10 04:30:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4059, '2005-07-07 04:04:26', 292, 401, '2005-07-10 22:35:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4060, '2005-07-07 04:10:13', 2697, 211, '2005-07-13 07:44:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4061, '2005-07-07 04:13:35', 62, 70, '2005-07-10 23:58:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4062, '2005-07-07 04:22:27', 1323, 410, '2005-07-09 03:27:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4063, '2005-07-07 04:23:57', 1452, 331, '2005-07-14 23:35:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4064, '2005-07-07 04:29:20', 1402, 47, '2005-07-14 05:48:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4065, '2005-07-07 04:32:28', 1339, 26, '2005-07-12 08:30:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4066, '2005-07-07 04:34:09', 1975, 368, '2005-07-10 23:54:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4067, '2005-07-07 04:34:23', 2945, 469, '2005-07-16 04:04:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4068, '2005-07-07 04:34:38', 4152, 206, '2005-07-11 09:16:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4069, '2005-07-07 04:35:06', 3361, 570, '2005-07-10 23:59:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4070, '2005-07-07 04:37:09', 2926, 496, '2005-07-08 04:19:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4071, '2005-07-07 04:37:26', 2883, 209, '2005-07-13 06:45:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4072, '2005-07-07 04:48:02', 3130, 310, '2005-07-12 10:32:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4073, '2005-07-07 04:49:13', 647, 290, '2005-07-10 03:20:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4074, '2005-07-07 04:49:49', 2347, 412, '2005-07-12 04:51:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4075, '2005-07-07 04:51:44', 1989, 593, '2005-07-09 03:07:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4076, '2005-07-07 04:52:15', 3148, 329, '2005-07-13 23:22:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4077, '2005-07-07 04:53:40', 2445, 377, '2005-07-09 09:56:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4078, '2005-07-07 05:05:05', 1671, 522, '2005-07-10 05:39:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4079, '2005-07-07 05:06:27', 2202, 84, '2005-07-16 08:46:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4080, '2005-07-07 05:09:54', 1364, 148, '2005-07-11 23:58:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4081, '2005-07-07 05:10:08', 1138, 284, '2005-07-12 00:47:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4082, '2005-07-07 05:11:53', 2904, 108, '2005-07-12 00:55:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4083, '2005-07-07 05:13:15', 3454, 490, '2005-07-08 09:11:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4084, '2005-07-07 05:16:00', 2588, 441, '2005-07-15 09:23:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4085, '2005-07-07 05:25:39', 1683, 573, '2005-07-12 04:30:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4086, '2005-07-07 05:26:06', 253, 494, '2005-07-12 00:45:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4087, '2005-07-07 05:30:56', 3066, 433, '2005-07-16 10:20:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4088, '2005-07-07 05:31:55', 234, 66, '2005-07-15 07:35:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4089, '2005-07-07 05:45:59', 3431, 102, '2005-07-16 07:34:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4090, '2005-07-07 05:47:33', 3096, 67, '2005-07-08 04:25:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4091, '2005-07-07 05:53:38', 3928, 337, '2005-07-14 03:12:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4092, '2005-07-07 05:54:18', 1721, 246, '2005-07-16 09:14:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4093, '2005-07-07 05:54:50', 1534, 337, '2005-07-12 00:34:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4094, '2005-07-07 06:00:21', 2412, 517, '2005-07-10 03:24:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4095, '2005-07-07 06:01:48', 2900, 33, '2005-07-15 02:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4096, '2005-07-07 06:09:11', 3911, 403, '2005-07-08 09:17:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4097, '2005-07-07 06:10:55', 2454, 56, '2005-07-11 02:45:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4098, '2005-07-07 06:14:51', 2865, 35, '2005-07-14 06:51:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4099, '2005-07-07 06:20:33', 1930, 76, '2005-07-16 08:39:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4100, '2005-07-07 06:20:52', 2346, 332, '2005-07-15 05:58:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4101, '2005-07-07 06:25:11', 2891, 588, '2005-07-12 07:44:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4102, '2005-07-07 06:25:19', 3998, 135, '2005-07-11 00:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4103, '2005-07-07 06:25:28', 3632, 91, '2005-07-12 11:18:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4104, '2005-07-07 06:25:41', 1066, 338, '2005-07-13 04:18:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4105, '2005-07-07 06:31:00', 439, 423, '2005-07-09 03:52:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4106, '2005-07-07 06:33:35', 4083, 563, '2005-07-13 04:03:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4107, '2005-07-07 06:36:32', 4232, 206, '2005-07-14 03:36:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4108, '2005-07-07 06:38:31', 4535, 66, '2005-07-08 10:44:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4109, '2005-07-07 06:39:43', 532, 517, '2005-07-10 06:30:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4110, '2005-07-07 06:44:27', 226, 486, '2005-07-12 05:43:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4111, '2005-07-07 06:47:56', 1009, 515, '2005-07-13 02:13:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4112, '2005-07-07 06:49:09', 3284, 533, '2005-07-16 06:53:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4113, '2005-07-07 06:49:52', 915, 170, '2005-07-12 04:00:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4114, '2005-07-07 06:51:12', 4109, 426, '2005-07-15 01:36:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4115, '2005-07-07 06:52:23', 102, 371, '2005-07-14 06:12:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4116, '2005-07-07 06:56:13', 666, 352, '2005-07-11 11:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4117, '2005-07-07 06:58:14', 780, 158, '2005-07-16 05:28:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4118, '2005-07-07 07:03:30', 355, 224, '2005-07-08 09:20:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4119, '2005-07-07 07:06:03', 2078, 319, '2005-07-13 01:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4120, '2005-07-07 07:07:03', 987, 559, '2005-07-16 04:07:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4121, '2005-07-07 07:13:50', 2429, 176, '2005-07-13 04:32:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4122, '2005-07-07 07:15:35', 273, 31, '2005-07-14 12:10:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4123, '2005-07-07 07:16:19', 2707, 469, '2005-07-10 05:23:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4124, '2005-07-07 07:19:54', 2856, 330, '2005-07-11 05:54:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4125, '2005-07-07 07:20:29', 4131, 269, '2005-07-15 06:41:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4126, '2005-07-07 07:24:11', 3018, 163, '2005-07-15 07:31:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4127, '2005-07-07 07:26:19', 1774, 15, '2005-07-14 07:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4128, '2005-07-07 07:35:25', 3563, 492, '2005-07-14 08:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4129, '2005-07-07 07:37:03', 1413, 592, '2005-07-14 13:31:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4130, '2005-07-07 07:51:53', 4170, 256, '2005-07-11 12:41:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4131, '2005-07-07 07:53:18', 2621, 58, '2005-07-08 04:48:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4132, '2005-07-07 08:06:07', 993, 154, '2005-07-10 14:04:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4133, '2005-07-07 08:12:26', 3672, 488, '2005-07-16 03:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4134, '2005-07-07 08:14:24', 2917, 183, '2005-07-09 10:42:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4135, '2005-07-07 08:15:03', 3384, 36, '2005-07-11 10:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4136, '2005-07-07 08:15:52', 3461, 203, '2005-07-10 04:22:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4137, '2005-07-07 08:17:06', 2065, 485, '2005-07-11 10:52:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4138, '2005-07-07 08:17:13', 1588, 317, '2005-07-14 05:18:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4139, '2005-07-07 08:17:35', 2094, 509, '2005-07-14 14:01:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4140, '2005-07-07 08:19:10', 1897, 190, '2005-07-14 07:27:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4141, '2005-07-07 08:19:20', 1904, 456, '2005-07-11 06:54:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4142, '2005-07-07 08:19:45', 4045, 492, '2005-07-08 13:55:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4143, '2005-07-07 08:22:07', 597, 238, '2005-07-13 11:42:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4144, '2005-07-07 08:25:44', 550, 431, '2005-07-16 13:10:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4145, '2005-07-07 08:26:39', 3050, 592, '2005-07-16 12:54:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4146, '2005-07-07 08:30:16', 176, 411, '2005-07-12 07:52:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4147, '2005-07-07 08:32:12', 2776, 274, '2005-07-12 10:10:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4148, '2005-07-07 08:36:58', 260, 59, '2005-07-09 05:51:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4149, '2005-07-07 08:40:17', 3028, 50, '2005-07-10 02:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4150, '2005-07-07 08:43:22', 4424, 188, '2005-07-08 05:21:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4151, '2005-07-07 08:49:02', 4564, 428, '2005-07-11 05:19:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4152, '2005-07-07 08:50:33', 1761, 89, '2005-07-14 10:56:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4153, '2005-07-07 08:53:08', 2185, 299, '2005-07-11 05:09:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4154, '2005-07-07 08:58:23', 191, 594, '2005-07-14 03:16:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4155, '2005-07-07 09:00:49', 212, 548, '2005-07-13 10:59:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4156, '2005-07-07 09:03:51', 1259, 585, '2005-07-12 09:46:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4157, '2005-07-07 09:04:26', 304, 183, '2005-07-08 09:55:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4158, '2005-07-07 09:05:42', 291, 433, '2005-07-09 04:28:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4159, '2005-07-07 09:10:57', 3625, 62, '2005-07-09 10:19:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4160, '2005-07-07 09:13:17', 1909, 326, '2005-07-15 11:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4161, '2005-07-07 09:15:11', 4021, 216, '2005-07-15 06:59:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4162, '2005-07-07 09:17:26', 745, 571, '2005-07-15 10:15:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4163, '2005-07-07 09:19:28', 3176, 376, '2005-07-10 06:47:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4164, '2005-07-07 09:20:11', 3133, 295, '2005-07-14 09:35:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4165, '2005-07-07 09:23:27', 3845, 66, '2005-07-15 06:00:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4166, '2005-07-07 09:33:30', 3267, 376, '2005-07-16 06:06:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4167, '2005-07-07 09:37:08', 3771, 175, '2005-07-16 06:16:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4168, '2005-07-07 09:37:24', 1872, 132, '2005-07-09 14:32:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4169, '2005-07-07 09:39:18', 3360, 580, '2005-07-11 13:43:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4170, '2005-07-07 09:44:36', 2665, 99, '2005-07-13 14:10:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4171, '2005-07-07 09:49:04', 4199, 476, '2005-07-14 03:58:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4172, '2005-07-07 09:49:09', 1158, 309, '2005-07-11 15:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4173, '2005-07-07 09:57:26', 4272, 320, '2005-07-10 04:05:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4174, '2005-07-07 09:59:49', 3814, 182, '2005-07-11 13:34:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4175, '2005-07-07 10:02:03', 1979, 8, '2005-07-10 06:09:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4176, '2005-07-07 10:03:34', 2745, 420, '2005-07-16 08:43:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4177, '2005-07-07 10:12:36', 4106, 317, '2005-07-15 15:48:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4178, '2005-07-07 10:14:31', 2898, 513, '2005-07-12 09:38:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4179, '2005-07-07 10:17:15', 559, 75, '2005-07-10 05:12:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4180, '2005-07-07 10:23:25', 1704, 3, '2005-07-10 13:18:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4181, '2005-07-07 10:27:54', 3725, 598, '2005-07-13 06:09:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4182, '2005-07-07 10:28:00', 3080, 256, '2005-07-08 12:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4183, '2005-07-07 10:28:33', 3342, 479, '2005-07-15 12:29:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4184, '2005-07-07 10:30:08', 1022, 468, '2005-07-14 12:56:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4185, '2005-07-07 10:31:05', 2425, 395, '2005-07-13 05:30:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4186, '2005-07-07 10:32:25', 3910, 185, '2005-07-15 06:22:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4187, '2005-07-07 10:41:31', 2, 161, '2005-07-11 06:25:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4188, '2005-07-07 10:45:29', 3243, 391, '2005-07-16 09:39:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4189, '2005-07-07 10:51:07', 1492, 386, '2005-07-14 14:46:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4190, '2005-07-07 10:52:39', 826, 349, '2005-07-11 13:19:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4191, '2005-07-07 10:56:14', 2475, 390, '2005-07-11 09:56:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4192, '2005-07-07 10:57:06', 624, 558, '2005-07-13 16:30:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4193, '2005-07-07 10:57:21', 3791, 445, '2005-07-09 07:33:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4194, '2005-07-07 10:59:39', 1753, 153, '2005-07-15 09:34:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4195, '2005-07-07 11:00:02', 450, 455, '2005-07-14 16:54:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4196, '2005-07-07 11:06:33', 3407, 564, '2005-07-14 13:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4197, '2005-07-07 11:07:52', 2515, 324, '2005-07-10 10:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4198, '2005-07-07 11:08:11', 333, 247, '2005-07-16 15:29:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4199, '2005-07-07 11:13:07', 2120, 259, '2005-07-11 07:17:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4200, '2005-07-07 11:15:11', 1097, 292, '2005-07-11 11:46:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4201, '2005-07-07 11:19:51', 3682, 145, '2005-07-16 08:48:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4202, '2005-07-07 11:23:48', 2274, 38, '2005-07-16 16:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4203, '2005-07-07 11:24:14', 2743, 189, '2005-07-11 16:26:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4204, '2005-07-07 11:24:18', 1513, 569, '2005-07-15 12:42:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4205, '2005-07-07 11:25:39', 3922, 486, '2005-07-11 06:12:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4206, '2005-07-07 11:32:16', 1557, 448, '2005-07-14 13:07:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4207, '2005-07-07 11:32:45', 1119, 588, '2005-07-14 05:49:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4208, '2005-07-07 11:34:22', 3617, 441, '2005-07-09 08:25:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4209, '2005-07-07 11:35:08', 2010, 100, '2005-07-10 10:58:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4210, '2005-07-07 11:36:20', 1972, 581, '2005-07-16 12:38:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4211, '2005-07-07 11:50:41', 2001, 214, '2005-07-09 13:58:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4212, '2005-07-07 11:53:14', 1825, 574, '2005-07-09 07:12:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4213, '2005-07-07 11:53:49', 705, 103, '2005-07-13 07:51:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4214, '2005-07-07 11:54:33', 2534, 484, '2005-07-08 10:49:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4215, '2005-07-07 12:00:52', 1239, 22, '2005-07-11 15:14:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4216, '2005-07-07 12:01:34', 1216, 467, '2005-07-08 09:59:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4217, '2005-07-07 12:08:59', 3186, 228, '2005-07-11 15:07:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4218, '2005-07-07 12:10:24', 152, 497, '2005-07-15 16:09:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4219, '2005-07-07 12:11:22', 2800, 16, '2005-07-11 11:05:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4220, '2005-07-07 12:12:36', 821, 513, '2005-07-10 13:37:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4221, '2005-07-07 12:18:57', 4567, 143, '2005-07-12 09:47:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4222, '2005-07-07 12:20:21', 2053, 467, '2005-07-11 11:09:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4223, '2005-07-07 12:23:54', 2407, 405, '2005-07-10 14:46:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4224, '2005-07-07 12:24:21', 3659, 419, '2005-07-10 11:48:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4225, '2005-07-07 12:24:37', 1766, 377, '2005-07-12 06:47:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4226, '2005-07-07 12:37:56', 1692, 57, '2005-07-09 08:48:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4227, '2005-07-07 12:41:36', 4186, 78, '2005-07-15 12:33:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4228, '2005-07-07 12:42:02', 1020, 38, '2005-07-12 10:52:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4229, '2005-07-07 12:43:23', 953, 106, '2005-07-13 15:00:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4230, '2005-07-07 12:46:47', 353, 205, '2005-07-15 06:52:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4231, '2005-07-07 12:48:19', 3522, 194, '2005-07-13 18:45:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4232, '2005-07-07 12:49:12', 3841, 347, '2005-07-15 16:45:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4233, '2005-07-07 13:00:20', 1849, 488, '2005-07-13 16:37:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4234, '2005-07-07 13:01:35', 1179, 195, '2005-07-15 13:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4235, '2005-07-07 13:05:52', 3525, 86, '2005-07-10 12:17:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4236, '2005-07-07 13:12:07', 642, 213, '2005-07-08 15:00:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4237, '2005-07-07 13:16:55', 3773, 477, '2005-07-15 16:33:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4238, '2005-07-07 13:22:20', 3024, 7, '2005-07-10 07:44:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4239, '2005-07-07 13:23:17', 3866, 122, '2005-07-13 17:49:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4240, '2005-07-07 13:33:12', 1024, 65, '2005-07-13 12:28:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4241, '2005-07-07 13:39:00', 4154, 595, '2005-07-12 17:49:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4242, '2005-07-07 13:39:01', 3626, 286, '2005-07-12 18:29:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4243, '2005-07-07 13:39:58', 4559, 339, '2005-07-12 19:27:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4244, '2005-07-07 13:41:58', 592, 581, '2005-07-09 15:32:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4245, '2005-07-07 13:48:33', 3743, 91, '2005-07-10 09:54:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4246, '2005-07-07 13:49:03', 1141, 411, '2005-07-09 13:01:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4247, '2005-07-07 13:51:54', 808, 539, '2005-07-10 09:43:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4248, '2005-07-07 13:59:20', 773, 161, '2005-07-14 15:18:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4249, '2005-07-07 14:05:17', 4185, 111, '2005-07-10 09:21:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4250, '2005-07-07 14:08:11', 2556, 423, '2005-07-13 08:09:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4251, '2005-07-07 14:11:55', 3541, 367, '2005-07-16 14:01:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4252, '2005-07-07 14:13:05', 474, 154, '2005-07-09 14:17:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4253, '2005-07-07 14:13:13', 3355, 157, '2005-07-16 18:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4254, '2005-07-07 14:13:52', 3957, 529, '2005-07-12 10:39:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4255, '2005-07-07 14:14:13', 749, 10, '2005-07-12 18:32:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4256, '2005-07-07 14:14:36', 1386, 129, '2005-07-10 09:41:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4257, '2005-07-07 14:18:41', 3927, 553, '2005-07-08 14:58:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4258, '2005-07-07 14:20:59', 1562, 492, '2005-07-16 10:03:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4259, '2005-07-07 14:22:18', 4378, 467, '2005-07-11 19:38:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4260, '2005-07-07 14:22:45', 4575, 305, '2005-07-08 15:10:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4261, '2005-07-07 14:23:56', 1405, 496, '2005-07-13 15:26:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4262, '2005-07-07 14:24:30', 3122, 29, '2005-07-14 13:12:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4263, '2005-07-07 14:24:44', 2975, 16, '2005-07-13 18:22:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4264, '2005-07-07 14:25:28', 3499, 406, '2005-07-08 08:49:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4265, '2005-07-07 14:27:51', 1685, 69, '2005-07-12 19:55:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4266, '2005-07-07 14:34:50', 1578, 509, '2005-07-08 09:23:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4267, '2005-07-07 14:35:30', 136, 410, '2005-07-11 10:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4268, '2005-07-07 14:36:05', 432, 80, '2005-07-16 14:36:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4269, '2005-07-07 14:38:33', 415, 496, '2005-07-09 10:27:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4270, '2005-07-07 14:38:41', 183, 210, '2005-07-10 19:07:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4271, '2005-07-07 14:38:52', 533, 150, '2005-07-15 12:05:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4272, '2005-07-07 14:39:20', 488, 120, '2005-07-13 08:57:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4273, '2005-07-07 14:40:22', 4163, 159, '2005-07-13 09:58:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4274, '2005-07-07 14:42:04', 787, 26, '2005-07-13 20:23:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4275, '2005-07-07 14:43:51', 1167, 393, '2005-07-15 18:04:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4276, '2005-07-07 14:50:59', 221, 366, '2005-07-09 15:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4277, '2005-07-07 14:52:12', 1983, 106, '2005-07-09 13:10:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4278, '2005-07-07 14:53:24', 3693, 6, '2005-07-13 14:21:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4279, '2005-07-07 15:01:53', 581, 335, '2005-07-08 09:43:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4280, '2005-07-07 15:09:31', 1115, 593, '2005-07-13 14:47:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4281, '2005-07-07 15:17:50', 1182, 321, '2005-07-08 11:42:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4282, '2005-07-07 15:26:31', 3134, 25, '2005-07-11 14:27:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4283, '2005-07-07 15:29:35', 2807, 477, '2005-07-11 17:12:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4284, '2005-07-07 15:31:57', 1313, 521, '2005-07-09 10:20:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4285, '2005-07-07 15:34:35', 511, 308, '2005-07-15 09:43:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4286, '2005-07-07 15:36:44', 4496, 111, '2005-07-11 13:04:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4287, '2005-07-07 15:37:31', 3558, 94, '2005-07-16 19:59:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4288, '2005-07-07 15:38:25', 1508, 64, '2005-07-13 16:23:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4289, '2005-07-07 15:45:58', 3172, 231, '2005-07-09 11:11:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4290, '2005-07-07 15:47:10', 4174, 277, '2005-07-15 15:03:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4291, '2005-07-07 15:47:47', 2074, 298, '2005-07-10 11:45:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4292, '2005-07-07 15:48:38', 3084, 401, '2005-07-15 17:53:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4293, '2005-07-07 15:53:47', 984, 221, '2005-07-10 18:11:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4294, '2005-07-07 15:56:23', 2845, 41, '2005-07-15 14:50:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4295, '2005-07-07 16:08:51', 2490, 319, '2005-07-13 13:06:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4296, '2005-07-07 16:16:03', 977, 407, '2005-07-08 20:16:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4297, '2005-07-07 16:24:09', 882, 141, '2005-07-13 15:08:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4298, '2005-07-07 16:27:25', 1055, 560, '2005-07-12 18:20:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4299, '2005-07-07 16:33:48', 870, 80, '2005-07-16 11:48:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4300, '2005-07-07 16:36:16', 1189, 38, '2005-07-10 13:59:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4301, '2005-07-07 16:37:23', 1630, 440, '2005-07-11 18:05:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4302, '2005-07-07 16:47:53', 3669, 332, '2005-07-16 22:22:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4303, '2005-07-07 16:57:32', 818, 108, '2005-07-14 17:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4304, '2005-07-07 17:01:19', 3382, 165, '2005-07-12 22:47:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4305, '2005-07-07 17:07:11', 3926, 240, '2005-07-08 16:15:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4306, '2005-07-07 17:12:32', 1219, 210, '2005-07-16 11:24:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4307, '2005-07-07 17:20:39', 2827, 394, '2005-07-16 14:42:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4308, '2005-07-07 17:29:16', 1482, 168, '2005-07-11 21:47:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4309, '2005-07-07 17:29:41', 3549, 209, '2005-07-14 22:22:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4310, '2005-07-07 17:30:56', 3842, 390, '2005-07-12 13:19:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4311, '2005-07-07 17:31:14', 2985, 498, '2005-07-11 19:21:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4312, '2005-07-07 17:34:59', 3870, 97, '2005-07-09 17:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4313, '2005-07-07 17:36:56', 91, 29, '2005-07-13 12:00:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4314, '2005-07-07 17:38:31', 539, 184, '2005-07-09 20:24:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4315, '2005-07-07 17:40:26', 1472, 195, '2005-07-09 22:58:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4316, '2005-07-07 17:44:22', 517, 301, '2005-07-14 15:12:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4317, '2005-07-07 17:44:49', 2234, 110, '2005-07-08 21:48:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4318, '2005-07-07 17:47:50', 1607, 321, '2005-07-14 12:15:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4319, '2005-07-07 17:50:27', 3389, 25, '2005-07-10 13:53:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4320, '2005-07-07 17:51:59', 3437, 376, '2005-07-13 18:39:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4321, '2005-07-07 17:52:38', 612, 91, '2005-07-11 23:37:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4322, '2005-07-07 17:54:37', 1522, 568, '2005-07-14 13:56:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4323, '2005-07-07 17:55:53', 1287, 336, '2005-07-13 16:43:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4324, '2005-07-07 17:57:56', 952, 226, '2005-07-13 22:34:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4325, '2005-07-07 17:59:24', 3728, 373, '2005-07-16 17:10:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4326, '2005-07-07 18:01:22', 4037, 331, '2005-07-16 15:45:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4327, '2005-07-07 18:01:39', 860, 73, '2005-07-12 22:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4328, '2005-07-07 18:03:17', 2174, 264, '2005-07-14 16:14:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4329, '2005-07-07 18:04:16', 638, 504, '2005-07-15 17:58:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4330, '2005-07-07 18:09:41', 2408, 408, '2005-07-14 22:05:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4331, '2005-07-07 18:22:30', 419, 535, '2005-07-13 18:20:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4332, '2005-07-07 18:25:26', 1714, 137, '2005-07-16 15:05:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4333, '2005-07-07 18:31:50', 76, 113, '2005-07-08 21:26:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4334, '2005-07-07 18:32:04', 3021, 210, '2005-07-08 16:19:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4335, '2005-07-07 18:33:57', 1332, 375, '2005-07-11 13:23:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4336, '2005-07-07 18:34:36', 482, 532, '2005-07-10 17:58:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4337, '2005-07-07 18:36:37', 2313, 464, '2005-07-14 14:59:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4338, '2005-07-07 18:39:56', 3152, 581, '2005-07-12 21:03:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4339, '2005-07-07 18:41:42', 3215, 130, '2005-07-08 13:00:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4340, '2005-07-07 18:41:46', 3919, 227, '2005-07-16 21:27:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4341, '2005-07-07 18:44:23', 4523, 124, '2005-07-15 18:13:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4342, '2005-07-07 18:47:03', 1355, 120, '2005-07-09 21:59:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4343, '2005-07-07 18:48:54', 1926, 293, '2005-07-12 15:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4344, '2005-07-07 18:50:47', 1185, 99, '2005-07-12 16:38:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4345, '2005-07-07 18:52:57', 2235, 225, '2005-07-15 21:24:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4346, '2005-07-07 18:58:45', 1906, 520, '2005-07-10 16:37:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4347, '2005-07-07 18:58:57', 1964, 344, '2005-07-14 16:35:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4348, '2005-07-07 19:02:05', 1948, 452, '2005-07-09 20:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4349, '2005-07-07 19:02:37', 3430, 182, '2005-07-09 17:25:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4350, '2005-07-07 19:02:41', 2223, 299, '2005-07-09 15:27:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4351, '2005-07-07 19:04:24', 3567, 382, '2005-07-14 00:03:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4352, '2005-07-07 19:15:58', 2636, 249, '2005-07-16 20:22:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4353, '2005-07-07 19:19:05', 368, 452, '2005-07-13 13:40:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4354, '2005-07-07 19:21:02', 4423, 208, '2005-07-15 17:03:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4355, '2005-07-07 19:21:19', 4557, 438, '2005-07-09 00:55:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4356, '2005-07-07 19:21:22', 1907, 318, '2005-07-16 15:57:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4357, '2005-07-07 19:24:39', 3413, 103, '2005-07-12 00:11:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4358, '2005-07-07 19:27:04', 3136, 446, '2005-07-14 23:46:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4359, '2005-07-07 19:30:20', 3222, 282, '2005-07-09 13:34:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4360, '2005-07-07 19:31:12', 1811, 92, '2005-07-10 23:11:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4361, '2005-07-07 19:33:23', 116, 425, '2005-07-12 22:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4362, '2005-07-07 19:35:30', 3759, 425, '2005-07-14 14:59:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4363, '2005-07-07 19:43:28', 3202, 168, '2005-07-13 00:15:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4364, '2005-07-07 19:46:51', 10, 145, '2005-07-08 21:55:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4365, '2005-07-07 19:47:46', 3207, 442, '2005-07-08 23:21:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4366, '2005-07-07 19:48:36', 2961, 524, '2005-07-14 01:14:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4367, '2005-07-07 19:52:01', 4529, 48, '2005-07-13 19:41:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4368, '2005-07-07 19:55:19', 736, 324, '2005-07-09 00:11:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4369, '2005-07-07 20:01:38', 3552, 517, '2005-07-13 01:19:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4370, '2005-07-07 20:05:36', 1591, 559, '2005-07-16 23:58:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4371, '2005-07-07 20:06:45', 2533, 90, '2005-07-08 18:50:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4372, '2005-07-07 20:09:01', 2207, 252, '2005-07-09 18:24:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4373, '2005-07-07 20:10:59', 3593, 470, '2005-07-12 21:30:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4374, '2005-07-07 20:13:58', 4377, 517, '2005-07-11 18:11:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4375, '2005-07-07 20:20:29', 3035, 560, '2005-07-16 19:29:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4376, '2005-07-07 20:24:33', 1344, 151, '2005-07-11 18:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4377, '2005-07-07 20:28:57', 3294, 205, '2005-07-16 02:13:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4378, '2005-07-07 20:29:08', 1244, 24, '2005-07-12 19:17:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4379, '2005-07-07 20:32:30', 2773, 316, '2005-07-11 20:40:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4380, '2005-07-07 20:35:00', 3164, 353, '2005-07-14 17:06:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4381, '2005-07-07 20:37:53', 3727, 486, '2005-07-10 16:54:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4382, '2005-07-07 20:41:03', 657, 26, '2005-07-14 15:15:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4383, '2005-07-07 20:45:51', 2649, 591, '2005-07-17 00:52:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4384, '2005-07-07 20:46:45', 1178, 59, '2005-07-16 21:54:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4385, '2005-07-07 20:48:38', 849, 564, '2005-07-11 17:03:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4386, '2005-07-07 20:55:19', 499, 314, '2005-07-10 21:51:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4387, '2005-07-07 20:56:47', 591, 335, '2005-07-16 00:51:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4388, '2005-07-07 20:58:03', 3150, 210, '2005-07-16 20:05:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4389, '2005-07-07 20:58:58', 1672, 166, '2005-07-13 19:57:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4390, '2005-07-07 20:59:06', 6, 44, '2005-07-09 00:04:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4391, '2005-07-07 21:09:38', 2135, 42, '2005-07-09 17:35:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4392, '2005-07-07 21:11:02', 4236, 491, '2005-07-13 21:52:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4393, '2005-07-07 21:12:36', 4034, 395, '2005-07-09 22:41:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4394, '2005-07-07 21:12:45', 563, 156, '2005-07-16 18:24:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4395, '2005-07-07 21:13:22', 360, 544, '2005-07-08 22:59:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4396, '2005-07-07 21:14:19', 750, 275, '2005-07-10 19:22:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4397, '2005-07-07 21:14:54', 3085, 494, '2005-07-13 19:24:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4398, '2005-07-07 21:18:44', 3628, 426, '2005-07-10 22:45:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4399, '2005-07-07 21:20:28', 4515, 402, '2005-07-12 20:57:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4400, '2005-07-07 21:22:26', 49, 370, '2005-07-16 00:59:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4401, '2005-07-07 21:26:27', 2725, 405, '2005-07-12 17:18:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4402, '2005-07-07 21:28:46', 1198, 26, '2005-07-08 17:04:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4403, '2005-07-07 21:29:40', 3973, 447, '2005-07-09 17:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4404, '2005-07-07 21:31:53', 944, 25, '2005-07-13 19:00:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4405, '2005-07-07 21:33:16', 2102, 145, '2005-07-15 00:33:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4406, '2005-07-07 21:35:16', 438, 448, '2005-07-15 16:13:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4407, '2005-07-07 21:39:45', 267, 20, '2005-07-11 23:40:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4408, '2005-07-07 21:41:06', 2482, 258, '2005-07-11 00:32:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4409, '2005-07-07 21:47:29', 3153, 8, '2005-07-11 20:14:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4410, '2005-07-07 21:48:16', 2754, 584, '2005-07-09 03:15:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4411, '2005-07-07 21:54:58', 320, 224, '2005-07-14 16:14:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4412, '2005-07-07 21:56:53', 1181, 282, '2005-07-11 19:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4413, '2005-07-07 22:00:04', 1062, 565, '2005-07-10 18:20:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4414, '2005-07-07 22:00:21', 991, 434, '2005-07-12 02:51:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4415, '2005-07-07 22:01:43', 1403, 329, '2005-07-13 03:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4416, '2005-07-07 22:04:36', 1247, 290, '2005-07-09 02:44:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4417, '2005-07-07 22:05:05', 743, 452, '2005-07-09 16:16:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4418, '2005-07-07 22:05:30', 4368, 417, '2005-07-11 18:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4419, '2005-07-07 22:06:24', 783, 39, '2005-07-15 23:59:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4420, '2005-07-07 22:07:31', 4427, 346, '2005-07-12 19:14:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4421, '2005-07-07 22:07:55', 4103, 417, '2005-07-16 20:21:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4422, '2005-07-07 22:09:45', 1741, 345, '2005-07-10 01:43:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4423, '2005-07-07 22:11:28', 2721, 526, '2005-07-14 18:49:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4424, '2005-07-07 22:14:43', 662, 384, '2005-07-11 01:17:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4425, '2005-07-07 22:22:44', 877, 345, '2005-07-08 22:23:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4426, '2005-07-07 22:28:32', 364, 242, '2005-07-16 02:04:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4427, '2005-07-07 22:28:51', 1021, 69, '2005-07-11 21:37:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4428, '2005-07-07 22:29:40', 2575, 181, '2005-07-11 02:46:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4429, '2005-07-07 22:32:47', 2949, 187, '2005-07-15 03:10:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4430, '2005-07-07 22:35:24', 3436, 278, '2005-07-14 23:49:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4431, '2005-07-07 22:39:02', 936, 26, '2005-07-16 19:24:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4432, '2005-07-07 22:40:02', 2779, 295, '2005-07-15 01:46:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4433, '2005-07-07 22:45:41', 88, 449, '2005-07-16 23:30:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4434, '2005-07-07 22:48:34', 1801, 32, '2005-07-09 18:55:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4435, '2005-07-07 22:51:04', 3815, 157, '2005-07-14 23:15:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4436, '2005-07-07 22:52:04', 4326, 563, '2005-07-10 04:51:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4437, '2005-07-07 22:55:41', 3578, 414, '2005-07-13 19:40:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4438, '2005-07-07 22:56:17', 4371, 104, '2005-07-16 17:28:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4439, '2005-07-07 22:57:30', 2393, 521, '2005-07-10 18:28:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4440, '2005-07-07 23:00:58', 1236, 507, '2005-07-08 21:31:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4441, '2005-07-07 23:04:23', 3680, 211, '2005-07-13 19:07:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4442, '2005-07-07 23:05:30', 461, 123, '2005-07-13 22:20:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4443, '2005-07-07 23:05:53', 72, 389, '2005-07-16 01:46:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4444, '2005-07-07 23:07:44', 764, 529, '2005-07-14 02:51:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4445, '2005-07-07 23:08:22', 3328, 327, '2005-07-16 03:49:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4446, '2005-07-07 23:12:16', 2629, 438, '2005-07-13 19:42:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4447, '2005-07-07 23:15:28', 404, 549, '2005-07-14 22:53:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4448, '2005-07-07 23:17:12', 2768, 536, '2005-07-13 18:26:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4449, '2005-07-07 23:18:58', 2813, 354, '2005-07-15 20:40:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4450, '2005-07-07 23:20:05', 1252, 345, '2005-07-13 19:50:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4451, '2005-07-07 23:29:54', 179, 85, '2005-07-10 23:29:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4452, '2005-07-07 23:31:54', 2414, 460, '2005-07-14 04:05:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4453, '2005-07-07 23:32:39', 89, 560, '2005-07-12 01:38:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4454, '2005-07-07 23:37:00', 1395, 9, '2005-07-11 02:30:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4455, '2005-07-07 23:43:46', 1396, 507, '2005-07-08 21:34:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4456, '2005-07-07 23:45:21', 3395, 421, '2005-07-13 23:03:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4457, '2005-07-07 23:45:38', 407, 567, '2005-07-09 20:02:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4458, '2005-07-07 23:47:47', 1307, 229, '2005-07-09 19:17:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4459, '2005-07-07 23:48:52', 3987, 227, '2005-07-13 19:37:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4460, '2005-07-07 23:50:14', 4121, 592, '2005-07-09 21:55:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4461, '2005-07-07 23:59:43', 3656, 286, '2005-07-16 19:44:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4462, '2005-07-08 00:02:49', 4120, 257, '2005-07-15 20:48:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4463, '2005-07-08 00:04:59', 4356, 422, '2005-07-16 01:19:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4464, '2005-07-08 00:07:18', 4484, 583, '2005-07-08 22:14:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4465, '2005-07-08 00:07:45', 2877, 329, '2005-07-13 18:08:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4466, '2005-07-08 00:12:53', 3320, 304, '2005-07-17 03:49:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4467, '2005-07-08 00:13:52', 4466, 339, '2005-07-09 00:52:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4468, '2005-07-08 00:17:59', 3302, 170, '2005-07-12 05:51:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4469, '2005-07-08 00:18:32', 2173, 192, '2005-07-12 21:17:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4470, '2005-07-08 00:20:57', 3605, 145, '2005-07-10 02:31:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4471, '2005-07-08 00:21:29', 263, 30, '2005-07-11 18:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4472, '2005-07-08 00:22:06', 2089, 343, '2005-07-16 20:16:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4473, '2005-07-08 00:22:10', 1387, 481, '2005-07-09 21:11:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4474, '2005-07-08 00:26:56', 4474, 137, '2005-07-12 23:07:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4475, '2005-07-08 00:27:30', 3466, 340, '2005-07-09 05:39:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4476, '2005-07-08 00:34:25', 395, 279, '2005-07-08 22:55:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4477, '2005-07-08 00:38:24', 1602, 552, '2005-07-13 05:14:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4478, '2005-07-08 00:39:08', 1764, 357, '2005-07-11 21:57:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4479, '2005-07-08 00:52:35', 3516, 211, '2005-07-09 20:19:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4480, '2005-07-08 00:56:30', 4457, 296, '2005-07-10 20:52:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4481, '2005-07-08 00:58:15', 1669, 474, '2005-07-11 23:22:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4482, '2005-07-08 01:01:18', 3500, 511, '2005-07-11 01:18:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4483, '2005-07-08 01:03:12', 1222, 425, '2005-07-17 00:20:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4484, '2005-07-08 01:05:57', 2867, 306, '2005-07-16 00:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4485, '2005-07-08 01:07:54', 2614, 130, '2005-07-16 03:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4486, '2005-07-08 01:09:09', 837, 197, '2005-07-16 23:40:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4487, '2005-07-08 01:20:22', 2220, 360, '2005-07-16 21:23:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4488, '2005-07-08 01:22:23', 2108, 89, '2005-07-13 21:17:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4489, '2005-07-08 01:23:58', 4306, 259, '2005-07-09 01:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4490, '2005-07-08 01:26:32', 2690, 161, '2005-07-09 01:13:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4491, '2005-07-08 01:30:46', 1168, 413, '2005-07-11 03:12:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4492, '2005-07-08 01:32:04', 1152, 247, '2005-07-10 22:11:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4493, '2005-07-08 01:40:24', 1369, 167, '2005-07-09 02:17:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4494, '2005-07-08 01:42:45', 1655, 349, '2005-07-16 22:29:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4495, '2005-07-08 01:43:46', 3515, 404, '2005-07-10 07:38:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4496, '2005-07-08 01:44:19', 150, 578, '2005-07-08 20:34:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4497, '2005-07-08 01:51:32', 1995, 142, '2005-07-15 22:56:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4498, '2005-07-08 02:07:50', 4299, 43, '2005-07-12 23:54:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4499, '2005-07-08 02:08:48', 851, 199, '2005-07-10 07:06:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4500, '2005-07-08 02:10:01', 398, 462, '2005-07-15 05:49:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4501, '2005-07-08 02:12:00', 1412, 262, '2005-07-10 02:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4502, '2005-07-08 02:12:04', 225, 470, '2005-07-15 02:19:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4503, '2005-07-08 02:17:12', 1503, 8, '2005-07-13 08:12:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4504, '2005-07-08 02:19:27', 361, 422, '2005-07-12 21:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4505, '2005-07-08 02:20:04', 1864, 481, '2005-07-14 20:28:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4506, '2005-07-08 02:22:18', 1484, 133, '2005-07-13 04:54:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4507, '2005-07-08 02:22:45', 819, 505, '2005-07-14 20:53:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4508, '2005-07-08 02:28:41', 3996, 97, '2005-07-16 23:59:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4509, '2005-07-08 02:32:38', 1760, 230, '2005-07-14 01:05:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4510, '2005-07-08 02:34:51', 1085, 27, '2005-07-17 06:03:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4511, '2005-07-08 02:36:21', 4438, 75, '2005-07-15 06:01:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4512, '2005-07-08 02:38:56', 1569, 424, '2005-07-10 20:46:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4513, '2005-07-08 02:39:59', 3704, 182, '2005-07-14 07:48:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4514, '2005-07-08 02:41:25', 1938, 576, '2005-07-15 06:17:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4515, '2005-07-08 02:42:03', 1998, 229, '2005-07-10 07:22:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4516, '2005-07-08 02:43:41', 2314, 497, '2005-07-14 02:20:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4517, '2005-07-08 02:45:19', 453, 16, '2005-07-12 03:04:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4518, '2005-07-08 02:48:36', 697, 592, '2005-07-13 04:53:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4519, '2005-07-08 02:51:23', 4425, 459, '2005-07-12 06:52:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4520, '2005-07-08 02:53:46', 3505, 104, '2005-07-08 22:27:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4521, '2005-07-08 02:57:56', 2652, 327, '2005-07-11 22:49:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4522, '2005-07-08 03:03:12', 4114, 307, '2005-07-10 04:49:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4523, '2005-07-08 03:06:59', 2785, 347, '2005-07-17 04:44:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4524, '2005-07-08 03:10:48', 2218, 185, '2005-07-09 07:49:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4525, '2005-07-08 03:15:00', 3631, 458, '2005-07-11 04:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4526, '2005-07-08 03:17:05', 1443, 1, '2005-07-14 01:19:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4527, '2005-07-08 03:20:10', 2263, 468, '2005-07-15 02:21:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4528, '2005-07-08 03:24:54', 3209, 439, '2005-07-09 03:50:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4529, '2005-07-08 03:26:20', 1361, 104, '2005-07-16 05:04:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4530, '2005-07-08 03:27:05', 3775, 79, '2005-07-11 07:44:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4531, '2005-07-08 03:27:59', 3108, 142, '2005-07-10 22:48:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4532, '2005-07-08 03:30:39', 4012, 481, '2005-07-11 21:49:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4533, '2005-07-08 03:32:01', 1105, 474, '2005-07-10 21:57:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4534, '2005-07-08 03:36:55', 2518, 132, '2005-07-16 00:49:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4535, '2005-07-08 03:40:46', 561, 29, '2005-07-13 06:53:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4536, '2005-07-08 03:43:22', 220, 26, '2005-07-15 08:44:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4537, '2005-07-08 03:48:40', 1305, 448, '2005-07-13 22:54:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4538, '2005-07-08 03:56:29', 3638, 451, '2005-07-15 08:24:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4539, '2005-07-08 04:01:02', 2450, 264, '2005-07-14 22:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4540, '2005-07-08 04:03:28', 4160, 309, '2005-07-13 03:31:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4541, '2005-07-08 04:04:19', 1976, 248, '2005-07-13 07:27:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4542, '2005-07-08 04:06:30', 4169, 293, '2005-07-16 06:54:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4543, '2005-07-08 04:06:55', 913, 41, '2005-07-12 23:17:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4544, '2005-07-08 04:11:04', 4471, 351, '2005-07-09 22:48:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4545, '2005-07-08 04:17:47', 3658, 271, '2005-07-13 07:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4546, '2005-07-08 04:18:36', 4507, 393, '2005-07-17 08:23:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4547, '2005-07-08 04:20:19', 3386, 255, '2005-07-09 00:28:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4548, '2005-07-08 04:21:54', 765, 164, '2005-07-14 23:16:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4549, '2005-07-08 04:25:03', 2797, 98, '2005-07-10 09:01:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4550, '2005-07-08 04:34:00', 615, 409, '2005-07-14 23:45:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4551, '2005-07-08 04:36:21', 1160, 494, '2005-07-17 10:23:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4552, '2005-07-08 04:36:35', 2549, 313, '2005-07-14 05:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4553, '2005-07-08 04:43:41', 2114, 529, '2005-07-09 23:55:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4554, '2005-07-08 04:48:03', 3878, 376, '2005-07-16 04:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4555, '2005-07-08 04:48:36', 1757, 68, '2005-07-17 07:57:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4556, '2005-07-08 04:48:41', 4099, 348, '2005-07-16 08:51:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4557, '2005-07-08 04:49:15', 1191, 132, '2005-07-14 00:00:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4558, '2005-07-08 04:55:26', 828, 448, '2005-07-09 10:53:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4559, '2005-07-08 04:56:49', 1911, 424, '2005-07-12 08:56:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4560, '2005-07-08 04:58:48', 303, 36, '2005-07-10 04:27:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4561, '2005-07-08 05:02:43', 1643, 500, '2005-07-11 04:56:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4562, '2005-07-08 05:08:32', 963, 454, '2005-07-12 08:16:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4563, '2005-07-08 05:08:55', 287, 522, '2005-07-16 05:44:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4564, '2005-07-08 05:09:38', 2494, 519, '2005-07-11 05:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4565, '2005-07-08 05:12:28', 3755, 563, '2005-07-17 03:38:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4566, '2005-07-08 05:18:50', 4302, 133, '2005-07-15 01:53:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4567, '2005-07-08 05:20:04', 4073, 202, '2005-07-10 01:35:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4568, '2005-07-08 05:23:59', 2626, 122, '2005-07-09 06:07:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4569, '2005-07-08 05:30:51', 2925, 366, '2005-07-14 04:14:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4570, '2005-07-08 05:33:59', 2612, 503, '2005-07-14 09:27:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4571, '2005-07-08 05:34:41', 2416, 86, '2005-07-17 02:15:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4572, '2005-07-08 05:36:59', 1324, 323, '2005-07-12 04:46:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4573, '2005-07-08 05:38:46', 2478, 400, '2005-07-15 07:07:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4574, '2005-07-08 05:39:42', 536, 257, '2005-07-08 23:44:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4575, '2005-07-08 05:49:14', 231, 41, '2005-07-11 04:08:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4576, '2005-07-08 05:51:19', 1920, 567, '2005-07-10 11:36:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4577, '2005-07-08 05:59:00', 1688, 442, '2005-07-16 06:23:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4578, '2005-07-08 06:00:17', 1533, 497, '2005-07-10 06:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4579, '2005-07-08 06:01:56', 4290, 585, '2005-07-13 11:24:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4580, '2005-07-08 06:04:23', 3512, 199, '2005-07-15 05:42:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4581, '2005-07-08 06:05:06', 887, 591, '2005-07-16 00:54:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4582, '2005-07-08 06:09:09', 688, 274, '2005-07-14 02:23:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4583, '2005-07-08 06:09:44', 4151, 365, '2005-07-12 03:44:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4584, '2005-07-08 06:11:02', 2322, 368, '2005-07-11 05:14:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4585, '2005-07-08 06:11:58', 1622, 143, '2005-07-17 01:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4586, '2005-07-08 06:12:33', 1374, 461, '2005-07-13 11:06:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4587, '2005-07-08 06:16:26', 3502, 63, '2005-07-13 00:59:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4588, '2005-07-08 06:18:01', 3629, 198, '2005-07-10 08:59:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4589, '2005-07-08 06:26:04', 1192, 99, '2005-07-09 10:31:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4590, '2005-07-08 06:27:48', 4233, 580, '2005-07-14 07:46:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4591, '2005-07-08 06:29:43', 2276, 182, '2005-07-17 07:20:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4592, '2005-07-08 06:31:28', 2141, 235, '2005-07-10 06:08:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4593, '2005-07-08 06:38:12', 2897, 528, '2005-07-16 10:48:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4594, '2005-07-08 06:40:06', 26, 506, '2005-07-16 05:51:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4595, '2005-07-08 06:40:25', 760, 336, '2005-07-14 08:54:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4596, '2005-07-08 06:41:25', 2280, 306, '2005-07-14 01:36:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4597, '2005-07-08 06:43:42', 3767, 545, '2005-07-13 01:32:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4598, '2005-07-08 06:46:26', 258, 82, '2005-07-16 01:21:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4599, '2005-07-08 06:48:26', 2098, 356, '2005-07-11 07:06:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4600, '2005-07-08 06:48:37', 1526, 457, '2005-07-15 10:11:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4601, '2005-07-08 06:49:10', 3184, 572, '2005-07-09 07:43:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4602, '2005-07-08 06:52:40', 3616, 129, '2005-07-10 06:30:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4603, '2005-07-08 06:57:07', 755, 334, '2005-07-17 04:32:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4604, '2005-07-08 06:58:43', 4230, 402, '2005-07-14 06:41:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4605, '2005-07-08 07:00:14', 1139, 523, '2005-07-16 08:38:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4606, '2005-07-08 07:05:50', 1946, 502, '2005-07-16 09:11:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4607, '2005-07-08 07:15:14', 1193, 281, '2005-07-11 01:32:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4608, '2005-07-08 07:19:11', 758, 11, '2005-07-11 01:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4609, '2005-07-08 07:22:29', 3711, 573, '2005-07-10 08:06:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4610, '2005-07-08 07:28:05', 1279, 265, '2005-07-14 02:10:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4611, '2005-07-08 07:33:56', 3486, 1, '2005-07-12 13:25:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4612, '2005-07-08 07:40:44', 82, 371, '2005-07-12 03:48:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4613, '2005-07-08 07:44:49', 476, 581, '2005-07-09 04:47:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4614, '2005-07-08 07:45:17', 2579, 71, '2005-07-12 02:10:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4615, '2005-07-08 07:46:53', 1200, 404, '2005-07-16 12:43:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4616, '2005-07-08 07:48:12', 2580, 280, '2005-07-10 08:13:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4617, '2005-07-08 07:55:08', 3784, 475, '2005-07-17 02:49:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4618, '2005-07-08 08:00:20', 3691, 179, '2005-07-14 05:59:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4619, '2005-07-08 08:01:09', 2127, 579, '2005-07-16 05:52:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4620, '2005-07-08 08:01:44', 3467, 210, '2005-07-16 07:43:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4621, '2005-07-08 08:02:18', 1594, 297, '2005-07-12 08:53:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4622, '2005-07-08 08:02:42', 2710, 289, '2005-07-10 07:46:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4623, '2005-07-08 08:03:22', 4171, 593, '2005-07-12 09:11:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4624, '2005-07-08 08:12:17', 1548, 341, '2005-07-15 12:24:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4625, '2005-07-08 08:14:26', 318, 473, '2005-07-09 03:45:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4626, '2005-07-08 08:18:21', 37, 268, '2005-07-10 11:36:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4627, '2005-07-08 08:24:39', 2383, 78, '2005-07-13 11:04:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4628, '2005-07-08 08:25:52', 1888, 540, '2005-07-10 11:22:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4629, '2005-07-08 08:31:26', 228, 563, '2005-07-17 12:07:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4630, '2005-07-08 08:33:38', 3446, 319, '2005-07-09 13:09:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4631, '2005-07-08 08:38:22', 470, 59, '2005-07-11 03:33:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4632, '2005-07-08 08:38:57', 4330, 393, '2005-07-15 09:33:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4633, '2005-07-08 08:39:39', 3178, 348, '2005-07-15 10:23:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4634, '2005-07-08 08:40:02', 811, 275, '2005-07-12 04:45:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4635, '2005-07-08 08:42:40', 2434, 65, '2005-07-14 10:31:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4636, '2005-07-08 08:44:32', 1858, 228, '2005-07-10 08:59:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4637, '2005-07-08 08:49:54', 1917, 263, '2005-07-11 13:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4638, '2005-07-08 08:57:20', 2240, 305, '2005-07-10 05:08:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4639, '2005-07-08 08:57:21', 2459, 75, '2005-07-14 11:22:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4640, '2005-07-08 08:59:34', 1147, 506, '2005-07-15 03:31:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4641, '2005-07-08 09:09:46', 2436, 26, '2005-07-17 03:54:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4642, '2005-07-08 09:13:28', 1962, 30, '2005-07-10 06:17:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4643, '2005-07-08 09:13:56', 239, 436, '2005-07-10 12:09:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4644, '2005-07-08 09:14:29', 3239, 38, '2005-07-10 07:20:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4645, '2005-07-08 09:20:09', 687, 400, '2005-07-09 06:07:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4646, '2005-07-08 09:23:26', 618, 362, '2005-07-16 04:03:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4647, '2005-07-08 09:27:36', 674, 312, '2005-07-16 14:56:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4648, '2005-07-08 09:31:27', 3490, 444, '2005-07-13 03:55:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4649, '2005-07-08 09:32:05', 1116, 221, '2005-07-15 08:37:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4650, '2005-07-08 09:32:08', 2850, 108, '2005-07-15 15:20:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4651, '2005-07-08 09:39:39', 4064, 557, '2005-07-09 12:14:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4652, '2005-07-08 09:47:51', 4198, 127, '2005-07-16 04:09:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4653, '2005-07-08 09:48:01', 2511, 404, '2005-07-17 05:18:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4654, '2005-07-08 09:48:03', 4210, 434, '2005-07-17 13:17:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4655, '2005-07-08 09:49:22', 4078, 213, '2005-07-15 13:08:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4656, '2005-07-08 09:50:10', 839, 141, '2005-07-13 15:00:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4657, '2005-07-08 09:51:02', 1002, 54, '2005-07-09 09:29:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4658, '2005-07-08 09:51:11', 3131, 166, '2005-07-10 12:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4659, '2005-07-08 09:53:28', 4389, 425, '2005-07-14 14:56:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4660, '2005-07-08 09:54:47', 1208, 139, '2005-07-11 15:19:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4661, '2005-07-08 09:55:06', 2641, 518, '2005-07-11 08:26:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4662, '2005-07-08 09:58:54', 1370, 553, '2005-07-10 12:51:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4663, '2005-07-08 09:59:18', 2959, 139, '2005-07-10 11:25:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4664, '2005-07-08 10:01:28', 1318, 546, '2005-07-12 10:37:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4665, '2005-07-08 10:04:24', 575, 106, '2005-07-14 15:13:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4666, '2005-07-08 10:05:02', 4576, 120, '2005-07-16 07:28:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4667, '2005-07-08 10:06:26', 3348, 485, '2005-07-14 04:48:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4668, '2005-07-08 10:11:45', 3971, 481, '2005-07-17 13:01:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4669, '2005-07-08 10:13:08', 3494, 581, '2005-07-16 07:52:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4670, '2005-07-08 10:14:18', 3317, 153, '2005-07-16 15:10:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4671, '2005-07-08 10:15:32', 2139, 55, '2005-07-14 08:19:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4672, '2005-07-08 10:15:38', 1922, 18, '2005-07-16 05:06:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4673, '2005-07-08 10:16:00', 2792, 91, '2005-07-17 10:03:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4674, '2005-07-08 10:19:28', 1617, 329, '2005-07-12 12:54:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4675, '2005-07-08 10:24:22', 1309, 380, '2005-07-14 11:09:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4676, '2005-07-08 10:26:02', 2590, 302, '2005-07-10 13:38:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4677, '2005-07-08 10:30:36', 1226, 258, '2005-07-14 12:40:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4678, '2005-07-08 10:30:40', 241, 219, '2005-07-13 11:08:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4679, '2005-07-08 10:33:14', 3610, 423, '2005-07-15 14:30:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4680, '2005-07-08 10:35:28', 4043, 227, '2005-07-14 08:42:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4681, '2005-07-08 10:36:03', 1025, 133, '2005-07-16 09:21:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4682, '2005-07-08 10:38:27', 873, 263, '2005-07-11 06:29:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4683, '2005-07-08 10:38:28', 3464, 283, '2005-07-09 12:07:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4684, '2005-07-08 10:41:06', 503, 585, '2005-07-17 10:35:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4685, '2005-07-08 10:45:13', 602, 590, '2005-07-12 08:29:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4686, '2005-07-08 10:53:39', 1398, 234, '2005-07-10 05:34:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4687, '2005-07-08 10:54:19', 1156, 169, '2005-07-10 08:00:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4688, '2005-07-08 11:03:29', 3574, 80, '2005-07-17 15:41:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4689, '2005-07-08 11:03:47', 2519, 364, '2005-07-16 06:07:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4690, '2005-07-08 11:04:02', 3304, 64, '2005-07-15 10:27:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4691, '2005-07-08 11:04:53', 596, 126, '2005-07-09 07:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4692, '2005-07-08 11:07:06', 1490, 288, '2005-07-09 14:08:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4693, '2005-07-08 11:07:36', 1694, 221, '2005-07-14 08:40:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4694, '2005-07-08 11:07:37', 3637, 229, '2005-07-12 06:53:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4695, '2005-07-08 11:07:59', 805, 39, '2005-07-17 16:35:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4696, '2005-07-08 11:12:27', 1358, 424, '2005-07-14 05:41:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4697, '2005-07-08 11:19:14', 4143, 224, '2005-07-12 07:14:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4698, '2005-07-08 11:19:31', 3963, 570, '2005-07-13 13:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4699, '2005-07-08 11:36:56', 2462, 348, '2005-07-14 11:35:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4700, '2005-07-08 11:37:21', 3889, 317, '2005-07-12 15:41:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4701, '2005-07-08 11:38:48', 3012, 522, '2005-07-13 15:59:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4702, '2005-07-08 11:41:36', 2593, 56, '2005-07-10 06:55:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4703, '2005-07-08 11:44:56', 2859, 544, '2005-07-13 09:17:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4704, '2005-07-08 11:45:35', 2291, 28, '2005-07-10 09:46:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4705, '2005-07-08 11:50:38', 3709, 85, '2005-07-12 15:58:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4706, '2005-07-08 11:51:41', 2512, 380, '2005-07-17 12:58:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4707, '2005-07-08 11:57:28', 52, 286, '2005-07-10 17:47:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4708, '2005-07-08 11:59:19', 3249, 212, '2005-07-17 07:11:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4709, '2005-07-08 12:04:34', 3964, 124, '2005-07-15 06:48:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4710, '2005-07-08 12:04:53', 248, 590, '2005-07-13 11:28:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4711, '2005-07-08 12:06:58', 2327, 563, '2005-07-12 08:37:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4712, '2005-07-08 12:10:50', 2371, 39, '2005-07-17 14:54:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4713, '2005-07-08 12:12:33', 1399, 207, '2005-07-16 17:13:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4714, '2005-07-08 12:12:48', 1932, 385, '2005-07-17 08:43:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4715, '2005-07-08 12:15:37', 4010, 276, '2005-07-10 10:37:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4716, '2005-07-08 12:18:51', 1923, 391, '2005-07-11 11:06:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4717, '2005-07-08 12:22:43', 1491, 453, '2005-07-11 10:24:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4718, '2005-07-08 12:32:08', 1653, 535, '2005-07-17 17:34:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4719, '2005-07-08 12:33:00', 1315, 556, '2005-07-15 12:30:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4720, '2005-07-08 12:34:34', 2669, 452, '2005-07-09 10:28:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4721, '2005-07-08 12:39:31', 3105, 234, '2005-07-15 18:07:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4722, '2005-07-08 12:42:27', 3738, 590, '2005-07-09 09:14:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4723, '2005-07-08 12:44:59', 965, 44, '2005-07-17 07:22:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4724, '2005-07-08 12:46:30', 3375, 18, '2005-07-14 12:39:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4725, '2005-07-08 12:47:11', 2058, 3, '2005-07-15 09:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4726, '2005-07-08 12:50:54', 4369, 144, '2005-07-17 07:09:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4727, '2005-07-08 12:54:15', 1251, 39, '2005-07-17 14:32:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4728, '2005-07-08 12:59:01', 3687, 462, '2005-07-13 13:00:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4729, '2005-07-08 12:59:40', 1429, 205, '2005-07-10 13:35:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4730, '2005-07-08 12:59:49', 1619, 126, '2005-07-14 16:15:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4731, '2005-07-08 13:08:18', 4124, 241, '2005-07-09 13:16:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4732, '2005-07-08 13:09:45', 308, 562, '2005-07-14 10:10:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4733, '2005-07-08 13:12:07', 2230, 93, '2005-07-13 07:34:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4734, '2005-07-08 13:12:12', 1928, 546, '2005-07-10 09:01:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4735, '2005-07-08 13:12:27', 4324, 381, '2005-07-13 10:06:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4736, '2005-07-08 13:22:55', 3009, 79, '2005-07-17 07:27:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4737, '2005-07-08 13:23:53', 4286, 116, '2005-07-12 18:49:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4738, '2005-07-08 13:24:58', 2021, 31, '2005-07-17 17:44:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4739, '2005-07-08 13:25:57', 140, 197, '2005-07-11 17:36:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4740, '2005-07-08 13:30:35', 2559, 379, '2005-07-14 18:43:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4741, '2005-07-08 13:31:23', 516, 260, '2005-07-17 12:02:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4742, '2005-07-08 13:35:23', 3022, 340, '2005-07-11 10:24:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4743, '2005-07-08 13:42:36', 80, 535, '2005-07-11 18:54:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4744, '2005-07-08 13:43:57', 2948, 507, '2005-07-12 09:21:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4745, '2005-07-08 13:45:09', 1351, 354, '2005-07-12 18:54:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4746, '2005-07-08 13:47:55', 173, 148, '2005-07-11 09:06:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4747, '2005-07-08 13:53:01', 3942, 383, '2005-07-12 17:10:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4748, '2005-07-08 13:59:38', 4279, 9, '2005-07-15 16:51:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4749, '2005-07-08 14:05:58', 1190, 236, '2005-07-10 18:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4750, '2005-07-08 14:07:03', 3383, 198, '2005-07-13 18:05:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4751, '2005-07-08 14:07:52', 3469, 436, '2005-07-13 10:37:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4752, '2005-07-08 14:15:20', 3250, 512, '2005-07-12 13:22:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4753, '2005-07-08 14:18:41', 1642, 391, '2005-07-09 10:00:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4754, '2005-07-08 14:20:01', 3177, 108, '2005-07-11 11:50:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4755, '2005-07-08 14:23:41', 661, 378, '2005-07-10 19:35:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4756, '2005-07-08 14:24:00', 3068, 351, '2005-07-12 16:16:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4757, '2005-07-08 14:36:51', 1278, 504, '2005-07-12 15:28:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4758, '2005-07-08 14:38:02', 3698, 288, '2005-07-13 12:09:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4759, '2005-07-08 14:39:22', 3999, 284, '2005-07-17 15:02:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4760, '2005-07-08 14:48:07', 3718, 177, '2005-07-10 12:41:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4761, '2005-07-08 14:51:45', 3556, 351, '2005-07-14 20:28:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4762, '2005-07-08 14:54:42', 390, 36, '2005-07-12 18:08:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4763, '2005-07-08 14:57:32', 899, 465, '2005-07-15 10:00:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4764, '2005-07-08 15:01:25', 1188, 89, '2005-07-17 15:16:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4765, '2005-07-08 15:08:45', 469, 437, '2005-07-13 10:44:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4766, '2005-07-08 15:16:04', 1057, 149, '2005-07-15 11:04:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4767, '2005-07-08 15:18:53', 3744, 350, '2005-07-13 15:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4768, '2005-07-08 15:28:20', 2787, 482, '2005-07-09 11:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4769, '2005-07-08 15:29:16', 3462, 501, '2005-07-09 18:42:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4770, '2005-07-08 15:29:46', 2406, 573, '2005-07-14 13:31:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4771, '2005-07-08 15:33:32', 1060, 32, '2005-07-10 12:38:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4772, '2005-07-08 15:41:11', 2156, 486, '2005-07-17 15:25:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4773, '2005-07-08 15:41:39', 3025, 519, '2005-07-13 18:16:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4774, '2005-07-08 15:42:28', 673, 489, '2005-07-16 18:29:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4775, '2005-07-08 15:44:05', 4277, 595, '2005-07-11 20:39:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4776, '2005-07-08 15:44:20', 2598, 563, '2005-07-17 10:50:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4777, '2005-07-08 15:48:34', 449, 102, '2005-07-16 15:25:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4778, '2005-07-08 15:51:51', 611, 78, '2005-07-12 16:58:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4779, '2005-07-08 15:53:41', 1321, 338, '2005-07-15 20:30:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4780, '2005-07-08 16:06:51', 2740, 115, '2005-07-13 18:34:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4781, '2005-07-08 16:06:55', 1818, 593, '2005-07-16 11:22:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4782, '2005-07-08 16:08:51', 445, 436, '2005-07-17 17:56:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4783, '2005-07-08 16:09:24', 3952, 214, '2005-07-16 21:53:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4784, '2005-07-08 16:09:56', 549, 182, '2005-07-09 20:35:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4785, '2005-07-08 16:10:19', 58, 474, '2005-07-11 18:52:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4786, '2005-07-08 16:13:05', 2724, 294, '2005-07-16 15:29:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4787, '2005-07-08 16:16:04', 3929, 7, '2005-07-14 18:02:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4788, '2005-07-08 16:17:35', 691, 533, '2005-07-11 11:56:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4789, '2005-07-08 16:22:01', 20, 73, '2005-07-15 18:29:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4790, '2005-07-08 16:25:27', 100, 500, '2005-07-11 11:35:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4791, '2005-07-08 16:27:24', 2505, 393, '2005-07-14 21:50:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4792, '2005-07-08 16:29:38', 2132, 147, '2005-07-10 16:31:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4793, '2005-07-08 16:30:01', 3090, 427, '2005-07-15 17:56:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4794, '2005-07-08 16:30:11', 2497, 451, '2005-07-17 12:41:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4795, '2005-07-08 16:32:54', 3409, 497, '2005-07-09 14:15:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4796, '2005-07-08 16:35:44', 2484, 9, '2005-07-13 11:08:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4797, '2005-07-08 16:39:05', 1389, 265, '2005-07-09 11:41:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4798, '2005-07-08 16:45:16', 3874, 212, '2005-07-16 13:45:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4799, '2005-07-08 16:49:27', 4112, 512, '2005-07-12 19:58:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4800, '2005-07-08 16:51:08', 1940, 99, '2005-07-13 14:16:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4801, '2005-07-08 16:51:36', 761, 431, '2005-07-13 17:23:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4802, '2005-07-08 16:55:17', 22, 562, '2005-07-15 19:34:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4803, '2005-07-08 16:56:34', 1786, 174, '2005-07-14 20:16:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4804, '2005-07-08 16:57:30', 3756, 269, '2005-07-10 18:25:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4805, '2005-07-08 16:59:12', 377, 453, '2005-07-09 15:02:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4806, '2005-07-08 17:01:02', 214, 506, '2005-07-15 21:41:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4807, '2005-07-08 17:01:48', 4511, 348, '2005-07-16 22:33:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4808, '2005-07-08 17:02:49', 2544, 563, '2005-07-12 22:49:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4809, '2005-07-08 17:03:22', 4251, 474, '2005-07-17 22:39:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4810, '2005-07-08 17:04:06', 4056, 209, '2005-07-09 13:41:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4811, '2005-07-08 17:04:24', 4032, 127, '2005-07-12 16:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4812, '2005-07-08 17:07:11', 3281, 304, '2005-07-17 21:03:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4813, '2005-07-08 17:09:56', 2752, 439, '2005-07-09 22:29:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4814, '2005-07-08 17:11:09', 3497, 244, '2005-07-17 12:43:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4815, '2005-07-08 17:12:51', 840, 581, '2005-07-17 13:14:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4816, '2005-07-08 17:14:14', 2700, 207, '2005-07-11 15:03:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4817, '2005-07-08 17:17:31', 1608, 145, '2005-07-09 22:32:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4818, '2005-07-08 17:18:22', 115, 144, '2005-07-14 14:40:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4819, '2005-07-08 17:19:15', 1342, 64, '2005-07-16 14:32:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4820, '2005-07-08 17:25:23', 2672, 172, '2005-07-17 20:32:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4821, '2005-07-08 17:28:08', 1690, 172, '2005-07-11 17:44:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4822, '2005-07-08 17:28:47', 3970, 185, '2005-07-14 13:06:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4823, '2005-07-08 17:28:54', 155, 206, '2005-07-11 23:10:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4824, '2005-07-08 17:37:39', 1855, 225, '2005-07-16 18:27:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4825, '2005-07-08 17:43:01', 2419, 563, '2005-07-11 20:58:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4826, '2005-07-08 17:44:25', 911, 180, '2005-07-16 20:14:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4827, '2005-07-08 17:46:30', 4455, 110, '2005-07-11 14:12:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4828, '2005-07-08 17:52:29', 1100, 92, '2005-07-11 14:35:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4829, '2005-07-08 17:54:18', 2661, 133, '2005-07-11 23:41:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4830, '2005-07-08 17:56:23', 1150, 359, '2005-07-17 21:40:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4831, '2005-07-08 18:00:14', 2739, 243, '2005-07-12 15:54:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4832, '2005-07-08 18:07:05', 1838, 509, '2005-07-10 19:37:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4833, '2005-07-08 18:07:35', 2921, 581, '2005-07-13 15:29:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4834, '2005-07-08 18:07:45', 1288, 301, '2005-07-14 15:27:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4835, '2005-07-08 18:08:13', 2499, 95, '2005-07-17 16:51:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4836, '2005-07-08 18:09:08', 2756, 311, '2005-07-15 20:19:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4837, '2005-07-08 18:09:12', 1944, 149, '2005-07-11 16:40:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4838, '2005-07-08 18:11:00', 3733, 84, '2005-07-17 12:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4839, '2005-07-08 18:13:10', 1810, 556, '2005-07-15 12:49:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4840, '2005-07-08 18:18:16', 1670, 119, '2005-07-16 14:59:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4841, '2005-07-08 18:18:23', 518, 248, '2005-07-11 16:51:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4842, '2005-07-08 18:21:30', 1438, 160, '2005-07-10 22:25:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4843, '2005-07-08 18:27:28', 3640, 45, '2005-07-15 00:26:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4844, '2005-07-08 18:28:13', 4057, 237, '2005-07-09 21:17:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4845, '2005-07-08 18:28:20', 2337, 553, '2005-07-09 14:38:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4846, '2005-07-08 18:29:05', 417, 556, '2005-07-10 22:33:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4847, '2005-07-08 18:29:13', 3397, 544, '2005-07-15 18:12:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4848, '2005-07-08 18:30:16', 2962, 251, '2005-07-12 19:53:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4849, '2005-07-08 18:34:34', 4323, 146, '2005-07-14 20:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4850, '2005-07-08 18:39:31', 3039, 154, '2005-07-13 00:18:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4851, '2005-07-08 18:40:05', 134, 557, '2005-07-12 21:46:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4852, '2005-07-08 18:43:15', 3545, 418, '2005-07-15 18:48:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4853, '2005-07-08 18:43:18', 1454, 23, '2005-07-12 14:28:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4854, '2005-07-08 18:44:44', 3644, 487, '2005-07-13 13:37:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4855, '2005-07-08 18:45:50', 1146, 337, '2005-07-11 18:23:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4856, '2005-07-08 18:47:38', 2441, 7, '2005-07-13 15:02:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4857, '2005-07-08 18:52:07', 2069, 211, '2005-07-11 22:06:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4858, '2005-07-08 18:53:24', 3424, 447, '2005-07-17 20:32:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4859, '2005-07-08 18:54:04', 1939, 369, '2005-07-13 13:04:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4860, '2005-07-08 18:54:07', 428, 123, '2005-07-17 15:09:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4861, '2005-07-08 18:57:30', 2984, 455, '2005-07-16 15:12:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4862, '2005-07-08 19:02:46', 293, 291, '2005-07-17 20:17:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4863, '2005-07-08 19:03:15', 1, 431, '2005-07-11 21:29:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4864, '2005-07-08 19:05:34', 2974, 281, '2005-07-17 15:05:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4865, '2005-07-08 19:09:04', 1614, 418, '2005-07-13 21:25:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4866, '2005-07-08 19:09:59', 4036, 278, '2005-07-15 00:51:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4867, '2005-07-08 19:10:52', 4090, 593, '2005-07-09 21:43:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4868, '2005-07-08 19:13:50', 1157, 307, '2005-07-14 20:59:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4869, '2005-07-08 19:14:05', 2860, 376, '2005-07-15 22:27:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4870, '2005-07-08 19:14:45', 3089, 260, '2005-07-12 18:58:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4871, '2005-07-08 19:19:52', 2509, 210, '2005-07-13 20:27:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4872, '2005-07-08 19:23:16', 1836, 103, '2005-07-10 14:17:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4873, '2005-07-08 19:23:32', 4500, 473, '2005-07-11 15:24:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4874, '2005-07-08 19:23:38', 2386, 223, '2005-07-13 14:39:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4875, '2005-07-08 19:24:17', 843, 555, '2005-07-11 19:15:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4876, '2005-07-08 19:27:50', 1959, 283, '2005-07-14 15:42:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4877, '2005-07-08 19:31:02', 1846, 287, '2005-07-15 19:05:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4878, '2005-07-08 19:33:49', 4009, 172, '2005-07-17 17:47:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4879, '2005-07-08 19:34:55', 1406, 196, '2005-07-09 15:53:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4880, '2005-07-08 19:36:17', 4178, 269, '2005-07-13 00:01:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4881, '2005-07-08 19:40:34', 4346, 349, '2005-07-09 17:08:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4882, '2005-07-08 19:42:03', 4540, 184, '2005-07-16 22:24:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4883, '2005-07-08 19:46:58', 1366, 563, '2005-07-10 15:48:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4884, '2005-07-08 19:49:17', 3543, 425, '2005-07-15 23:14:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4885, '2005-07-08 19:51:17', 442, 233, '2005-07-12 16:02:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4886, '2005-07-08 19:53:22', 3393, 474, '2005-07-09 17:05:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4887, '2005-07-08 19:59:14', 3613, 543, '2005-07-15 22:53:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4888, '2005-07-08 20:04:27', 1220, 527, '2005-07-10 14:53:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4889, '2005-07-08 20:04:43', 4463, 5, '2005-07-13 17:57:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4890, '2005-07-08 20:05:38', 3576, 574, '2005-07-14 14:55:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4891, '2005-07-08 20:06:19', 1787, 59, '2005-07-16 18:52:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4892, '2005-07-08 20:06:25', 3566, 193, '2005-07-14 20:04:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4893, '2005-07-08 20:19:55', 2060, 210, '2005-07-15 21:28:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4894, '2005-07-08 20:21:31', 1028, 286, '2005-07-11 01:59:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4895, '2005-07-08 20:22:05', 2620, 242, '2005-07-12 20:49:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4896, '2005-07-08 20:23:15', 3006, 129, '2005-07-10 15:38:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4897, '2005-07-08 20:25:11', 2950, 258, '2005-07-09 17:16:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4898, '2005-07-08 20:31:43', 3212, 218, '2005-07-15 15:58:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4899, '2005-07-08 20:37:11', 414, 32, '2005-07-10 21:53:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4900, '2005-07-08 20:38:06', 3487, 426, '2005-07-09 22:45:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4901, '2005-07-08 20:44:51', 2187, 507, '2005-07-10 01:04:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4902, '2005-07-08 20:49:30', 2238, 554, '2005-07-13 16:54:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4903, '2005-07-08 20:50:05', 1769, 132, '2005-07-13 15:27:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4904, '2005-07-08 20:53:27', 2051, 173, '2005-07-18 01:16:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4905, '2005-07-08 20:56:00', 4101, 246, '2005-07-12 00:19:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4906, '2005-07-08 20:59:13', 1527, 490, '2005-07-15 01:12:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4907, '2005-07-08 21:01:41', 1206, 209, '2005-07-13 02:23:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4908, '2005-07-08 21:05:44', 1963, 160, '2005-07-17 21:33:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4909, '2005-07-08 21:07:24', 1451, 228, '2005-07-10 22:34:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4910, '2005-07-08 21:13:56', 3675, 219, '2005-07-18 02:39:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4911, '2005-07-08 21:20:26', 4479, 66, '2005-07-15 03:11:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4912, '2005-07-08 21:26:11', 2012, 275, '2005-07-18 02:19:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4913, '2005-07-08 21:27:48', 982, 368, '2005-07-18 02:51:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4914, '2005-07-08 21:30:53', 298, 535, '2005-07-17 01:29:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4915, '2005-07-08 21:31:22', 2772, 178, '2005-07-13 16:45:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4916, '2005-07-08 21:32:17', 2680, 212, '2005-07-14 20:55:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4917, '2005-07-08 21:32:30', 3231, 104, '2005-07-09 15:34:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4918, '2005-07-08 21:37:31', 3819, 220, '2005-07-11 20:16:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4919, '2005-07-08 21:41:54', 2106, 157, '2005-07-11 23:14:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4920, '2005-07-08 21:42:10', 4285, 239, '2005-07-15 03:08:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4921, '2005-07-08 21:43:21', 425, 109, '2005-07-10 16:06:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4922, '2005-07-08 21:44:00', 2928, 577, '2005-07-10 02:58:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4923, '2005-07-08 21:44:39', 932, 18, '2005-07-17 15:50:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4924, '2005-07-08 21:55:25', 4344, 180, '2005-07-16 16:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4925, '2005-07-08 21:56:00', 2169, 68, '2005-07-14 17:17:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4926, '2005-07-08 22:01:48', 4155, 415, '2005-07-18 03:27:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4927, '2005-07-08 22:05:35', 2566, 136, '2005-07-14 23:22:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4928, '2005-07-08 22:05:41', 4363, 77, '2005-07-09 23:09:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4929, '2005-07-08 22:06:18', 734, 297, '2005-07-17 18:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4930, '2005-07-08 22:15:48', 2057, 451, '2005-07-15 21:02:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4931, '2005-07-08 22:16:18', 2750, 284, '2005-07-17 03:42:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4932, '2005-07-08 22:17:40', 4237, 558, '2005-07-15 22:13:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4933, '2005-07-08 22:18:29', 322, 579, '2005-07-13 03:47:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4934, '2005-07-08 22:18:42', 1744, 517, '2005-07-10 20:44:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4935, '2005-07-08 22:20:56', 2708, 230, '2005-07-12 01:01:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4936, '2005-07-08 22:24:50', 2033, 298, '2005-07-15 03:14:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4937, '2005-07-08 22:29:59', 33, 273, '2005-07-15 21:51:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4938, '2005-07-08 22:32:53', 2164, 418, '2005-07-14 16:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4939, '2005-07-08 22:35:30', 3201, 425, '2005-07-17 22:05:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4940, '2005-07-08 22:36:06', 971, 215, '2005-07-15 04:28:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4941, '2005-07-08 22:39:10', 3816, 553, '2005-07-15 17:49:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4942, '2005-07-08 22:42:47', 4467, 120, '2005-07-15 04:36:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4943, '2005-07-08 22:43:05', 2732, 11, '2005-07-15 18:17:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4944, '2005-07-08 22:44:28', 3648, 293, '2005-07-17 21:51:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4945, '2005-07-08 22:45:02', 2079, 165, '2005-07-11 23:59:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4946, '2005-07-08 22:46:23', 272, 440, '2005-07-16 17:19:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4947, '2005-07-08 22:49:37', 3905, 388, '2005-07-17 21:03:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4948, '2005-07-08 22:54:21', 2972, 518, '2005-07-17 03:52:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4949, '2005-07-08 22:57:10', 1184, 567, '2005-07-11 01:26:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4950, '2005-07-08 22:58:07', 3291, 148, '2005-07-09 20:41:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4951, '2005-07-08 22:58:21', 2766, 28, '2005-07-16 18:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4952, '2005-07-08 23:00:07', 459, 14, '2005-07-09 21:47:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4953, '2005-07-08 23:09:48', 2460, 168, '2005-07-11 02:08:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4954, '2005-07-08 23:14:16', 627, 99, '2005-07-14 23:23:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4955, '2005-07-08 23:16:21', 1103, 225, '2005-07-14 02:09:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4956, '2005-07-08 23:17:10', 1512, 477, '2005-07-18 00:14:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4957, '2005-07-08 23:18:48', 4082, 399, '2005-07-09 23:13:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4958, '2005-07-08 23:19:52', 2354, 346, '2005-07-17 20:31:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4959, '2005-07-08 23:22:23', 3898, 236, '2005-07-10 03:17:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4960, '2005-07-08 23:27:16', 2176, 434, '2005-07-18 02:01:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4961, '2005-07-08 23:35:53', 3668, 96, '2005-07-14 22:46:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4962, '2005-07-08 23:36:13', 4399, 532, '2005-07-15 03:39:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4963, '2005-07-08 23:38:40', 737, 404, '2005-07-12 05:33:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4964, '2005-07-08 23:46:38', 1033, 455, '2005-07-09 22:19:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4965, '2005-07-08 23:46:57', 535, 432, '2005-07-15 18:47:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4966, '2005-07-08 23:47:25', 4360, 118, '2005-07-14 03:35:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4967, '2005-07-08 23:48:03', 108, 339, '2005-07-15 23:51:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4968, '2005-07-08 23:49:19', 3204, 390, '2005-07-14 02:46:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4969, '2005-07-08 23:51:26', 4563, 231, '2005-07-12 03:21:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4970, '2005-07-08 23:54:29', 2983, 100, '2005-07-16 22:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4971, '2005-07-08 23:54:49', 460, 64, '2005-07-16 00:15:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4972, '2005-07-08 23:56:09', 2451, 498, '2005-07-16 19:15:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4973, '2005-07-08 23:58:18', 391, 432, '2005-07-14 21:42:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4974, '2005-07-09 00:00:36', 1071, 152, '2005-07-13 21:03:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4975, '2005-07-09 00:02:46', 3730, 101, '2005-07-14 18:05:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4976, '2005-07-09 00:03:30', 617, 199, '2005-07-10 19:05:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4977, '2005-07-09 00:15:50', 3310, 584, '2005-07-10 00:34:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4978, '2005-07-09 00:22:02', 2578, 279, '2005-07-18 04:37:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4979, '2005-07-09 00:24:34', 3447, 204, '2005-07-12 20:04:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4980, '2005-07-09 00:26:59', 2638, 100, '2005-07-14 19:42:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4981, '2005-07-09 00:29:29', 3363, 399, '2005-07-16 19:06:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4982, '2005-07-09 00:30:52', 249, 162, '2005-07-15 23:50:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4983, '2005-07-09 00:34:16', 1469, 81, '2005-07-17 03:21:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4984, '2005-07-09 00:35:31', 1303, 214, '2005-07-17 03:44:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4985, '2005-07-09 00:36:02', 2146, 208, '2005-07-14 04:06:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4986, '2005-07-09 00:44:33', 3517, 589, '2005-07-09 19:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4987, '2005-07-09 00:45:41', 996, 277, '2005-07-14 03:32:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4988, '2005-07-09 00:46:14', 2718, 433, '2005-07-16 01:45:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4989, '2005-07-09 00:46:56', 3326, 210, '2005-07-17 06:24:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4990, '2005-07-09 00:48:49', 3305, 35, '2005-07-10 06:36:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4991, '2005-07-09 00:49:03', 1856, 540, '2005-07-13 05:02:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4992, '2005-07-09 00:49:37', 2081, 315, '2005-07-16 02:05:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4993, '2005-07-09 00:49:47', 1740, 517, '2005-07-11 21:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4994, '2005-07-09 00:54:13', 2546, 246, '2005-07-09 21:02:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4995, '2005-07-09 00:57:46', 2063, 247, '2005-07-13 03:32:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4996, '2005-07-09 00:59:46', 4440, 129, '2005-07-16 01:30:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4997, '2005-07-09 01:06:03', 186, 102, '2005-07-18 04:21:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4998, '2005-07-09 01:07:21', 202, 534, '2005-07-10 05:48:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (4999, '2005-07-09 01:12:57', 1797, 196, '2005-07-17 00:12:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5000, '2005-07-09 01:16:13', 668, 146, '2005-07-14 21:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5001, '2005-07-09 01:17:04', 2025, 40, '2005-07-16 03:25:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5002, '2005-07-09 01:17:08', 2388, 430, '2005-07-15 21:53:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5003, '2005-07-09 01:19:03', 3438, 569, '2005-07-10 04:28:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5004, '2005-07-09 01:20:50', 2637, 382, '2005-07-09 19:56:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5005, '2005-07-09 01:21:44', 3034, 451, '2005-07-14 20:27:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5006, '2005-07-09 01:24:07', 1277, 486, '2005-07-18 03:56:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5007, '2005-07-09 01:26:22', 3079, 207, '2005-07-12 20:48:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5008, '2005-07-09 01:31:42', 824, 509, '2005-07-11 22:34:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5009, '2005-07-09 01:32:17', 1539, 102, '2005-07-18 03:39:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5010, '2005-07-09 01:33:23', 1999, 574, '2005-07-14 04:00:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5011, '2005-07-09 01:44:40', 463, 249, '2005-07-11 00:58:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5012, '2005-07-09 01:45:04', 1456, 251, '2005-07-12 02:13:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5013, '2005-07-09 01:46:45', 3000, 35, '2005-07-16 06:57:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5014, '2005-07-09 01:51:49', 4095, 334, '2005-07-10 04:48:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5015, '2005-07-09 01:54:24', 1564, 178, '2005-07-12 20:07:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5016, '2005-07-09 01:57:57', 1871, 5, '2005-07-09 22:07:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5017, '2005-07-09 02:00:16', 3745, 241, '2005-07-14 06:28:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5018, '2005-07-09 02:01:05', 2317, 541, '2005-07-10 04:09:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5019, '2005-07-09 02:04:32', 3534, 295, '2005-07-15 07:01:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5020, '2005-07-09 02:07:56', 4113, 565, '2005-07-09 23:59:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5021, '2005-07-09 02:09:41', 3445, 73, '2005-07-13 05:47:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5022, '2005-07-09 02:10:54', 928, 499, '2005-07-17 08:07:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5023, '2005-07-09 02:23:16', 3206, 358, '2005-07-15 20:37:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5024, '2005-07-09 02:25:12', 2987, 335, '2005-07-12 03:15:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5025, '2005-07-09 02:28:24', 153, 91, '2005-07-12 04:43:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5026, '2005-07-09 02:32:34', 989, 463, '2005-07-13 04:39:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5027, '2005-07-09 02:32:37', 2179, 109, '2005-07-16 23:13:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5028, '2005-07-09 02:34:45', 4531, 30, '2005-07-14 20:45:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5029, '2005-07-09 02:35:32', 3938, 265, '2005-07-17 22:46:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5030, '2005-07-09 02:35:43', 25, 497, '2005-07-17 02:05:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5031, '2005-07-09 02:36:37', 4224, 312, '2005-07-14 03:09:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5032, '2005-07-09 02:39:47', 2257, 333, '2005-07-10 07:45:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5033, '2005-07-09 02:42:01', 2841, 299, '2005-07-14 00:29:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5034, '2005-07-09 02:48:15', 340, 148, '2005-07-11 23:13:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5035, '2005-07-09 02:51:34', 3699, 99, '2005-07-16 21:38:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5036, '2005-07-09 02:58:41', 75, 573, '2005-07-17 04:09:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5037, '2005-07-09 02:59:10', 435, 524, '2005-07-15 07:54:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5038, '2005-07-09 03:12:52', 3086, 10, '2005-07-17 22:27:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5039, '2005-07-09 03:14:45', 2020, 268, '2005-07-16 06:57:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5040, '2005-07-09 03:16:34', 2479, 405, '2005-07-17 01:13:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5041, '2005-07-09 03:18:51', 2711, 305, '2005-07-13 03:08:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5042, '2005-07-09 03:20:30', 3609, 254, '2005-07-15 07:22:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5043, '2005-07-09 03:25:18', 2979, 369, '2005-07-13 00:57:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5044, '2005-07-09 03:30:25', 1625, 147, '2005-07-11 02:32:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5045, '2005-07-09 03:33:32', 1041, 230, '2005-07-18 06:15:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5046, '2005-07-09 03:34:57', 1639, 227, '2005-07-17 22:36:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5047, '2005-07-09 03:44:15', 230, 272, '2005-07-15 09:07:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5048, '2005-07-09 03:46:33', 1271, 466, '2005-07-15 01:14:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5049, '2005-07-09 03:54:12', 3336, 144, '2005-07-11 22:39:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5050, '2005-07-09 03:54:38', 3876, 337, '2005-07-10 02:23:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5051, '2005-07-09 03:57:53', 4091, 85, '2005-07-16 08:22:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5052, '2005-07-09 03:59:43', 1884, 305, '2005-07-12 05:48:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5053, '2005-07-09 03:59:46', 570, 295, '2005-07-09 23:53:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5054, '2005-07-09 04:01:02', 4001, 135, '2005-07-18 05:16:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5055, '2005-07-09 04:05:28', 751, 54, '2005-07-14 04:26:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5056, '2005-07-09 04:13:45', 2599, 526, '2005-07-10 06:17:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5057, '2005-07-09 04:20:29', 1076, 178, '2005-07-14 23:59:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5058, '2005-07-09 04:20:35', 917, 221, '2005-07-18 08:09:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5059, '2005-07-09 04:28:01', 3951, 396, '2005-07-15 22:57:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5060, '2005-07-09 04:28:03', 4317, 57, '2005-07-12 07:41:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5061, '2005-07-09 04:30:50', 3893, 230, '2005-07-12 03:24:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5062, '2005-07-09 04:36:49', 2190, 141, '2005-07-10 06:26:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5063, '2005-07-09 04:37:31', 1027, 133, '2005-07-13 09:56:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5064, '2005-07-09 04:38:51', 373, 512, '2005-07-18 00:33:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5065, '2005-07-09 04:42:00', 1788, 599, '2005-07-12 08:55:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5066, '2005-07-09 04:48:50', 1702, 169, '2005-07-12 22:54:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5067, '2005-07-09 04:52:35', 1480, 225, '2005-07-11 23:33:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5068, '2005-07-09 04:53:18', 2937, 10, '2005-07-13 09:21:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5069, '2005-07-09 04:56:30', 4417, 183, '2005-07-13 23:53:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5070, '2005-07-09 04:58:26', 2305, 407, '2005-07-09 23:00:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5071, '2005-07-09 05:00:39', 4358, 12, '2005-07-09 23:08:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5072, '2005-07-09 05:01:58', 94, 254, '2005-07-18 08:17:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5073, '2005-07-09 05:02:35', 546, 408, '2005-07-15 01:22:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5074, '2005-07-09 05:06:24', 1379, 12, '2005-07-12 04:37:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5075, '2005-07-09 05:12:07', 903, 170, '2005-07-12 08:29:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5076, '2005-07-09 05:13:22', 4388, 574, '2005-07-16 09:11:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5077, '2005-07-09 05:18:01', 686, 574, '2005-07-17 10:39:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5078, '2005-07-09 05:20:24', 1994, 78, '2005-07-13 06:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5079, '2005-07-09 05:20:40', 3948, 566, '2005-07-17 00:06:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5080, '2005-07-09 05:23:55', 635, 254, '2005-07-11 05:56:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5081, '2005-07-09 05:25:20', 1953, 420, '2005-07-13 23:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5082, '2005-07-09 05:28:38', 1584, 470, '2005-07-10 02:46:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5083, '2005-07-09 05:30:32', 148, 494, '2005-07-11 02:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5084, '2005-07-09 05:33:27', 3113, 87, '2005-07-17 08:54:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5085, '2005-07-09 05:36:49', 4164, 437, '2005-07-13 09:26:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5086, '2005-07-09 05:40:04', 3072, 539, '2005-07-16 07:51:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5087, '2005-07-09 05:44:28', 3716, 395, '2005-07-10 02:25:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5088, '2005-07-09 05:45:16', 3324, 454, '2005-07-15 00:41:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5089, '2005-07-09 05:45:40', 451, 289, '2005-07-15 05:31:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5090, '2005-07-09 05:48:22', 1728, 296, '2005-07-11 06:50:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5091, '2005-07-09 05:52:54', 4572, 149, '2005-07-10 02:49:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5092, '2005-07-09 05:57:39', 3256, 139, '2005-07-12 00:45:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5093, '2005-07-09 05:59:12', 2734, 597, '2005-07-10 11:45:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5094, '2005-07-09 05:59:47', 4451, 178, '2005-07-18 05:34:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5095, '2005-07-09 06:08:22', 2788, 292, '2005-07-11 10:52:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5096, '2005-07-09 06:08:23', 490, 231, '2005-07-14 11:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5097, '2005-07-09 06:09:51', 3252, 343, '2005-07-10 03:55:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5098, '2005-07-09 06:13:54', 1772, 406, '2005-07-10 04:27:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5099, '2005-07-09 06:14:30', 768, 393, '2005-07-12 08:23:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5100, '2005-07-09 06:16:03', 3193, 101, '2005-07-10 10:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5101, '2005-07-09 06:21:29', 2737, 154, '2005-07-11 02:58:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5102, '2005-07-09 06:25:48', 242, 316, '2005-07-16 11:32:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5103, '2005-07-09 06:34:40', 2390, 397, '2005-07-10 03:44:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5104, '2005-07-09 06:37:07', 2109, 14, '2005-07-14 12:32:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5105, '2005-07-09 06:38:59', 2555, 290, '2005-07-17 03:06:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5106, '2005-07-09 06:40:24', 110, 137, '2005-07-13 10:28:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5107, '2005-07-09 06:42:32', 1697, 21, '2005-07-10 08:21:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5108, '2005-07-09 06:44:30', 4229, 30, '2005-07-17 04:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5109, '2005-07-09 06:48:49', 2373, 102, '2005-07-14 01:17:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5110, '2005-07-09 06:57:25', 195, 200, '2005-07-12 05:39:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5111, '2005-07-09 07:02:19', 2875, 12, '2005-07-10 06:27:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5112, '2005-07-09 07:04:04', 3529, 285, '2005-07-13 08:42:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5113, '2005-07-09 07:06:18', 3618, 282, '2005-07-13 07:10:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5114, '2005-07-09 07:07:05', 3734, 64, '2005-07-15 03:06:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5115, '2005-07-09 07:07:18', 2296, 212, '2005-07-16 03:28:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5116, '2005-07-09 07:10:12', 2491, 332, '2005-07-14 09:16:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5117, '2005-07-09 07:11:22', 2284, 208, '2005-07-15 08:44:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5118, '2005-07-09 07:13:52', 957, 5, '2005-07-18 05:18:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5119, '2005-07-09 07:14:18', 2996, 301, '2005-07-18 04:07:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5120, '2005-07-09 07:14:23', 4431, 373, '2005-07-14 04:00:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5121, '2005-07-09 07:18:31', 3321, 526, '2005-07-15 01:48:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5122, '2005-07-09 07:19:35', 1423, 261, '2005-07-16 03:04:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5123, '2005-07-09 07:20:30', 4278, 219, '2005-07-14 05:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5124, '2005-07-09 07:25:19', 1857, 565, '2005-07-15 01:51:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5125, '2005-07-09 07:25:28', 990, 263, '2005-07-12 12:34:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5126, '2005-07-09 07:25:35', 3312, 315, '2005-07-18 05:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5127, '2005-07-09 07:25:47', 3649, 129, '2005-07-13 11:44:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5128, '2005-07-09 07:25:54', 3757, 155, '2005-07-16 04:04:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5129, '2005-07-09 07:28:33', 4516, 441, '2005-07-14 05:12:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5130, '2005-07-09 07:29:45', 3264, 93, '2005-07-13 05:56:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5131, '2005-07-09 07:35:03', 3179, 167, '2005-07-10 06:05:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5132, '2005-07-09 07:40:32', 4158, 101, '2005-07-16 02:16:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5133, '2005-07-09 07:43:22', 3403, 469, '2005-07-12 04:52:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5134, '2005-07-09 07:53:12', 149, 491, '2005-07-16 05:30:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5135, '2005-07-09 07:53:22', 3005, 538, '2005-07-16 04:50:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5136, '2005-07-09 07:55:01', 3498, 395, '2005-07-11 05:26:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5137, '2005-07-09 08:00:34', 409, 126, '2005-07-12 05:34:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5138, '2005-07-09 08:00:46', 1283, 548, '2005-07-12 09:31:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5139, '2005-07-09 08:01:51', 51, 539, '2005-07-18 09:16:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5140, '2005-07-09 08:04:59', 947, 303, '2005-07-11 08:28:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5141, '2005-07-09 08:05:14', 590, 488, '2005-07-18 04:36:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5142, '2005-07-09 08:05:23', 369, 56, '2005-07-13 12:37:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5143, '2005-07-09 08:07:07', 3803, 196, '2005-07-18 10:17:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5144, '2005-07-09 08:09:53', 3530, 89, '2005-07-18 07:11:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5145, '2005-07-09 08:13:25', 2397, 204, '2005-07-10 03:56:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5146, '2005-07-09 08:14:58', 776, 194, '2005-07-11 07:04:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5147, '2005-07-09 08:17:41', 2270, 326, '2005-07-18 09:45:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5148, '2005-07-09 08:22:46', 456, 48, '2005-07-18 04:36:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5149, '2005-07-09 08:28:23', 1500, 330, '2005-07-16 06:19:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5150, '2005-07-09 08:28:40', 1961, 410, '2005-07-16 04:47:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5151, '2005-07-09 08:31:03', 224, 228, '2005-07-10 08:18:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5152, '2005-07-09 08:34:44', 4005, 331, '2005-07-10 05:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5153, '2005-07-09 08:35:05', 2826, 504, '2005-07-18 14:21:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5154, '2005-07-09 08:46:18', 3785, 361, '2005-07-14 03:19:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5155, '2005-07-09 08:46:54', 988, 523, '2005-07-14 04:13:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5156, '2005-07-09 08:51:42', 416, 5, '2005-07-15 03:59:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5157, '2005-07-09 08:52:12', 637, 463, '2005-07-12 04:32:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5158, '2005-07-09 08:53:09', 2825, 272, '2005-07-10 11:05:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5159, '2005-07-09 08:55:52', 3479, 213, '2005-07-10 04:32:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5160, '2005-07-09 08:57:07', 1925, 467, '2005-07-18 06:01:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5161, '2005-07-09 08:57:56', 2617, 284, '2005-07-18 07:41:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5162, '2005-07-09 09:00:11', 2765, 43, '2005-07-17 07:26:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5163, '2005-07-09 09:00:28', 1486, 103, '2005-07-17 08:07:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5164, '2005-07-09 09:03:14', 1170, 511, '2005-07-14 04:20:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5165, '2005-07-09 09:08:53', 280, 590, '2005-07-14 06:01:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5166, '2005-07-09 09:15:48', 2771, 298, '2005-07-16 06:04:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5167, '2005-07-09 09:18:43', 2485, 437, '2005-07-14 12:59:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5168, '2005-07-09 09:20:01', 4096, 420, '2005-07-11 14:42:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5169, '2005-07-09 09:22:25', 2608, 116, '2005-07-10 03:48:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5170, '2005-07-09 09:24:19', 66, 209, '2005-07-18 04:02:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5171, '2005-07-09 09:26:55', 2099, 371, '2005-07-10 10:34:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5172, '2005-07-09 09:31:27', 4046, 214, '2005-07-13 04:03:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5173, '2005-07-09 09:31:44', 2848, 490, '2005-07-15 04:20:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5174, '2005-07-09 09:31:59', 3621, 47, '2005-07-15 03:49:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5175, '2005-07-09 09:34:28', 1003, 409, '2005-07-15 15:19:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5176, '2005-07-09 09:39:31', 328, 119, '2005-07-17 11:56:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5177, '2005-07-09 09:43:21', 1675, 452, '2005-07-13 07:29:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5178, '2005-07-09 09:59:52', 1750, 167, '2005-07-18 13:01:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5179, '2005-07-09 10:00:44', 2995, 256, '2005-07-11 06:52:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5180, '2005-07-09 10:06:53', 3684, 494, '2005-07-12 15:25:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5181, '2005-07-09 10:07:27', 2569, 45, '2005-07-17 10:18:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5182, '2005-07-09 10:08:10', 725, 197, '2005-07-16 14:36:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5183, '2005-07-09 10:13:45', 2866, 394, '2005-07-16 15:55:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5184, '2005-07-09 10:14:34', 1101, 166, '2005-07-14 16:05:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5185, '2005-07-09 10:14:39', 357, 53, '2005-07-10 13:31:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5186, '2005-07-09 10:18:40', 2415, 276, '2005-07-13 05:05:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5187, '2005-07-09 10:19:51', 2631, 91, '2005-07-14 10:35:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5188, '2005-07-09 10:22:31', 3265, 34, '2005-07-13 04:41:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5189, '2005-07-09 10:23:21', 2539, 113, '2005-07-14 08:06:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5190, '2005-07-09 10:25:24', 2213, 532, '2005-07-18 04:33:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5191, '2005-07-09 10:26:48', 2131, 167, '2005-07-10 15:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5192, '2005-07-09 10:27:09', 1225, 410, '2005-07-10 12:04:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5193, '2005-07-09 10:28:18', 2166, 485, '2005-07-12 12:18:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5194, '2005-07-09 10:31:34', 3809, 202, '2005-07-15 08:50:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5195, '2005-07-09 10:39:31', 3399, 59, '2005-07-18 13:54:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5196, '2005-07-09 10:43:34', 2278, 536, '2005-07-13 12:10:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5197, '2005-07-09 10:43:54', 1571, 541, '2005-07-16 10:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5198, '2005-07-09 10:49:10', 218, 101, '2005-07-13 04:52:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5199, '2005-07-09 10:50:56', 349, 42, '2005-07-10 06:43:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5200, '2005-07-09 10:52:09', 4528, 125, '2005-07-13 15:12:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5201, '2005-07-09 10:52:53', 2453, 551, '2005-07-16 12:41:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5202, '2005-07-09 10:53:48', 3417, 321, '2005-07-15 13:31:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5203, '2005-07-09 10:53:59', 3661, 588, '2005-07-15 09:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5204, '2005-07-09 10:54:14', 1791, 432, '2005-07-12 14:29:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5205, '2005-07-09 10:56:37', 161, 79, '2005-07-13 05:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5206, '2005-07-09 11:11:01', 692, 517, '2005-07-17 07:23:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5207, '2005-07-09 11:15:44', 3496, 59, '2005-07-17 06:00:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5208, '2005-07-09 11:16:56', 1881, 560, '2005-07-10 07:21:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5209, '2005-07-09 11:22:39', 4441, 222, '2005-07-17 09:31:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5210, '2005-07-09 11:24:19', 4514, 355, '2005-07-11 06:27:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5211, '2005-07-09 11:26:50', 2216, 241, '2005-07-16 15:30:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5212, '2005-07-09 11:37:47', 3240, 400, '2005-07-15 14:42:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5213, '2005-07-09 11:39:43', 3708, 552, '2005-07-18 16:20:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5214, '2005-07-09 11:43:08', 1657, 290, '2005-07-17 08:58:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5215, '2005-07-09 11:47:58', 3888, 528, '2005-07-18 09:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5216, '2005-07-09 11:54:58', 1644, 515, '2005-07-12 09:46:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5217, '2005-07-09 11:56:50', 4150, 430, '2005-07-17 07:10:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5218, '2005-07-09 11:57:12', 1121, 83, '2005-07-13 06:34:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5219, '2005-07-09 11:57:55', 3933, 209, '2005-07-15 09:43:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5220, '2005-07-09 11:59:04', 2577, 435, '2005-07-15 06:20:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5221, '2005-07-09 12:02:23', 2339, 84, '2005-07-16 15:43:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5222, '2005-07-09 12:05:45', 2508, 400, '2005-07-13 12:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5223, '2005-07-09 12:06:03', 2335, 72, '2005-07-17 15:50:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5224, '2005-07-09 12:07:27', 279, 311, '2005-07-17 08:59:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5225, '2005-07-09 12:10:16', 703, 445, '2005-07-12 09:55:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5226, '2005-07-09 12:10:44', 3128, 218, '2005-07-11 17:32:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5227, '2005-07-09 12:16:39', 1862, 362, '2005-07-18 15:38:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5228, '2005-07-09 12:26:01', 622, 195, '2005-07-14 13:31:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5229, '2005-07-09 12:30:18', 4472, 372, '2005-07-14 15:31:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5230, '2005-07-09 12:30:23', 3707, 51, '2005-07-13 08:41:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5231, '2005-07-09 12:35:02', 1275, 405, '2005-07-10 09:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5232, '2005-07-09 12:35:08', 3353, 175, '2005-07-14 14:55:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5233, '2005-07-09 12:44:26', 1401, 131, '2005-07-15 12:31:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5234, '2005-07-09 12:44:47', 4182, 398, '2005-07-17 10:02:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5235, '2005-07-09 12:54:25', 1044, 122, '2005-07-18 16:28:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5236, '2005-07-09 12:56:29', 1215, 519, '2005-07-13 08:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5237, '2005-07-09 12:56:58', 2341, 84, '2005-07-11 15:41:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5238, '2005-07-09 13:11:14', 3297, 100, '2005-07-10 07:27:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5239, '2005-07-09 13:12:35', 380, 497, '2005-07-10 13:37:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5240, '2005-07-09 13:14:48', 1378, 350, '2005-07-10 18:47:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5241, '2005-07-09 13:19:14', 4079, 314, '2005-07-11 14:32:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5242, '2005-07-09 13:20:25', 848, 12, '2005-07-18 07:38:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5243, '2005-07-09 13:22:08', 122, 587, '2005-07-16 09:25:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5244, '2005-07-09 13:24:07', 3726, 1, '2005-07-14 14:01:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5245, '2005-07-09 13:24:14', 3547, 115, '2005-07-12 11:16:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5246, '2005-07-09 13:25:18', 3548, 276, '2005-07-13 18:38:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5247, '2005-07-09 13:26:28', 1186, 298, '2005-07-12 14:00:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5248, '2005-07-09 13:29:44', 246, 279, '2005-07-12 18:12:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5249, '2005-07-09 13:33:53', 1950, 389, '2005-07-11 12:55:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5250, '2005-07-09 13:35:32', 2162, 384, '2005-07-13 12:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5251, '2005-07-09 13:36:10', 478, 474, '2005-07-15 11:40:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5252, '2005-07-09 13:40:44', 2581, 335, '2005-07-14 09:41:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5253, '2005-07-09 13:41:17', 2241, 532, '2005-07-17 17:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5254, '2005-07-09 13:50:11', 654, 263, '2005-07-13 09:07:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5255, '2005-07-09 13:51:08', 4418, 313, '2005-07-17 13:58:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5256, '2005-07-09 13:55:45', 4226, 273, '2005-07-15 17:02:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5257, '2005-07-09 13:56:43', 286, 292, '2005-07-10 14:26:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5258, '2005-07-09 13:56:56', 3125, 207, '2005-07-11 16:01:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5259, '2005-07-09 14:02:50', 1310, 207, '2005-07-11 19:13:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5260, '2005-07-09 14:05:45', 3143, 75, '2005-07-14 08:41:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5261, '2005-07-09 14:06:56', 2899, 105, '2005-07-11 14:21:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5262, '2005-07-09 14:08:01', 1092, 240, '2005-07-12 16:48:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5263, '2005-07-09 14:10:36', 119, 406, '2005-07-12 15:07:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5264, '2005-07-09 14:11:28', 3307, 545, '2005-07-12 18:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5265, '2005-07-09 14:15:01', 4482, 139, '2005-07-18 14:43:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5266, '2005-07-09 14:17:40', 2409, 222, '2005-07-16 10:42:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5267, '2005-07-09 14:21:10', 2242, 233, '2005-07-15 12:02:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5268, '2005-07-09 14:22:43', 1083, 119, '2005-07-12 08:27:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5269, '2005-07-09 14:23:05', 3886, 230, '2005-07-17 14:03:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5270, '2005-07-09 14:23:46', 1523, 128, '2005-07-13 15:04:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5271, '2005-07-09 14:25:01', 2691, 522, '2005-07-16 17:28:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5272, '2005-07-09 14:26:01', 1547, 90, '2005-07-12 20:20:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5273, '2005-07-09 14:31:24', 4570, 38, '2005-07-14 13:27:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5274, '2005-07-09 14:34:09', 4579, 108, '2005-07-14 13:02:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5275, '2005-07-09 14:34:18', 729, 249, '2005-07-13 12:56:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5276, '2005-07-09 14:35:13', 2524, 521, '2005-07-12 14:24:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5277, '2005-07-09 14:40:42', 2026, 332, '2005-07-16 14:18:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5278, '2005-07-09 14:44:23', 2573, 532, '2005-07-15 10:48:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5279, '2005-07-09 14:46:36', 709, 64, '2005-07-17 10:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5280, '2005-07-09 14:55:07', 1177, 351, '2005-07-12 10:05:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5281, '2005-07-09 14:55:07', 1966, 71, '2005-07-13 15:24:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5282, '2005-07-09 15:01:23', 4386, 226, '2005-07-13 11:06:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5283, '2005-07-09 15:07:17', 644, 295, '2005-07-17 09:52:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5284, '2005-07-09 15:08:21', 1036, 585, '2005-07-16 09:53:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5285, '2005-07-09 15:10:44', 676, 468, '2005-07-16 13:02:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5286, '2005-07-09 15:11:41', 483, 498, '2005-07-10 19:19:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5287, '2005-07-09 15:11:54', 3110, 523, '2005-07-16 16:05:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5288, '2005-07-09 15:13:07', 850, 120, '2005-07-16 12:39:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5289, '2005-07-09 15:14:08', 4336, 30, '2005-07-12 12:51:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5290, '2005-07-09 15:14:47', 277, 50, '2005-07-11 20:30:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5291, '2005-07-09 15:15:02', 1367, 194, '2005-07-15 10:22:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5292, '2005-07-09 15:16:54', 3195, 62, '2005-07-11 15:21:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5293, '2005-07-09 15:17:23', 2880, 542, '2005-07-11 11:23:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5294, '2005-07-09 15:23:42', 3237, 22, '2005-07-15 15:28:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5295, '2005-07-09 15:25:06', 4460, 86, '2005-07-10 12:40:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5296, '2005-07-09 15:26:27', 495, 109, '2005-07-15 10:03:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5297, '2005-07-09 15:32:29', 3434, 202, '2005-07-14 14:58:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5298, '2005-07-09 15:36:17', 3491, 149, '2005-07-18 19:07:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5299, '2005-07-09 15:38:09', 4416, 469, '2005-07-15 16:39:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5300, '2005-07-09 15:40:46', 2520, 8, '2005-07-15 13:46:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5301, '2005-07-09 15:42:10', 245, 459, '2005-07-16 21:27:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5302, '2005-07-09 15:42:36', 4270, 72, '2005-07-10 21:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5303, '2005-07-09 15:44:09', 3572, 350, '2005-07-15 18:09:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5304, '2005-07-09 15:48:06', 4411, 51, '2005-07-14 19:29:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5305, '2005-07-09 15:55:36', 625, 309, '2005-07-18 15:59:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5306, '2005-07-09 15:56:45', 2221, 409, '2005-07-15 19:02:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5307, '2005-07-09 15:57:15', 2847, 32, '2005-07-17 13:42:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5308, '2005-07-09 15:58:38', 1684, 52, '2005-07-15 13:55:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5309, '2005-07-09 16:00:16', 4026, 338, '2005-07-17 17:56:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5310, '2005-07-09 16:00:34', 1565, 24, '2005-07-12 12:45:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5311, '2005-07-09 16:02:54', 986, 107, '2005-07-18 10:44:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5312, '2005-07-09 16:03:09', 2123, 258, '2005-07-13 16:41:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5313, '2005-07-09 16:04:45', 1885, 52, '2005-07-17 18:53:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5314, '2005-07-09 16:05:28', 3770, 372, '2005-07-10 18:18:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5315, '2005-07-09 16:09:19', 585, 134, '2005-07-14 21:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5316, '2005-07-09 16:09:42', 3856, 438, '2005-07-11 15:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5317, '2005-07-09 16:10:25', 2693, 14, '2005-07-18 17:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5318, '2005-07-09 16:11:33', 1738, 472, '2005-07-14 12:49:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5319, '2005-07-09 16:17:44', 1899, 282, '2005-07-18 16:35:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5320, '2005-07-09 16:23:32', 3140, 228, '2005-07-18 18:16:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5321, '2005-07-09 16:26:33', 3347, 245, '2005-07-15 15:05:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5322, '2005-07-09 16:28:13', 4420, 432, '2005-07-18 14:53:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5323, '2005-07-09 16:34:07', 1302, 35, '2005-07-13 21:37:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5324, '2005-07-09 16:34:18', 4024, 113, '2005-07-15 12:35:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5325, '2005-07-09 16:35:47', 2703, 492, '2005-07-10 11:52:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5326, '2005-07-09 16:38:01', 797, 1, '2005-07-13 18:02:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5327, '2005-07-09 16:39:49', 3657, 547, '2005-07-12 18:47:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5328, '2005-07-09 16:48:29', 2444, 247, '2005-07-17 20:20:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5329, '2005-07-09 16:49:46', 1628, 402, '2005-07-16 19:05:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5330, '2005-07-09 16:53:57', 3812, 410, '2005-07-18 19:54:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5331, '2005-07-09 16:54:06', 4181, 447, '2005-07-10 19:04:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5332, '2005-07-09 16:59:23', 3269, 568, '2005-07-10 16:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5333, '2005-07-09 16:59:38', 2142, 419, '2005-07-16 17:23:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5334, '2005-07-09 17:00:13', 3852, 482, '2005-07-11 15:50:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5335, '2005-07-09 17:00:49', 2353, 588, '2005-07-12 12:21:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5336, '2005-07-09 17:01:08', 4144, 410, '2005-07-11 19:22:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5337, '2005-07-09 17:03:50', 4168, 343, '2005-07-16 22:25:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5338, '2005-07-09 17:07:07', 3449, 191, '2005-07-14 11:15:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5339, '2005-07-09 17:09:17', 698, 380, '2005-07-10 21:07:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5340, '2005-07-09 17:11:35', 650, 267, '2005-07-17 17:59:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5341, '2005-07-09 17:13:23', 2522, 8, '2005-07-14 18:11:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5342, '2005-07-09 17:20:03', 3828, 289, '2005-07-18 12:44:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5343, '2005-07-09 17:23:43', 92, 485, '2005-07-18 22:14:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5344, '2005-07-09 17:27:05', 159, 197, '2005-07-10 15:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5345, '2005-07-09 17:28:18', 3055, 348, '2005-07-11 14:30:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5346, '2005-07-09 17:29:01', 2488, 287, '2005-07-14 12:47:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5347, '2005-07-09 17:31:32', 1293, 246, '2005-07-10 21:06:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5348, '2005-07-09 17:34:11', 3495, 597, '2005-07-15 18:32:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5349, '2005-07-09 17:35:35', 3139, 161, '2005-07-18 14:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5350, '2005-07-09 17:39:30', 724, 129, '2005-07-11 16:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5351, '2005-07-09 17:40:52', 3722, 112, '2005-07-14 16:55:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5352, '2005-07-09 17:54:58', 908, 372, '2005-07-15 16:20:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5353, '2005-07-09 18:04:29', 2994, 196, '2005-07-15 17:46:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5354, '2005-07-09 18:04:33', 951, 354, '2005-07-15 18:19:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5355, '2005-07-09 18:07:17', 2458, 100, '2005-07-16 20:33:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5356, '2005-07-09 18:08:28', 2905, 188, '2005-07-14 14:11:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5357, '2005-07-09 18:08:59', 1988, 411, '2005-07-16 17:28:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5358, '2005-07-09 18:09:21', 3764, 71, '2005-07-14 23:59:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5359, '2005-07-09 18:10:52', 4392, 453, '2005-07-18 13:34:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5360, '2005-07-09 18:14:03', 679, 562, '2005-07-10 15:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5361, '2005-07-09 18:15:32', 2045, 279, '2005-07-17 23:32:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5362, '2005-07-09 18:16:08', 24, 266, '2005-07-18 18:27:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5363, '2005-07-09 18:18:49', 2180, 425, '2005-07-14 22:16:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5364, '2005-07-09 18:24:48', 2746, 366, '2005-07-10 12:30:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5365, '2005-07-09 18:27:00', 4469, 527, '2005-07-11 14:18:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5366, '2005-07-09 18:28:37', 886, 187, '2005-07-13 20:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5367, '2005-07-09 18:39:15', 1446, 485, '2005-07-16 14:19:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5368, '2005-07-09 18:41:59', 4429, 502, '2005-07-16 00:32:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5369, '2005-07-09 18:42:16', 1550, 538, '2005-07-12 18:16:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5370, '2005-07-09 18:43:19', 2193, 248, '2005-07-15 19:59:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5371, '2005-07-09 18:47:48', 789, 425, '2005-07-14 14:39:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5372, '2005-07-09 18:48:39', 3551, 148, '2005-07-11 17:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5373, '2005-07-09 18:48:57', 950, 428, '2005-07-10 16:34:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5374, '2005-07-09 18:52:08', 946, 144, '2005-07-16 16:34:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5375, '2005-07-09 18:52:55', 1407, 558, '2005-07-16 15:32:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5376, '2005-07-09 18:54:08', 1730, 104, '2005-07-17 22:01:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5377, '2005-07-09 19:04:30', 3118, 578, '2005-07-11 14:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5378, '2005-07-09 19:05:56', 1570, 138, '2005-07-10 18:03:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5379, '2005-07-09 19:08:03', 2110, 475, '2005-07-10 17:58:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5380, '2005-07-09 19:08:44', 3047, 166, '2005-07-11 20:09:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5381, '2005-07-09 19:11:11', 3033, 332, '2005-07-13 17:10:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5382, '2005-07-09 19:12:57', 78, 586, '2005-07-14 15:44:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5383, '2005-07-09 19:14:32', 573, 14, '2005-07-11 19:57:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5384, '2005-07-09 19:17:46', 1729, 180, '2005-07-12 13:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5385, '2005-07-09 19:18:11', 4291, 112, '2005-07-16 18:50:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5386, '2005-07-09 19:19:09', 721, 594, '2005-07-13 00:13:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5387, '2005-07-09 19:25:14', 4452, 244, '2005-07-11 21:00:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5388, '2005-07-09 19:25:25', 1546, 332, '2005-07-14 19:51:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5389, '2005-07-09 19:25:45', 3882, 484, '2005-07-17 13:31:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5390, '2005-07-09 19:26:22', 715, 139, '2005-07-14 22:46:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5391, '2005-07-09 19:28:34', 402, 132, '2005-07-18 01:07:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5392, '2005-07-09 19:32:30', 2552, 499, '2005-07-16 15:01:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5393, '2005-07-09 19:35:12', 1417, 446, '2005-07-11 14:00:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5394, '2005-07-09 19:36:15', 1828, 83, '2005-07-18 18:10:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5395, '2005-07-09 19:42:37', 4428, 131, '2005-07-10 15:39:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5396, '2005-07-09 19:42:52', 3795, 559, '2005-07-15 21:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5397, '2005-07-09 19:43:51', 4376, 191, '2005-07-17 00:11:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5398, '2005-07-09 19:44:58', 4352, 199, '2005-07-17 00:56:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5399, '2005-07-09 19:52:44', 261, 67, '2005-07-10 18:31:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5400, '2005-07-09 19:56:40', 3435, 192, '2005-07-14 20:43:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5401, '2005-07-09 19:59:10', 431, 43, '2005-07-11 23:21:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5402, '2005-07-09 20:01:58', 4450, 379, '2005-07-10 14:07:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5403, '2005-07-09 20:07:09', 3991, 36, '2005-07-12 18:33:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5404, '2005-07-09 20:10:43', 3685, 236, '2005-07-13 15:16:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5405, '2005-07-09 20:11:49', 799, 45, '2005-07-18 18:37:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5406, '2005-07-09 20:13:23', 1322, 563, '2005-07-11 22:05:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5407, '2005-07-09 20:16:07', 3641, 475, '2005-07-14 21:41:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5408, '2005-07-09 20:16:51', 3162, 144, '2005-07-18 22:19:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5409, '2005-07-09 20:17:19', 3538, 446, '2005-07-13 23:30:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5410, '2005-07-09 20:21:10', 2261, 281, '2005-07-18 21:43:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5411, '2005-07-09 20:23:38', 4292, 304, '2005-07-16 01:17:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5412, '2005-07-09 20:23:52', 3174, 458, '2005-07-18 18:40:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5413, '2005-07-09 20:28:42', 2056, 167, '2005-07-10 19:23:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5414, '2005-07-09 20:29:36', 1201, 174, '2005-07-13 01:55:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5415, '2005-07-09 20:30:03', 4413, 475, '2005-07-18 00:20:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5416, '2005-07-09 20:33:50', 568, 219, '2005-07-14 01:50:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5417, '2005-07-09 20:34:09', 3569, 265, '2005-07-14 00:36:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5418, '2005-07-09 20:41:35', 55, 114, '2005-07-14 00:15:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5419, '2005-07-09 20:47:36', 1516, 226, '2005-07-12 01:36:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5420, '2005-07-09 20:48:42', 1739, 80, '2005-07-15 21:35:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5421, '2005-07-09 20:49:12', 2437, 33, '2005-07-10 16:30:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5422, '2005-07-09 20:55:47', 436, 409, '2005-07-15 15:15:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5423, '2005-07-09 20:56:48', 1952, 440, '2005-07-17 14:58:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5424, '2005-07-09 20:59:09', 3694, 72, '2005-07-12 00:05:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5425, '2005-07-09 21:02:26', 531, 37, '2005-07-16 23:38:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5426, '2005-07-09 21:04:47', 251, 438, '2005-07-17 00:55:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5427, '2005-07-09 21:12:26', 3197, 499, '2005-07-14 01:02:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5428, '2005-07-09 21:12:50', 3109, 346, '2005-07-14 16:25:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5429, '2005-07-09 21:14:03', 2467, 105, '2005-07-18 01:33:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5430, '2005-07-09 21:19:54', 1441, 173, '2005-07-15 22:53:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5431, '2005-07-09 21:21:11', 2780, 213, '2005-07-10 21:16:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5432, '2005-07-09 21:21:25', 1958, 64, '2005-07-14 21:34:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5433, '2005-07-09 21:22:00', 2679, 349, '2005-07-10 21:18:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5434, '2005-07-09 21:25:20', 3790, 334, '2005-07-15 03:12:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5435, '2005-07-09 21:28:07', 2884, 273, '2005-07-18 21:16:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5436, '2005-07-09 21:31:11', 2364, 89, '2005-07-13 16:59:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5437, '2005-07-09 21:32:29', 3532, 26, '2005-07-15 00:27:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5438, '2005-07-09 21:34:32', 487, 241, '2005-07-16 02:21:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5439, '2005-07-09 21:39:35', 1993, 58, '2005-07-13 17:45:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5440, '2005-07-09 21:45:17', 138, 332, '2005-07-11 22:43:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5441, '2005-07-09 21:52:05', 3913, 7, '2005-07-17 02:54:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5442, '2005-07-09 21:55:19', 3093, 29, '2005-07-19 01:18:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5443, '2005-07-09 21:56:09', 2951, 137, '2005-07-16 00:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5444, '2005-07-09 21:58:57', 2968, 10, '2005-07-11 03:09:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5445, '2005-07-09 21:59:41', 565, 578, '2005-07-15 00:40:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5446, '2005-07-09 21:59:55', 2769, 454, '2005-07-11 01:45:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5447, '2005-07-09 22:09:28', 2530, 473, '2005-07-18 20:03:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5448, '2005-07-09 22:11:14', 646, 463, '2005-07-15 21:08:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5449, '2005-07-09 22:12:01', 921, 261, '2005-07-18 01:18:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5450, '2005-07-09 22:13:25', 2356, 328, '2005-07-13 23:28:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5451, '2005-07-09 22:22:10', 3484, 39, '2005-07-11 02:43:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5452, '2005-07-09 22:23:21', 2036, 80, '2005-07-17 00:20:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5453, '2005-07-09 22:24:11', 1780, 106, '2005-07-19 04:08:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5454, '2005-07-09 22:24:25', 3049, 97, '2005-07-11 01:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5455, '2005-07-09 22:28:45', 1955, 464, '2005-07-18 02:50:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5456, '2005-07-09 22:31:45', 3003, 360, '2005-07-12 03:53:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5457, '2005-07-09 22:33:14', 4179, 433, '2005-07-12 02:30:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5458, '2005-07-09 22:35:49', 2203, 521, '2005-07-16 22:55:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5459, '2005-07-09 22:43:56', 1847, 168, '2005-07-12 18:05:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5460, '2005-07-09 22:46:14', 2410, 38, '2005-07-12 21:26:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5461, '2005-07-09 22:48:04', 53, 244, '2005-07-10 17:56:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5462, '2005-07-09 22:56:53', 871, 583, '2005-07-11 21:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5463, '2005-07-09 22:57:02', 601, 374, '2005-07-11 03:10:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5464, '2005-07-09 22:58:14', 3692, 434, '2005-07-15 02:48:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5465, '2005-07-09 23:01:13', 723, 503, '2005-07-13 01:03:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5466, '2005-07-09 23:03:21', 2302, 482, '2005-07-10 20:11:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5467, '2005-07-09 23:05:47', 374, 543, '2005-07-16 17:06:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5468, '2005-07-09 23:06:09', 2196, 81, '2005-07-13 00:48:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5469, '2005-07-09 23:08:07', 2201, 475, '2005-07-13 19:13:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5470, '2005-07-09 23:10:49', 3254, 325, '2005-07-18 04:30:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5471, '2005-07-09 23:11:52', 4086, 347, '2005-07-13 02:08:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5472, '2005-07-09 23:16:40', 865, 165, '2005-07-10 18:43:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5473, '2005-07-09 23:19:11', 4283, 51, '2005-07-19 02:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5474, '2005-07-09 23:23:57', 3608, 375, '2005-07-15 03:11:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5475, '2005-07-09 23:31:38', 726, 219, '2005-07-12 03:51:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5476, '2005-07-09 23:37:09', 1199, 427, '2005-07-15 23:57:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5477, '2005-07-09 23:43:49', 994, 542, '2005-07-15 05:03:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5478, '2005-07-09 23:45:15', 3213, 583, '2005-07-15 22:48:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5479, '2005-07-09 23:47:33', 216, 250, '2005-07-13 01:09:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5480, '2005-07-09 23:49:07', 847, 452, '2005-07-12 00:15:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5481, '2005-07-09 23:51:57', 562, 479, '2005-07-11 05:28:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5482, '2005-07-09 23:53:04', 2136, 460, '2005-07-15 04:59:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5483, '2005-07-09 23:54:09', 4362, 89, '2005-07-17 23:36:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5484, '2005-07-09 23:54:37', 3248, 495, '2005-07-15 02:05:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5485, '2005-07-09 23:55:25', 3930, 173, '2005-07-14 04:08:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5486, '2005-07-09 23:57:44', 2864, 538, '2005-07-14 00:23:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5487, '2005-07-10 00:01:50', 1144, 341, '2005-07-10 20:43:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5488, '2005-07-10 00:02:06', 4262, 173, '2005-07-15 01:45:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5489, '2005-07-10 00:07:03', 2319, 490, '2005-07-15 19:52:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5490, '2005-07-10 00:09:11', 3044, 367, '2005-07-14 21:23:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5491, '2005-07-10 00:09:45', 2007, 49, '2005-07-11 02:25:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5492, '2005-07-10 00:11:09', 4524, 558, '2005-07-14 01:27:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5493, '2005-07-10 00:11:44', 2037, 539, '2005-07-15 19:24:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5494, '2005-07-10 00:15:00', 3087, 139, '2005-07-17 01:12:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5495, '2005-07-10 00:16:54', 2199, 257, '2005-07-19 01:22:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5496, '2005-07-10 00:20:23', 3182, 369, '2005-07-18 21:10:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5497, '2005-07-10 00:23:23', 4473, 92, '2005-07-16 03:54:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5498, '2005-07-10 00:27:21', 63, 302, '2005-07-13 20:11:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5499, '2005-07-10 00:27:45', 1525, 127, '2005-07-17 06:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5500, '2005-07-10 00:28:17', 3380, 457, '2005-07-15 19:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5501, '2005-07-10 00:33:48', 3979, 372, '2005-07-17 02:58:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5502, '2005-07-10 00:34:15', 3712, 243, '2005-07-11 21:44:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5503, '2005-07-10 00:35:37', 3892, 262, '2005-07-12 20:29:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5504, '2005-07-10 00:36:38', 3053, 455, '2005-07-16 19:36:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5505, '2005-07-10 00:38:48', 896, 253, '2005-07-12 03:12:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5506, '2005-07-10 00:45:48', 2432, 117, '2005-07-18 20:35:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5507, '2005-07-10 00:49:04', 716, 399, '2005-07-15 22:06:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5508, '2005-07-10 00:50:01', 2977, 345, '2005-07-16 19:07:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5509, '2005-07-10 00:54:46', 1142, 102, '2005-07-16 05:10:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5510, '2005-07-10 00:58:37', 1298, 67, '2005-07-17 22:02:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5511, '2005-07-10 01:00:00', 3678, 301, '2005-07-12 20:44:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5512, '2005-07-10 01:05:38', 4470, 405, '2005-07-17 20:47:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5513, '2005-07-10 01:05:41', 2558, 356, '2005-07-11 02:05:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5514, '2005-07-10 01:09:42', 1824, 522, '2005-07-17 05:47:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5515, '2005-07-10 01:12:44', 3772, 39, '2005-07-13 00:39:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5516, '2005-07-10 01:13:52', 1902, 581, '2005-07-15 22:56:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5517, '2005-07-10 01:15:00', 3689, 42, '2005-07-19 01:59:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5518, '2005-07-10 01:15:11', 3340, 451, '2005-07-18 19:28:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5519, '2005-07-10 01:18:32', 1312, 85, '2005-07-11 20:39:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5520, '2005-07-10 01:30:41', 2527, 501, '2005-07-15 21:37:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5521, '2005-07-10 01:31:22', 1956, 182, '2005-07-17 05:42:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5522, '2005-07-10 01:46:29', 2622, 573, '2005-07-18 00:41:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5523, '2005-07-10 01:47:55', 2233, 125, '2005-07-18 22:25:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5524, '2005-07-10 01:49:24', 3596, 386, '2005-07-14 22:55:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5525, '2005-07-10 02:03:08', 3141, 241, '2005-07-18 07:32:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5526, '2005-07-10 02:04:03', 3909, 144, '2005-07-16 22:15:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5527, '2005-07-10 02:06:01', 4462, 554, '2005-07-15 00:55:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5528, '2005-07-10 02:09:21', 680, 551, '2005-07-17 06:22:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5529, '2005-07-10 02:11:13', 1652, 590, '2005-07-15 06:56:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5530, '2005-07-10 02:13:49', 2701, 74, '2005-07-18 08:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5531, '2005-07-10 02:13:59', 2992, 173, '2005-07-15 00:01:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5532, '2005-07-10 02:17:31', 983, 522, '2005-07-16 02:57:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5533, '2005-07-10 02:19:28', 2567, 270, '2005-07-11 01:37:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5534, '2005-07-10 02:26:49', 3251, 156, '2005-07-11 07:13:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5535, '2005-07-10 02:27:42', 1623, 394, '2005-07-12 21:13:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5536, '2005-07-10 02:29:42', 1919, 195, '2005-07-13 04:06:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5537, '2005-07-10 02:35:41', 1781, 254, '2005-07-13 07:11:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5538, '2005-07-10 02:39:40', 2119, 367, '2005-07-12 01:39:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5539, '2005-07-10 02:42:58', 3217, 90, '2005-07-16 02:27:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5540, '2005-07-10 02:44:21', 132, 250, '2005-07-11 07:13:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5541, '2005-07-10 02:44:27', 1211, 135, '2005-07-13 04:13:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5542, '2005-07-10 02:45:53', 1713, 105, '2005-07-15 23:23:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5543, '2005-07-10 02:48:03', 1496, 71, '2005-07-17 05:49:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5544, '2005-07-10 02:48:07', 1014, 316, '2005-07-17 01:08:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5545, '2005-07-10 02:50:29', 118, 236, '2005-07-16 02:11:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5546, '2005-07-10 02:50:37', 2918, 515, '2005-07-16 08:22:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5547, '2005-07-10 02:52:47', 1432, 519, '2005-07-16 02:10:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5548, '2005-07-10 02:56:45', 2973, 317, '2005-07-13 01:33:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5549, '2005-07-10 02:58:29', 2685, 163, '2005-07-17 05:24:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5550, '2005-07-10 02:58:35', 1905, 254, '2005-07-16 02:38:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5551, '2005-07-10 03:01:09', 4238, 44, '2005-07-18 02:04:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5552, '2005-07-10 03:01:19', 2879, 27, '2005-07-13 06:53:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5553, '2005-07-10 03:03:35', 1686, 6, '2005-07-14 07:49:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5554, '2005-07-10 03:03:38', 4084, 252, '2005-07-17 00:00:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5555, '2005-07-10 03:08:55', 2551, 79, '2005-07-11 01:36:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5556, '2005-07-10 03:10:17', 4483, 354, '2005-07-14 02:47:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5557, '2005-07-10 03:10:21', 1433, 346, '2005-07-11 21:34:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5558, '2005-07-10 03:12:08', 1123, 96, '2005-07-14 03:09:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5559, '2005-07-10 03:13:07', 4122, 496, '2005-07-18 08:33:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5560, '2005-07-10 03:13:24', 720, 231, '2005-07-19 06:03:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5561, '2005-07-10 03:15:24', 1048, 369, '2005-07-15 06:46:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5562, '2005-07-10 03:17:42', 3604, 300, '2005-07-12 03:26:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5563, '2005-07-10 03:21:02', 2258, 362, '2005-07-14 07:40:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5564, '2005-07-10 03:23:05', 196, 355, '2005-07-16 07:46:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5565, '2005-07-10 03:29:48', 3368, 14, '2005-07-17 04:43:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5566, '2005-07-10 03:30:17', 1343, 124, '2005-07-13 06:32:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5567, '2005-07-10 03:36:46', 1616, 147, '2005-07-15 23:22:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5568, '2005-07-10 03:36:56', 1130, 424, '2005-07-11 08:35:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5569, '2005-07-10 03:38:32', 2835, 69, '2005-07-16 00:02:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5570, '2005-07-10 03:46:47', 2013, 374, '2005-07-17 09:28:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5571, '2005-07-10 03:48:20', 1084, 76, '2005-07-11 02:09:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5572, '2005-07-10 03:49:00', 2709, 458, '2005-07-14 01:25:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5573, '2005-07-10 03:50:47', 2957, 170, '2005-07-17 06:40:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5574, '2005-07-10 03:54:38', 2307, 163, '2005-07-19 07:20:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5575, '2005-07-10 03:55:50', 2316, 107, '2005-07-12 08:40:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5576, '2005-07-10 03:57:05', 1453, 217, '2005-07-13 02:16:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5577, '2005-07-10 03:58:40', 3779, 266, '2005-07-14 03:36:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5578, '2005-07-10 04:00:31', 4543, 378, '2005-07-16 08:06:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5579, '2005-07-10 04:04:29', 945, 203, '2005-07-14 04:31:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5580, '2005-07-10 04:05:49', 2753, 521, '2005-07-18 22:36:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5581, '2005-07-10 04:06:06', 3450, 306, '2005-07-15 08:31:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5582, '2005-07-10 04:08:25', 3341, 305, '2005-07-13 06:04:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5583, '2005-07-10 04:08:48', 1242, 391, '2005-07-19 07:59:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5584, '2005-07-10 04:15:25', 2606, 289, '2005-07-16 22:54:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5585, '2005-07-10 04:15:43', 3524, 63, '2005-07-15 08:24:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5586, '2005-07-10 04:17:06', 2965, 427, '2005-07-18 07:11:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5587, '2005-07-10 04:17:25', 4485, 531, '2005-07-15 01:41:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5588, '2005-07-10 04:21:10', 1166, 535, '2005-07-16 02:58:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5589, '2005-07-10 04:22:58', 3673, 296, '2005-07-10 23:13:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5590, '2005-07-10 04:23:11', 4442, 407, '2005-07-19 09:03:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5591, '2005-07-10 04:25:03', 378, 374, '2005-07-16 04:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5592, '2005-07-10 04:26:13', 2471, 222, '2005-07-19 02:32:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5593, '2005-07-10 04:33:13', 702, 287, '2005-07-17 08:44:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5594, '2005-07-10 04:33:36', 61, 440, '2005-07-12 08:13:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5595, '2005-07-10 04:33:45', 264, 572, '2005-07-16 04:04:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5596, '2005-07-10 04:43:14', 1662, 240, '2005-07-11 22:58:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5597, '2005-07-10 04:47:57', 4264, 576, '2005-07-17 01:54:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5598, '2005-07-10 04:48:29', 3412, 397, '2005-07-18 10:33:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5599, '2005-07-10 04:52:04', 3054, 391, '2005-07-13 05:19:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5600, '2005-07-10 04:55:45', 3713, 138, '2005-07-18 03:10:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5601, '2005-07-10 04:56:55', 3062, 511, '2005-07-11 00:14:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5602, '2005-07-10 05:02:22', 3544, 253, '2005-07-14 23:40:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5603, '2005-07-10 05:04:54', 1308, 74, '2005-07-12 01:54:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5604, '2005-07-10 05:05:00', 3702, 78, '2005-07-12 08:04:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5605, '2005-07-10 05:06:45', 2964, 273, '2005-07-15 02:51:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5606, '2005-07-10 05:07:55', 2896, 51, '2005-07-15 00:14:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5607, '2005-07-10 05:08:10', 4257, 52, '2005-07-15 00:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5608, '2005-07-10 05:08:26', 3854, 384, '2005-07-10 23:24:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5609, '2005-07-10 05:09:46', 1553, 492, '2005-07-12 10:38:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5610, '2005-07-10 05:09:52', 481, 131, '2005-07-13 07:08:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5611, '2005-07-10 05:13:43', 2832, 424, '2005-07-16 05:56:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5612, '2005-07-10 05:15:12', 2363, 472, '2005-07-17 09:50:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5613, '2005-07-10 05:15:43', 4517, 220, '2005-07-13 05:17:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5614, '2005-07-10 05:16:56', 133, 371, '2005-07-13 02:03:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5615, '2005-07-10 05:18:51', 1521, 173, '2005-07-17 11:05:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5616, '2005-07-10 05:21:11', 4014, 238, '2005-07-18 08:42:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5617, '2005-07-10 05:28:50', 2324, 342, '2005-07-12 00:02:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5618, '2005-07-10 05:28:58', 757, 316, '2005-07-18 01:38:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5619, '2005-07-10 05:29:33', 113, 204, '2005-07-15 00:40:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5620, '2005-07-10 05:30:52', 2980, 92, '2005-07-16 04:13:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5621, '2005-07-10 05:34:10', 552, 310, '2005-07-14 02:49:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5622, '2005-07-10 05:39:37', 1783, 568, '2005-07-15 00:48:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5623, '2005-07-10 05:41:38', 4464, 229, '2005-07-14 01:01:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5624, '2005-07-10 05:43:16', 1015, 114, '2005-07-12 05:33:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5625, '2005-07-10 05:44:02', 1751, 114, '2005-07-12 00:03:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5626, '2005-07-10 05:49:35', 3029, 389, '2005-07-15 08:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5627, '2005-07-10 05:51:12', 244, 136, '2005-07-17 09:56:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5628, '2005-07-10 05:56:40', 4040, 87, '2005-07-17 11:13:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5629, '2005-07-10 06:02:25', 400, 546, '2005-07-16 07:33:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5630, '2005-07-10 06:08:14', 1151, 537, '2005-07-14 03:37:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5631, '2005-07-10 06:15:45', 2095, 595, '2005-07-17 09:53:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5632, '2005-07-10 06:17:06', 2632, 404, '2005-07-17 02:32:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5633, '2005-07-10 06:22:24', 1056, 480, '2005-07-11 05:59:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5634, '2005-07-10 06:25:48', 323, 487, '2005-07-17 09:07:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5635, '2005-07-10 06:28:39', 1457, 222, '2005-07-17 08:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5636, '2005-07-10 06:31:24', 4116, 2, '2005-07-13 02:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5637, '2005-07-10 06:31:37', 4436, 45, '2005-07-17 01:16:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5638, '2005-07-10 06:32:49', 1528, 570, '2005-07-13 04:32:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5639, '2005-07-10 06:33:39', 2452, 249, '2005-07-19 07:47:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5640, '2005-07-10 06:38:00', 2706, 574, '2005-07-18 08:56:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5641, '2005-07-10 06:43:43', 3568, 50, '2005-07-15 06:33:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5642, '2005-07-10 06:46:08', 3630, 299, '2005-07-13 10:03:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5643, '2005-07-10 06:49:00', 796, 34, '2005-07-14 01:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5644, '2005-07-10 06:57:44', 4069, 476, '2005-07-15 03:52:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5645, '2005-07-10 06:58:21', 1586, 333, '2005-07-18 04:19:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5646, '2005-07-10 07:08:09', 1471, 166, '2005-07-14 03:48:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5647, '2005-07-10 07:08:40', 1466, 128, '2005-07-13 05:19:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5648, '2005-07-10 07:09:21', 4359, 24, '2005-07-16 07:23:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5649, '2005-07-10 07:15:07', 1349, 336, '2005-07-12 11:57:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5650, '2005-07-10 07:17:01', 2793, 461, '2005-07-15 11:59:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5651, '2005-07-10 07:17:13', 301, 239, '2005-07-15 12:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5652, '2005-07-10 07:18:58', 927, 42, '2005-07-19 07:52:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5653, '2005-07-10 07:21:27', 919, 28, '2005-07-16 01:58:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5654, '2005-07-10 07:24:46', 3419, 490, '2005-07-14 07:39:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5655, '2005-07-10 07:31:06', 3470, 113, '2005-07-17 08:22:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5656, '2005-07-10 07:31:07', 4138, 159, '2005-07-15 04:44:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5657, '2005-07-10 07:33:43', 4342, 508, '2005-07-18 01:55:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5658, '2005-07-10 07:34:08', 4402, 165, '2005-07-19 04:21:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5659, '2005-07-10 07:45:40', 4265, 9, '2005-07-15 05:20:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5660, '2005-07-10 07:46:12', 1404, 171, '2005-07-17 07:48:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5661, '2005-07-10 07:53:51', 1878, 108, '2005-07-14 12:57:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5662, '2005-07-10 07:59:24', 219, 502, '2005-07-14 13:06:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5663, '2005-07-10 08:01:33', 3078, 530, '2005-07-15 03:36:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5664, '2005-07-10 08:04:41', 2375, 469, '2005-07-17 10:29:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5665, '2005-07-10 08:10:08', 1175, 415, '2005-07-11 05:22:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5666, '2005-07-10 08:10:29', 2225, 242, '2005-07-17 04:54:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5667, '2005-07-10 08:11:03', 683, 336, '2005-07-15 08:23:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5668, '2005-07-10 08:11:05', 309, 211, '2005-07-16 13:15:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5669, '2005-07-10 08:12:53', 1173, 323, '2005-07-11 05:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5670, '2005-07-10 08:14:52', 610, 121, '2005-07-14 04:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5671, '2005-07-10 08:18:22', 1304, 268, '2005-07-11 07:03:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5672, '2005-07-10 08:19:38', 2326, 158, '2005-07-16 06:28:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5673, '2005-07-10 08:21:54', 4018, 117, '2005-07-11 05:54:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5674, '2005-07-10 08:26:26', 548, 258, '2005-07-16 02:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5675, '2005-07-10 08:31:06', 2134, 376, '2005-07-17 11:48:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5676, '2005-07-10 08:38:32', 3595, 153, '2005-07-13 10:11:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5677, '2005-07-10 08:41:28', 2647, 105, '2005-07-12 09:05:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5678, '2005-07-10 08:42:42', 4366, 96, '2005-07-19 03:48:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5679, '2005-07-10 08:44:02', 389, 138, '2005-07-14 05:30:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5680, '2005-07-10 08:47:36', 3503, 199, '2005-07-17 06:10:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5681, '2005-07-10 08:48:39', 4176, 50, '2005-07-18 07:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5682, '2005-07-10 08:51:39', 17, 302, '2005-07-12 14:44:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5683, '2005-07-10 08:52:13', 4433, 285, '2005-07-19 10:25:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5684, '2005-07-10 08:59:03', 99, 132, '2005-07-15 07:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5685, '2005-07-10 09:01:38', 1462, 170, '2005-07-17 10:58:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5686, '2005-07-10 09:06:03', 717, 521, '2005-07-11 10:59:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5687, '2005-07-10 09:07:19', 2170, 363, '2005-07-16 11:17:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5688, '2005-07-10 09:16:08', 3036, 598, '2005-07-15 09:44:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5689, '2005-07-10 09:24:17', 1731, 381, '2005-07-15 05:36:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5690, '2005-07-10 09:26:49', 1326, 362, '2005-07-19 07:17:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5691, '2005-07-10 09:29:49', 3526, 466, '2005-07-16 13:37:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5692, '2005-07-10 09:32:22', 59, 244, '2005-07-15 15:20:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5693, '2005-07-10 09:35:43', 2167, 208, '2005-07-12 08:05:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5694, '2005-07-10 09:40:38', 3476, 57, '2005-07-14 09:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5695, '2005-07-10 09:43:40', 440, 459, '2005-07-13 15:04:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5696, '2005-07-10 09:44:32', 128, 96, '2005-07-12 13:38:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5697, '2005-07-10 09:44:44', 934, 515, '2005-07-12 12:13:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5698, '2005-07-10 09:47:00', 639, 46, '2005-07-16 06:26:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5699, '2005-07-10 09:48:04', 958, 211, '2005-07-17 09:07:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5700, '2005-07-10 09:49:42', 3961, 87, '2005-07-19 04:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5701, '2005-07-10 09:56:24', 2395, 91, '2005-07-16 15:11:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5702, '2005-07-10 10:00:01', 3349, 324, '2005-07-11 15:29:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5703, '2005-07-10 10:04:15', 1585, 132, '2005-07-16 07:43:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5704, '2005-07-10 10:06:29', 2104, 591, '2005-07-17 10:48:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5705, '2005-07-10 10:09:17', 4030, 300, '2005-07-19 07:24:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5706, '2005-07-10 10:21:46', 3701, 255, '2005-07-16 04:37:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5707, '2005-07-10 10:26:14', 708, 581, '2005-07-18 06:19:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5708, '2005-07-10 10:29:19', 571, 484, '2005-07-18 06:50:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5709, '2005-07-10 10:31:52', 732, 302, '2005-07-12 10:47:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5710, '2005-07-10 10:32:52', 2843, 265, '2005-07-18 06:28:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5711, '2005-07-10 10:37:20', 3988, 481, '2005-07-13 11:20:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5712, '2005-07-10 10:40:32', 3480, 304, '2005-07-12 11:45:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5713, '2005-07-10 10:46:15', 1213, 572, '2005-07-19 14:34:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5714, '2005-07-10 10:46:57', 3706, 17, '2005-07-18 14:07:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5715, '2005-07-10 10:48:03', 1638, 132, '2005-07-18 11:27:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5716, '2005-07-10 10:59:23', 3416, 102, '2005-07-16 12:25:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5717, '2005-07-10 11:02:03', 529, 15, '2005-07-13 13:00:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5718, '2005-07-10 11:03:20', 3719, 20, '2005-07-19 15:38:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5719, '2005-07-10 11:07:40', 2100, 94, '2005-07-15 14:14:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5720, '2005-07-10 11:09:12', 576, 339, '2005-07-16 07:31:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5721, '2005-07-10 11:09:35', 2348, 5, '2005-07-17 16:41:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5722, '2005-07-10 11:10:04', 2890, 556, '2005-07-12 16:31:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5723, '2005-07-10 11:14:48', 605, 33, '2005-07-11 15:46:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5724, '2005-07-10 11:18:12', 3597, 289, '2005-07-16 14:53:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5725, '2005-07-10 11:21:21', 4293, 426, '2005-07-14 05:34:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5726, '2005-07-10 11:22:08', 3582, 131, '2005-07-13 05:55:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5727, '2005-07-10 11:25:28', 3338, 550, '2005-07-11 11:03:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5728, '2005-07-10 11:26:14', 636, 335, '2005-07-15 12:55:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5729, '2005-07-10 11:27:25', 4137, 188, '2005-07-15 06:13:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5730, '2005-07-10 11:28:32', 1903, 301, '2005-07-11 11:45:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5731, '2005-07-10 11:31:52', 2960, 440, '2005-07-14 11:44:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5732, '2005-07-10 11:36:32', 2833, 597, '2005-07-12 13:09:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5733, '2005-07-10 11:37:24', 3806, 415, '2005-07-11 12:34:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5734, '2005-07-10 11:37:28', 399, 447, '2005-07-16 11:10:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5735, '2005-07-10 11:39:15', 3259, 65, '2005-07-19 09:52:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5736, '2005-07-10 11:45:48', 1172, 27, '2005-07-13 16:40:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5737, '2005-07-10 11:50:04', 1118, 218, '2005-07-13 10:37:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5738, '2005-07-10 11:50:51', 200, 187, '2005-07-19 17:46:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5739, '2005-07-10 11:51:50', 163, 219, '2005-07-19 17:40:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5740, '2005-07-10 11:51:58', 2147, 325, '2005-07-12 07:53:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5741, '2005-07-10 11:55:40', 2041, 513, '2005-07-16 15:02:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5742, '2005-07-10 11:56:18', 3975, 596, '2005-07-19 06:59:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5743, '2005-07-10 11:57:38', 593, 297, '2005-07-19 15:38:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5744, '2005-07-10 12:08:33', 1372, 437, '2005-07-14 12:34:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5745, '2005-07-10 12:10:11', 41, 305, '2005-07-19 06:56:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5746, '2005-07-10 12:15:12', 3071, 82, '2005-07-16 07:02:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5747, '2005-07-10 12:15:33', 4562, 583, '2005-07-18 10:11:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5748, '2005-07-10 12:19:59', 1618, 99, '2005-07-12 12:59:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5749, '2005-07-10 12:20:36', 1768, 304, '2005-07-19 10:39:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5750, '2005-07-10 12:20:41', 3855, 330, '2005-07-17 08:25:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5751, '2005-07-10 12:25:11', 387, 479, '2005-07-11 15:23:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5752, '2005-07-10 12:27:38', 4444, 86, '2005-07-18 09:22:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5753, '2005-07-10 12:29:43', 3639, 444, '2005-07-17 12:50:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5754, '2005-07-10 12:32:43', 162, 291, '2005-07-12 13:11:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5755, '2005-07-10 12:38:56', 2760, 2, '2005-07-19 17:02:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5756, '2005-07-10 12:39:28', 130, 183, '2005-07-11 14:08:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5757, '2005-07-10 12:40:17', 1827, 101, '2005-07-12 14:02:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5758, '2005-07-10 12:42:43', 502, 363, '2005-07-16 10:18:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5759, '2005-07-10 12:43:22', 816, 591, '2005-07-16 16:42:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5760, '2005-07-10 12:44:48', 1050, 154, '2005-07-14 12:25:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5761, '2005-07-10 12:45:36', 1763, 287, '2005-07-13 10:05:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5762, '2005-07-10 12:48:01', 1815, 217, '2005-07-18 16:43:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5763, '2005-07-10 12:58:12', 753, 397, '2005-07-14 08:52:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5764, '2005-07-10 12:58:16', 1556, 245, '2005-07-19 07:28:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5765, '2005-07-10 13:03:02', 2619, 293, '2005-07-16 09:31:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5766, '2005-07-10 13:07:31', 7, 406, '2005-07-16 13:03:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5767, '2005-07-10 13:13:18', 2871, 32, '2005-07-17 14:41:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5768, '2005-07-10 13:15:26', 345, 196, '2005-07-15 09:42:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5769, '2005-07-10 13:17:58', 4052, 141, '2005-07-11 11:32:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5770, '2005-07-10 13:21:28', 914, 71, '2005-07-11 08:59:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5771, '2005-07-10 13:26:45', 3275, 153, '2005-07-14 15:43:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5772, '2005-07-10 13:27:40', 3635, 21, '2005-07-17 08:24:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5773, '2005-07-10 13:31:09', 3277, 180, '2005-07-15 08:21:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5774, '2005-07-10 13:31:56', 326, 113, '2005-07-18 07:32:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5775, '2005-07-10 13:34:26', 2175, 325, '2005-07-15 10:01:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5776, '2005-07-10 13:35:22', 3592, 568, '2005-07-12 17:58:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5777, '2005-07-10 13:38:41', 3959, 40, '2005-07-17 15:48:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5778, '2005-07-10 13:41:37', 4435, 324, '2005-07-14 16:26:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5779, '2005-07-10 13:45:54', 3266, 244, '2005-07-15 18:13:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5780, '2005-07-10 13:46:23', 168, 516, '2005-07-14 17:19:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5781, '2005-07-10 13:49:30', 3191, 167, '2005-07-11 12:11:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5782, '2005-07-10 13:52:56', 2514, 440, '2005-07-15 09:32:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5783, '2005-07-10 13:55:33', 3331, 385, '2005-07-16 12:13:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5784, '2005-07-10 14:03:28', 2323, 422, '2005-07-16 16:22:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5785, '2005-07-10 14:06:03', 142, 211, '2005-07-17 17:59:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5786, '2005-07-10 14:06:44', 2290, 350, '2005-07-14 19:55:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5787, '2005-07-10 14:08:49', 1075, 44, '2005-07-19 18:29:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5788, '2005-07-10 14:10:22', 1707, 63, '2005-07-14 19:46:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5789, '2005-07-10 14:11:26', 2601, 571, '2005-07-18 16:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5790, '2005-07-10 14:15:21', 1696, 235, '2005-07-14 08:53:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5791, '2005-07-10 14:16:22', 2795, 319, '2005-07-19 13:38:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5792, '2005-07-10 14:22:19', 4234, 92, '2005-07-19 09:08:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5793, '2005-07-10 14:33:00', 2927, 268, '2005-07-13 19:27:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5794, '2005-07-10 14:34:53', 1164, 198, '2005-07-17 11:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5795, '2005-07-10 14:36:29', 3958, 304, '2005-07-14 13:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5796, '2005-07-10 14:42:54', 1631, 286, '2005-07-17 08:47:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5797, '2005-07-10 14:43:52', 1880, 384, '2005-07-13 16:12:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5798, '2005-07-10 14:45:09', 331, 107, '2005-07-16 13:43:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5799, '2005-07-10 14:53:35', 3045, 520, '2005-07-14 16:18:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5800, '2005-07-10 14:58:36', 2466, 411, '2005-07-11 19:50:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5801, '2005-07-10 14:59:05', 3511, 439, '2005-07-14 17:55:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5802, '2005-07-10 15:02:17', 2295, 520, '2005-07-19 15:43:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5803, '2005-07-10 15:05:42', 1982, 244, '2005-07-15 10:19:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5804, '2005-07-10 15:06:31', 2168, 137, '2005-07-14 11:00:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5805, '2005-07-10 15:08:41', 3553, 532, '2005-07-19 16:35:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5806, '2005-07-10 15:11:54', 29, 108, '2005-07-15 11:51:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5807, '2005-07-10 15:16:30', 2092, 301, '2005-07-11 14:02:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5808, '2005-07-10 15:17:33', 2310, 170, '2005-07-14 12:14:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5809, '2005-07-10 15:19:30', 1748, 461, '2005-07-13 12:31:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5810, '2005-07-10 15:22:04', 1426, 482, '2005-07-18 21:05:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5811, '2005-07-10 15:27:04', 4007, 441, '2005-07-12 17:20:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5812, '2005-07-10 15:27:56', 1681, 581, '2005-07-18 15:37:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5813, '2005-07-10 15:34:37', 942, 512, '2005-07-17 16:14:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5814, '2005-07-10 15:46:50', 2537, 71, '2005-07-13 15:28:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5815, '2005-07-10 15:48:19', 2934, 22, '2005-07-13 12:09:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5816, '2005-07-10 15:48:47', 1746, 382, '2005-07-13 11:51:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5817, '2005-07-10 15:49:12', 2993, 28, '2005-07-18 19:30:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5818, '2005-07-10 15:51:12', 3940, 334, '2005-07-14 14:10:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5819, '2005-07-10 15:56:20', 3439, 347, '2005-07-12 19:59:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5820, '2005-07-10 16:04:59', 1511, 485, '2005-07-16 12:10:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5821, '2005-07-10 16:07:16', 147, 302, '2005-07-14 19:48:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5822, '2005-07-10 16:10:39', 1385, 38, '2005-07-13 19:05:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5823, '2005-07-10 16:19:52', 1879, 483, '2005-07-11 12:33:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5824, '2005-07-10 16:19:53', 1980, 449, '2005-07-12 11:17:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5825, '2005-07-10 16:20:30', 3843, 444, '2005-07-11 18:58:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5826, '2005-07-10 16:21:02', 4104, 254, '2005-07-17 21:08:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5827, '2005-07-10 16:22:20', 1296, 290, '2005-07-15 21:13:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5828, '2005-07-10 16:27:25', 2999, 156, '2005-07-11 18:42:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5829, '2005-07-10 16:29:41', 3405, 118, '2005-07-14 22:03:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5830, '2005-07-10 16:34:00', 2358, 59, '2005-07-18 16:42:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5831, '2005-07-10 16:34:02', 830, 43, '2005-07-11 14:27:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5832, '2005-07-10 16:34:48', 2387, 63, '2005-07-17 17:25:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5833, '2005-07-10 16:39:24', 3829, 187, '2005-07-17 12:52:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5834, '2005-07-10 16:44:12', 85, 360, '2005-07-14 11:34:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5835, '2005-07-10 16:44:58', 800, 11, '2005-07-17 16:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5836, '2005-07-10 16:49:02', 1842, 310, '2005-07-11 22:35:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5837, '2005-07-10 16:57:50', 1648, 478, '2005-07-18 14:07:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5838, '2005-07-10 17:04:56', 1627, 202, '2005-07-11 15:15:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5839, '2005-07-10 17:08:30', 252, 367, '2005-07-13 21:21:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5840, '2005-07-10 17:09:09', 1073, 72, '2005-07-15 22:52:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5841, '2005-07-10 17:11:31', 1230, 525, '2005-07-18 15:50:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5842, '2005-07-10 17:11:37', 139, 247, '2005-07-14 21:43:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5843, '2005-07-10 17:14:27', 1615, 599, '2005-07-15 21:18:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5844, '2005-07-10 17:14:43', 609, 147, '2005-07-12 19:27:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5845, '2005-07-10 17:23:14', 2882, 334, '2005-07-12 16:29:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5846, '2005-07-10 17:25:24', 938, 233, '2005-07-12 13:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5847, '2005-07-10 17:27:42', 4403, 220, '2005-07-12 14:51:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5848, '2005-07-10 17:28:14', 4549, 409, '2005-07-14 11:54:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5849, '2005-07-10 17:32:33', 1632, 44, '2005-07-19 22:39:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5850, '2005-07-10 17:36:27', 4015, 531, '2005-07-15 16:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5851, '2005-07-10 17:40:47', 3944, 510, '2005-07-11 19:24:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5852, '2005-07-10 17:43:30', 3890, 484, '2005-07-15 15:05:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5853, '2005-07-10 17:45:13', 3026, 520, '2005-07-17 21:37:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5854, '2005-07-10 17:47:34', 997, 547, '2005-07-13 20:14:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5855, '2005-07-10 17:54:06', 2457, 166, '2005-07-18 15:41:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5856, '2005-07-10 17:57:32', 497, 314, '2005-07-11 13:57:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5857, '2005-07-10 17:59:29', 1265, 29, '2005-07-18 18:13:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5858, '2005-07-10 18:00:07', 2913, 257, '2005-07-11 20:01:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5859, '2005-07-10 18:02:02', 131, 220, '2005-07-11 23:24:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5860, '2005-07-10 18:08:49', 3897, 180, '2005-07-16 16:43:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5861, '2005-07-10 18:14:22', 3881, 277, '2005-07-14 15:32:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5862, '2005-07-10 18:20:48', 2075, 157, '2005-07-17 00:09:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5863, '2005-07-10 18:25:23', 2557, 419, '2005-07-15 23:49:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5864, '2005-07-10 18:29:57', 4380, 437, '2005-07-19 14:27:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5865, '2005-07-10 18:31:05', 1382, 126, '2005-07-12 18:29:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5866, '2005-07-10 18:35:14', 457, 484, '2005-07-19 19:41:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5867, '2005-07-10 18:39:01', 730, 321, '2005-07-19 21:56:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5868, '2005-07-10 18:39:16', 452, 429, '2005-07-15 21:19:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5869, '2005-07-10 18:40:09', 2157, 40, '2005-07-17 18:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5870, '2005-07-10 18:40:25', 1524, 438, '2005-07-12 15:39:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5871, '2005-07-10 18:46:08', 3288, 307, '2005-07-16 17:32:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5872, '2005-07-10 18:54:05', 270, 364, '2005-07-19 15:41:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5873, '2005-07-10 19:02:10', 3151, 354, '2005-07-14 19:13:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5874, '2005-07-10 19:02:51', 2255, 131, '2005-07-16 13:14:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5875, '2005-07-10 19:06:47', 964, 575, '2005-07-18 17:33:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5876, '2005-07-10 19:07:15', 4445, 578, '2005-07-14 17:29:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5877, '2005-07-10 19:08:51', 1520, 537, '2005-07-19 19:48:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5878, '2005-07-10 19:09:57', 3805, 271, '2005-07-16 17:22:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5879, '2005-07-10 19:12:47', 3851, 430, '2005-07-16 16:32:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5880, '2005-07-10 19:14:58', 359, 482, '2005-07-17 01:13:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5881, '2005-07-10 19:19:43', 236, 25, '2005-07-12 20:11:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5882, '2005-07-10 19:20:34', 2830, 319, '2005-07-11 18:39:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5883, '2005-07-10 19:25:21', 2820, 17, '2005-07-16 20:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5884, '2005-07-10 19:31:38', 916, 498, '2005-07-11 20:30:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5885, '2005-07-10 19:33:50', 3129, 331, '2005-07-17 00:26:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5886, '2005-07-10 19:36:25', 907, 215, '2005-07-11 22:24:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5887, '2005-07-10 19:45:47', 2602, 532, '2005-07-15 22:15:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5888, '2005-07-10 19:52:17', 1620, 268, '2005-07-18 20:32:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5889, '2005-07-10 19:54:41', 1706, 491, '2005-07-12 20:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5890, '2005-07-10 20:00:25', 1463, 535, '2005-07-18 17:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5891, '2005-07-10 20:01:17', 4355, 184, '2005-07-12 00:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5892, '2005-07-10 20:02:42', 4322, 333, '2005-07-11 20:02:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5893, '2005-07-10 20:05:30', 1689, 439, '2005-07-14 23:05:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5894, '2005-07-10 20:09:34', 2264, 194, '2005-07-17 15:39:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5895, '2005-07-10 20:13:19', 2272, 164, '2005-07-17 17:51:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5896, '2005-07-10 20:15:56', 731, 357, '2005-07-12 00:39:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5897, '2005-07-10 20:16:14', 740, 413, '2005-07-19 15:49:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5898, '2005-07-10 20:18:09', 3257, 538, '2005-07-16 14:44:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5899, '2005-07-10 20:21:52', 1391, 388, '2005-07-13 00:46:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5900, '2005-07-10 20:21:54', 1081, 419, '2005-07-17 00:26:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5901, '2005-07-10 20:22:12', 86, 165, '2005-07-19 16:43:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5902, '2005-07-10 20:31:24', 2727, 228, '2005-07-11 20:50:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5903, '2005-07-10 20:39:04', 1388, 573, '2005-07-11 17:41:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5904, '2005-07-10 20:39:44', 350, 531, '2005-07-13 17:57:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5905, '2005-07-10 20:41:09', 3891, 10, '2005-07-19 14:49:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5906, '2005-07-10 20:41:41', 514, 323, '2005-07-14 00:12:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5907, '2005-07-10 20:41:41', 4432, 168, '2005-07-15 21:18:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5908, '2005-07-10 20:44:14', 810, 156, '2005-07-13 15:05:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5909, '2005-07-10 20:46:13', 2333, 44, '2005-07-14 18:01:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5910, '2005-07-10 20:51:34', 1039, 464, '2005-07-19 14:54:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5911, '2005-07-10 20:51:42', 4140, 420, '2005-07-14 21:58:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5912, '2005-07-10 20:58:22', 1187, 351, '2005-07-17 01:15:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5913, '2005-07-10 20:58:55', 2767, 277, '2005-07-13 15:18:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5914, '2005-07-10 21:01:12', 2639, 372, '2005-07-16 18:27:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5915, '2005-07-10 21:12:16', 2464, 66, '2005-07-15 16:59:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5916, '2005-07-10 21:26:31', 2267, 35, '2005-07-19 20:23:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5917, '2005-07-10 21:30:22', 2910, 74, '2005-07-12 18:54:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5918, '2005-07-10 21:32:06', 120, 34, '2005-07-19 21:35:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5919, '2005-07-10 21:32:14', 164, 92, '2005-07-12 16:47:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5920, '2005-07-10 21:33:58', 1893, 221, '2005-07-17 19:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5921, '2005-07-10 21:35:12', 3920, 7, '2005-07-18 19:59:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5922, '2005-07-10 21:36:53', 1392, 271, '2005-07-16 02:51:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5923, '2005-07-10 21:40:06', 1817, 401, '2005-07-13 00:01:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5924, '2005-07-10 21:41:23', 629, 191, '2005-07-16 21:33:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5925, '2005-07-10 21:41:27', 3724, 503, '2005-07-18 18:35:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5926, '2005-07-10 21:53:42', 2840, 282, '2005-07-20 01:04:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5927, '2005-07-10 21:57:14', 807, 70, '2005-07-16 19:32:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5928, '2005-07-10 21:58:30', 4132, 50, '2005-07-15 19:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5929, '2005-07-10 21:59:29', 4303, 54, '2005-07-14 20:20:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5930, '2005-07-10 21:59:32', 2338, 254, '2005-07-11 18:40:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5931, '2005-07-10 22:04:19', 2259, 341, '2005-07-13 00:45:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5932, '2005-07-10 22:05:15', 2269, 523, '2005-07-12 17:04:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5933, '2005-07-10 22:06:48', 4372, 419, '2005-07-12 23:58:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5934, '2005-07-10 22:07:59', 3825, 576, '2005-07-15 21:07:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5935, '2005-07-10 22:11:04', 3371, 258, '2005-07-19 18:12:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5936, '2005-07-10 22:14:30', 1951, 522, '2005-07-15 01:32:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5937, '2005-07-10 22:16:08', 1579, 580, '2005-07-16 03:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5938, '2005-07-10 22:17:42', 2834, 236, '2005-07-16 22:38:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5939, '2005-07-10 22:30:05', 4491, 207, '2005-07-14 00:02:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5940, '2005-07-10 22:31:01', 3295, 292, '2005-07-14 00:52:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5941, '2005-07-10 22:40:47', 492, 43, '2005-07-17 00:19:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5942, '2005-07-10 22:47:17', 2861, 317, '2005-07-17 01:54:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5943, '2005-07-10 22:48:13', 3019, 255, '2005-07-16 01:33:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5944, '2005-07-10 22:51:44', 3904, 432, '2005-07-18 17:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5945, '2005-07-10 22:52:42', 427, 374, '2005-07-11 21:52:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5946, '2005-07-10 22:57:29', 1629, 308, '2005-07-12 00:08:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5947, '2005-07-10 23:07:42', 327, 331, '2005-07-18 23:13:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5948, '2005-07-10 23:12:08', 3260, 57, '2005-07-18 19:06:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5949, '2005-07-10 23:13:00', 4397, 496, '2005-07-14 01:10:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5950, '2005-07-10 23:13:45', 4319, 585, '2005-07-13 02:35:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5951, '2005-07-10 23:14:29', 2501, 589, '2005-07-13 01:01:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5952, '2005-07-10 23:18:20', 3406, 595, '2005-07-16 17:42:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5953, '2005-07-10 23:21:35', 992, 386, '2005-07-14 20:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5954, '2005-07-10 23:22:01', 2627, 32, '2005-07-14 04:42:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5955, '2005-07-10 23:22:10', 834, 409, '2005-07-17 17:55:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5956, '2005-07-10 23:23:08', 2536, 499, '2005-07-13 17:36:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5957, '2005-07-10 23:24:02', 2517, 210, '2005-07-12 20:28:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5958, '2005-07-10 23:31:51', 3468, 430, '2005-07-19 00:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5959, '2005-07-10 23:35:36', 3169, 436, '2005-07-13 02:19:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5960, '2005-07-10 23:38:34', 3884, 239, '2005-07-11 19:21:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5961, '2005-07-10 23:43:23', 3537, 21, '2005-07-15 05:21:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5962, '2005-07-10 23:45:22', 1292, 507, '2005-07-13 03:49:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5963, '2005-07-10 23:47:08', 4434, 35, '2005-07-12 04:27:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5964, '2005-07-10 23:47:18', 3981, 456, '2005-07-12 03:55:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5965, '2005-07-10 23:51:52', 4476, 348, '2005-07-11 23:29:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5966, '2005-07-10 23:59:27', 2076, 384, '2005-07-14 23:38:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5967, '2005-07-11 00:02:19', 2125, 215, '2005-07-18 23:08:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5968, '2005-07-11 00:03:11', 3273, 554, '2005-07-19 18:46:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5969, '2005-07-11 00:03:22', 4177, 433, '2005-07-18 01:28:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5970, '2005-07-11 00:04:50', 1514, 94, '2005-07-19 03:36:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5971, '2005-07-11 00:05:58', 2191, 84, '2005-07-19 04:50:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5972, '2005-07-11 00:08:54', 4577, 30, '2005-07-17 21:01:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5973, '2005-07-11 00:09:17', 1194, 165, '2005-07-14 19:18:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5974, '2005-07-11 00:10:37', 3984, 517, '2005-07-18 18:48:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5975, '2005-07-11 00:14:19', 2997, 15, '2005-07-16 04:21:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5976, '2005-07-11 00:16:35', 1693, 505, '2005-07-20 01:30:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5977, '2005-07-11 00:16:38', 4011, 484, '2005-07-19 21:00:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5978, '2005-07-11 00:16:54', 1720, 508, '2005-07-19 18:55:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5979, '2005-07-11 00:17:09', 1736, 251, '2005-07-14 00:38:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5980, '2005-07-11 00:18:21', 1777, 309, '2005-07-14 21:26:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5981, '2005-07-11 00:19:04', 2151, 241, '2005-07-13 19:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5982, '2005-07-11 00:24:44', 2329, 403, '2005-07-14 04:42:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5983, '2005-07-11 00:34:11', 351, 127, '2005-07-15 05:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5984, '2005-07-11 00:44:36', 2801, 178, '2005-07-15 00:04:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5985, '2005-07-11 00:51:58', 1108, 506, '2005-07-14 22:02:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5986, '2005-07-11 00:54:56', 1624, 171, '2005-07-13 22:52:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5987, '2005-07-11 00:55:31', 1000, 447, '2005-07-16 06:28:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5988, '2005-07-11 00:55:38', 151, 158, '2005-07-13 21:36:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5989, '2005-07-11 00:57:53', 696, 283, '2005-07-15 02:24:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5990, '2005-07-11 01:03:14', 1561, 432, '2005-07-15 19:32:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5991, '2005-07-11 01:03:38', 3623, 590, '2005-07-12 22:32:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5992, '2005-07-11 01:06:21', 4216, 54, '2005-07-13 19:15:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5993, '2005-07-11 01:06:41', 3588, 529, '2005-07-14 19:19:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5994, '2005-07-11 01:14:10', 4287, 295, '2005-07-12 00:42:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5995, '2005-07-11 01:15:39', 4357, 360, '2005-07-20 05:01:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5996, '2005-07-11 01:18:33', 4263, 223, '2005-07-17 04:18:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5997, '2005-07-11 01:19:50', 3542, 128, '2005-07-16 06:29:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5998, '2005-07-11 01:20:46', 1458, 250, '2005-07-15 21:41:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (5999, '2005-07-11 01:21:22', 211, 450, '2005-07-19 01:35:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6000, '2005-07-11 01:23:06', 1986, 371, '2005-07-12 04:39:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6001, '2005-07-11 01:24:44', 1779, 45, '2005-07-11 22:55:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6002, '2005-07-11 01:27:49', 4422, 45, '2005-07-12 06:02:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6003, '2005-07-11 01:28:33', 296, 527, '2005-07-17 21:24:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6004, '2005-07-11 01:34:25', 1756, 204, '2005-07-18 00:48:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6005, '2005-07-11 01:36:42', 809, 78, '2005-07-14 04:47:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6006, '2005-07-11 01:38:42', 4201, 399, '2005-07-17 05:18:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6007, '2005-07-11 01:43:06', 4393, 289, '2005-07-17 04:46:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6008, '2005-07-11 01:51:29', 1227, 216, '2005-07-18 01:39:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6009, '2005-07-11 01:51:58', 494, 470, '2005-07-18 07:12:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6010, '2005-07-11 01:52:28', 771, 285, '2005-07-13 03:13:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6011, '2005-07-11 01:54:48', 3899, 527, '2005-07-18 07:17:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6012, '2005-07-11 02:00:12', 2609, 258, '2005-07-17 02:49:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6013, '2005-07-11 02:02:03', 3774, 543, '2005-07-14 02:07:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6014, '2005-07-11 02:02:55', 3748, 397, '2005-07-12 23:49:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6015, '2005-07-11 02:04:12', 295, 596, '2005-07-13 02:43:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6016, '2005-07-11 02:04:45', 651, 296, '2005-07-17 22:22:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6017, '2005-07-11 02:05:32', 4088, 596, '2005-07-14 22:50:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6018, '2005-07-11 02:06:36', 4555, 500, '2005-07-12 02:16:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6019, '2005-07-11 02:08:29', 3483, 9, '2005-07-13 02:19:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6020, '2005-07-11 02:08:55', 1974, 71, '2005-07-16 22:07:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6021, '2005-07-11 02:10:18', 3949, 173, '2005-07-13 05:19:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6022, '2005-07-11 02:15:53', 2435, 469, '2005-07-13 03:40:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6023, '2005-07-11 02:15:57', 3794, 456, '2005-07-15 21:30:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6024, '2005-07-11 02:16:47', 2923, 271, '2005-07-12 05:54:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6025, '2005-07-11 02:18:13', 3306, 113, '2005-07-11 23:30:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6026, '2005-07-11 02:21:43', 3936, 409, '2005-07-13 03:49:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6027, '2005-07-11 02:26:29', 4536, 513, '2005-07-18 23:05:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6028, '2005-07-11 02:31:44', 784, 450, '2005-07-14 03:18:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6029, '2005-07-11 02:36:46', 2030, 520, '2005-07-14 20:51:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6030, '2005-07-11 02:37:51', 95, 36, '2005-07-16 22:34:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6031, '2005-07-11 02:42:14', 1530, 224, '2005-07-14 03:24:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6032, '2005-07-11 02:49:01', 3792, 28, '2005-07-18 05:05:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6033, '2005-07-11 02:59:34', 2819, 322, '2005-07-16 03:48:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6034, '2005-07-11 03:00:50', 1735, 324, '2005-07-16 06:19:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6035, '2005-07-11 03:01:45', 3474, 176, '2005-07-14 01:04:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6036, '2005-07-11 03:02:28', 2553, 297, '2005-07-15 22:12:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6037, '2005-07-11 03:06:54', 1886, 386, '2005-07-12 22:46:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6038, '2005-07-11 03:10:37', 1555, 243, '2005-07-19 05:14:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6039, '2005-07-11 03:12:19', 1776, 137, '2005-07-19 05:46:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6040, '2005-07-11 03:14:26', 2161, 511, '2005-07-14 01:12:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6041, '2005-07-11 03:14:58', 2815, 551, '2005-07-13 00:48:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6042, '2005-07-11 03:17:04', 2153, 5, '2005-07-19 07:08:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6043, '2005-07-11 03:18:10', 3303, 430, '2005-07-12 05:50:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6044, '2005-07-11 03:18:39', 1270, 481, '2005-07-13 06:58:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6045, '2005-07-11 03:21:05', 2003, 39, '2005-07-17 23:10:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6046, '2005-07-11 03:21:49', 1935, 569, '2005-07-19 23:58:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6047, '2005-07-11 03:27:01', 4147, 235, '2005-07-16 06:42:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6048, '2005-07-11 03:32:23', 975, 154, '2005-07-14 07:39:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6049, '2005-07-11 03:32:32', 2582, 236, '2005-07-15 06:57:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6050, '2005-07-11 03:34:29', 825, 527, '2005-07-15 02:55:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6051, '2005-07-11 03:46:41', 2675, 435, '2005-07-11 22:36:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6052, '2005-07-11 03:51:27', 881, 75, '2005-07-16 02:55:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6053, '2005-07-11 03:51:59', 2836, 237, '2005-07-19 09:13:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6054, '2005-07-11 03:58:39', 1176, 354, '2005-07-13 23:08:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6055, '2005-07-11 03:59:08', 595, 125, '2005-07-18 05:35:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6056, '2005-07-11 04:01:27', 3069, 145, '2005-07-12 04:14:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6057, '2005-07-11 04:03:40', 1340, 187, '2005-07-17 01:34:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6058, '2005-07-11 04:03:51', 3761, 498, '2005-07-14 03:52:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6059, '2005-07-11 04:03:54', 1437, 394, '2005-07-18 01:35:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6060, '2005-07-11 04:06:17', 3146, 342, '2005-07-12 03:05:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6061, '2005-07-11 04:06:25', 1859, 392, '2005-07-11 23:11:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6062, '2005-07-11 04:11:58', 3301, 408, '2005-07-15 05:00:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6063, '2005-07-11 04:16:51', 1715, 519, '2005-07-13 08:35:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6064, '2005-07-11 04:23:18', 265, 297, '2005-07-19 02:21:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6065, '2005-07-11 04:25:51', 1007, 562, '2005-07-17 08:19:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6066, '2005-07-11 04:32:42', 1877, 155, '2005-07-15 03:56:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6067, '2005-07-11 04:34:49', 2097, 186, '2005-07-16 09:33:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6068, '2005-07-11 04:41:09', 2331, 265, '2005-07-14 04:45:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6069, '2005-07-11 04:44:59', 256, 553, '2005-07-13 01:00:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6070, '2005-07-11 04:47:42', 1679, 267, '2005-07-13 01:49:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6071, '2005-07-11 04:50:03', 889, 179, '2005-07-19 23:52:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6072, '2005-07-11 04:52:40', 1790, 339, '2005-07-18 01:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6073, '2005-07-11 04:54:31', 4243, 466, '2005-07-20 07:23:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6074, '2005-07-11 04:59:56', 2876, 259, '2005-07-13 23:31:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6075, '2005-07-11 05:03:03', 2160, 283, '2005-07-12 01:28:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6076, '2005-07-11 05:05:30', 1792, 143, '2005-07-18 04:22:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6077, '2005-07-11 05:06:08', 2154, 542, '2005-07-16 10:29:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6078, '2005-07-11 05:06:52', 3985, 91, '2005-07-17 06:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6079, '2005-07-11 05:07:14', 1494, 119, '2005-07-17 08:45:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6080, '2005-07-11 05:08:11', 2682, 115, '2005-07-16 09:54:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6081, '2005-07-11 05:11:09', 2286, 72, '2005-07-13 05:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6082, '2005-07-11 05:12:41', 1091, 82, '2005-07-16 03:40:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6083, '2005-07-11 05:12:49', 3183, 285, '2005-07-15 00:46:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6084, '2005-07-11 05:16:20', 1334, 479, '2005-07-19 01:38:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6085, '2005-07-11 05:24:36', 312, 155, '2005-07-16 03:49:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6086, '2005-07-11 05:29:03', 1505, 420, '2005-07-16 01:17:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6087, '2005-07-11 05:29:22', 198, 155, '2005-07-12 23:33:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6088, '2005-07-11 05:40:35', 3796, 498, '2005-07-17 07:14:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6089, '2005-07-11 05:45:59', 3298, 580, '2005-07-17 11:04:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6090, '2005-07-11 05:47:08', 71, 241, '2005-07-20 07:52:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6091, '2005-07-11 05:49:18', 580, 383, '2005-07-15 07:26:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6092, '2005-07-11 05:51:31', 2129, 75, '2005-07-17 03:42:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6093, '2005-07-11 05:52:50', 1868, 117, '2005-07-20 11:45:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6094, '2005-07-11 05:54:42', 2684, 285, '2005-07-18 08:19:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6095, '2005-07-11 06:06:41', 727, 501, '2005-07-19 06:14:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6096, '2005-07-11 06:18:04', 2720, 420, '2005-07-14 01:15:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6097, '2005-07-11 06:21:43', 297, 416, '2005-07-16 10:04:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6098, '2005-07-11 06:23:28', 3016, 525, '2005-07-17 04:05:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6099, '2005-07-11 06:24:44', 3865, 469, '2005-07-15 08:03:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6100, '2005-07-11 06:40:31', 3485, 16, '2005-07-14 10:59:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6101, '2005-07-11 06:50:33', 2618, 508, '2005-07-18 01:52:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6102, '2005-07-11 06:53:09', 4305, 146, '2005-07-17 07:05:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6103, '2005-07-11 06:59:55', 262, 540, '2005-07-16 09:30:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6104, '2005-07-11 07:01:35', 3531, 389, '2005-07-17 02:29:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6105, '2005-07-11 07:03:19', 3501, 595, '2005-07-19 06:46:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6106, '2005-07-11 07:05:06', 2714, 185, '2005-07-20 09:27:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6107, '2005-07-11 07:07:09', 3798, 304, '2005-07-14 07:32:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6108, '2005-07-11 07:19:24', 4296, 572, '2005-07-13 12:38:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6109, '2005-07-11 07:20:57', 3603, 163, '2005-07-13 07:29:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6110, '2005-07-11 07:23:47', 541, 405, '2005-07-20 03:17:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6111, '2005-07-11 07:26:57', 3504, 300, '2005-07-13 10:43:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6112, '2005-07-11 07:28:05', 1311, 366, '2005-07-18 07:29:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6113, '2005-07-11 07:31:08', 4437, 115, '2005-07-20 11:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6114, '2005-07-11 07:33:48', 479, 404, '2005-07-18 06:13:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6115, '2005-07-11 07:36:50', 3415, 27, '2005-07-13 11:30:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6116, '2005-07-11 07:37:38', 247, 381, '2005-07-14 11:53:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6117, '2005-07-11 07:39:38', 2613, 135, '2005-07-18 12:07:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6118, '2005-07-11 07:43:08', 3013, 13, '2005-07-20 03:17:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6119, '2005-07-11 07:44:46', 4281, 472, '2005-07-20 04:41:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6120, '2005-07-11 07:49:53', 3299, 268, '2005-07-19 04:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6121, '2005-07-11 07:55:27', 1613, 347, '2005-07-16 03:43:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6122, '2005-07-11 07:58:07', 2212, 32, '2005-07-16 09:52:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6123, '2005-07-11 08:02:27', 1354, 200, '2005-07-15 08:58:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6124, '2005-07-11 08:02:32', 2022, 368, '2005-07-12 05:58:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6125, '2005-07-11 08:03:35', 2439, 307, '2005-07-18 12:46:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6126, '2005-07-11 08:06:56', 1069, 230, '2005-07-16 11:42:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6127, '2005-07-11 08:06:59', 285, 355, '2005-07-12 09:01:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6128, '2005-07-11 08:15:08', 2050, 18, '2005-07-13 03:36:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6129, '2005-07-11 08:15:09', 3875, 222, '2005-07-18 13:00:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6130, '2005-07-11 08:19:56', 2547, 538, '2005-07-16 12:02:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6131, '2005-07-11 08:22:05', 3313, 107, '2005-07-14 07:40:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6132, '2005-07-11 08:24:44', 3229, 319, '2005-07-13 06:41:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6133, '2005-07-11 08:25:22', 1992, 107, '2005-07-13 13:17:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6134, '2005-07-11 08:28:19', 3225, 305, '2005-07-18 09:20:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6135, '2005-07-11 08:32:23', 833, 325, '2005-07-17 08:43:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6136, '2005-07-11 08:34:09', 205, 346, '2005-07-14 06:11:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6137, '2005-07-11 08:34:20', 2029, 67, '2005-07-13 03:31:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6138, '2005-07-11 08:36:04', 1808, 438, '2005-07-13 10:30:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6139, '2005-07-11 08:39:33', 3065, 206, '2005-07-17 08:00:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6140, '2005-07-11 08:40:47', 2749, 363, '2005-07-14 07:26:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6141, '2005-07-11 08:52:16', 2279, 228, '2005-07-17 03:00:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6142, '2005-07-11 08:54:09', 1722, 136, '2005-07-18 05:23:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6143, '2005-07-11 09:02:37', 1030, 169, '2005-07-19 05:57:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6144, '2005-07-11 09:02:53', 1077, 554, '2005-07-15 10:58:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6145, '2005-07-11 09:07:01', 1359, 540, '2005-07-19 08:21:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6146, '2005-07-11 09:09:59', 3374, 11, '2005-07-20 11:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6147, '2005-07-11 09:13:08', 910, 35, '2005-07-17 03:48:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6148, '2005-07-11 09:14:22', 4318, 410, '2005-07-12 08:01:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6149, '2005-07-11 09:19:31', 4337, 26, '2005-07-17 14:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6150, '2005-07-11 09:23:56', 1110, 418, '2005-07-15 10:56:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6151, '2005-07-11 09:25:17', 352, 476, '2005-07-12 05:11:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6152, '2005-07-11 09:25:52', 560, 361, '2005-07-17 07:40:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6153, '2005-07-11 09:31:04', 105, 47, '2005-07-19 03:41:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6154, '2005-07-11 09:32:19', 2717, 368, '2005-07-16 15:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6155, '2005-07-11 09:45:31', 785, 229, '2005-07-18 08:09:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6156, '2005-07-11 09:45:48', 302, 297, '2005-07-15 04:51:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6157, '2005-07-11 09:48:16', 4481, 133, '2005-07-16 05:00:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6158, '2005-07-11 09:50:24', 3954, 92, '2005-07-13 04:49:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6159, '2005-07-11 09:55:34', 126, 225, '2005-07-13 10:01:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6160, '2005-07-11 10:08:13', 2716, 110, '2005-07-14 08:18:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6161, '2005-07-11 10:11:54', 3681, 524, '2005-07-15 12:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6162, '2005-07-11 10:12:30', 786, 79, '2005-07-19 06:02:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6163, '2005-07-11 10:13:46', 1330, 1, '2005-07-19 13:15:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6164, '2005-07-11 10:16:23', 2755, 47, '2005-07-14 11:21:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6165, '2005-07-11 10:17:29', 3540, 9, '2005-07-17 07:27:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6166, '2005-07-11 10:19:05', 967, 503, '2005-07-12 14:30:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6167, '2005-07-11 10:21:21', 3255, 200, '2005-07-14 15:38:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6168, '2005-07-11 10:21:38', 284, 77, '2005-07-14 09:55:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6169, '2005-07-11 10:25:56', 2781, 148, '2005-07-19 07:18:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6170, '2005-07-11 10:29:21', 278, 580, '2005-07-16 05:13:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6171, '2005-07-11 10:29:35', 448, 491, '2005-07-16 12:01:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6172, '2005-07-11 10:32:09', 3514, 219, '2005-07-14 16:23:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6173, '2005-07-11 10:33:11', 4252, 419, '2005-07-15 10:57:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6174, '2005-07-11 10:36:28', 3123, 7, '2005-07-18 16:19:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6175, '2005-07-11 10:44:37', 3037, 195, '2005-07-15 08:13:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6176, '2005-07-11 10:48:21', 2969, 279, '2005-07-12 15:54:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6177, '2005-07-11 10:53:49', 313, 589, '2005-07-17 14:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6178, '2005-07-11 10:59:09', 2777, 91, '2005-07-16 11:19:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6179, '2005-07-11 10:59:59', 3665, 42, '2005-07-17 06:02:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6180, '2005-07-11 11:06:50', 4401, 351, '2005-07-19 09:03:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6181, '2005-07-11 11:10:11', 4398, 200, '2005-07-15 09:33:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6182, '2005-07-11 11:11:38', 2562, 540, '2005-07-17 08:33:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6183, '2005-07-11 11:14:35', 856, 402, '2005-07-16 15:35:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6184, '2005-07-11 11:19:21', 1131, 146, '2005-07-19 07:35:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6185, '2005-07-11 11:25:09', 4331, 294, '2005-07-18 12:09:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6186, '2005-07-11 11:26:41', 2086, 128, '2005-07-17 12:02:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6187, '2005-07-11 11:28:51', 3344, 500, '2005-07-12 15:44:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6188, '2005-07-11 11:31:47', 189, 114, '2005-07-15 09:28:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6189, '2005-07-11 11:36:03', 3800, 552, '2005-07-20 15:33:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6190, '2005-07-11 11:36:18', 2564, 321, '2005-07-19 17:05:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6191, '2005-07-11 11:37:52', 3448, 480, '2005-07-17 12:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6192, '2005-07-11 11:44:41', 4573, 314, '2005-07-19 10:12:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6193, '2005-07-11 11:46:57', 465, 189, '2005-07-19 14:11:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6194, '2005-07-11 11:51:00', 1049, 83, '2005-07-15 12:34:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6195, '2005-07-11 12:00:32', 4193, 319, '2005-07-16 15:00:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6196, '2005-07-11 12:05:46', 995, 429, '2005-07-18 08:27:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6197, '2005-07-11 12:09:51', 4156, 596, '2005-07-12 06:15:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6198, '2005-07-11 12:12:17', 3345, 470, '2005-07-18 07:40:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6199, '2005-07-11 12:16:03', 4329, 80, '2005-07-18 15:33:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6200, '2005-07-11 12:16:42', 3258, 137, '2005-07-17 09:27:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6201, '2005-07-11 12:18:07', 4530, 559, '2005-07-12 12:11:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6202, '2005-07-11 12:24:25', 1424, 373, '2005-07-18 08:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6203, '2005-07-11 12:28:57', 1001, 408, '2005-07-15 14:10:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6204, '2005-07-11 12:29:22', 2572, 362, '2005-07-13 10:41:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6205, '2005-07-11 12:31:24', 3442, 303, '2005-07-13 11:31:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6206, '2005-07-11 12:32:14', 1368, 459, '2005-07-15 15:01:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6207, '2005-07-11 12:34:24', 3226, 143, '2005-07-14 10:15:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6208, '2005-07-11 12:34:56', 672, 31, '2005-07-19 15:17:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6209, '2005-07-11 12:36:05', 3091, 219, '2005-07-17 14:48:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6210, '2005-07-11 12:36:43', 931, 209, '2005-07-17 17:45:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6211, '2005-07-11 12:39:01', 2699, 6, '2005-07-20 15:59:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6212, '2005-07-11 12:40:48', 3962, 337, '2005-07-15 17:49:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6213, '2005-07-11 12:43:07', 485, 23, '2005-07-16 07:23:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6214, '2005-07-11 12:49:48', 1258, 49, '2005-07-18 07:41:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6215, '2005-07-11 12:52:36', 316, 390, '2005-07-12 08:33:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6216, '2005-07-11 12:57:05', 3571, 387, '2005-07-13 12:31:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6217, '2005-07-11 13:13:45', 1090, 177, '2005-07-19 16:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6218, '2005-07-11 13:14:58', 815, 410, '2005-07-16 08:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6219, '2005-07-11 13:18:37', 38, 303, '2005-07-13 13:18:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6220, '2005-07-11 13:22:06', 1717, 421, '2005-07-12 17:46:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6221, '2005-07-11 13:24:27', 1699, 393, '2005-07-15 17:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6222, '2005-07-11 13:25:49', 2066, 386, '2005-07-13 14:32:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6223, '2005-07-11 13:27:09', 3754, 192, '2005-07-12 14:02:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6224, '2005-07-11 13:42:18', 3274, 475, '2005-07-16 09:28:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6225, '2005-07-11 13:45:14', 2483, 204, '2005-07-14 10:23:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6226, '2005-07-11 13:48:11', 2758, 134, '2005-07-15 17:18:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6227, '2005-07-11 13:56:46', 1654, 210, '2005-07-18 12:53:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6228, '2005-07-11 13:58:36', 2281, 367, '2005-07-17 19:03:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6229, '2005-07-11 13:59:50', 3137, 399, '2005-07-20 09:26:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6230, '2005-07-11 14:02:19', 2260, 490, '2005-07-17 08:11:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6231, '2005-07-11 14:02:36', 2526, 122, '2005-07-13 19:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6232, '2005-07-11 14:08:27', 2492, 590, '2005-07-20 19:34:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6233, '2005-07-11 14:10:47', 3731, 378, '2005-07-15 15:13:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6234, '2005-07-11 14:16:10', 2911, 232, '2005-07-19 19:55:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6235, '2005-07-11 14:17:51', 2659, 379, '2005-07-17 11:14:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6236, '2005-07-11 14:18:17', 3813, 338, '2005-07-14 08:47:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6237, '2005-07-11 14:19:12', 2215, 166, '2005-07-15 15:05:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6238, '2005-07-11 14:20:18', 3749, 23, '2005-07-14 18:34:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6239, '2005-07-11 14:20:48', 4107, 132, '2005-07-17 13:41:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6240, '2005-07-11 14:32:41', 640, 524, '2005-07-20 18:38:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6241, '2005-07-11 14:40:48', 4449, 74, '2005-07-18 09:51:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6242, '2005-07-11 14:45:04', 670, 245, '2005-07-12 18:34:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6243, '2005-07-11 14:53:25', 3456, 26, '2005-07-15 09:26:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6244, '2005-07-11 14:53:38', 1558, 383, '2005-07-12 16:42:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6245, '2005-07-11 14:56:57', 512, 241, '2005-07-16 14:35:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6246, '2005-07-11 14:57:51', 2376, 172, '2005-07-19 19:10:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6247, '2005-07-11 15:00:05', 2504, 589, '2005-07-18 13:47:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6248, '2005-07-11 15:01:54', 2686, 6, '2005-07-19 16:58:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6249, '2005-07-11 15:02:02', 4334, 30, '2005-07-14 11:37:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6250, '2005-07-11 15:02:04', 4087, 458, '2005-07-17 10:54:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6251, '2005-07-11 15:06:20', 3956, 230, '2005-07-18 20:11:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6252, '2005-07-11 15:06:29', 1294, 295, '2005-07-16 14:07:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6253, '2005-07-11 15:07:19', 1425, 570, '2005-07-13 11:00:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6254, '2005-07-11 15:10:18', 2038, 20, '2005-07-17 14:20:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6255, '2005-07-11 15:11:33', 1459, 319, '2005-07-15 19:55:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6256, '2005-07-11 15:19:22', 480, 307, '2005-07-13 12:43:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6257, '2005-07-11 15:23:46', 3253, 492, '2005-07-14 17:26:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6258, '2005-07-11 15:24:32', 632, 417, '2005-07-18 18:29:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6259, '2005-07-11 15:25:52', 3007, 84, '2005-07-13 11:54:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6260, '2005-07-11 15:26:29', 4308, 454, '2005-07-13 17:37:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6261, '2005-07-11 15:28:34', 694, 386, '2005-07-14 17:54:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6262, '2005-07-11 15:33:24', 4136, 355, '2005-07-17 12:40:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6263, '2005-07-11 15:33:50', 2391, 336, '2005-07-17 12:49:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6264, '2005-07-11 15:42:35', 4246, 565, '2005-07-12 11:29:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6265, '2005-07-11 15:43:51', 3931, 477, '2005-07-12 12:51:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6266, '2005-07-11 15:45:39', 941, 397, '2005-07-15 18:29:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6267, '2005-07-11 15:53:00', 2152, 20, '2005-07-17 18:09:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6268, '2005-07-11 15:55:34', 1154, 125, '2005-07-19 17:25:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6269, '2005-07-11 15:58:43', 3915, 167, '2005-07-13 13:25:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6270, '2005-07-11 15:59:10', 2308, 292, '2005-07-18 10:29:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6271, '2005-07-11 16:01:35', 1246, 467, '2005-07-20 12:07:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6272, '2005-07-11 16:03:49', 3103, 240, '2005-07-15 19:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6273, '2005-07-11 16:08:41', 2403, 152, '2005-07-14 16:41:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6274, '2005-07-11 16:09:42', 2998, 472, '2005-07-19 20:46:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6275, '2005-07-11 16:12:11', 3599, 333, '2005-07-17 20:19:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6276, '2005-07-11 16:15:50', 1826, 284, '2005-07-19 20:50:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6277, '2005-07-11 16:19:01', 4023, 92, '2005-07-18 21:00:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6278, '2005-07-11 16:20:02', 2232, 558, '2005-07-19 19:29:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6279, '2005-07-11 16:26:07', 1254, 49, '2005-07-17 21:05:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6280, '2005-07-11 16:36:17', 4055, 33, '2005-07-13 14:04:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6281, '2005-07-11 16:38:16', 835, 236, '2005-07-13 10:57:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6282, '2005-07-11 16:46:22', 4453, 60, '2005-07-15 13:19:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6283, '2005-07-11 16:47:32', 3319, 402, '2005-07-17 21:46:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6284, '2005-07-11 16:51:39', 2938, 177, '2005-07-15 19:59:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6285, '2005-07-11 16:52:07', 2140, 444, '2005-07-13 21:33:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6286, '2005-07-11 16:55:35', 1070, 140, '2005-07-13 22:51:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6287, '2005-07-11 17:00:04', 35, 93, '2005-07-12 13:16:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6288, '2005-07-11 17:01:52', 3235, 357, '2005-07-19 15:11:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6289, '2005-07-11 17:06:39', 3185, 99, '2005-07-12 15:54:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6290, '2005-07-11 17:12:42', 2634, 66, '2005-07-19 21:53:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6291, '2005-07-11 17:16:40', 3126, 262, '2005-07-13 18:24:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6292, '2005-07-11 17:23:33', 4375, 505, '2005-07-12 16:27:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6293, '2005-07-11 17:24:57', 4260, 471, '2005-07-13 18:45:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6294, '2005-07-11 17:25:55', 1732, 463, '2005-07-15 17:48:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6295, '2005-07-11 17:30:58', 1393, 7, '2005-07-15 15:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6296, '2005-07-11 17:34:04', 4202, 484, '2005-07-17 21:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6297, '2005-07-11 17:37:22', 2738, 69, '2005-07-19 13:54:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6298, '2005-07-11 17:42:33', 3906, 256, '2005-07-13 18:14:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6299, '2005-07-11 17:45:08', 4125, 324, '2005-07-13 16:36:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6300, '2005-07-11 17:50:09', 1269, 283, '2005-07-18 13:11:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6301, '2005-07-11 17:54:09', 3528, 275, '2005-07-18 20:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6302, '2005-07-11 17:55:38', 3221, 391, '2005-07-17 22:11:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6303, '2005-07-11 17:55:43', 846, 236, '2005-07-13 12:50:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6304, '2005-07-11 18:02:16', 4183, 579, '2005-07-14 14:01:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6305, '2005-07-11 18:02:25', 1544, 337, '2005-07-20 13:29:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6306, '2005-07-11 18:04:26', 486, 208, '2005-07-20 14:22:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6307, '2005-07-11 18:04:29', 4029, 345, '2005-07-17 23:40:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6308, '2005-07-11 18:08:41', 3155, 472, '2005-07-19 15:48:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6309, '2005-07-11 18:13:24', 1054, 232, '2005-07-13 23:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6310, '2005-07-11 18:14:05', 3064, 537, '2005-07-16 15:39:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6311, '2005-07-11 18:18:52', 1789, 373, '2005-07-16 17:52:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6312, '2005-07-11 18:19:02', 2188, 417, '2005-07-18 00:00:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6313, '2005-07-11 18:29:52', 2976, 283, '2005-07-14 21:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6314, '2005-07-11 18:32:44', 4128, 55, '2005-07-17 23:58:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6315, '2005-07-11 18:42:49', 608, 374, '2005-07-12 23:19:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6316, '2005-07-11 18:44:52', 1910, 526, '2005-07-19 23:35:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6317, '2005-07-11 18:47:41', 4206, 225, '2005-07-14 18:18:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6318, '2005-07-11 18:48:22', 2048, 425, '2005-07-12 13:39:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6319, '2005-07-11 18:50:45', 3739, 233, '2005-07-12 15:26:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6320, '2005-07-11 18:50:55', 441, 511, '2005-07-13 22:46:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6321, '2005-07-11 18:51:02', 2655, 388, '2005-07-14 20:57:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6322, '2005-07-11 18:58:20', 4115, 403, '2005-07-14 16:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6323, '2005-07-11 19:02:19', 1352, 346, '2005-07-14 15:54:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6324, '2005-07-11 19:02:34', 655, 386, '2005-07-17 15:57:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6325, '2005-07-11 19:06:01', 4556, 542, '2005-07-18 18:25:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6326, '2005-07-11 19:06:55', 2137, 563, '2005-07-12 20:41:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6327, '2005-07-11 19:07:29', 909, 146, '2005-07-15 16:09:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6328, '2005-07-11 19:09:33', 999, 260, '2005-07-12 20:16:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6329, '2005-07-11 19:10:38', 2763, 352, '2005-07-19 14:46:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6330, '2005-07-11 19:15:42', 3917, 119, '2005-07-17 19:10:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6331, '2005-07-11 19:17:21', 1356, 295, '2005-07-18 18:35:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6332, '2005-07-11 19:19:06', 1733, 538, '2005-07-13 13:51:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6333, '2005-07-11 19:20:16', 2610, 285, '2005-07-17 15:33:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6334, '2005-07-11 19:20:44', 948, 168, '2005-07-19 18:49:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6335, '2005-07-11 19:25:15', 2757, 396, '2005-07-16 17:02:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6336, '2005-07-11 19:30:13', 1229, 471, '2005-07-20 21:27:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6337, '2005-07-11 19:30:47', 3967, 47, '2005-07-19 20:27:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6338, '2005-07-11 19:39:41', 1691, 54, '2005-07-18 01:13:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6339, '2005-07-11 19:45:32', 2401, 145, '2005-07-18 22:34:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6340, '2005-07-11 19:46:05', 2374, 264, '2005-07-20 16:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6341, '2005-07-11 19:48:02', 3580, 448, '2005-07-15 01:31:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6342, '2005-07-11 19:48:24', 1851, 403, '2005-07-13 14:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6343, '2005-07-11 19:51:35', 513, 147, '2005-07-12 19:13:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6344, '2005-07-11 20:04:43', 3074, 78, '2005-07-18 14:35:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6345, '2005-07-11 20:05:18', 4332, 532, '2005-07-20 17:28:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6346, '2005-07-11 20:08:34', 4066, 445, '2005-07-16 16:35:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6347, '2005-07-11 20:18:53', 3160, 178, '2005-07-16 20:45:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6348, '2005-07-11 20:21:18', 21, 66, '2005-07-19 15:56:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6349, '2005-07-11 20:25:05', 1581, 216, '2005-07-21 00:35:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6350, '2005-07-11 20:30:15', 2853, 225, '2005-07-16 21:30:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6351, '2005-07-11 20:31:44', 1852, 507, '2005-07-18 17:16:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6352, '2005-07-11 20:34:13', 1143, 235, '2005-07-13 19:49:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6353, '2005-07-11 20:48:56', 699, 130, '2005-07-21 00:11:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6354, '2005-07-11 20:54:27', 3203, 176, '2005-07-18 23:46:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6355, '2005-07-11 20:56:29', 2472, 482, '2005-07-20 01:50:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6356, '2005-07-11 20:57:48', 2645, 149, '2005-07-12 22:40:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6357, '2005-07-11 20:58:51', 658, 252, '2005-07-12 15:06:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6358, '2005-07-11 21:03:12', 4527, 567, '2005-07-15 20:06:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6359, '2005-07-11 21:06:17', 1656, 30, '2005-07-16 02:51:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6360, '2005-07-11 21:07:40', 3075, 338, '2005-07-16 15:11:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6361, '2005-07-11 21:09:14', 2903, 561, '2005-07-14 18:26:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6362, '2005-07-11 21:09:31', 4259, 358, '2005-07-13 23:08:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6363, '2005-07-11 21:13:19', 4167, 344, '2005-07-20 15:44:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6364, '2005-07-11 21:14:48', 4146, 160, '2005-07-20 23:20:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6365, '2005-07-11 21:17:40', 4550, 566, '2005-07-14 20:53:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6366, '2005-07-11 21:18:16', 3989, 366, '2005-07-17 00:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6367, '2005-07-11 21:18:29', 1465, 357, '2005-07-15 01:05:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6368, '2005-07-11 21:19:01', 3666, 588, '2005-07-13 17:56:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6369, '2005-07-11 21:23:36', 1086, 252, '2005-07-13 22:23:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6370, '2005-07-11 21:28:32', 1410, 99, '2005-07-20 02:51:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6371, '2005-07-11 21:31:51', 4297, 265, '2005-07-16 23:10:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6372, '2005-07-11 21:35:06', 741, 64, '2005-07-15 02:30:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6373, '2005-07-11 21:35:20', 1042, 115, '2005-07-13 23:22:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6374, '2005-07-11 21:36:10', 266, 244, '2005-07-17 15:50:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6375, '2005-07-11 21:39:46', 1936, 8, '2005-07-18 02:12:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6376, '2005-07-11 21:40:23', 1834, 263, '2005-07-13 23:16:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6377, '2005-07-11 21:41:16', 4017, 118, '2005-07-15 20:05:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6378, '2005-07-11 21:45:23', 3170, 145, '2005-07-14 16:56:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6379, '2005-07-11 21:51:25', 522, 287, '2005-07-17 03:38:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6380, '2005-07-11 21:55:40', 3378, 172, '2005-07-17 20:42:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6381, '2005-07-11 21:58:48', 2584, 340, '2005-07-16 16:18:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6382, '2005-07-11 21:58:53', 3223, 336, '2005-07-17 21:18:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6383, '2005-07-11 22:06:53', 4275, 486, '2005-07-17 16:09:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6384, '2005-07-11 22:07:26', 491, 313, '2005-07-16 22:39:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6385, '2005-07-11 22:07:32', 1830, 69, '2005-07-20 16:57:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6386, '2005-07-11 22:14:57', 633, 593, '2005-07-15 16:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6387, '2005-07-11 22:15:56', 1726, 384, '2005-07-14 20:20:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6388, '2005-07-11 22:17:16', 3506, 525, '2005-07-19 23:50:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6389, '2005-07-11 22:18:20', 2268, 274, '2005-07-16 16:57:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6390, '2005-07-11 22:19:23', 3057, 77, '2005-07-15 20:10:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6391, '2005-07-11 22:23:09', 1745, 264, '2005-07-15 23:02:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6392, '2005-07-11 22:25:19', 4406, 468, '2005-07-16 04:24:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6393, '2005-07-11 22:28:12', 3802, 164, '2005-07-14 18:03:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6394, '2005-07-11 22:29:15', 2574, 52, '2005-07-20 02:19:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6395, '2005-07-11 22:29:29', 3058, 264, '2005-07-18 00:50:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6396, '2005-07-11 22:31:08', 2394, 507, '2005-07-19 17:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6397, '2005-07-11 22:34:02', 2423, 287, '2005-07-13 23:01:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6398, '2005-07-11 22:34:49', 1409, 296, '2005-07-17 17:58:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6399, '2005-07-11 22:39:05', 2031, 288, '2005-07-16 01:12:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6400, '2005-07-11 22:43:44', 3289, 536, '2005-07-19 03:58:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6401, '2005-07-11 22:44:34', 1427, 35, '2005-07-12 22:18:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6402, '2005-07-11 22:46:10', 2576, 66, '2005-07-16 04:02:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6403, '2005-07-11 22:46:25', 1019, 238, '2005-07-13 22:15:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6404, '2005-07-11 22:49:50', 1183, 526, '2005-07-14 18:29:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6405, '2005-07-11 22:53:12', 3983, 357, '2005-07-18 23:02:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6406, '2005-07-11 22:55:27', 4439, 392, '2005-07-20 04:50:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6407, '2005-07-11 23:02:19', 775, 140, '2005-07-21 00:30:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6408, '2005-07-11 23:03:02', 2008, 350, '2005-07-19 23:09:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6409, '2005-07-11 23:05:49', 3859, 537, '2005-07-13 00:13:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6410, '2005-07-11 23:08:06', 1127, 560, '2005-07-19 19:57:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6411, '2005-07-11 23:10:50', 4347, 124, '2005-07-19 17:15:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6412, '2005-07-11 23:19:21', 3797, 220, '2005-07-16 19:48:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6413, '2005-07-11 23:26:11', 4446, 251, '2005-07-17 21:58:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6414, '2005-07-11 23:26:13', 814, 502, '2005-07-18 17:29:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6415, '2005-07-11 23:27:52', 4175, 84, '2005-07-19 22:29:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6416, '2005-07-11 23:29:14', 1063, 158, '2005-07-13 20:20:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6417, '2005-07-11 23:35:11', 3042, 80, '2005-07-18 20:00:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6418, '2005-07-11 23:36:27', 3101, 185, '2005-07-16 18:42:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6419, '2005-07-11 23:36:38', 3683, 311, '2005-07-13 03:23:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6420, '2005-07-11 23:38:49', 4443, 206, '2005-07-17 17:46:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6421, '2005-07-11 23:45:25', 4477, 479, '2005-07-15 20:45:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6422, '2005-07-11 23:46:19', 762, 257, '2005-07-20 22:12:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6423, '2005-07-11 23:47:31', 892, 427, '2005-07-19 18:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6424, '2005-07-11 23:49:37', 3040, 359, '2005-07-21 00:53:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6425, '2005-07-11 23:54:52', 2487, 339, '2005-07-13 18:37:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6426, '2005-07-11 23:56:38', 498, 495, '2005-07-21 05:22:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6427, '2005-07-11 23:57:34', 1043, 122, '2005-07-14 18:05:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6428, '2005-07-12 00:01:51', 4365, 187, '2005-07-20 22:02:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6429, '2005-07-12 00:02:50', 141, 342, '2005-07-21 02:08:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6430, '2005-07-12 00:03:34', 178, 390, '2005-07-15 03:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6431, '2005-07-12 00:03:57', 3471, 458, '2005-07-20 03:47:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6432, '2005-07-12 00:09:41', 970, 293, '2005-07-20 20:06:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6433, '2005-07-12 00:12:02', 1357, 101, '2005-07-21 04:25:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6434, '2005-07-12 00:14:25', 1478, 102, '2005-07-20 19:54:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6435, '2005-07-12 00:16:19', 1957, 561, '2005-07-17 19:15:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6436, '2005-07-12 00:18:42', 3758, 122, '2005-07-13 03:57:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6437, '2005-07-12 00:20:29', 4539, 355, '2005-07-12 22:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6438, '2005-07-12 00:23:01', 412, 211, '2005-07-17 22:45:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6439, '2005-07-12 00:23:48', 3463, 406, '2005-07-13 00:54:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6440, '2005-07-12 00:25:04', 2148, 269, '2005-07-13 04:52:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6441, '2005-07-12 00:27:08', 2489, 505, '2005-07-14 03:12:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6442, '2005-07-12 00:29:45', 1273, 360, '2005-07-15 19:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6443, '2005-07-12 00:35:51', 895, 155, '2005-07-16 04:50:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6444, '2005-07-12 00:36:02', 2214, 168, '2005-07-18 05:53:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6445, '2005-07-12 00:37:02', 582, 385, '2005-07-17 22:05:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6446, '2005-07-12 00:44:08', 3634, 473, '2005-07-14 20:39:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6447, '2005-07-12 00:45:17', 3945, 482, '2005-07-18 05:56:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6448, '2005-07-12 00:45:59', 2663, 160, '2005-07-17 00:34:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6449, '2005-07-12 00:48:58', 4395, 117, '2005-07-21 02:57:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6450, '2005-07-12 00:49:05', 2413, 32, '2005-07-13 01:54:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6451, '2005-07-12 00:52:19', 1008, 381, '2005-07-16 21:30:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6452, '2005-07-12 00:57:31', 109, 388, '2005-07-14 20:41:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6453, '2005-07-12 00:59:53', 2506, 169, '2005-07-14 19:17:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6454, '2005-07-12 01:00:12', 4028, 446, '2005-07-16 22:12:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6455, '2005-07-12 01:01:58', 4267, 277, '2005-07-16 02:42:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6456, '2005-07-12 01:05:11', 259, 387, '2005-07-20 23:26:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6457, '2005-07-12 01:06:35', 2970, 64, '2005-07-14 03:27:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6458, '2005-07-12 01:08:52', 2809, 138, '2005-07-16 20:22:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6459, '2005-07-12 01:12:03', 4025, 557, '2005-07-15 23:48:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6460, '2005-07-12 01:13:44', 2402, 371, '2005-07-17 04:51:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6461, '2005-07-12 01:14:03', 1799, 135, '2005-07-19 21:12:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6462, '2005-07-12 01:15:24', 4534, 414, '2005-07-19 05:11:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6463, '2005-07-12 01:16:11', 2930, 391, '2005-07-13 01:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6464, '2005-07-12 01:16:40', 3100, 303, '2005-07-20 00:53:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6465, '2005-07-12 01:17:11', 2047, 207, '2005-07-20 00:29:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6466, '2005-07-12 01:21:03', 3369, 235, '2005-07-14 04:05:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6467, '2005-07-12 01:22:03', 2067, 457, '2005-07-20 04:37:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6468, '2005-07-12 01:27:09', 4560, 541, '2005-07-20 00:37:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6469, '2005-07-12 01:29:27', 3830, 147, '2005-07-16 20:22:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6470, '2005-07-12 01:29:41', 1680, 240, '2005-07-15 21:33:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6471, '2005-07-12 01:31:06', 2253, 397, '2005-07-13 05:26:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6472, '2005-07-12 01:33:25', 3780, 183, '2005-07-15 20:26:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6473, '2005-07-12 01:35:40', 527, 594, '2005-07-20 20:11:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6474, '2005-07-12 01:36:46', 310, 43, '2005-07-16 07:24:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6475, '2005-07-12 01:36:57', 2035, 74, '2005-07-17 21:22:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6476, '2005-07-12 01:37:48', 978, 28, '2005-07-12 20:21:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6477, '2005-07-12 01:38:42', 804, 181, '2005-07-17 05:19:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6478, '2005-07-12 01:41:44', 2589, 483, '2005-07-15 20:48:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6479, '2005-07-12 01:49:00', 2587, 558, '2005-07-21 04:26:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6480, '2005-07-12 01:49:29', 3076, 309, '2005-07-17 01:00:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6481, '2005-07-12 01:50:15', 2392, 128, '2005-07-20 03:03:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6482, '2005-07-12 01:50:21', 4135, 57, '2005-07-14 06:49:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6483, '2005-07-12 01:59:20', 1053, 263, '2005-07-12 22:22:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6484, '2005-07-12 02:04:10', 4093, 556, '2005-07-17 23:18:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6485, '2005-07-12 02:07:59', 1224, 319, '2005-07-19 22:56:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6486, '2005-07-12 02:09:36', 4008, 75, '2005-07-14 03:04:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6487, '2005-07-12 02:17:00', 4000, 277, '2005-07-19 00:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6488, '2005-07-12 02:20:09', 3974, 169, '2005-07-20 00:53:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6489, '2005-07-12 02:22:46', 1821, 268, '2005-07-17 06:16:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6490, '2005-07-12 02:28:03', 2249, 548, '2005-07-19 03:06:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6491, '2005-07-12 02:28:31', 2803, 415, '2005-07-21 00:38:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6492, '2005-07-12 02:28:40', 466, 590, '2005-07-17 05:58:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6493, '2005-07-12 02:40:41', 16, 184, '2005-07-16 04:56:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6494, '2005-07-12 02:42:51', 1124, 57, '2005-07-20 06:57:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6495, '2005-07-12 02:57:02', 2440, 19, '2005-07-14 08:35:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6496, '2005-07-12 02:57:39', 3550, 139, '2005-07-20 01:43:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6497, '2005-07-12 03:04:29', 933, 222, '2005-07-17 21:36:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6498, '2005-07-12 03:05:38', 243, 48, '2005-07-19 07:12:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6499, '2005-07-12 03:11:18', 3165, 474, '2005-07-21 07:50:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6500, '2005-07-12 03:11:23', 4521, 577, '2005-07-13 00:51:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6501, '2005-07-12 03:11:55', 2851, 219, '2005-07-16 02:08:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6502, '2005-07-12 03:15:45', 1641, 40, '2005-07-17 08:47:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6503, '2005-07-12 03:18:07', 1319, 120, '2005-07-15 00:05:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6504, '2005-07-12 03:19:14', 3786, 535, '2005-07-17 01:13:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6505, '2005-07-12 03:27:37', 3986, 415, '2005-07-17 22:42:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6506, '2005-07-12 03:28:22', 386, 423, '2005-07-17 22:43:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6507, '2005-07-12 03:33:12', 2463, 118, '2005-07-20 03:56:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6508, '2005-07-12 03:34:50', 1474, 597, '2005-07-17 02:57:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6509, '2005-07-12 03:35:01', 2468, 427, '2005-07-13 06:50:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6510, '2005-07-12 03:35:39', 905, 446, '2005-07-21 01:41:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6511, '2005-07-12 03:39:29', 1350, 322, '2005-07-17 01:01:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6512, '2005-07-12 03:42:49', 1703, 68, '2005-07-13 05:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6513, '2005-07-12 03:44:43', 2671, 393, '2005-07-13 05:54:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6514, '2005-07-12 03:47:44', 3562, 73, '2005-07-20 00:11:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6515, '2005-07-12 03:50:32', 706, 261, '2005-07-15 03:54:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6516, '2005-07-12 03:51:54', 863, 291, '2005-07-14 03:41:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6517, '2005-07-12 03:52:39', 185, 387, '2005-07-20 08:00:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6518, '2005-07-12 03:59:42', 2698, 288, '2005-07-19 22:21:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6519, '2005-07-12 04:00:36', 4149, 598, '2005-07-19 01:15:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6520, '2005-07-12 04:05:16', 1535, 270, '2005-07-15 08:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6521, '2005-07-12 04:06:11', 3293, 49, '2005-07-21 05:50:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6522, '2005-07-12 04:11:58', 3916, 142, '2005-07-15 08:32:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6523, '2005-07-12 04:14:19', 1848, 574, '2005-07-17 00:38:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6524, '2005-07-12 04:14:35', 1467, 376, '2005-07-17 03:59:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6525, '2005-07-12 04:17:15', 1408, 103, '2005-07-18 23:11:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6526, '2005-07-12 04:21:20', 1718, 225, '2005-07-18 23:45:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6527, '2005-07-12 04:23:06', 538, 65, '2005-07-17 00:20:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6528, '2005-07-12 04:29:44', 3824, 598, '2005-07-18 02:39:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6529, '2005-07-12 04:31:04', 1058, 503, '2005-07-17 07:09:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6530, '2005-07-12 04:33:19', 3410, 75, '2005-07-15 08:26:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6531, '2005-07-12 04:35:24', 4231, 510, '2005-07-16 05:37:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6532, '2005-07-12 04:38:32', 2361, 225, '2005-07-13 03:54:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6533, '2005-07-12 04:39:38', 3853, 366, '2005-07-18 05:29:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6534, '2005-07-12 04:39:43', 2359, 577, '2005-07-16 06:33:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6535, '2005-07-12 04:43:43', 1921, 446, '2005-07-17 04:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6536, '2005-07-12 04:44:25', 3521, 289, '2005-07-18 01:52:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6537, '2005-07-12 04:46:30', 3381, 207, '2005-07-19 03:04:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6538, '2005-07-12 04:50:26', 1987, 529, '2005-07-20 23:44:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6539, '2005-07-12 04:50:49', 2275, 259, '2005-07-19 03:23:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6540, '2005-07-12 04:51:13', 937, 156, '2005-07-21 03:38:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6541, '2005-07-12 04:53:41', 1795, 529, '2005-07-17 23:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6542, '2005-07-12 04:53:49', 2421, 359, '2005-07-13 01:48:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6543, '2005-07-12 04:54:32', 2568, 264, '2005-07-15 09:50:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6544, '2005-07-12 04:56:15', 1218, 97, '2005-07-17 08:28:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6545, '2005-07-12 04:56:30', 4447, 376, '2005-07-20 05:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6546, '2005-07-12 04:57:17', 393, 105, '2005-07-17 09:29:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6547, '2005-07-12 04:57:46', 2656, 262, '2005-07-18 08:36:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6548, '2005-07-12 05:00:46', 2480, 488, '2005-07-19 04:40:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6549, '2005-07-12 05:02:01', 2688, 493, '2005-07-20 06:19:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6550, '2005-07-12 05:03:14', 2184, 112, '2005-07-19 04:06:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6551, '2005-07-12 05:03:43', 282, 567, '2005-07-13 10:44:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6552, '2005-07-12 05:05:06', 766, 493, '2005-07-13 05:12:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6553, '2005-07-12 05:06:39', 1137, 265, '2005-07-21 10:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6554, '2005-07-12 05:07:26', 2741, 178, '2005-07-21 06:06:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6555, '2005-07-12 05:08:16', 1282, 188, '2005-07-14 04:09:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6556, '2005-07-12 05:10:16', 3901, 570, '2005-07-13 04:16:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6557, '2005-07-12 05:12:03', 1442, 116, '2005-07-20 06:49:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6558, '2005-07-12 05:16:07', 2195, 164, '2005-07-13 05:32:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6559, '2005-07-12 05:20:35', 458, 353, '2005-07-16 08:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6560, '2005-07-12 05:22:06', 433, 54, '2005-07-15 00:04:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6561, '2005-07-12 05:24:02', 4568, 528, '2005-07-16 03:43:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6562, '2005-07-12 05:26:26', 3969, 27, '2005-07-16 05:10:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6563, '2005-07-12 05:34:09', 87, 438, '2005-07-21 07:37:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6564, '2005-07-12 05:34:44', 2320, 210, '2005-07-18 06:12:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6565, '2005-07-12 05:39:50', 2751, 35, '2005-07-13 01:07:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6566, '2005-07-12 05:42:53', 1822, 178, '2005-07-19 01:23:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6567, '2005-07-12 05:43:09', 1336, 198, '2005-07-19 08:18:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6568, '2005-07-12 05:45:47', 4203, 13, '2005-07-15 05:18:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6569, '2005-07-12 05:47:40', 759, 183, '2005-07-20 06:23:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6570, '2005-07-12 05:50:31', 2082, 217, '2005-07-13 09:58:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6571, '2005-07-12 05:51:47', 3700, 140, '2005-07-15 11:31:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6572, '2005-07-12 05:56:38', 3121, 35, '2005-07-16 10:41:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6573, '2005-07-12 06:03:40', 3308, 239, '2005-07-13 11:49:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6574, '2005-07-12 06:04:22', 621, 115, '2005-07-18 03:19:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6575, '2005-07-12 06:12:53', 1414, 598, '2005-07-18 07:55:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6576, '2005-07-12 06:13:41', 339, 362, '2005-07-16 03:22:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6577, '2005-07-12 06:15:05', 4191, 439, '2005-07-15 06:23:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6578, '2005-07-12 06:15:41', 2304, 229, '2005-07-15 10:43:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6580, '2005-07-12 06:26:10', 1543, 31, '2005-07-13 06:44:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6581, '2005-07-12 06:26:49', 2121, 468, '2005-07-14 05:07:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6582, '2005-07-12 06:28:12', 2077, 420, '2005-07-19 06:19:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6583, '2005-07-12 06:42:31', 2343, 462, '2005-07-15 07:51:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6584, '2005-07-12 06:43:36', 1800, 472, '2005-07-16 12:18:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6585, '2005-07-12 06:50:52', 2064, 136, '2005-07-21 06:51:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6586, '2005-07-12 06:56:24', 3860, 93, '2005-07-17 09:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6587, '2005-07-12 06:56:26', 238, 419, '2005-07-20 05:53:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6588, '2005-07-12 06:57:40', 1257, 420, '2005-07-16 04:27:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6589, '2005-07-12 07:06:29', 1595, 424, '2005-07-14 12:06:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6590, '2005-07-12 07:08:21', 1067, 442, '2005-07-18 06:16:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6591, '2005-07-12 07:13:46', 2846, 509, '2005-07-16 05:15:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6592, '2005-07-12 07:19:35', 3481, 273, '2005-07-19 07:15:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6593, '2005-07-12 07:21:17', 3441, 356, '2005-07-14 02:35:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6594, '2005-07-12 07:25:43', 4458, 517, '2005-07-13 07:59:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6595, '2005-07-12 07:25:48', 1286, 458, '2005-07-20 02:24:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6596, '2005-07-12 07:32:59', 890, 409, '2005-07-13 02:47:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6597, '2005-07-12 07:37:02', 979, 479, '2005-07-16 10:24:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6598, '2005-07-12 07:38:25', 2049, 532, '2005-07-19 07:58:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6599, '2005-07-12 07:41:14', 4348, 519, '2005-07-21 02:45:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6600, '2005-07-12 07:41:48', 3315, 389, '2005-07-18 12:36:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6601, '2005-07-12 07:44:49', 1640, 464, '2005-07-20 03:22:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6602, '2005-07-12 07:50:24', 2382, 214, '2005-07-20 03:25:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6603, '2005-07-12 07:52:55', 3583, 425, '2005-07-16 13:19:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6604, '2005-07-12 07:57:45', 822, 365, '2005-07-16 05:41:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6605, '2005-07-12 08:01:07', 2892, 547, '2005-07-19 03:12:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6606, '2005-07-12 08:03:40', 2805, 178, '2005-07-13 09:05:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6607, '2005-07-12 08:08:50', 337, 562, '2005-07-20 09:17:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6608, '2005-07-12 08:16:50', 3577, 244, '2005-07-18 07:08:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6609, '2005-07-12 08:19:41', 3332, 133, '2005-07-19 08:19:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6610, '2005-07-12 08:20:02', 645, 353, '2005-07-21 09:16:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6611, '2005-07-12 08:20:23', 1604, 286, '2005-07-16 07:19:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6612, '2005-07-12 08:28:33', 235, 152, '2005-07-17 06:25:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6613, '2005-07-12 08:30:07', 3421, 460, '2005-07-14 10:25:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6614, '2005-07-12 08:33:49', 3004, 144, '2005-07-18 07:28:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6615, '2005-07-12 08:36:22', 23, 438, '2005-07-20 09:03:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6616, '2005-07-12 08:37:30', 1833, 179, '2005-07-20 10:33:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6617, '2005-07-12 08:39:56', 2292, 248, '2005-07-14 09:32:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6618, '2005-07-12 08:41:42', 4266, 327, '2005-07-14 05:34:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6619, '2005-07-12 08:50:48', 4062, 305, '2005-07-14 11:54:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6620, '2005-07-12 08:51:03', 2362, 337, '2005-07-16 03:59:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6621, '2005-07-12 08:57:30', 2229, 561, '2005-07-14 09:47:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6622, '2005-07-12 09:04:11', 4350, 325, '2005-07-13 04:27:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6623, '2005-07-12 09:05:34', 4412, 302, '2005-07-19 13:54:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6624, '2005-07-12 09:05:50', 3946, 335, '2005-07-18 13:59:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6625, '2005-07-12 09:06:40', 735, 443, '2005-07-21 04:57:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6626, '2005-07-12 09:16:24', 2418, 269, '2005-07-17 04:06:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6627, '2005-07-12 09:16:46', 626, 565, '2005-07-17 10:58:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6628, '2005-07-12 09:18:08', 2894, 211, '2005-07-21 04:27:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6629, '2005-07-12 09:18:35', 2855, 582, '2005-07-20 11:34:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6630, '2005-07-12 09:30:05', 1843, 462, '2005-07-14 08:29:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6631, '2005-07-12 09:31:43', 2340, 204, '2005-07-15 05:00:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6632, '2005-07-12 09:33:10', 2929, 442, '2005-07-15 11:36:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6633, '2005-07-12 09:35:42', 2908, 150, '2005-07-13 12:56:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6634, '2005-07-12 09:37:18', 2943, 50, '2005-07-13 09:28:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6635, '2005-07-12 09:47:58', 515, 273, '2005-07-16 15:43:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6636, '2005-07-12 09:49:46', 3270, 441, '2005-07-14 12:15:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6637, '2005-07-12 09:57:39', 2852, 164, '2005-07-19 08:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6638, '2005-07-12 09:58:02', 207, 87, '2005-07-13 09:40:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6639, '2005-07-12 10:00:44', 3385, 587, '2005-07-19 04:56:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6640, '2005-07-12 10:27:19', 2794, 148, '2005-07-21 06:28:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6641, '2005-07-12 10:33:14', 2165, 334, '2005-07-20 08:24:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6642, '2005-07-12 10:37:52', 201, 441, '2005-07-13 15:13:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6643, '2005-07-12 10:39:22', 174, 88, '2005-07-18 13:52:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6644, '2005-07-12 10:39:39', 2667, 285, '2005-07-14 11:50:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6645, '2005-07-12 10:39:55', 2858, 73, '2005-07-17 07:41:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6646, '2005-07-12 10:41:34', 4061, 508, '2005-07-15 05:31:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6647, '2005-07-12 10:43:53', 1841, 8, '2005-07-14 05:37:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6648, '2005-07-12 10:46:30', 718, 356, '2005-07-14 16:15:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6649, '2005-07-12 10:51:09', 70, 57, '2005-07-14 16:05:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6650, '2005-07-12 10:57:10', 1589, 526, '2005-07-14 07:24:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6651, '2005-07-12 10:57:28', 98, 447, '2005-07-15 06:06:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6652, '2005-07-12 10:59:38', 2200, 518, '2005-07-13 13:52:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6653, '2005-07-12 11:06:17', 614, 25, '2005-07-19 16:52:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6654, '2005-07-12 11:06:28', 2870, 458, '2005-07-20 10:27:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6655, '2005-07-12 11:08:32', 3937, 100, '2005-07-15 15:17:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6656, '2005-07-12 11:09:47', 2282, 330, '2005-07-14 05:50:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6657, '2005-07-12 11:11:36', 3697, 553, '2005-07-16 15:56:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6658, '2005-07-12 11:13:21', 172, 27, '2005-07-17 09:10:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6659, '2005-07-12 11:18:05', 2285, 134, '2005-07-16 16:45:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6660, '2005-07-12 11:20:12', 446, 598, '2005-07-20 12:58:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6661, '2005-07-12 11:20:39', 2367, 315, '2005-07-16 08:17:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6662, '2005-07-12 11:21:06', 1464, 99, '2005-07-13 13:00:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6663, '2005-07-12 11:27:35', 4364, 5, '2005-07-21 16:35:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6664, '2005-07-12 11:28:22', 4578, 351, '2005-07-15 09:30:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6665, '2005-07-12 11:29:14', 2912, 587, '2005-07-19 11:26:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6666, '2005-07-12 11:32:15', 3194, 314, '2005-07-14 16:09:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6667, '2005-07-12 11:36:22', 215, 50, '2005-07-19 12:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6668, '2005-07-12 11:37:45', 1498, 199, '2005-07-14 13:28:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6669, '2005-07-12 11:39:55', 1420, 355, '2005-07-20 05:56:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6670, '2005-07-12 11:44:33', 3106, 249, '2005-07-19 07:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6671, '2005-07-12 11:48:48', 955, 526, '2005-07-19 16:55:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6672, '2005-07-12 11:49:16', 375, 439, '2005-07-13 07:03:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6673, '2005-07-12 11:50:56', 1997, 322, '2005-07-13 14:27:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6674, '2005-07-12 11:51:54', 2385, 399, '2005-07-13 16:57:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6675, '2005-07-12 11:53:06', 2124, 523, '2005-07-13 06:09:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6676, '2005-07-12 11:53:40', 2294, 571, '2005-07-19 09:15:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6677, '2005-07-12 11:58:14', 2389, 516, '2005-07-21 06:05:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6678, '2005-07-12 11:58:36', 3473, 330, '2005-07-15 17:50:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6679, '2005-07-12 12:01:07', 3664, 586, '2005-07-14 11:36:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6680, '2005-07-12 12:01:56', 2887, 43, '2005-07-16 17:32:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6681, '2005-07-12 12:04:12', 854, 368, '2005-07-19 11:01:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6682, '2005-07-12 12:12:43', 1984, 339, '2005-07-21 10:49:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6683, '2005-07-12 12:14:05', 3433, 244, '2005-07-17 14:02:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6684, '2005-07-12 12:14:42', 2817, 583, '2005-07-21 11:07:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6685, '2005-07-12 12:16:28', 1434, 5, '2005-07-19 17:03:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6686, '2005-07-12 12:18:38', 3804, 6, '2005-07-13 17:56:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6687, '2005-07-12 12:19:23', 2736, 128, '2005-07-19 17:12:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6688, '2005-07-12 12:22:12', 2377, 246, '2005-07-14 14:05:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6689, '2005-07-12 12:22:13', 1568, 525, '2005-07-16 07:44:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6690, '2005-07-12 12:23:02', 4254, 447, '2005-07-16 15:39:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6691, '2005-07-12 12:26:38', 403, 192, '2005-07-18 13:26:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6692, '2005-07-12 12:35:39', 2837, 372, '2005-07-20 11:20:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6693, '2005-07-12 12:37:00', 2014, 573, '2005-07-20 09:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6694, '2005-07-12 12:39:23', 586, 204, '2005-07-19 14:47:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6695, '2005-07-12 12:39:39', 3088, 550, '2005-07-17 13:36:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6696, '2005-07-12 12:44:04', 299, 273, '2005-07-16 14:17:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6697, '2005-07-12 12:44:57', 210, 103, '2005-07-19 13:02:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6698, '2005-07-12 12:45:00', 4419, 64, '2005-07-16 11:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6699, '2005-07-12 12:45:21', 3411, 565, '2005-07-15 12:59:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6700, '2005-07-12 12:47:22', 3063, 184, '2005-07-21 16:04:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6701, '2005-07-12 12:47:59', 3428, 454, '2005-07-13 10:28:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6702, '2005-07-12 12:48:03', 233, 164, '2005-07-13 11:55:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6703, '2005-07-12 12:50:19', 46, 470, '2005-07-16 13:41:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6704, '2005-07-12 12:50:24', 1590, 595, '2005-07-20 16:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6705, '2005-07-12 12:53:11', 4268, 363, '2005-07-13 07:17:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6706, '2005-07-12 12:59:16', 4552, 267, '2005-07-19 10:37:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6707, '2005-07-12 13:07:55', 406, 80, '2005-07-16 16:26:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6708, '2005-07-12 13:10:55', 372, 82, '2005-07-21 07:36:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6709, '2005-07-12 13:20:41', 4049, 322, '2005-07-16 10:37:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6710, '2005-07-12 13:23:09', 806, 462, '2005-07-20 10:10:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6711, '2005-07-12 13:23:40', 2247, 257, '2005-07-20 11:45:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6712, '2005-07-12 13:24:47', 4581, 226, '2005-07-20 09:35:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6713, '2005-07-12 13:27:36', 4218, 557, '2005-07-16 11:14:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6714, '2005-07-12 13:29:06', 1947, 370, '2005-07-18 16:02:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6715, '2005-07-12 13:32:28', 643, 386, '2005-07-15 17:01:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6716, '2005-07-12 13:34:58', 2783, 367, '2005-07-19 15:09:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6717, '2005-07-12 13:35:02', 523, 273, '2005-07-20 15:03:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6718, '2005-07-12 13:38:06', 2283, 541, '2005-07-18 09:05:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6719, '2005-07-12 13:40:37', 739, 330, '2005-07-15 15:23:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6720, '2005-07-12 13:41:16', 2704, 151, '2005-07-13 14:41:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6721, '2005-07-12 13:42:58', 2798, 462, '2005-07-19 16:39:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6722, '2005-07-12 13:44:03', 3124, 211, '2005-07-19 12:43:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6723, '2005-07-12 13:44:57', 2678, 499, '2005-07-14 15:57:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6724, '2005-07-12 13:45:15', 2486, 262, '2005-07-19 19:18:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6725, '2005-07-12 13:47:17', 831, 213, '2005-07-17 13:31:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6726, '2005-07-12 13:48:14', 4494, 97, '2005-07-16 11:11:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6727, '2005-07-12 13:54:25', 3793, 407, '2005-07-14 17:29:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6728, '2005-07-12 13:56:48', 2113, 414, '2005-07-15 18:49:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6729, '2005-07-12 13:58:23', 2495, 455, '2005-07-19 09:34:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6730, '2005-07-12 13:58:25', 1552, 532, '2005-07-20 13:01:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6731, '2005-07-12 13:58:27', 844, 593, '2005-07-15 10:04:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6732, '2005-07-12 13:58:51', 1913, 299, '2005-07-17 17:42:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6733, '2005-07-12 14:04:01', 1476, 585, '2005-07-21 18:57:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6734, '2005-07-12 14:04:24', 2248, 446, '2005-07-21 19:47:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6735, '2005-07-12 14:08:20', 276, 428, '2005-07-18 09:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6736, '2005-07-12 14:16:50', 530, 342, '2005-07-15 16:26:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6737, '2005-07-12 14:16:52', 315, 304, '2005-07-18 19:48:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6738, '2005-07-12 14:17:55', 1197, 366, '2005-07-21 10:11:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6739, '2005-07-12 14:22:08', 1221, 71, '2005-07-18 16:57:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6740, '2005-07-12 14:22:08', 2431, 139, '2005-07-14 14:35:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6741, '2005-07-12 14:24:16', 237, 359, '2005-07-15 08:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6742, '2005-07-12 14:25:31', 4242, 558, '2005-07-17 08:50:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6743, '2005-07-12 14:29:25', 158, 261, '2005-07-13 13:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6744, '2005-07-12 14:30:28', 2565, 64, '2005-07-14 16:20:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6745, '2005-07-12 14:30:51', 1331, 524, '2005-07-13 13:42:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6746, '2005-07-12 14:33:01', 3127, 537, '2005-07-17 19:52:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6747, '2005-07-12 14:33:21', 3651, 126, '2005-07-13 09:59:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6748, '2005-07-12 14:39:27', 3655, 540, '2005-07-18 13:40:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6749, '2005-07-12 14:43:05', 2895, 334, '2005-07-21 15:13:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6750, '2005-07-12 14:49:39', 3838, 459, '2005-07-18 18:43:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6751, '2005-07-12 14:50:34', 1749, 312, '2005-07-15 19:39:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6752, '2005-07-12 14:53:15', 3392, 453, '2005-07-20 09:23:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6753, '2005-07-12 14:55:42', 2591, 147, '2005-07-18 19:16:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6754, '2005-07-12 14:59:24', 1460, 114, '2005-07-14 11:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6755, '2005-07-12 15:07:49', 2542, 126, '2005-07-21 18:43:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6756, '2005-07-12 15:08:28', 1174, 531, '2005-07-13 14:25:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6757, '2005-07-12 15:09:48', 547, 558, '2005-07-17 15:04:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6758, '2005-07-12 15:13:49', 4098, 546, '2005-07-20 09:31:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6759, '2005-07-12 15:14:48', 3624, 49, '2005-07-15 11:29:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6760, '2005-07-12 15:16:00', 501, 502, '2005-07-20 13:20:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6761, '2005-07-12 15:17:42', 3645, 7, '2005-07-18 17:59:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6762, '2005-07-12 15:25:33', 3857, 262, '2005-07-21 18:57:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6763, '2005-07-12 15:26:34', 3364, 314, '2005-07-18 16:38:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6764, '2005-07-12 15:29:27', 4407, 396, '2005-07-21 20:00:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6765, '2005-07-12 15:30:47', 2571, 433, '2005-07-19 14:19:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6766, '2005-07-12 15:32:01', 3615, 171, '2005-07-18 14:03:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6767, '2005-07-12 15:46:55', 1819, 208, '2005-07-17 17:36:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6768, '2005-07-12 15:47:51', 3418, 151, '2005-07-19 21:17:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6769, '2005-07-12 15:48:54', 1687, 63, '2005-07-21 14:39:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6770, '2005-07-12 15:49:40', 2080, 360, '2005-07-20 10:14:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6771, '2005-07-12 15:54:40', 1113, 396, '2005-07-17 15:56:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6772, '2005-07-12 15:55:35', 3810, 89, '2005-07-18 10:47:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6773, '2005-07-12 15:55:39', 3346, 12, '2005-07-18 17:52:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6774, '2005-07-12 15:56:08', 868, 171, '2005-07-13 18:42:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6775, '2005-07-12 16:01:44', 2909, 383, '2005-07-19 14:11:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6776, '2005-07-12 16:02:09', 2398, 348, '2005-07-20 16:31:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6777, '2005-07-12 16:04:40', 4089, 351, '2005-07-20 15:05:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6778, '2005-07-12 16:06:00', 4503, 381, '2005-07-14 21:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6779, '2005-07-12 16:10:50', 4468, 404, '2005-07-17 14:51:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6780, '2005-07-12 16:18:12', 1255, 121, '2005-07-13 17:56:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6781, '2005-07-12 16:21:47', 3783, 533, '2005-07-15 19:52:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6782, '2005-07-12 16:23:25', 2742, 199, '2005-07-20 18:46:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6783, '2005-07-12 16:27:56', 3633, 506, '2005-07-13 12:11:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6784, '2005-07-12 16:28:49', 197, 578, '2005-07-15 17:27:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6785, '2005-07-12 16:30:57', 4448, 69, '2005-07-18 20:46:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6786, '2005-07-12 16:32:33', 2011, 546, '2005-07-16 12:42:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6787, '2005-07-12 16:33:28', 1481, 342, '2005-07-18 21:48:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6788, '2005-07-12 16:33:44', 1162, 460, '2005-07-20 15:38:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6789, '2005-07-12 16:34:40', 1973, 76, '2005-07-14 17:02:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6790, '2005-07-12 16:34:59', 4486, 400, '2005-07-17 21:43:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6791, '2005-07-12 16:35:07', 1495, 144, '2005-07-20 15:32:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6792, '2005-07-12 16:37:28', 510, 571, '2005-07-20 11:20:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6793, '2005-07-12 16:37:55', 103, 148, '2005-07-21 16:04:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6794, '2005-07-12 16:38:23', 813, 233, '2005-07-20 17:36:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6795, '2005-07-12 16:41:00', 1489, 245, '2005-07-21 20:52:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6796, '2005-07-12 16:44:16', 227, 291, '2005-07-16 14:48:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6797, '2005-07-12 16:47:06', 1536, 469, '2005-07-14 14:38:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6798, '2005-07-12 16:49:11', 275, 115, '2005-07-19 12:11:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6799, '2005-07-12 16:52:13', 2778, 42, '2005-07-14 15:11:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6800, '2005-07-12 17:03:56', 3742, 599, '2005-07-21 20:32:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6801, '2005-07-12 17:09:08', 872, 500, '2005-07-21 22:25:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6802, '2005-07-12 17:14:17', 2942, 298, '2005-07-17 11:54:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6803, '2005-07-12 17:21:49', 2676, 490, '2005-07-14 18:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6804, '2005-07-12 17:22:06', 1554, 269, '2005-07-21 11:37:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6805, '2005-07-12 17:23:01', 1758, 262, '2005-07-21 19:38:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6806, '2005-07-12 17:31:43', 656, 179, '2005-07-17 14:36:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6807, '2005-07-12 17:33:53', 669, 376, '2005-07-18 16:28:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6808, '2005-07-12 17:36:42', 362, 263, '2005-07-18 23:33:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6809, '2005-07-12 17:51:54', 3455, 168, '2005-07-17 15:10:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6810, '2005-07-12 17:54:19', 2802, 485, '2005-07-20 16:58:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6811, '2005-07-12 17:54:33', 1572, 107, '2005-07-20 17:39:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6812, '2005-07-12 18:03:25', 2227, 553, '2005-07-20 18:33:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6813, '2005-07-12 18:03:50', 135, 54, '2005-07-16 16:30:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6814, '2005-07-12 18:11:58', 1863, 579, '2005-07-18 20:37:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6815, '2005-07-12 18:14:10', 3236, 468, '2005-07-17 14:16:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6816, '2005-07-12 18:18:50', 2963, 290, '2005-07-18 21:09:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6817, '2005-07-12 18:19:57', 184, 135, '2005-07-19 22:53:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6818, '2005-07-12 18:20:54', 1013, 153, '2005-07-21 00:03:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6819, '2005-07-12 18:21:01', 1253, 198, '2005-07-13 21:14:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6820, '2005-07-12 18:21:30', 223, 243, '2005-07-14 15:14:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6821, '2005-07-12 18:22:10', 623, 363, '2005-07-14 13:25:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6822, '2005-07-12 18:23:39', 1592, 300, '2005-07-19 21:06:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6823, '2005-07-12 18:24:31', 795, 557, '2005-07-17 23:13:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6824, '2005-07-12 18:26:46', 858, 579, '2005-07-21 15:23:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6825, '2005-07-12 18:28:12', 2342, 281, '2005-07-15 19:24:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6826, '2005-07-12 18:32:02', 1708, 408, '2005-07-16 23:21:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6827, '2005-07-12 18:33:45', 1529, 283, '2005-07-13 19:09:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6828, '2005-07-12 18:38:51', 874, 502, '2005-07-14 20:10:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6829, '2005-07-12 18:38:59', 4184, 361, '2005-07-16 23:25:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6830, '2005-07-12 18:42:55', 1943, 578, '2005-07-17 17:58:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6831, '2005-07-12 18:44:04', 924, 163, '2005-07-16 21:39:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6832, '2005-07-12 18:51:41', 444, 220, '2005-07-20 13:29:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6833, '2005-07-12 18:53:34', 912, 301, '2005-07-19 22:21:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6834, '2005-07-12 18:53:37', 897, 533, '2005-07-19 13:42:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6835, '2005-07-12 18:58:03', 1444, 367, '2005-07-18 00:41:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6836, '2005-07-12 18:58:05', 2744, 113, '2005-07-15 17:45:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6837, '2005-07-12 18:59:45', 1203, 533, '2005-07-21 22:47:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6838, '2005-07-12 19:01:30', 3492, 354, '2005-07-17 23:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6839, '2005-07-12 19:03:19', 3900, 357, '2005-07-15 23:48:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6840, '2005-07-12 19:03:22', 1381, 323, '2005-07-21 18:34:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6841, '2005-07-12 19:04:24', 2265, 108, '2005-07-14 23:58:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6842, '2005-07-12 19:07:55', 3376, 366, '2005-07-19 22:47:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6843, '2005-07-12 19:14:05', 746, 561, '2005-07-20 23:15:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6844, '2005-07-12 19:14:53', 3211, 482, '2005-07-18 16:07:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6845, '2005-07-12 19:20:41', 3833, 414, '2005-07-14 15:27:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6846, '2005-07-12 19:20:45', 1214, 18, '2005-07-17 00:06:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6847, '2005-07-12 19:22:37', 346, 63, '2005-07-21 18:53:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6848, '2005-07-12 19:24:07', 1782, 433, '2005-07-14 17:03:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6849, '2005-07-12 19:29:19', 4307, 479, '2005-07-19 22:03:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6850, '2005-07-12 19:30:42', 1145, 433, '2005-07-17 21:26:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6851, '2005-07-12 19:32:14', 664, 280, '2005-07-17 21:03:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6852, '2005-07-12 19:33:49', 2182, 75, '2005-07-13 20:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6853, '2005-07-12 19:38:11', 4006, 299, '2005-07-20 00:14:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6854, '2005-07-12 19:38:57', 3173, 151, '2005-07-16 16:28:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6855, '2005-07-12 19:46:29', 2657, 24, '2005-07-15 16:56:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6856, '2005-07-12 19:50:16', 4338, 275, '2005-07-14 22:25:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6857, '2005-07-12 19:53:30', 424, 196, '2005-07-13 15:22:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6858, '2005-07-12 19:53:51', 1095, 516, '2005-07-19 14:12:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6859, '2005-07-12 19:53:57', 4108, 321, '2005-07-17 19:48:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6860, '2005-07-12 19:54:17', 2907, 91, '2005-07-18 13:59:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6861, '2005-07-12 19:56:52', 354, 83, '2005-07-13 16:02:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6862, '2005-07-12 19:58:09', 3477, 231, '2005-07-18 15:48:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6863, '2005-07-12 19:58:34', 229, 484, '2005-07-21 16:57:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6864, '2005-07-12 19:59:25', 2252, 38, '2005-07-19 15:52:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6865, '2005-07-12 20:02:40', 1428, 175, '2005-07-20 00:39:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6866, '2005-07-12 20:03:44', 2481, 312, '2005-07-15 01:55:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6867, '2005-07-12 20:06:47', 3354, 190, '2005-07-19 16:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6868, '2005-07-12 20:10:17', 719, 306, '2005-07-15 22:34:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6869, '2005-07-12 20:12:06', 3546, 278, '2005-07-13 18:37:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6870, '2005-07-12 20:13:45', 3102, 13, '2005-07-16 22:09:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6871, '2005-07-12 20:13:49', 3612, 204, '2005-07-14 20:11:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6872, '2005-07-12 20:15:04', 3246, 86, '2005-07-18 18:19:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6873, '2005-07-12 20:20:50', 802, 161, '2005-07-17 01:51:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6874, '2005-07-12 20:20:53', 4478, 539, '2005-07-19 19:41:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6875, '2005-07-12 20:23:05', 3420, 172, '2005-07-19 00:09:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6876, '2005-07-12 20:32:50', 34, 531, '2005-07-16 21:12:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6877, '2005-07-12 20:32:58', 3968, 231, '2005-07-18 18:01:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6878, '2005-07-12 20:37:13', 2428, 363, '2005-07-19 20:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6879, '2005-07-12 20:37:37', 1901, 416, '2005-07-20 15:40:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6880, '2005-07-12 20:41:35', 1473, 229, '2005-07-17 02:22:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6881, '2005-07-12 20:46:35', 2496, 346, '2005-07-21 00:26:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6882, '2005-07-12 20:50:39', 2469, 166, '2005-07-14 21:01:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6883, '2005-07-12 20:50:48', 468, 596, '2005-07-19 16:00:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6884, '2005-07-12 20:52:41', 3642, 17, '2005-07-20 23:13:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6885, '2005-07-12 20:56:04', 3972, 159, '2005-07-15 19:21:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6886, '2005-07-12 20:58:04', 4533, 429, '2005-07-18 16:56:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6887, '2005-07-12 21:00:23', 4487, 542, '2005-07-21 17:46:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6888, '2005-07-12 21:01:11', 1896, 490, '2005-07-17 21:49:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6889, '2005-07-12 21:01:22', 2919, 198, '2005-07-20 20:16:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6890, '2005-07-12 21:03:03', 2538, 473, '2005-07-14 00:47:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6891, '2005-07-12 21:07:35', 3189, 507, '2005-07-14 16:59:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6892, '2005-07-12 21:10:04', 1567, 138, '2005-07-13 23:03:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6893, '2005-07-12 21:20:11', 2611, 377, '2005-07-21 18:55:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6894, '2005-07-12 21:20:50', 1347, 315, '2005-07-20 23:42:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6895, '2005-07-12 21:23:59', 2935, 599, '2005-07-19 20:47:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6896, '2005-07-12 21:25:37', 1266, 111, '2005-07-20 23:51:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6897, '2005-07-12 21:30:41', 170, 13, '2005-07-15 03:19:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6898, '2005-07-12 21:39:04', 1725, 557, '2005-07-15 20:30:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6899, '2005-07-12 21:44:16', 3565, 483, '2005-07-21 22:21:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6900, '2005-07-12 21:45:25', 129, 292, '2005-07-19 21:19:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6901, '2005-07-12 21:46:33', 4574, 158, '2005-07-16 21:36:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6902, '2005-07-12 21:57:16', 314, 485, '2005-07-14 20:56:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6903, '2005-07-12 21:58:15', 3690, 517, '2005-07-14 01:38:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6904, '2005-07-12 22:02:09', 2312, 465, '2005-07-17 16:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6905, '2005-07-12 22:02:18', 763, 25, '2005-07-18 23:30:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6906, '2005-07-12 22:03:02', 1435, 335, '2005-07-15 00:35:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6907, '2005-07-12 22:03:49', 2516, 575, '2005-07-18 19:18:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6908, '2005-07-12 22:08:46', 3161, 529, '2005-07-21 00:21:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6909, '2005-07-12 22:09:30', 769, 174, '2005-07-17 02:05:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6910, '2005-07-12 22:11:21', 1290, 546, '2005-07-21 02:35:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6911, '2005-07-12 22:14:34', 901, 361, '2005-07-18 20:17:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6912, '2005-07-12 22:17:16', 1701, 471, '2005-07-19 18:18:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6913, '2005-07-12 22:18:12', 569, 443, '2005-07-14 23:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6914, '2005-07-12 22:26:56', 496, 361, '2005-07-17 20:03:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6915, '2005-07-12 22:28:09', 1243, 559, '2005-07-14 00:53:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6916, '2005-07-12 22:29:18', 3311, 88, '2005-07-19 16:46:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6917, '2005-07-12 22:30:15', 3048, 23, '2005-07-20 03:20:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6918, '2005-07-12 22:30:29', 4085, 140, '2005-07-19 22:51:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6919, '2005-07-12 22:32:17', 1122, 540, '2005-07-18 20:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6920, '2005-07-12 22:32:58', 2301, 109, '2005-07-19 20:29:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6921, '2005-07-12 22:39:03', 3322, 265, '2005-07-21 18:54:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6922, '2005-07-12 22:39:48', 1114, 371, '2005-07-14 18:35:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6923, '2005-07-12 22:40:48', 2642, 490, '2005-07-19 23:07:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6924, '2005-07-26 22:51:53', 1257, 502, '2005-08-03 19:04:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6925, '2005-07-26 22:52:32', 2919, 42, '2005-07-29 21:22:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6926, '2005-07-26 22:52:45', 1276, 354, '2005-07-28 18:32:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6927, '2005-07-26 22:56:00', 4511, 470, '2005-08-05 03:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6928, '2005-07-26 22:56:21', 3605, 487, '2005-07-30 04:46:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6929, '2005-07-26 22:59:19', 3339, 508, '2005-08-03 22:40:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6930, '2005-07-26 23:00:01', 2989, 393, '2005-08-04 01:57:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6931, '2005-07-26 23:02:57', 2794, 333, '2005-07-28 04:48:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6932, '2005-07-26 23:08:04', 4517, 463, '2005-08-05 01:35:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6933, '2005-07-26 23:09:23', 1334, 385, '2005-07-31 20:50:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6934, '2005-07-26 23:11:03', 455, 107, '2005-08-04 19:18:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6935, '2005-07-26 23:13:10', 2771, 435, '2005-07-27 18:09:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6936, '2005-07-26 23:13:34', 60, 538, '2005-07-30 19:14:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6937, '2005-07-26 23:15:50', 1768, 592, '2005-07-27 19:14:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6938, '2005-07-26 23:16:04', 2058, 427, '2005-08-05 00:59:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6939, '2005-07-26 23:17:51', 278, 354, '2005-08-03 21:12:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6940, '2005-07-26 23:18:35', 3876, 149, '2005-08-05 01:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6941, '2005-07-26 23:18:49', 1575, 441, '2005-07-31 00:23:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6942, '2005-07-26 23:27:40', 1203, 470, '2005-07-31 03:17:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6943, '2005-07-26 23:28:13', 2436, 21, '2005-07-30 02:22:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6944, '2005-07-26 23:34:02', 1168, 373, '2005-08-05 01:27:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6945, '2005-07-26 23:35:29', 1627, 560, '2005-07-28 00:12:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6946, '2005-07-26 23:40:07', 1854, 181, '2005-08-04 01:18:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6947, '2005-07-26 23:42:03', 760, 200, '2005-08-02 05:06:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6948, '2005-07-26 23:43:49', 3088, 228, '2005-07-27 21:24:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6949, '2005-07-26 23:44:12', 1594, 103, '2005-07-30 05:39:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6950, '2005-07-26 23:45:33', 197, 503, '2005-07-31 04:40:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6951, '2005-07-26 23:47:31', 3348, 98, '2005-07-31 22:17:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6952, '2005-07-26 23:51:27', 4288, 290, '2005-07-30 02:45:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6953, '2005-07-26 23:52:47', 2910, 306, '2005-07-30 23:07:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6954, '2005-07-26 23:55:13', 1112, 584, '2005-07-28 19:01:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6955, '2005-07-26 23:55:48', 1104, 469, '2005-08-02 03:25:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6956, '2005-07-26 23:55:57', 2499, 240, '2005-08-03 21:41:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6957, '2005-07-27 00:00:00', 2231, 518, '2005-07-29 19:32:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6958, '2005-07-27 00:02:41', 657, 333, '2005-07-28 00:53:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6959, '2005-07-27 00:07:51', 1618, 452, '2005-07-27 20:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6960, '2005-07-27 00:08:33', 192, 421, '2005-08-03 20:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6961, '2005-07-27 00:10:49', 2205, 38, '2005-07-30 00:26:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6962, '2005-07-27 00:10:58', 4500, 245, '2005-07-30 02:11:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6963, '2005-07-27 00:13:02', 4284, 489, '2005-08-03 18:13:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6964, '2005-07-27 00:15:04', 1537, 404, '2005-07-31 00:04:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6965, '2005-07-27 00:15:18', 74, 185, '2005-07-28 04:30:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6966, '2005-07-27 00:15:35', 1577, 45, '2005-08-05 03:04:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6967, '2005-07-27 00:16:31', 1145, 296, '2005-08-03 22:19:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6968, '2005-07-27 00:16:45', 1662, 370, '2005-07-30 23:16:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6969, '2005-07-27 00:23:54', 2650, 579, '2005-08-03 04:34:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6970, '2005-07-27 00:26:14', 17, 418, '2005-08-03 20:00:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6971, '2005-07-27 00:26:17', 3493, 366, '2005-08-01 03:59:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6972, '2005-07-27 00:31:25', 1716, 434, '2005-07-28 22:15:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6973, '2005-07-27 00:32:04', 4572, 564, '2005-07-29 01:05:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6974, '2005-07-27 00:39:16', 2924, 122, '2005-08-04 01:59:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6975, '2005-07-27 00:39:54', 3328, 527, '2005-08-02 19:49:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6976, '2005-07-27 00:40:01', 3096, 41, '2005-07-31 22:30:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6977, '2005-07-27 00:40:50', 3545, 429, '2005-08-02 19:08:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6978, '2005-07-27 00:47:40', 3645, 132, '2005-07-31 04:32:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6979, '2005-07-27 00:49:53', 1001, 141, '2005-07-31 03:59:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6980, '2005-07-27 00:50:30', 1127, 164, '2005-08-03 23:35:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6981, '2005-07-27 00:51:38', 154, 362, '2005-07-28 01:06:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6982, '2005-07-27 00:53:41', 3843, 284, '2005-07-31 06:19:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6983, '2005-07-27 00:55:03', 1758, 443, '2005-08-01 21:19:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6984, '2005-07-27 00:56:30', 2407, 297, '2005-08-02 01:14:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6985, '2005-07-27 00:57:42', 1834, 448, '2005-07-31 00:53:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6986, '2005-07-27 00:59:05', 2104, 262, '2005-07-29 00:31:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6987, '2005-07-27 00:59:50', 3134, 334, '2005-07-28 01:47:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6988, '2005-07-27 01:00:08', 756, 316, '2005-07-31 04:35:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6989, '2005-07-27 01:00:34', 4036, 120, '2005-07-30 23:53:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6990, '2005-07-27 01:02:46', 4065, 146, '2005-07-31 00:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6991, '2005-07-27 01:03:06', 319, 307, '2005-08-05 04:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6992, '2005-07-27 01:04:45', 3411, 106, '2005-07-28 02:34:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6993, '2005-07-27 01:05:24', 3114, 154, '2005-07-30 06:23:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6994, '2005-07-27 01:08:26', 4316, 400, '2005-08-04 22:58:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6995, '2005-07-27 01:12:13', 1630, 66, '2005-07-29 21:26:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6996, '2005-07-27 01:13:45', 3237, 236, '2005-07-28 20:43:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6997, '2005-07-27 01:14:02', 2130, 342, '2005-07-29 01:12:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6998, '2005-07-27 01:16:29', 788, 300, '2005-07-30 05:50:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (6999, '2005-07-27 01:21:19', 12, 224, '2005-07-29 20:33:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7000, '2005-07-27 01:23:24', 2024, 31, '2005-08-03 02:10:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7001, '2005-07-27 01:25:34', 1460, 240, '2005-07-31 23:30:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7002, '2005-07-27 01:26:14', 4157, 349, '2005-08-01 20:10:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7003, '2005-07-27 01:32:06', 636, 161, '2005-07-30 21:33:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7004, '2005-07-27 01:36:05', 4416, 314, '2005-08-03 23:46:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7005, '2005-07-27 01:38:36', 2438, 446, '2005-08-02 05:56:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7006, '2005-07-27 01:42:20', 3522, 264, '2005-08-03 03:19:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7007, '2005-07-27 01:43:39', 4186, 257, '2005-07-31 21:04:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7008, '2005-07-27 01:44:03', 3659, 12, '2005-07-28 21:19:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7009, '2005-07-27 01:45:44', 1585, 414, '2005-07-28 05:50:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7010, '2005-07-27 01:56:01', 3016, 590, '2005-07-30 04:40:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7011, '2005-07-27 01:58:34', 4082, 254, '2005-07-28 06:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7012, '2005-07-27 02:01:03', 779, 239, '2005-08-05 07:34:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7013, '2005-07-27 02:03:21', 3919, 463, '2005-07-31 22:12:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7014, '2005-07-27 02:14:40', 714, 524, '2005-08-03 00:32:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7015, '2005-07-27 02:15:01', 376, 34, '2005-07-28 07:46:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7016, '2005-07-27 02:15:16', 1425, 423, '2005-08-01 23:08:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7017, '2005-07-27 02:16:03', 753, 176, '2005-07-31 07:49:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7018, '2005-07-27 02:20:22', 1078, 451, '2005-08-02 05:04:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7019, '2005-07-27 02:20:26', 3837, 491, '2005-08-02 22:48:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7020, '2005-07-27 02:24:27', 3965, 506, '2005-07-29 01:27:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7021, '2005-07-27 02:26:38', 2690, 380, '2005-08-05 01:18:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7022, '2005-07-27 02:31:15', 1711, 243, '2005-07-29 02:52:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7023, '2005-07-27 02:32:44', 4196, 303, '2005-08-03 04:06:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7024, '2005-07-27 02:36:40', 3113, 252, '2005-07-28 06:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7025, '2005-07-27 02:40:29', 3530, 176, '2005-07-29 23:02:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7026, '2005-07-27 02:48:58', 3456, 493, '2005-07-29 03:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7027, '2005-07-27 02:50:15', 3280, 61, '2005-08-04 02:58:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7028, '2005-07-27 02:54:25', 834, 179, '2005-08-02 06:16:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7029, '2005-07-27 02:57:43', 2862, 389, '2005-07-30 08:24:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7030, '2005-07-27 03:01:40', 1277, 550, '2005-07-31 07:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7031, '2005-07-27 03:02:07', 1435, 530, '2005-08-02 07:14:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7032, '2005-07-27 03:03:09', 3397, 269, '2005-07-28 22:57:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7033, '2005-07-27 03:03:25', 2803, 352, '2005-07-28 01:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7034, '2005-07-27 03:03:37', 1712, 281, '2005-07-28 23:18:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7035, '2005-07-27 03:06:09', 2439, 90, '2005-08-02 21:59:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7036, '2005-07-27 03:06:12', 2569, 70, '2005-07-28 23:26:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7037, '2005-07-27 03:06:44', 3155, 171, '2005-08-02 04:51:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7038, '2005-07-27 03:07:29', 1909, 518, '2005-07-31 04:55:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7039, '2005-07-27 03:11:48', 1906, 99, '2005-08-01 23:55:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7040, '2005-07-27 03:17:19', 470, 524, '2005-07-29 07:03:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7041, '2005-07-27 03:18:32', 4212, 379, '2005-07-30 06:40:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7042, '2005-07-27 03:20:18', 399, 188, '2005-08-01 02:23:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7043, '2005-07-27 03:24:23', 3422, 493, '2005-08-05 02:55:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7044, '2005-07-27 03:27:29', 88, 147, '2005-08-01 07:00:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7045, '2005-07-27 03:27:35', 1788, 64, '2005-08-01 06:31:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7046, '2005-07-27 03:27:56', 3740, 349, '2005-07-30 00:54:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7047, '2005-07-27 03:31:11', 2866, 236, '2005-08-03 23:40:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7048, '2005-07-27 03:31:48', 3707, 581, '2005-08-05 07:30:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7049, '2005-07-27 03:32:41', 3043, 332, '2005-08-04 08:32:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7050, '2005-07-27 03:33:17', 1135, 55, '2005-08-02 03:12:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7051, '2005-07-27 03:34:37', 1310, 184, '2005-07-31 03:48:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7052, '2005-07-27 03:36:38', 3798, 75, '2005-08-03 21:51:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7053, '2005-07-27 03:38:54', 149, 408, '2005-07-31 01:13:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7054, '2005-07-27 03:43:28', 2661, 179, '2005-08-04 09:15:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7055, '2005-07-27 03:45:42', 4305, 154, '2005-07-30 05:11:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7056, '2005-07-27 03:46:27', 805, 233, '2005-08-05 07:46:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7057, '2005-07-27 03:50:03', 1196, 320, '2005-08-04 04:36:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7058, '2005-07-27 03:50:46', 716, 90, '2005-08-04 07:40:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7059, '2005-07-27 03:51:02', 129, 578, '2005-08-02 22:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7060, '2005-07-27 03:51:04', 3912, 479, '2005-08-03 07:53:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7061, '2005-07-27 03:51:10', 880, 145, '2005-07-31 05:36:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7062, '2005-07-27 03:52:01', 226, 469, '2005-08-03 08:26:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7063, '2005-07-27 03:52:27', 2125, 58, '2005-08-04 07:53:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7064, '2005-07-27 03:53:29', 4204, 320, '2005-08-03 06:32:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7065, '2005-07-27 03:53:43', 3570, 536, '2005-07-30 23:41:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7066, '2005-07-27 03:53:52', 1862, 185, '2005-08-05 03:32:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7067, '2005-07-27 03:55:10', 870, 60, '2005-08-01 02:56:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7068, '2005-07-27 03:57:50', 4465, 568, '2005-07-30 04:27:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7069, '2005-07-27 03:59:35', 2073, 343, '2005-08-05 03:33:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7070, '2005-07-27 04:01:08', 4182, 280, '2005-07-30 08:10:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7071, '2005-07-27 04:01:15', 4361, 61, '2005-08-03 05:18:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7072, '2005-07-27 04:02:33', 3899, 260, '2005-07-28 09:26:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7073, '2005-07-27 04:03:26', 3859, 92, '2005-08-03 05:50:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7074, '2005-07-27 04:06:24', 1390, 165, '2005-07-28 02:04:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7075, '2005-07-27 04:11:40', 4414, 530, '2005-08-03 08:16:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7076, '2005-07-27 04:12:14', 2821, 333, '2005-08-05 00:44:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7077, '2005-07-27 04:13:02', 3186, 155, '2005-07-31 23:15:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7078, '2005-07-27 04:16:37', 4518, 545, '2005-08-05 02:34:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7079, '2005-07-27 04:21:58', 4356, 356, '2005-08-04 08:08:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7080, '2005-07-27 04:25:25', 710, 466, '2005-08-04 04:22:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7081, '2005-07-27 04:25:59', 462, 420, '2005-08-01 00:14:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7082, '2005-07-27 04:27:32', 2032, 64, '2005-07-30 06:06:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7083, '2005-07-27 04:28:39', 2663, 575, '2005-07-30 04:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7084, '2005-07-27 04:34:07', 785, 32, '2005-08-05 00:21:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7085, '2005-07-27 04:35:44', 2603, 223, '2005-08-05 07:10:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7086, '2005-07-27 04:39:46', 2938, 595, '2005-08-05 00:32:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7087, '2005-07-27 04:42:08', 1159, 22, '2005-08-02 00:53:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7088, '2005-07-27 04:42:28', 373, 88, '2005-08-04 07:09:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7089, '2005-07-27 04:43:42', 1380, 446, '2005-07-30 10:04:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7090, '2005-07-27 04:43:53', 3495, 218, '2005-07-29 07:33:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7091, '2005-07-27 04:44:10', 2593, 322, '2005-07-31 07:14:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7092, '2005-07-27 04:46:00', 1433, 345, '2005-08-03 07:22:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7093, '2005-07-27 04:47:00', 3065, 574, '2005-07-31 10:15:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7094, '2005-07-27 04:47:33', 867, 373, '2005-07-31 04:07:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7095, '2005-07-27 04:51:15', 1008, 551, '2005-08-05 10:25:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7096, '2005-07-27 04:54:42', 2575, 3, '2005-08-03 01:42:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7097, '2005-07-27 04:56:09', 258, 487, '2005-07-31 05:47:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7098, '2005-07-27 05:01:08', 2555, 359, '2005-08-02 07:49:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7099, '2005-07-27 05:03:44', 3136, 6, '2005-07-29 00:12:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7100, '2005-07-27 05:05:01', 4224, 413, '2005-07-28 23:12:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7101, '2005-07-27 05:06:34', 2006, 221, '2005-07-29 06:12:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7102, '2005-07-27 05:07:21', 1081, 411, '2005-08-01 09:41:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7103, '2005-07-27 05:08:59', 1697, 403, '2005-07-29 03:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7104, '2005-07-27 05:15:25', 118, 217, '2005-08-01 05:36:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7105, '2005-07-27 05:15:37', 864, 15, '2005-07-28 05:49:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7106, '2005-07-27 05:21:24', 1415, 201, '2005-08-02 01:58:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7107, '2005-07-27 05:22:04', 1883, 104, '2005-08-02 06:38:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7108, '2005-07-27 05:28:32', 2720, 355, '2005-07-31 07:52:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7109, '2005-07-27 05:28:57', 1658, 406, '2005-08-04 10:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7110, '2005-07-27 05:30:48', 3289, 157, '2005-07-28 01:43:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7111, '2005-07-27 05:38:16', 1252, 473, '2005-07-29 04:28:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7112, '2005-07-27 05:38:42', 4056, 101, '2005-08-03 05:35:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7113, '2005-07-27 05:41:20', 1963, 534, '2005-07-30 04:50:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7114, '2005-07-27 05:42:13', 3892, 121, '2005-07-29 01:59:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7115, '2005-07-27 05:42:58', 3620, 359, '2005-08-02 05:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7116, '2005-07-27 05:46:43', 1755, 209, '2005-08-05 05:54:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7117, '2005-07-27 05:48:36', 2772, 326, '2005-08-01 00:33:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7118, '2005-07-27 05:53:50', 582, 591, '2005-08-05 04:19:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7119, '2005-07-27 05:55:32', 1732, 102, '2005-07-29 03:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7120, '2005-07-27 05:56:39', 416, 98, '2005-08-04 10:57:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7121, '2005-07-27 05:58:32', 1264, 252, '2005-07-29 06:14:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7122, '2005-07-27 06:03:18', 1699, 172, '2005-08-04 10:43:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7123, '2005-07-27 06:08:48', 134, 232, '2005-08-04 05:26:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7124, '2005-07-27 06:09:30', 3449, 34, '2005-08-02 09:31:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7125, '2005-07-27 06:11:00', 801, 460, '2005-08-04 09:41:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7126, '2005-07-27 06:13:13', 3240, 582, '2005-07-28 08:22:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7127, '2005-07-27 06:13:48', 273, 486, '2005-08-01 02:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7128, '2005-07-27 06:14:36', 143, 529, '2005-08-02 05:18:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7129, '2005-07-27 06:18:01', 1930, 221, '2005-07-28 02:38:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7130, '2005-07-27 06:23:36', 420, 81, '2005-07-28 10:23:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7131, '2005-07-27 06:25:06', 2832, 585, '2005-07-31 09:07:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7132, '2005-07-27 06:28:34', 3201, 227, '2005-08-05 06:02:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7133, '2005-07-27 06:29:23', 2995, 496, '2005-07-29 03:20:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7134, '2005-07-27 06:33:06', 1058, 574, '2005-07-28 06:15:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7135, '2005-07-27 06:34:32', 2959, 172, '2005-07-28 03:01:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7136, '2005-07-27 06:38:25', 1929, 6, '2005-08-03 05:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7137, '2005-07-27 06:40:41', 3957, 483, '2005-07-29 09:05:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7138, '2005-07-27 06:47:13', 1418, 31, '2005-08-03 01:12:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7139, '2005-07-27 06:52:21', 846, 575, '2005-07-30 01:45:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7140, '2005-07-27 06:54:12', 2028, 35, '2005-08-03 10:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7141, '2005-07-27 06:55:27', 3579, 423, '2005-08-01 11:10:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7142, '2005-07-27 06:55:39', 1743, 396, '2005-07-28 01:41:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7143, '2005-07-27 06:56:31', 2877, 91, '2005-07-31 04:38:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7144, '2005-07-27 07:00:37', 4506, 485, '2005-08-01 06:57:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7145, '2005-07-27 07:01:00', 3653, 109, '2005-07-31 02:31:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7146, '2005-07-27 07:02:30', 2245, 323, '2005-08-05 10:29:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7147, '2005-07-27 07:02:34', 990, 192, '2005-08-01 02:16:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7148, '2005-07-27 07:04:09', 1783, 354, '2005-08-03 10:20:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7149, '2005-07-27 07:10:40', 3902, 242, '2005-08-03 07:37:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7150, '2005-07-27 07:11:14', 457, 191, '2005-08-05 06:55:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7151, '2005-07-27 07:14:31', 1259, 289, '2005-08-01 01:35:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7152, '2005-07-27 07:15:01', 2338, 370, '2005-08-05 04:50:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7153, '2005-07-27 07:15:38', 2657, 41, '2005-07-28 09:56:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7154, '2005-07-27 07:16:17', 2019, 518, '2005-07-28 04:04:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7155, '2005-07-27 07:18:46', 171, 23, '2005-08-04 10:28:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7156, '2005-07-27 07:19:34', 34, 154, '2005-07-31 04:31:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7157, '2005-07-27 07:20:28', 1353, 423, '2005-08-02 07:19:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7158, '2005-07-27 07:23:58', 2432, 38, '2005-08-03 06:00:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7159, '2005-07-27 07:24:00', 1220, 158, '2005-08-05 11:13:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7160, '2005-07-27 07:26:06', 3905, 71, '2005-07-31 04:54:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7161, '2005-07-27 07:26:32', 378, 572, '2005-08-03 01:26:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7162, '2005-07-27 07:32:45', 2251, 289, '2005-07-30 03:48:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7163, '2005-07-27 07:36:11', 3666, 38, '2005-08-04 06:03:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7164, '2005-07-27 07:36:34', 527, 284, '2005-08-04 05:05:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7165, '2005-07-27 07:36:46', 497, 243, '2005-07-30 09:22:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7166, '2005-07-27 07:36:56', 1375, 562, '2005-08-02 03:46:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7167, '2005-07-27 07:37:26', 238, 380, '2005-08-03 06:39:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7168, '2005-07-27 07:51:11', 6, 252, '2005-08-01 04:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7169, '2005-07-27 07:51:39', 735, 559, '2005-08-01 06:42:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7170, '2005-07-27 07:58:26', 370, 140, '2005-07-28 02:30:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7171, '2005-07-27 07:58:35', 4381, 406, '2005-08-03 07:45:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7172, '2005-07-27 07:59:16', 2405, 362, '2005-08-01 04:46:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7173, '2005-07-27 07:59:24', 177, 592, '2005-07-28 02:23:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7174, '2005-07-27 08:00:36', 46, 570, '2005-08-01 03:11:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7175, '2005-07-27 08:03:22', 568, 190, '2005-08-01 02:47:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7176, '2005-07-27 08:04:28', 227, 257, '2005-07-29 14:00:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7177, '2005-07-27 08:07:39', 3818, 133, '2005-07-30 03:17:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7178, '2005-07-27 08:09:25', 1899, 31, '2005-07-29 13:00:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7179, '2005-07-27 08:10:29', 2365, 537, '2005-07-28 12:24:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7180, '2005-07-27 08:14:34', 460, 215, '2005-07-31 05:24:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7181, '2005-07-27 08:14:34', 2788, 130, '2005-07-28 03:09:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7182, '2005-07-27 08:15:38', 3209, 97, '2005-08-03 12:48:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7183, '2005-07-27 08:18:38', 3384, 302, '2005-08-01 03:24:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7184, '2005-07-27 08:22:26', 2324, 457, '2005-08-02 09:34:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7185, '2005-07-27 08:23:54', 2340, 121, '2005-07-30 09:50:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7186, '2005-07-27 08:26:12', 4005, 584, '2005-07-28 12:21:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7187, '2005-07-27 08:27:58', 2733, 169, '2005-08-05 09:05:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7188, '2005-07-27 08:32:08', 2199, 259, '2005-07-28 08:02:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7189, '2005-07-27 08:35:02', 4419, 151, '2005-07-30 14:00:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7190, '2005-07-27 08:36:01', 1330, 372, '2005-07-30 08:32:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7191, '2005-07-27 08:36:15', 4292, 495, '2005-08-03 08:54:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7192, '2005-07-27 08:36:55', 4329, 532, '2005-07-30 11:58:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7193, '2005-07-27 08:37:00', 1801, 237, '2005-07-30 12:51:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7194, '2005-07-27 08:39:58', 254, 172, '2005-08-01 03:12:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7195, '2005-07-27 08:47:01', 721, 157, '2005-07-30 08:40:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7196, '2005-07-27 08:49:08', 2998, 118, '2005-07-29 03:54:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7197, '2005-07-27 08:49:32', 2109, 577, '2005-07-31 13:50:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7198, '2005-07-27 08:50:07', 4283, 520, '2005-08-04 09:46:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7199, '2005-07-27 08:53:23', 3685, 292, '2005-08-03 10:01:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7200, '2005-07-27 08:57:38', 4406, 78, '2005-08-02 12:29:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7201, '2005-07-27 08:57:40', 482, 598, '2005-08-04 09:55:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7202, '2005-07-27 09:00:20', 109, 560, '2005-08-04 03:09:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7203, '2005-07-27 09:01:23', 1685, 492, '2005-08-04 14:14:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7204, '2005-07-27 09:02:31', 2512, 531, '2005-08-03 08:56:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7205, '2005-07-27 09:06:13', 2828, 36, '2005-08-05 07:11:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7206, '2005-07-27 09:07:05', 3752, 373, '2005-07-31 03:13:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7207, '2005-07-27 09:13:26', 336, 51, '2005-08-01 10:24:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7208, '2005-07-27 09:16:28', 1523, 138, '2005-07-28 09:40:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7209, '2005-07-27 09:16:53', 3766, 49, '2005-07-30 08:09:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7210, '2005-07-27 09:19:05', 1984, 176, '2005-07-28 04:35:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7211, '2005-07-27 09:20:00', 4445, 285, '2005-08-02 14:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7212, '2005-07-27 09:21:22', 2905, 591, '2005-08-01 04:47:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7213, '2005-07-27 09:22:29', 2836, 502, '2005-08-03 13:53:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7214, '2005-07-27 09:23:33', 802, 309, '2005-08-03 13:14:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7215, '2005-07-27 09:24:00', 2713, 473, '2005-08-05 07:37:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7216, '2005-07-27 09:27:45', 1812, 292, '2005-08-03 13:08:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7217, '2005-07-27 09:31:44', 2646, 20, '2005-07-29 10:48:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7218, '2005-07-27 09:34:24', 2458, 530, '2005-08-01 07:00:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7219, '2005-07-27 09:35:36', 4046, 512, '2005-07-29 04:44:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7220, '2005-07-27 09:35:54', 3867, 79, '2005-08-04 06:00:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7221, '2005-07-27 09:37:35', 3820, 579, '2005-07-28 11:25:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7222, '2005-07-27 09:38:43', 2330, 206, '2005-07-28 06:25:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7223, '2005-07-27 09:42:27', 2623, 325, '2005-08-04 04:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7224, '2005-07-27 09:44:26', 2701, 106, '2005-08-05 12:46:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7225, '2005-07-27 09:47:12', 632, 306, '2005-08-03 13:19:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7226, '2005-07-27 09:47:53', 3507, 370, '2005-08-01 08:24:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7227, '2005-07-27 09:53:43', 791, 164, '2005-08-05 09:36:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7228, '2005-07-27 09:55:33', 1693, 481, '2005-07-29 04:33:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7229, '2005-07-27 10:00:54', 978, 182, '2005-07-28 13:58:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7230, '2005-07-27 10:01:41', 1152, 245, '2005-08-02 11:00:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7231, '2005-07-27 10:01:51', 1638, 86, '2005-08-05 13:38:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7232, '2005-07-27 10:04:19', 1147, 306, '2005-07-28 09:43:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7233, '2005-07-27 10:08:36', 213, 245, '2005-07-31 16:00:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7234, '2005-07-27 10:08:45', 3873, 372, '2005-07-31 13:58:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7235, '2005-07-27 10:09:30', 1261, 354, '2005-08-05 11:44:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7236, '2005-07-27 10:09:39', 3004, 218, '2005-08-03 16:05:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7237, '2005-07-27 10:12:36', 1904, 29, '2005-07-31 08:40:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7238, '2005-07-27 10:13:41', 1197, 116, '2005-07-29 11:07:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7239, '2005-07-27 10:20:27', 1786, 278, '2005-07-29 10:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7240, '2005-07-27 10:21:15', 4565, 324, '2005-08-03 05:04:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7241, '2005-07-27 10:25:49', 2433, 354, '2005-07-28 05:30:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7242, '2005-07-27 10:25:51', 1966, 565, '2005-08-04 16:02:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7243, '2005-07-27 10:26:11', 1287, 238, '2005-07-29 11:43:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7244, '2005-07-27 10:27:33', 1329, 339, '2005-07-30 13:09:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7245, '2005-07-27 10:29:06', 260, 95, '2005-08-05 12:09:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7246, '2005-07-27 10:30:41', 2003, 333, '2005-07-30 05:44:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7247, '2005-07-27 10:32:58', 1445, 102, '2005-07-29 05:00:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7248, '2005-07-27 10:37:45', 4256, 456, '2005-08-01 13:13:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7249, '2005-07-27 10:39:53', 2441, 425, '2005-07-28 14:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7250, '2005-07-27 10:44:09', 3410, 589, '2005-07-28 11:47:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7251, '2005-07-27 10:44:55', 1737, 360, '2005-08-01 16:12:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7252, '2005-07-27 10:45:28', 3107, 549, '2005-08-04 06:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7253, '2005-07-27 10:46:37', 1950, 236, '2005-07-28 11:18:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7254, '2005-07-27 10:48:50', 2697, 286, '2005-07-28 10:34:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7255, '2005-07-27 10:49:54', 2101, 502, '2005-07-31 10:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7256, '2005-07-27 10:58:32', 4275, 363, '2005-07-29 08:58:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7257, '2005-07-27 11:04:17', 3302, 480, '2005-08-04 12:32:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7258, '2005-07-27 11:05:54', 2079, 494, '2005-08-02 11:36:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7259, '2005-07-27 11:06:00', 2345, 406, '2005-08-02 06:44:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7260, '2005-07-27 11:09:28', 3827, 434, '2005-08-03 09:41:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7261, '2005-07-27 11:15:01', 942, 172, '2005-07-28 09:42:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7262, '2005-07-27 11:15:36', 4097, 522, '2005-07-30 10:49:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7263, '2005-07-27 11:17:22', 725, 324, '2005-08-04 10:59:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7264, '2005-07-27 11:18:58', 2391, 299, '2005-08-03 07:43:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7265, '2005-07-27 11:19:01', 3465, 290, '2005-08-01 09:29:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7266, '2005-07-27 11:22:17', 3379, 24, '2005-08-04 05:45:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7267, '2005-07-27 11:22:55', 3661, 122, '2005-08-01 08:13:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7268, '2005-07-27 11:23:09', 2740, 260, '2005-08-01 12:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7269, '2005-07-27 11:23:47', 2089, 209, '2005-07-31 13:10:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7270, '2005-07-27 11:29:02', 1888, 526, '2005-08-05 08:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7271, '2005-07-27 11:29:11', 858, 469, '2005-08-05 15:33:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7272, '2005-07-27 11:30:20', 250, 364, '2005-07-29 17:16:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7273, '2005-07-27 11:31:22', 2465, 1, '2005-07-31 06:50:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7274, '2005-07-27 11:35:34', 4087, 180, '2005-08-01 07:10:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7275, '2005-07-27 11:39:08', 775, 323, '2005-07-30 13:37:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7276, '2005-07-27 11:41:57', 1665, 314, '2005-08-01 10:39:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7277, '2005-07-27 11:48:37', 1544, 67, '2005-08-03 07:20:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7278, '2005-07-27 11:50:34', 531, 592, '2005-08-01 10:22:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7279, '2005-07-27 11:50:47', 1424, 12, '2005-07-30 11:19:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7280, '2005-07-27 11:50:52', 236, 342, '2005-07-30 15:53:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7281, '2005-07-27 11:59:20', 1350, 491, '2005-08-04 12:48:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7282, '2005-07-27 12:00:19', 4418, 276, '2005-08-04 14:48:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7283, '2005-07-27 12:02:41', 3101, 508, '2005-08-05 07:25:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7284, '2005-07-27 12:12:04', 2336, 52, '2005-07-31 11:17:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7285, '2005-07-27 12:14:06', 2855, 498, '2005-08-03 14:57:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7286, '2005-07-27 12:23:49', 3452, 498, '2005-08-04 07:57:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7287, '2005-07-27 12:24:12', 926, 198, '2005-07-31 15:34:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7288, '2005-07-27 12:24:59', 45, 226, '2005-08-02 15:52:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7289, '2005-07-27 12:26:51', 2157, 187, '2005-08-02 18:20:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7290, '2005-07-27 12:28:45', 3652, 423, '2005-08-01 16:18:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7291, '2005-07-27 12:30:47', 310, 263, '2005-08-01 12:45:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7292, '2005-07-27 12:34:14', 795, 468, '2005-08-01 18:16:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7293, '2005-07-27 12:37:28', 3333, 5, '2005-07-30 15:12:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7294, '2005-07-27 12:38:14', 487, 313, '2005-07-30 13:01:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7295, '2005-07-27 12:38:47', 3396, 462, '2005-08-05 10:12:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7296, '2005-07-27 12:39:48', 1681, 400, '2005-08-04 18:24:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7297, '2005-07-27 12:39:48', 1855, 135, '2005-07-29 17:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7298, '2005-07-27 12:45:14', 1653, 121, '2005-07-30 07:02:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7299, '2005-07-27 12:49:56', 3002, 286, '2005-08-03 12:25:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7300, '2005-07-27 12:50:17', 4561, 272, '2005-08-04 18:43:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7301, '2005-07-27 12:50:23', 3367, 93, '2005-08-01 09:43:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7302, '2005-07-27 12:52:13', 4539, 477, '2005-07-29 15:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7303, '2005-07-27 12:54:39', 1398, 163, '2005-07-31 09:26:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7304, '2005-07-27 12:56:56', 1162, 74, '2005-08-05 09:19:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7305, '2005-07-27 12:57:06', 2464, 229, '2005-07-30 13:13:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7306, '2005-07-27 12:57:26', 2269, 207, '2005-08-03 09:35:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7307, '2005-07-27 12:59:10', 3882, 595, '2005-07-29 11:35:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7308, '2005-07-27 13:00:25', 1452, 229, '2005-08-03 16:04:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7309, '2005-07-27 13:00:29', 633, 317, '2005-07-29 12:15:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7310, '2005-07-27 13:00:55', 3711, 103, '2005-07-28 17:54:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7311, '2005-07-27 13:02:54', 2807, 582, '2005-08-04 09:52:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7312, '2005-07-27 13:03:14', 228, 543, '2005-07-31 07:56:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7313, '2005-07-27 13:11:57', 1884, 396, '2005-08-02 07:31:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7314, '2005-07-27 13:13:32', 1376, 11, '2005-08-03 09:24:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7315, '2005-07-27 13:14:56', 974, 208, '2005-08-03 08:44:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7316, '2005-07-27 13:19:03', 3344, 114, '2005-07-28 07:43:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7317, '2005-07-27 13:19:41', 1518, 443, '2005-07-29 16:16:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7318, '2005-07-27 13:25:31', 1954, 301, '2005-07-31 11:44:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7319, '2005-07-27 13:31:25', 2370, 576, '2005-08-04 07:31:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7320, '2005-07-27 13:33:35', 4348, 241, '2005-07-31 13:22:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7321, '2005-07-27 13:33:38', 3525, 38, '2005-08-03 07:35:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7322, '2005-07-27 13:37:26', 1810, 508, '2005-08-03 18:00:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7323, '2005-07-27 13:39:40', 3830, 125, '2005-07-29 08:45:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7324, '2005-07-27 13:42:39', 2572, 462, '2005-08-04 10:33:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7325, '2005-07-27 13:46:55', 1727, 289, '2005-07-28 14:21:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7326, '2005-07-27 13:50:40', 2844, 432, '2005-07-30 08:16:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7327, '2005-07-27 13:53:26', 4074, 508, '2005-08-04 17:58:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7328, '2005-07-27 13:55:18', 663, 26, '2005-08-01 19:52:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7329, '2005-07-27 13:55:34', 906, 226, '2005-08-04 15:15:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7330, '2005-07-27 13:56:46', 3705, 237, '2005-08-04 07:56:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7331, '2005-07-27 13:57:50', 2090, 60, '2005-07-31 08:59:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7332, '2005-07-27 13:58:57', 1761, 151, '2005-08-02 12:40:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7333, '2005-07-27 13:59:11', 1331, 230, '2005-07-30 16:04:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7334, '2005-07-27 13:59:58', 3006, 461, '2005-07-29 11:33:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7335, '2005-07-27 14:06:50', 1219, 219, '2005-08-05 18:27:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7336, '2005-07-27 14:11:45', 2706, 46, '2005-07-28 11:00:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7337, '2005-07-27 14:12:04', 3314, 525, '2005-08-03 14:57:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7338, '2005-07-27 14:13:34', 107, 251, '2005-08-03 18:36:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7339, '2005-07-27 14:17:48', 3343, 316, '2005-07-31 12:47:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7340, '2005-07-27 14:18:10', 1344, 567, '2005-07-30 09:57:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7341, '2005-07-27 14:23:55', 3567, 498, '2005-07-28 14:11:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7342, '2005-07-27 14:25:17', 4083, 504, '2005-08-04 10:02:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7343, '2005-07-27 14:27:13', 1177, 526, '2005-07-30 09:27:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7344, '2005-07-27 14:29:28', 1714, 366, '2005-07-31 15:36:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7345, '2005-07-27 14:29:53', 2434, 572, '2005-08-03 18:38:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7346, '2005-07-27 14:30:42', 741, 2, '2005-08-02 16:48:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7347, '2005-07-27 14:31:24', 3779, 225, '2005-07-31 16:19:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7348, '2005-07-27 14:32:32', 3238, 43, '2005-07-28 17:05:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7349, '2005-07-27 14:33:00', 861, 195, '2005-08-01 15:01:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7350, '2005-07-27 14:34:14', 737, 410, '2005-08-02 19:19:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7351, '2005-07-27 14:37:36', 2147, 445, '2005-07-30 09:58:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7352, '2005-07-27 14:38:29', 35, 429, '2005-07-28 14:24:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7353, '2005-07-27 14:38:39', 1308, 357, '2005-07-31 19:50:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7354, '2005-07-27 14:42:11', 2395, 598, '2005-08-03 18:19:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7355, '2005-07-27 14:45:59', 3803, 115, '2005-08-02 17:23:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7356, '2005-07-27 14:47:35', 309, 397, '2005-07-28 18:10:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7357, '2005-07-27 14:48:31', 1917, 438, '2005-08-02 18:07:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7358, '2005-07-27 14:49:44', 175, 245, '2005-07-28 20:00:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7359, '2005-07-27 14:51:04', 174, 183, '2005-07-31 16:03:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7360, '2005-07-27 14:52:06', 1312, 467, '2005-08-02 12:24:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7361, '2005-07-27 14:53:55', 4567, 463, '2005-07-31 19:48:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7362, '2005-07-27 14:58:27', 1902, 419, '2005-08-01 11:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7363, '2005-07-27 14:58:29', 1649, 407, '2005-08-05 09:02:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7364, '2005-07-27 14:58:40', 3046, 592, '2005-08-03 09:01:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7365, '2005-07-27 15:00:20', 3283, 450, '2005-07-30 12:58:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7366, '2005-07-27 15:01:17', 461, 357, '2005-08-04 20:28:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7367, '2005-07-27 15:05:45', 1738, 383, '2005-08-02 13:46:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7368, '2005-07-27 15:06:05', 2265, 286, '2005-07-31 14:10:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7369, '2005-07-27 15:07:58', 3889, 139, '2005-07-30 09:16:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7370, '2005-07-27 15:15:53', 2022, 89, '2005-08-03 19:53:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7371, '2005-07-27 15:18:42', 1807, 577, '2005-08-01 09:58:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7372, '2005-07-27 15:18:42', 3202, 584, '2005-08-01 15:18:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7373, '2005-07-27 15:19:33', 3074, 488, '2005-08-04 10:45:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7374, '2005-07-27 15:20:57', 3184, 438, '2005-08-05 13:09:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7375, '2005-07-27 15:22:33', 2970, 381, '2005-08-01 20:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7376, '2005-07-27 15:23:02', 488, 2, '2005-08-04 10:35:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7377, '2005-07-27 15:31:28', 1369, 588, '2005-08-02 19:59:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7378, '2005-07-27 15:31:33', 3297, 144, '2005-08-03 17:15:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7379, '2005-07-27 15:36:43', 424, 415, '2005-07-30 16:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7380, '2005-07-27 15:37:01', 988, 348, '2005-08-03 19:24:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7381, '2005-07-27 15:40:26', 1595, 483, '2005-08-02 17:26:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7382, '2005-07-27 15:43:15', 356, 518, '2005-07-28 11:18:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7383, '2005-07-27 15:46:53', 3860, 50, '2005-08-03 11:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7384, '2005-07-27 15:49:45', 3573, 585, '2005-08-04 15:17:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7385, '2005-07-27 15:49:46', 2996, 56, '2005-07-28 13:50:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7386, '2005-07-27 15:52:10', 3569, 190, '2005-08-04 15:13:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7387, '2005-07-27 15:54:19', 3274, 233, '2005-08-03 14:46:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7388, '2005-07-27 15:54:19', 4559, 455, '2005-08-01 17:02:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7389, '2005-07-27 15:56:15', 3822, 156, '2005-07-30 21:28:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7390, '2005-07-27 15:59:19', 1723, 230, '2005-08-04 10:09:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7391, '2005-07-27 16:00:00', 1153, 531, '2005-08-04 18:07:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7392, '2005-07-27 16:01:05', 3159, 204, '2005-08-01 17:23:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7393, '2005-07-27 16:02:52', 2369, 181, '2005-08-02 13:24:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7394, '2005-07-27 16:03:08', 2399, 30, '2005-08-04 11:27:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7395, '2005-07-27 16:03:11', 2888, 411, '2005-07-31 20:26:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7396, '2005-07-27 16:03:53', 3346, 595, '2005-08-05 10:36:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7397, '2005-07-27 16:05:00', 4474, 245, '2005-08-01 20:29:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7398, '2005-07-27 16:07:22', 1572, 51, '2005-08-05 16:16:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7399, '2005-07-27 16:16:02', 1682, 526, '2005-08-03 18:02:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7400, '2005-07-27 16:16:37', 2874, 133, '2005-07-31 12:34:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7401, '2005-07-27 16:17:55', 2759, 583, '2005-08-04 15:48:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7402, '2005-07-27 16:19:40', 2707, 287, '2005-08-05 14:48:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7403, '2005-07-27 16:22:09', 2551, 163, '2005-08-01 15:32:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7404, '2005-07-27 16:24:43', 2359, 190, '2005-07-29 11:40:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7405, '2005-07-27 16:25:11', 2312, 42, '2005-08-01 12:33:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7406, '2005-07-27 16:25:45', 1412, 77, '2005-08-05 20:39:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7407, '2005-07-27 16:29:04', 3093, 410, '2005-08-01 17:47:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7408, '2005-07-27 16:31:40', 625, 371, '2005-07-31 11:56:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7409, '2005-07-27 16:38:24', 2352, 585, '2005-07-30 18:06:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7410, '2005-07-27 16:41:59', 1559, 337, '2005-07-29 22:11:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7411, '2005-07-27 16:42:30', 515, 302, '2005-08-05 17:38:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7412, '2005-07-27 16:44:34', 950, 582, '2005-08-04 15:06:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7413, '2005-07-27 16:45:40', 2909, 254, '2005-07-31 12:02:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7414, '2005-07-27 16:46:07', 3276, 265, '2005-08-02 20:04:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7415, '2005-07-27 16:50:59', 4410, 294, '2005-08-02 11:21:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7416, '2005-07-27 16:55:25', 653, 350, '2005-07-29 11:27:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7417, '2005-07-27 16:58:33', 2952, 214, '2005-07-30 22:17:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7418, '2005-07-27 16:59:09', 3029, 332, '2005-07-29 15:08:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7419, '2005-07-27 17:04:15', 3454, 352, '2005-08-05 21:54:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7420, '2005-07-27 17:09:39', 3505, 547, '2005-07-30 12:30:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7421, '2005-07-27 17:10:05', 3548, 70, '2005-08-05 17:55:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7422, '2005-07-27 17:10:42', 3954, 286, '2005-08-03 19:32:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7423, '2005-07-27 17:11:47', 666, 277, '2005-07-29 12:29:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7424, '2005-07-27 17:14:19', 660, 558, '2005-08-01 19:21:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7425, '2005-07-27 17:18:35', 435, 263, '2005-08-02 11:18:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7426, '2005-07-27 17:19:46', 4420, 239, '2005-07-29 21:41:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7427, '2005-07-27 17:20:16', 2548, 442, '2005-08-03 20:38:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7428, '2005-07-27 17:21:52', 243, 90, '2005-08-05 17:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7429, '2005-07-27 17:24:50', 2160, 515, '2005-08-05 23:02:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7430, '2005-07-27 17:26:14', 4205, 562, '2005-08-01 13:02:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7431, '2005-07-27 17:27:27', 3931, 589, '2005-07-31 18:40:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7432, '2005-07-27 17:31:40', 3169, 132, '2005-07-28 17:44:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7433, '2005-07-27 17:32:20', 1748, 282, '2005-08-01 18:49:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7434, '2005-07-27 17:34:40', 2927, 241, '2005-07-29 15:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7435, '2005-07-27 17:38:44', 1574, 380, '2005-07-30 16:57:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7436, '2005-07-27 17:39:12', 299, 45, '2005-08-01 12:40:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7437, '2005-07-27 17:39:18', 2617, 135, '2005-07-28 18:33:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7438, '2005-07-27 17:40:40', 1364, 52, '2005-08-05 15:25:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7439, '2005-07-27 17:42:31', 4091, 102, '2005-08-05 16:34:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7440, '2005-07-27 17:43:27', 1476, 484, '2005-08-03 22:12:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7441, '2005-07-27 17:46:53', 4039, 198, '2005-07-31 23:05:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7442, '2005-07-27 17:47:00', 2471, 105, '2005-07-28 21:37:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7443, '2005-07-27 17:47:43', 703, 380, '2005-07-29 13:15:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7444, '2005-07-27 17:49:16', 120, 531, '2005-07-28 15:05:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7445, '2005-07-27 17:57:15', 4115, 394, '2005-07-31 20:24:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7446, '2005-07-27 18:00:24', 2337, 486, '2005-07-29 13:40:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7447, '2005-07-27 18:02:08', 1795, 107, '2005-07-29 21:15:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7448, '2005-07-27 18:06:30', 3584, 175, '2005-07-29 15:43:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7449, '2005-07-27 18:17:41', 2084, 421, '2005-08-01 18:52:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7450, '2005-07-27 18:18:35', 3496, 191, '2005-08-04 15:18:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7451, '2005-07-27 18:18:41', 2382, 29, '2005-08-03 13:55:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7452, '2005-07-27 18:26:39', 3482, 285, '2005-08-04 17:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7453, '2005-07-27 18:27:13', 2992, 29, '2005-07-29 23:52:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7454, '2005-07-27 18:27:26', 3248, 75, '2005-07-30 23:50:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7455, '2005-07-27 18:34:41', 3815, 405, '2005-07-31 17:32:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7456, '2005-07-27 18:34:53', 1959, 501, '2005-07-29 17:46:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7457, '2005-07-27 18:35:17', 3635, 510, '2005-07-30 12:41:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7458, '2005-07-27 18:36:17', 2964, 327, '2005-07-31 22:43:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7459, '2005-07-27 18:40:20', 2053, 2, '2005-08-02 21:07:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7460, '2005-07-27 18:41:35', 919, 442, '2005-07-29 15:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7461, '2005-07-27 18:45:15', 1236, 476, '2005-07-29 17:19:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7462, '2005-07-27 18:47:47', 878, 114, '2005-07-29 20:46:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7463, '2005-07-27 18:48:32', 3676, 284, '2005-07-29 23:54:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7464, '2005-07-27 18:49:42', 845, 31, '2005-07-28 20:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7465, '2005-07-27 18:50:30', 2357, 115, '2005-07-30 20:55:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7466, '2005-07-27 18:51:17', 2791, 53, '2005-07-31 16:58:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7467, '2005-07-27 18:51:54', 3869, 240, '2005-08-03 23:27:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7468, '2005-07-27 18:52:27', 3166, 113, '2005-08-03 19:29:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7469, '2005-07-27 18:57:40', 3723, 189, '2005-07-31 00:17:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7470, '2005-07-27 19:01:03', 289, 564, '2005-08-05 19:16:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7471, '2005-07-27 19:02:19', 1776, 95, '2005-07-30 15:12:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7472, '2005-07-27 19:04:19', 1535, 103, '2005-08-03 00:08:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7473, '2005-07-27 19:05:40', 401, 341, '2005-08-05 14:47:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7474, '2005-07-27 19:07:17', 2971, 110, '2005-07-30 00:37:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7475, '2005-07-27 19:07:43', 1670, 255, '2005-08-04 22:12:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7476, '2005-07-27 19:08:56', 2288, 64, '2005-07-31 16:36:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7477, '2005-07-27 19:11:03', 2692, 355, '2005-08-02 19:25:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7478, '2005-07-27 19:16:02', 3791, 521, '2005-08-04 22:30:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7479, '2005-07-27 19:18:17', 218, 434, '2005-07-30 18:55:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7480, '2005-07-27 19:19:53', 452, 344, '2005-08-02 01:01:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7481, '2005-07-27 19:20:25', 1804, 240, '2005-07-29 19:07:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7482, '2005-07-27 19:24:16', 485, 348, '2005-08-05 18:49:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7483, '2005-07-27 19:25:00', 3678, 106, '2005-07-29 21:19:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7484, '2005-07-27 19:28:17', 2746, 211, '2005-07-31 20:05:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7485, '2005-07-27 19:29:09', 631, 362, '2005-07-30 16:28:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7486, '2005-07-27 19:29:24', 4362, 393, '2005-08-02 20:46:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7487, '2005-07-27 19:32:45', 4451, 58, '2005-07-28 15:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7488, '2005-07-27 19:36:15', 554, 365, '2005-08-05 14:14:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7489, '2005-07-27 19:39:38', 3732, 16, '2005-07-30 23:10:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7490, '2005-07-27 19:48:12', 4503, 595, '2005-08-04 17:15:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7491, '2005-07-27 19:53:23', 4261, 239, '2005-07-28 23:25:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7492, '2005-07-27 19:54:18', 908, 155, '2005-07-31 15:36:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7493, '2005-07-27 19:55:46', 2868, 177, '2005-08-02 19:46:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7494, '2005-07-27 19:56:31', 2259, 60, '2005-07-30 14:28:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7495, '2005-07-27 20:01:20', 3446, 426, '2005-07-30 16:40:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7496, '2005-07-27 20:04:05', 2449, 257, '2005-08-02 20:12:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7497, '2005-07-27 20:05:27', 286, 387, '2005-07-30 22:47:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7498, '2005-07-27 20:09:31', 1144, 455, '2005-07-29 23:38:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7499, '2005-07-27 20:10:28', 3503, 157, '2005-07-30 16:24:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7500, '2005-07-27 20:16:03', 609, 160, '2005-07-29 18:50:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7501, '2005-07-27 20:16:59', 1464, 587, '2005-08-04 00:11:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7502, '2005-07-27 20:19:08', 3229, 303, '2005-07-28 18:32:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7503, '2005-07-27 20:23:12', 579, 3, '2005-08-05 18:46:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7504, '2005-07-27 20:24:31', 3354, 283, '2005-07-30 21:25:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7505, '2005-07-27 20:28:03', 1342, 209, '2005-08-03 17:04:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7506, '2005-07-27 20:28:34', 2091, 527, '2005-08-05 18:14:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7507, '2005-07-27 20:31:48', 3618, 512, '2005-08-02 17:27:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7508, '2005-07-27 20:33:08', 3401, 465, '2005-08-01 01:29:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7509, '2005-07-27 20:37:19', 4134, 228, '2005-08-04 19:35:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7510, '2005-07-27 20:37:57', 1617, 257, '2005-08-01 17:14:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7511, '2005-07-27 20:38:40', 4044, 591, '2005-08-04 22:36:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7512, '2005-07-27 20:40:40', 1343, 352, '2005-08-05 01:44:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7513, '2005-07-27 20:51:04', 939, 411, '2005-08-03 20:15:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7514, '2005-07-27 20:51:49', 400, 44, '2005-07-29 18:21:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7515, '2005-07-27 20:52:37', 1211, 390, '2005-08-02 20:17:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7516, '2005-07-27 20:55:28', 2178, 134, '2005-07-30 00:50:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7517, '2005-07-27 20:57:07', 3177, 41, '2005-08-04 15:08:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7518, '2005-07-27 21:01:16', 2676, 257, '2005-08-03 15:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7519, '2005-07-27 21:01:41', 4009, 124, '2005-08-05 19:15:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7520, '2005-07-27 21:02:02', 3875, 191, '2005-07-28 18:18:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7521, '2005-07-27 21:04:42', 3144, 176, '2005-08-03 16:06:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7522, '2005-07-27 21:11:03', 2038, 478, '2005-08-02 16:40:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7523, '2005-07-27 21:11:23', 4153, 410, '2005-07-28 16:37:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7524, '2005-07-27 21:11:44', 4295, 225, '2005-08-03 02:17:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7525, '2005-07-27 21:13:28', 4084, 281, '2005-08-04 19:44:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7526, '2005-07-27 21:13:47', 696, 44, '2005-08-05 15:23:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7527, '2005-07-27 21:14:28', 2124, 426, '2005-08-05 21:08:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7528, '2005-07-27 21:15:25', 1218, 213, '2005-08-03 19:12:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7529, '2005-07-27 21:18:08', 3644, 145, '2005-08-06 00:59:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7530, '2005-07-27 21:18:58', 3810, 98, '2005-07-31 01:51:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7531, '2005-07-27 21:19:34', 2393, 221, '2005-08-06 01:07:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7532, '2005-07-27 21:20:52', 677, 34, '2005-07-30 21:38:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7533, '2005-07-27 21:24:33', 1791, 594, '2005-08-05 16:33:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7534, '2005-07-27 21:26:17', 2276, 282, '2005-08-05 00:23:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7535, '2005-07-27 21:32:39', 772, 123, '2005-08-05 23:42:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7536, '2005-07-27 21:34:09', 3417, 307, '2005-08-02 03:26:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7537, '2005-07-27 21:36:09', 4456, 269, '2005-08-01 01:51:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7538, '2005-07-27 21:38:04', 2486, 361, '2005-08-02 03:14:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7539, '2005-07-27 21:39:42', 1849, 423, '2005-08-06 00:12:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7540, '2005-07-27 21:39:55', 2198, 207, '2005-08-04 18:10:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7541, '2005-07-27 21:40:05', 4100, 206, '2005-07-29 16:13:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7542, '2005-07-27 21:43:04', 1912, 110, '2005-07-30 00:02:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7543, '2005-07-27 21:44:28', 1289, 526, '2005-08-04 21:42:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7544, '2005-07-27 21:47:37', 766, 249, '2005-08-05 02:29:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7545, '2005-07-27 21:48:03', 2541, 292, '2005-08-01 22:23:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7546, '2005-07-27 21:50:09', 3683, 494, '2005-08-05 03:07:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7547, '2005-07-27 21:51:48', 1733, 547, '2005-08-06 01:05:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7548, '2005-07-27 21:53:18', 2194, 484, '2005-08-02 17:50:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7549, '2005-07-27 21:53:21', 1765, 591, '2005-08-05 18:53:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7550, '2005-07-27 21:55:07', 4488, 71, '2005-07-28 23:34:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7551, '2005-07-27 21:59:15', 2635, 304, '2005-07-31 19:54:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7552, '2005-07-27 22:03:41', 2166, 16, '2005-07-28 22:24:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7553, '2005-07-27 22:11:36', 1643, 275, '2005-08-03 17:52:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7554, '2005-07-27 22:12:41', 1805, 135, '2005-08-04 01:34:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7555, '2005-07-27 22:17:05', 3421, 533, '2005-08-02 02:50:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7556, '2005-07-27 22:17:17', 794, 188, '2005-07-28 19:17:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7557, '2005-07-27 22:18:19', 3152, 131, '2005-07-29 00:24:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7558, '2005-07-27 22:19:08', 550, 80, '2005-07-30 21:31:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7559, '2005-07-27 22:20:03', 661, 149, '2005-08-06 00:26:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7560, '2005-07-27 22:20:17', 3574, 562, '2005-08-02 23:00:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7561, '2005-07-27 22:21:05', 3433, 291, '2005-08-04 01:02:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7562, '2005-07-27 22:25:15', 4417, 366, '2005-08-01 01:21:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7563, '2005-07-27 22:25:36', 2709, 453, '2005-08-01 03:59:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7564, '2005-07-27 22:31:17', 2887, 291, '2005-08-01 01:05:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7565, '2005-07-27 22:33:59', 1028, 114, '2005-07-30 03:03:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7566, '2005-07-27 22:34:45', 1802, 144, '2005-08-01 22:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7567, '2005-07-27 22:38:05', 1066, 504, '2005-07-30 17:20:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7568, '2005-07-27 22:38:53', 1578, 296, '2005-07-29 00:51:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7569, '2005-07-27 22:38:53', 2315, 528, '2005-08-05 19:03:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7570, '2005-07-27 22:40:06', 3189, 110, '2005-07-28 23:14:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7571, '2005-07-27 22:43:42', 3850, 368, '2005-07-30 22:17:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7572, '2005-07-27 22:44:29', 3068, 532, '2005-08-01 03:04:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7573, '2005-07-27 22:46:20', 314, 467, '2005-08-04 01:55:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7574, '2005-07-27 22:53:00', 298, 200, '2005-07-29 18:39:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7575, '2005-07-27 22:53:52', 702, 582, '2005-07-29 02:02:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7576, '2005-07-27 22:54:35', 3374, 446, '2005-08-03 03:53:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7577, '2005-07-27 22:56:07', 2723, 332, '2005-08-05 21:23:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7578, '2005-07-27 22:58:17', 4210, 332, '2005-07-29 23:14:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7579, '2005-07-27 23:06:41', 501, 352, '2005-07-31 20:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7580, '2005-07-27 23:07:40', 338, 28, '2005-08-05 02:17:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7581, '2005-07-27 23:14:35', 2051, 166, '2005-07-29 21:30:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7582, '2005-07-27 23:15:14', 3941, 128, '2005-07-29 03:18:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7583, '2005-07-27 23:15:22', 2890, 198, '2005-08-04 04:39:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7584, '2005-07-27 23:15:46', 4390, 338, '2005-08-03 02:18:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7585, '2005-07-27 23:18:22', 467, 440, '2005-07-30 23:08:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7586, '2005-07-27 23:19:29', 15, 316, '2005-07-29 23:04:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7587, '2005-07-27 23:23:03', 655, 113, '2005-08-01 17:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7588, '2005-07-27 23:23:31', 4033, 360, '2005-08-04 02:54:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7589, '2005-07-27 23:23:36', 1569, 32, '2005-08-04 00:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7590, '2005-07-27 23:24:24', 2152, 73, '2005-07-28 19:53:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7591, '2005-07-27 23:25:54', 651, 525, '2005-08-02 22:54:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7592, '2005-07-27 23:26:04', 4105, 316, '2005-07-29 23:48:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7593, '2005-07-27 23:28:47', 1158, 436, '2005-08-02 19:51:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7594, '2005-07-27 23:30:41', 3230, 424, '2005-08-02 04:29:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7595, '2005-07-27 23:32:23', 4313, 390, '2005-08-03 05:28:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7596, '2005-07-27 23:33:57', 2097, 275, '2005-08-01 20:46:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7597, '2005-07-27 23:35:49', 2856, 169, '2005-07-30 21:38:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7598, '2005-07-27 23:36:01', 4545, 438, '2005-07-29 23:35:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7599, '2005-07-27 23:38:46', 3272, 87, '2005-07-28 22:52:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7600, '2005-07-27 23:41:18', 3492, 107, '2005-08-06 04:40:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7601, '2005-07-27 23:48:15', 903, 228, '2005-07-29 02:45:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7602, '2005-07-27 23:48:35', 2516, 366, '2005-08-04 17:58:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7603, '2005-07-27 23:54:44', 124, 497, '2005-07-29 01:24:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7604, '2005-07-27 23:54:52', 3720, 406, '2005-08-05 03:04:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7605, '2005-07-27 23:57:01', 1391, 576, '2005-08-03 04:11:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7606, '2005-07-28 00:02:15', 637, 201, '2005-07-29 03:14:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7607, '2005-07-28 00:05:53', 3914, 293, '2005-07-31 04:13:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7608, '2005-07-28 00:08:36', 1256, 167, '2005-07-28 18:13:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7609, '2005-07-28 00:11:00', 3655, 179, '2005-07-31 03:04:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7610, '2005-07-28 00:11:35', 1279, 450, '2005-07-31 00:33:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7611, '2005-07-28 00:11:47', 3347, 467, '2005-07-28 18:35:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7612, '2005-07-28 00:11:55', 1411, 563, '2005-07-30 00:47:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7613, '2005-07-28 00:13:58', 4253, 202, '2005-08-06 05:36:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7614, '2005-07-28 00:14:38', 3475, 440, '2005-07-29 18:18:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7615, '2005-07-28 00:15:24', 3884, 373, '2005-07-31 02:00:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7616, '2005-07-28 00:15:26', 3790, 9, '2005-07-30 21:52:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7617, '2005-07-28 00:18:40', 2904, 340, '2005-08-01 01:17:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7618, '2005-07-28 00:24:14', 774, 271, '2005-08-01 04:35:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7619, '2005-07-28 00:25:41', 1057, 419, '2005-07-30 04:35:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7620, '2005-07-28 00:27:17', 931, 580, '2005-07-31 02:04:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7621, '2005-07-28 00:34:06', 1833, 88, '2005-08-06 00:13:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7622, '2005-07-28 00:37:34', 4014, 198, '2005-07-31 23:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7623, '2005-07-28 00:37:41', 1146, 459, '2005-08-04 19:38:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7624, '2005-07-28 00:37:44', 2756, 415, '2005-07-30 21:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7625, '2005-07-28 00:47:56', 3129, 382, '2005-08-02 23:34:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7626, '2005-07-28 00:49:01', 4200, 450, '2005-07-31 00:43:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7627, '2005-07-28 00:56:47', 782, 52, '2005-08-02 04:16:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7628, '2005-07-28 00:58:04', 1240, 516, '2005-08-03 19:16:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7629, '2005-07-28 01:00:09', 2453, 229, '2005-07-30 06:49:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7630, '2005-07-28 01:01:03', 2798, 351, '2005-07-31 01:08:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7631, '2005-07-28 01:01:15', 2437, 132, '2005-08-01 06:16:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7632, '2005-07-28 01:02:40', 3233, 181, '2005-07-30 05:31:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7633, '2005-07-28 01:03:41', 4171, 402, '2005-08-01 23:54:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7634, '2005-07-28 01:07:01', 4487, 365, '2005-07-31 05:00:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7635, '2005-07-28 01:08:11', 55, 413, '2005-08-01 03:32:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7636, '2005-07-28 01:08:36', 202, 51, '2005-08-03 21:36:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7637, '2005-07-28 01:12:25', 87, 91, '2005-08-02 03:48:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7638, '2005-07-28 01:13:26', 1890, 172, '2005-07-28 20:34:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7639, '2005-07-28 01:14:36', 767, 459, '2005-07-29 00:19:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7640, '2005-07-28 01:14:49', 3014, 229, '2005-08-03 21:50:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7641, '2005-07-28 01:15:45', 1868, 475, '2005-08-04 23:50:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7642, '2005-07-28 01:16:51', 3995, 523, '2005-08-02 00:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7643, '2005-07-28 01:19:44', 4369, 407, '2005-08-04 21:16:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7644, '2005-07-28 01:27:33', 882, 173, '2005-07-31 22:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7645, '2005-07-28 01:27:42', 830, 381, '2005-08-03 07:16:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7646, '2005-07-28 01:31:45', 1615, 255, '2005-07-31 07:16:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7647, '2005-07-28 01:35:17', 3079, 36, '2005-08-01 00:14:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7648, '2005-07-28 01:35:33', 797, 310, '2005-08-04 06:21:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7649, '2005-07-28 01:37:26', 2704, 318, '2005-07-28 21:18:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7650, '2005-07-28 01:47:20', 701, 290, '2005-08-05 06:00:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7651, '2005-07-28 01:48:32', 2753, 401, '2005-08-03 03:10:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7652, '2005-07-28 01:50:29', 92, 5, '2005-07-30 22:23:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7653, '2005-07-28 01:58:30', 814, 232, '2005-07-28 23:32:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7654, '2005-07-28 02:00:14', 1009, 360, '2005-07-31 20:50:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7655, '2005-07-28 02:01:11', 2665, 513, '2005-07-30 23:12:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7656, '2005-07-28 02:07:19', 178, 148, '2005-07-31 04:05:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7657, '2005-07-28 02:09:00', 2319, 518, '2005-08-04 21:44:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7658, '2005-07-28 02:09:12', 1798, 272, '2005-07-30 00:54:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7659, '2005-07-28 02:09:45', 1622, 584, '2005-08-02 05:34:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7660, '2005-07-28 02:10:10', 4385, 4, '2005-07-30 04:29:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7661, '2005-07-28 02:10:27', 3060, 256, '2005-08-05 03:45:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7662, '2005-07-28 02:16:08', 1017, 534, '2005-08-03 21:51:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7663, '2005-07-28 02:19:48', 832, 470, '2005-07-30 21:43:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7664, '2005-07-28 02:24:23', 1989, 461, '2005-07-29 23:01:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7665, '2005-07-28 02:28:30', 1455, 590, '2005-07-31 20:42:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7666, '2005-07-28 02:35:12', 688, 196, '2005-08-05 05:43:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7667, '2005-07-28 02:37:22', 2415, 443, '2005-08-05 21:37:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7668, '2005-07-28 02:41:31', 3880, 508, '2005-08-02 06:08:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7669, '2005-07-28 02:44:07', 2624, 483, '2005-07-29 00:54:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7670, '2005-07-28 02:44:25', 1356, 252, '2005-07-29 21:55:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7671, '2005-07-28 02:48:31', 3464, 442, '2005-07-30 23:04:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7672, '2005-07-28 02:49:41', 573, 542, '2005-08-04 02:38:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7673, '2005-07-28 02:53:53', 2368, 409, '2005-08-06 00:07:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7674, '2005-07-28 02:54:30', 682, 177, '2005-08-05 23:09:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7675, '2005-07-28 02:55:20', 153, 189, '2005-07-31 05:27:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7676, '2005-07-28 02:55:27', 1110, 508, '2005-08-01 03:50:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7677, '2005-07-28 02:56:37', 4464, 566, '2005-07-31 02:21:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7678, '2005-07-28 02:58:16', 3398, 510, '2005-08-06 04:22:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7679, '2005-07-28 02:58:39', 1063, 444, '2005-08-02 04:58:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7680, '2005-07-28 02:59:08', 1784, 559, '2005-08-03 03:37:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7681, '2005-07-28 03:07:09', 1176, 432, '2005-07-29 08:30:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7682, '2005-07-28 03:07:29', 3296, 400, '2005-08-04 08:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7683, '2005-07-28 03:11:29', 1760, 73, '2005-08-04 00:14:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7684, '2005-07-28 03:11:54', 3365, 40, '2005-07-31 04:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7685, '2005-07-28 03:13:00', 2213, 468, '2005-08-01 00:29:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7686, '2005-07-28 03:19:23', 2144, 184, '2005-08-04 05:17:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7687, '2005-07-28 03:20:26', 689, 325, '2005-08-02 05:48:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7688, '2005-07-28 03:20:47', 1179, 491, '2005-08-06 06:07:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7689, '2005-07-28 03:21:24', 1803, 253, '2005-07-31 08:01:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7690, '2005-07-28 03:26:21', 1076, 150, '2005-07-29 00:08:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7691, '2005-07-28 03:30:09', 1579, 112, '2005-07-29 21:31:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7692, '2005-07-28 03:30:21', 267, 392, '2005-07-30 22:25:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7693, '2005-07-28 03:31:22', 2479, 148, '2005-07-31 06:42:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7694, '2005-07-28 03:39:25', 2892, 538, '2005-07-31 05:47:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7695, '2005-07-28 03:41:13', 2742, 323, '2005-08-06 05:06:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7696, '2005-07-28 03:41:35', 3463, 56, '2005-08-06 05:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7697, '2005-07-28 03:43:45', 3966, 377, '2005-08-03 07:55:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7698, '2005-07-28 03:44:14', 3650, 561, '2005-08-04 03:44:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7699, '2005-07-28 03:52:21', 4332, 53, '2005-08-01 05:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7700, '2005-07-28 03:54:14', 3546, 124, '2005-08-05 06:20:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7701, '2005-07-28 03:54:28', 1604, 306, '2005-08-01 08:39:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7702, '2005-07-28 03:56:05', 253, 349, '2005-07-31 03:29:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7703, '2005-07-28 03:59:21', 2150, 3, '2005-08-05 08:52:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7704, '2005-07-28 04:02:13', 2342, 265, '2005-08-04 00:51:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7705, '2005-07-28 04:02:58', 1072, 22, '2005-08-05 01:19:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7706, '2005-07-28 04:03:17', 994, 263, '2005-07-29 22:16:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7707, '2005-07-28 04:07:47', 2563, 232, '2005-07-29 02:02:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7708, '2005-07-28 04:19:15', 398, 363, '2005-08-04 04:41:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7709, '2005-07-28 04:22:14', 3800, 81, '2005-07-31 09:18:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7710, '2005-07-28 04:24:07', 3716, 77, '2005-08-03 22:49:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7711, '2005-07-28 04:26:42', 2695, 426, '2005-07-29 07:30:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7712, '2005-07-28 04:29:53', 3256, 361, '2005-08-02 00:57:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7713, '2005-07-28 04:32:14', 2018, 572, '2005-08-03 04:30:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7714, '2005-07-28 04:32:30', 940, 70, '2005-08-02 07:10:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7715, '2005-07-28 04:32:38', 3210, 512, '2005-08-05 00:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7716, '2005-07-28 04:33:15', 1493, 284, '2005-08-04 00:08:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7717, '2005-07-28 04:33:54', 730, 459, '2005-07-30 02:46:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7718, '2005-07-28 04:37:59', 3587, 4, '2005-07-29 09:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7719, '2005-07-28 04:39:09', 2481, 286, '2005-08-05 03:15:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7720, '2005-07-28 04:41:44', 185, 520, '2005-08-04 06:51:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7721, '2005-07-28 04:42:58', 2228, 83, '2005-07-31 07:52:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7722, '2005-07-28 04:44:58', 3828, 309, '2005-07-30 01:29:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7723, '2005-07-28 04:45:37', 3263, 147, '2005-07-30 09:03:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7724, '2005-07-28 04:46:30', 346, 3, '2005-08-04 08:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7725, '2005-07-28 04:47:14', 1922, 326, '2005-08-04 09:03:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7726, '2005-07-28 04:52:19', 2578, 219, '2005-08-04 09:05:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7727, '2005-07-28 04:52:43', 2274, 123, '2005-08-03 01:12:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7728, '2005-07-28 04:56:33', 492, 130, '2005-07-31 07:54:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7729, '2005-07-28 04:57:57', 1491, 89, '2005-07-30 09:38:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7730, '2005-07-28 04:59:48', 3118, 155, '2005-08-04 04:35:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7731, '2005-07-28 05:01:18', 1533, 413, '2005-07-29 02:22:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7732, '2005-07-28 05:03:32', 3597, 158, '2005-07-29 10:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7733, '2005-07-28 05:04:47', 10, 82, '2005-08-05 05:12:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7734, '2005-07-28 05:08:44', 2726, 135, '2005-07-30 09:42:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7735, '2005-07-28 05:09:56', 3949, 372, '2005-07-31 23:34:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7736, '2005-07-28 05:12:04', 4466, 205, '2005-08-05 02:28:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7737, '2005-07-28 05:15:03', 1235, 494, '2005-08-04 01:24:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7738, '2005-07-28 05:21:42', 80, 10, '2005-08-03 09:46:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7739, '2005-07-28 05:21:51', 1554, 186, '2005-07-30 02:06:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7740, '2005-07-28 05:23:36', 3613, 395, '2005-08-01 02:20:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7741, '2005-07-28 05:25:55', 3917, 591, '2005-08-02 02:40:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7742, '2005-07-28 05:33:16', 1808, 49, '2005-08-06 01:04:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7743, '2005-07-28 05:36:13', 2883, 210, '2005-08-03 11:28:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7744, '2005-07-28 05:38:20', 1863, 288, '2005-07-31 11:00:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7745, '2005-07-28 05:46:28', 1014, 285, '2005-08-06 07:44:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7746, '2005-07-28 05:48:56', 176, 299, '2005-08-04 07:33:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7747, '2005-07-28 05:50:11', 1775, 78, '2005-08-03 09:51:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7748, '2005-07-28 05:52:23', 3523, 415, '2005-07-31 01:35:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7749, '2005-07-28 05:53:36', 3585, 232, '2005-08-01 03:49:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7750, '2005-07-28 05:55:30', 820, 220, '2005-08-06 04:32:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7751, '2005-07-28 05:56:13', 4425, 176, '2005-08-05 08:08:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7752, '2005-07-28 06:01:00', 2218, 209, '2005-08-03 06:09:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7753, '2005-07-28 06:09:19', 3071, 531, '2005-08-06 06:17:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7754, '2005-07-28 06:10:55', 1981, 138, '2005-07-29 02:46:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7755, '2005-07-28 06:22:18', 1247, 449, '2005-08-06 11:38:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7756, '2005-07-28 06:22:52', 1611, 469, '2005-08-05 11:55:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7757, '2005-07-28 06:23:00', 3445, 502, '2005-07-30 12:02:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7758, '2005-07-28 06:23:41', 4333, 356, '2005-08-03 06:06:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7759, '2005-07-28 06:28:45', 3381, 405, '2005-08-03 11:38:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7760, '2005-07-28 06:29:45', 409, 307, '2005-08-03 01:36:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7761, '2005-07-28 06:31:45', 3568, 112, '2005-07-30 01:36:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7762, '2005-07-28 06:34:23', 3234, 462, '2005-08-05 09:55:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7763, '2005-07-28 06:35:16', 2461, 116, '2005-08-03 02:46:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7764, '2005-07-28 06:40:05', 3537, 142, '2005-07-30 02:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7765, '2005-07-28 06:40:33', 4098, 294, '2005-07-31 01:25:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7766, '2005-07-28 06:41:57', 2774, 292, '2005-08-06 11:21:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7767, '2005-07-28 06:42:02', 329, 139, '2005-08-05 11:19:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7768, '2005-07-28 06:44:03', 2450, 123, '2005-07-29 09:46:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7769, '2005-07-28 06:45:23', 3250, 30, '2005-07-30 12:18:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7770, '2005-07-28 06:49:35', 1486, 507, '2005-08-06 08:16:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7771, '2005-07-28 06:52:12', 1003, 175, '2005-07-30 12:48:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7772, '2005-07-28 06:59:09', 986, 552, '2005-08-01 10:49:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7773, '2005-07-28 07:02:17', 4143, 380, '2005-07-30 04:16:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7774, '2005-07-28 07:03:25', 3483, 259, '2005-08-03 02:05:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7775, '2005-07-28 07:04:36', 3795, 475, '2005-08-03 06:36:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7776, '2005-07-28 07:04:36', 4170, 385, '2005-08-01 09:32:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7777, '2005-07-28 07:04:42', 4422, 287, '2005-07-29 01:57:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7778, '2005-07-28 07:10:11', 1044, 248, '2005-08-05 05:09:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7779, '2005-07-28 07:11:11', 3663, 414, '2005-07-30 11:12:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7780, '2005-07-28 07:11:55', 3069, 236, '2005-08-06 05:41:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7781, '2005-07-28 07:13:20', 541, 539, '2005-08-06 05:43:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7782, '2005-07-28 07:13:40', 3770, 199, '2005-08-05 06:50:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7783, '2005-07-28 07:14:43', 3817, 581, '2005-08-01 05:03:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7784, '2005-07-28 07:15:32', 3611, 505, '2005-08-06 05:00:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7785, '2005-07-28 07:16:11', 4277, 460, '2005-08-02 03:43:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7786, '2005-07-28 07:18:26', 2285, 222, '2005-07-29 03:00:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7787, '2005-07-28 07:19:02', 2191, 203, '2005-08-06 02:38:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7788, '2005-07-28 07:21:55', 95, 487, '2005-08-03 06:33:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7789, '2005-07-28 07:22:07', 2837, 426, '2005-08-06 10:47:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7790, '2005-07-28 07:22:35', 2327, 189, '2005-07-30 02:59:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7791, '2005-07-28 07:22:51', 822, 514, '2005-07-30 03:09:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7792, '2005-07-28 07:24:02', 3736, 236, '2005-08-04 11:13:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7793, '2005-07-28 07:26:14', 24, 32, '2005-08-03 07:45:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7794, '2005-07-28 07:28:03', 4509, 510, '2005-08-06 12:32:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7795, '2005-07-28 07:28:16', 1278, 38, '2005-07-31 12:03:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7796, '2005-07-28 07:39:39', 622, 419, '2005-08-02 05:34:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7797, '2005-07-28 07:41:07', 4180, 370, '2005-07-31 04:13:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7798, '2005-07-28 07:41:59', 3281, 236, '2005-07-31 12:36:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7799, '2005-07-28 07:42:09', 2163, 384, '2005-08-02 10:02:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7800, '2005-07-28 07:50:59', 3386, 499, '2005-07-29 07:31:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7801, '2005-07-28 07:51:56', 2052, 9, '2005-07-30 12:18:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7802, '2005-07-28 07:51:57', 1108, 298, '2005-07-29 09:32:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7803, '2005-07-28 07:52:13', 3438, 449, '2005-08-03 13:35:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7804, '2005-07-28 07:56:00', 592, 249, '2005-07-30 10:33:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7805, '2005-07-28 07:56:41', 3204, 366, '2005-08-04 06:53:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7806, '2005-07-28 07:58:17', 4317, 440, '2005-08-06 10:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7807, '2005-07-28 07:58:27', 2204, 504, '2005-08-01 02:48:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7808, '2005-07-28 07:58:56', 4052, 327, '2005-08-02 10:49:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7809, '2005-07-28 07:59:46', 4150, 94, '2005-08-02 02:56:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7810, '2005-07-28 08:00:38', 30, 537, '2005-08-02 06:14:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7811, '2005-07-28 08:06:01', 3891, 347, '2005-07-30 10:08:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7812, '2005-07-28 08:06:52', 4556, 237, '2005-07-31 09:57:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7813, '2005-07-28 08:08:27', 4216, 411, '2005-07-30 03:08:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7814, '2005-07-28 08:09:48', 2662, 258, '2005-08-01 13:14:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7815, '2005-07-28 08:14:11', 3551, 300, '2005-07-30 02:34:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7816, '2005-07-28 08:14:12', 1422, 283, '2005-07-30 08:00:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7817, '2005-07-28 08:20:55', 600, 259, '2005-07-30 11:55:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7818, '2005-07-28 08:25:00', 1672, 301, '2005-07-29 14:07:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7819, '2005-07-28 08:27:14', 3182, 100, '2005-08-02 12:34:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7820, '2005-07-28 08:28:51', 4475, 459, '2005-08-05 10:00:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7821, '2005-07-28 08:31:23', 1184, 433, '2005-08-03 05:08:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7822, '2005-07-28 08:31:45', 1428, 156, '2005-07-31 11:06:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7823, '2005-07-28 08:32:53', 84, 428, '2005-08-06 11:59:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7824, '2005-07-28 08:34:47', 2241, 153, '2005-08-05 09:43:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7825, '2005-07-28 08:34:57', 4340, 348, '2005-08-06 02:45:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7826, '2005-07-28 08:35:51', 1473, 214, '2005-08-05 07:57:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7827, '2005-07-28 08:37:22', 659, 422, '2005-07-31 04:27:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7828, '2005-07-28 08:40:46', 1710, 212, '2005-07-30 14:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7829, '2005-07-28 08:43:39', 111, 5, '2005-08-04 14:33:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7830, '2005-07-28 08:43:49', 4492, 144, '2005-08-04 09:30:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7831, '2005-07-28 08:44:21', 4436, 499, '2005-07-30 03:25:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7832, '2005-07-28 08:46:11', 284, 92, '2005-08-04 06:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7833, '2005-07-28 08:46:14', 1166, 263, '2005-08-04 06:13:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7834, '2005-07-28 08:46:43', 4124, 278, '2005-07-31 07:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7835, '2005-07-28 08:49:39', 43, 547, '2005-08-02 07:16:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7836, '2005-07-28 08:55:27', 1770, 481, '2005-08-05 09:35:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7837, '2005-07-28 08:58:32', 115, 374, '2005-07-29 14:11:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7838, '2005-07-28 09:00:21', 2222, 550, '2005-07-29 05:52:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7839, '2005-07-28 09:01:13', 914, 518, '2005-08-04 11:46:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7840, '2005-07-28 09:03:02', 2899, 482, '2005-08-06 06:15:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7841, '2005-07-28 09:04:45', 1092, 1, '2005-07-30 12:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7842, '2005-07-28 09:10:06', 2447, 276, '2005-08-04 06:52:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7843, '2005-07-28 09:10:22', 3962, 75, '2005-08-01 11:27:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7844, '2005-07-28 09:16:19', 4220, 187, '2005-08-05 14:06:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7845, '2005-07-28 09:18:07', 38, 352, '2005-08-04 10:23:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7846, '2005-07-28 09:21:18', 4201, 309, '2005-08-06 07:10:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7847, '2005-07-28 09:23:14', 3602, 323, '2005-08-02 11:02:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7848, '2005-07-28 09:24:31', 162, 509, '2005-08-05 05:11:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7849, '2005-07-28 09:30:02', 996, 423, '2005-08-06 12:41:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7850, '2005-07-28 09:31:13', 2913, 118, '2005-08-02 14:06:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7851, '2005-07-28 09:31:58', 3596, 253, '2005-08-04 09:58:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7852, '2005-07-28 09:34:29', 3462, 123, '2005-07-30 05:48:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7853, '2005-07-28 09:36:38', 4053, 318, '2005-07-29 15:01:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7854, '2005-07-28 09:42:31', 3531, 84, '2005-08-02 09:25:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7855, '2005-07-28 09:43:02', 2474, 288, '2005-07-30 12:57:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7856, '2005-07-28 09:48:24', 2376, 375, '2005-07-29 09:49:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7857, '2005-07-28 09:49:40', 4027, 500, '2005-08-01 05:34:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7858, '2005-07-28 09:50:18', 992, 144, '2005-08-05 14:33:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7859, '2005-07-28 09:57:17', 3392, 547, '2005-08-04 06:04:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7860, '2005-07-28 09:58:02', 2400, 241, '2005-08-05 06:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7861, '2005-07-28 10:02:01', 1781, 208, '2005-08-06 13:17:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7862, '2005-07-28 10:02:25', 2507, 299, '2005-08-05 13:10:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7863, '2005-07-28 10:05:46', 1212, 182, '2005-07-29 14:42:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7864, '2005-07-28 10:06:10', 1238, 20, '2005-08-04 08:38:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7865, '2005-07-28 10:07:04', 2334, 148, '2005-08-06 08:16:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7866, '2005-07-28 10:08:01', 1602, 101, '2005-08-04 09:29:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7867, '2005-07-28 10:08:54', 713, 297, '2005-07-30 10:26:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7868, '2005-07-28 10:08:55', 3589, 43, '2005-07-30 11:52:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7869, '2005-07-28 10:13:15', 3005, 298, '2005-08-03 12:58:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7870, '2005-07-28 10:16:03', 970, 240, '2005-07-31 16:06:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7871, '2005-07-28 10:16:37', 3990, 491, '2005-08-05 11:24:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7872, '2005-07-28 10:18:16', 826, 66, '2005-07-31 10:57:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7873, '2005-07-28 10:19:46', 2947, 82, '2005-07-31 04:43:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7874, '2005-07-28 10:21:52', 2981, 86, '2005-08-06 16:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7875, '2005-07-28 10:23:48', 3693, 504, '2005-08-02 12:09:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7876, '2005-07-28 10:24:22', 3563, 577, '2005-08-04 07:15:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7877, '2005-07-28 10:25:36', 2576, 65, '2005-08-05 12:46:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7878, '2005-07-28 10:27:10', 1564, 141, '2005-07-29 11:22:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7879, '2005-07-28 10:27:46', 1969, 125, '2005-07-31 07:48:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7880, '2005-07-28 10:30:37', 3670, 182, '2005-08-03 08:05:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7881, '2005-07-28 10:33:22', 533, 249, '2005-08-02 12:10:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7882, '2005-07-28 10:33:42', 3922, 516, '2005-07-29 13:49:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7883, '2005-07-28 10:37:20', 447, 526, '2005-08-02 05:08:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7884, '2005-07-28 10:37:24', 3871, 502, '2005-07-31 10:31:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7885, '2005-07-28 10:37:41', 4294, 260, '2005-08-05 07:56:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7886, '2005-07-28 10:37:55', 237, 352, '2005-08-04 13:22:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7887, '2005-07-28 10:40:12', 2820, 253, '2005-08-02 06:09:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7888, '2005-07-28 10:40:24', 545, 378, '2005-08-01 16:18:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7889, '2005-07-28 10:43:21', 3123, 416, '2005-07-30 09:11:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7890, '2005-07-28 10:43:40', 3443, 553, '2005-07-31 06:07:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7891, '2005-07-28 10:43:56', 3637, 560, '2005-08-05 14:04:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7892, '2005-07-28 10:46:58', 2717, 397, '2005-07-30 16:03:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7893, '2005-07-28 10:49:27', 3058, 479, '2005-08-02 06:46:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7894, '2005-07-28 10:53:58', 3532, 330, '2005-08-02 13:42:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7895, '2005-07-28 10:57:15', 900, 67, '2005-08-02 15:10:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7896, '2005-07-28 11:00:58', 3561, 389, '2005-08-04 14:30:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7897, '2005-07-28 11:01:51', 1396, 75, '2005-07-31 13:13:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7898, '2005-07-28 11:08:22', 2680, 499, '2005-08-03 12:28:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7899, '2005-07-28 11:10:12', 4130, 452, '2005-08-02 13:20:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7900, '2005-07-28 11:11:33', 2781, 154, '2005-08-05 06:29:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7901, '2005-07-28 11:12:12', 4435, 280, '2005-08-01 08:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7902, '2005-07-28 11:14:19', 3066, 356, '2005-07-30 09:01:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7903, '2005-07-28 11:20:36', 2767, 588, '2005-07-31 09:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7904, '2005-07-28 11:25:39', 316, 477, '2005-08-06 08:22:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7905, '2005-07-28 11:26:57', 4287, 455, '2005-08-02 06:14:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7906, '2005-07-28 11:31:42', 1216, 85, '2005-08-01 11:56:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7907, '2005-07-28 11:32:00', 3252, 433, '2005-07-30 15:27:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7908, '2005-07-28 11:32:57', 3646, 360, '2005-08-03 13:30:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7909, '2005-07-28 11:38:08', 3355, 210, '2005-07-29 13:54:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7910, '2005-07-28 11:44:56', 2044, 480, '2005-08-05 14:37:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7911, '2005-07-28 11:46:45', 390, 3, '2005-07-29 07:19:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7912, '2005-07-28 11:46:58', 745, 127, '2005-08-05 12:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7913, '2005-07-28 11:47:23', 4001, 459, '2005-08-05 06:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7914, '2005-07-28 11:48:08', 2796, 469, '2005-07-30 14:14:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7915, '2005-07-28 11:49:46', 2088, 186, '2005-08-04 12:21:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7916, '2005-07-28 11:49:53', 3877, 13, '2005-07-29 15:01:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7917, '2005-07-28 11:56:57', 2071, 416, '2005-07-29 14:06:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7918, '2005-07-28 11:58:53', 63, 473, '2005-08-04 12:08:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7919, '2005-07-28 11:59:45', 2138, 36, '2005-08-06 11:19:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7920, '2005-07-28 12:01:19', 66, 48, '2005-08-05 07:08:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7921, '2005-07-28 12:02:46', 116, 100, '2005-08-01 12:08:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7922, '2005-07-28 12:05:25', 817, 125, '2005-08-02 12:13:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7923, '2005-07-28 12:08:29', 2273, 458, '2005-08-04 12:30:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7924, '2005-07-28 12:08:53', 656, 97, '2005-07-30 06:45:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7925, '2005-07-28 12:10:02', 1763, 500, '2005-08-02 15:50:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7926, '2005-07-28 12:13:02', 180, 78, '2005-08-05 08:54:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7927, '2005-07-28 12:13:42', 1263, 27, '2005-08-05 12:02:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7928, '2005-07-28 12:15:51', 912, 473, '2005-08-05 06:34:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7929, '2005-07-28 12:16:40', 2652, 307, '2005-07-31 13:09:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7930, '2005-07-28 12:21:08', 4181, 320, '2005-07-30 11:56:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7931, '2005-07-28 12:23:41', 1923, 326, '2005-08-06 09:49:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7932, '2005-07-28 12:24:54', 3738, 462, '2005-07-30 11:33:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7933, '2005-07-28 12:27:27', 3175, 297, '2005-07-29 10:34:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7934, '2005-07-28 12:33:10', 2642, 332, '2005-08-04 07:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7935, '2005-07-28 12:33:17', 3664, 462, '2005-08-04 14:40:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7936, '2005-07-28 12:33:21', 563, 520, '2005-07-30 13:31:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7937, '2005-07-28 12:38:22', 3944, 323, '2005-07-29 09:19:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7938, '2005-07-28 12:39:11', 2579, 114, '2005-08-04 16:56:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7939, '2005-07-28 12:45:47', 2004, 37, '2005-07-30 18:32:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7940, '2005-07-28 12:46:47', 901, 409, '2005-07-29 06:46:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7941, '2005-07-28 12:47:20', 439, 566, '2005-08-01 08:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7942, '2005-07-28 12:49:44', 1636, 56, '2005-07-31 18:07:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7943, '2005-07-28 12:50:55', 2914, 346, '2005-08-04 11:29:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7944, '2005-07-28 12:51:22', 3148, 504, '2005-07-30 12:19:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7945, '2005-07-28 12:53:58', 3326, 316, '2005-08-03 14:04:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7946, '2005-07-28 13:01:22', 99, 90, '2005-08-03 15:27:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7947, '2005-07-28 13:05:50', 2504, 279, '2005-08-02 11:16:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7948, '2005-07-28 13:06:16', 215, 589, '2005-08-05 08:38:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7949, '2005-07-28 13:07:24', 2145, 487, '2005-08-02 09:41:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7950, '2005-07-28 13:21:00', 2286, 122, '2005-08-05 18:47:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7951, '2005-07-28 13:21:16', 3979, 237, '2005-08-06 08:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7952, '2005-07-28 13:23:49', 3313, 158, '2005-08-01 08:50:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7953, '2005-07-28 13:24:32', 4471, 319, '2005-08-05 16:09:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7954, '2005-07-28 13:25:05', 3735, 145, '2005-07-29 18:50:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7955, '2005-07-28 13:31:36', 1519, 522, '2005-07-30 10:03:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7956, '2005-07-28 13:32:17', 4335, 118, '2005-08-06 14:51:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7957, '2005-07-28 13:34:08', 1623, 78, '2005-08-05 07:58:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7958, '2005-07-28 13:34:34', 421, 593, '2005-07-29 16:03:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7959, '2005-07-28 13:43:20', 1549, 178, '2005-08-02 12:13:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7960, '2005-07-28 13:47:08', 2718, 324, '2005-08-03 15:17:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7961, '2005-07-28 13:47:21', 3284, 45, '2005-08-01 09:33:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7962, '2005-07-28 13:48:09', 1746, 126, '2005-08-03 19:21:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7963, '2005-07-28 13:48:38', 921, 247, '2005-08-06 19:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7964, '2005-07-28 13:49:58', 2528, 574, '2005-08-03 10:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7965, '2005-07-28 13:52:57', 3671, 134, '2005-07-29 14:54:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7966, '2005-07-28 13:53:54', 2514, 91, '2005-08-06 15:32:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7967, '2005-07-28 13:56:51', 2040, 187, '2005-08-03 19:38:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7968, '2005-07-28 13:57:35', 3865, 597, '2005-08-04 13:40:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7969, '2005-07-28 13:57:37', 2224, 123, '2005-08-04 19:31:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7970, '2005-07-28 13:58:38', 998, 507, '2005-08-02 12:27:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7971, '2005-07-28 14:00:47', 1910, 445, '2005-08-02 10:01:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7972, '2005-07-28 14:07:46', 2930, 269, '2005-08-01 11:28:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7973, '2005-07-28 14:10:06', 3936, 339, '2005-07-29 11:26:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7974, '2005-07-28 14:11:57', 2442, 380, '2005-08-02 19:25:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7975, '2005-07-28 14:12:47', 2565, 211, '2005-08-05 09:18:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7976, '2005-07-28 14:13:24', 2296, 205, '2005-08-05 09:01:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7977, '2005-07-28 14:15:54', 3162, 389, '2005-08-01 18:58:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7978, '2005-07-28 14:16:14', 508, 431, '2005-08-01 12:53:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7979, '2005-07-28 14:16:30', 3303, 94, '2005-08-03 09:39:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7980, '2005-07-28 14:16:49', 1019, 329, '2005-08-05 09:20:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7981, '2005-07-28 14:18:25', 90, 392, '2005-08-04 15:21:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7982, '2005-07-28 14:19:59', 668, 71, '2005-07-29 14:09:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7983, '2005-07-28 14:23:01', 1836, 115, '2005-07-29 11:51:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7984, '2005-07-28 14:27:51', 2893, 208, '2005-08-04 17:34:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7985, '2005-07-28 14:29:01', 4022, 388, '2005-08-03 17:20:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7986, '2005-07-28 14:30:13', 1283, 395, '2005-08-05 09:35:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7987, '2005-07-28 14:36:52', 288, 443, '2005-08-05 16:49:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7988, '2005-07-28 14:37:18', 2906, 517, '2005-08-05 10:53:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7989, '2005-07-28 14:39:05', 3196, 149, '2005-08-05 13:58:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7990, '2005-07-28 14:43:08', 188, 232, '2005-08-01 10:51:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7991, '2005-07-28 14:45:45', 1133, 59, '2005-07-29 15:05:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7992, '2005-07-28 14:53:06', 1851, 33, '2005-07-29 18:17:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7993, '2005-07-28 14:56:41', 2926, 353, '2005-08-01 17:01:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7994, '2005-07-28 14:56:54', 2431, 21, '2005-07-30 09:56:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7995, '2005-07-28 15:00:09', 536, 89, '2005-08-01 12:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7996, '2005-07-28 15:00:49', 2171, 408, '2005-08-04 20:58:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7997, '2005-07-28 15:02:25', 1845, 591, '2005-08-04 14:35:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7998, '2005-07-28 15:08:48', 1397, 598, '2005-07-31 16:14:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (7999, '2005-07-28 15:10:14', 2750, 170, '2005-08-06 17:08:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8000, '2005-07-28 15:10:25', 1644, 212, '2005-08-06 19:15:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8001, '2005-07-28 15:10:55', 2570, 10, '2005-08-05 18:23:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8002, '2005-07-28 15:11:00', 22, 449, '2005-07-31 15:46:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8003, '2005-07-28 15:11:27', 2775, 89, '2005-08-04 18:35:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8004, '2005-07-28 15:14:07', 4428, 393, '2005-07-30 19:32:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8005, '2005-07-28 15:15:11', 670, 488, '2005-07-29 14:54:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8006, '2005-07-28 15:15:41', 3959, 109, '2005-08-05 19:29:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8007, '2005-07-28 15:22:27', 1942, 525, '2005-07-30 13:06:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8008, '2005-07-28 15:25:55', 2093, 41, '2005-08-04 13:16:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8009, '2005-07-28 15:25:58', 337, 372, '2005-08-04 10:16:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8010, '2005-07-28 15:26:20', 68, 467, '2005-08-04 18:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8011, '2005-07-28 15:26:39', 4274, 497, '2005-07-30 13:59:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8012, '2005-07-28 15:29:00', 1513, 343, '2005-08-05 12:28:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8013, '2005-07-28 15:30:26', 2074, 403, '2005-08-05 16:29:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8014, '2005-07-28 15:32:07', 2339, 11, '2005-07-31 20:52:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8015, '2005-07-28 15:33:03', 1814, 23, '2005-07-30 15:32:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8016, '2005-07-28 15:35:41', 516, 391, '2005-07-30 20:06:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8017, '2005-07-28 15:35:41', 1764, 328, '2005-08-01 19:12:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8018, '2005-07-28 15:36:48', 4129, 377, '2005-08-06 20:04:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8019, '2005-07-28 15:37:43', 1844, 84, '2005-08-04 15:40:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8020, '2005-07-28 15:43:32', 4459, 498, '2005-08-05 12:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8021, '2005-07-28 15:45:24', 1920, 501, '2005-08-04 10:49:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8022, '2005-07-28 15:48:56', 294, 314, '2005-08-06 13:40:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8023, '2005-07-28 15:53:29', 2133, 411, '2005-07-31 12:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8024, '2005-07-28 15:55:40', 1735, 90, '2005-08-02 09:56:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8025, '2005-07-28 16:03:27', 2932, 421, '2005-08-03 21:58:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8026, '2005-07-28 16:05:38', 4225, 511, '2005-07-29 21:28:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8027, '2005-07-28 16:09:57', 1335, 436, '2005-08-05 18:17:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8028, '2005-07-28 16:11:15', 2715, 137, '2005-08-05 15:11:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8029, '2005-07-28 16:11:21', 4273, 61, '2005-08-05 13:52:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8030, '2005-07-28 16:12:53', 2633, 30, '2005-07-31 17:15:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8031, '2005-07-28 16:15:49', 2196, 40, '2005-08-02 18:27:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8032, '2005-07-28 16:17:00', 431, 230, '2005-07-29 13:32:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8033, '2005-07-28 16:18:23', 4268, 1, '2005-07-30 17:56:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8034, '2005-07-28 16:20:26', 1997, 502, '2005-08-04 19:11:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8035, '2005-07-28 16:23:01', 1503, 14, '2005-08-05 10:52:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8036, '2005-07-28 16:27:43', 2741, 412, '2005-08-01 13:41:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8037, '2005-07-28 16:31:20', 3973, 409, '2005-07-31 12:18:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8038, '2005-07-28 16:32:55', 1225, 30, '2005-07-30 21:08:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8039, '2005-07-28 16:35:16', 1996, 203, '2005-07-30 14:49:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8040, '2005-07-28 16:39:43', 4543, 163, '2005-08-02 20:00:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8041, '2005-07-28 16:39:56', 763, 357, '2005-07-30 18:44:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8042, '2005-07-28 16:45:11', 4325, 14, '2005-08-04 17:16:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8043, '2005-07-28 16:45:44', 208, 577, '2005-08-01 12:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8044, '2005-07-28 16:49:12', 879, 442, '2005-08-02 22:41:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8045, '2005-07-28 16:49:38', 3427, 368, '2005-08-03 15:42:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8046, '2005-07-28 16:49:41', 2873, 120, '2005-07-31 21:33:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8047, '2005-07-28 16:49:43', 2936, 292, '2005-08-03 14:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8048, '2005-07-28 16:50:26', 2721, 182, '2005-08-06 19:20:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8049, '2005-07-28 16:51:58', 673, 42, '2005-07-31 22:18:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8050, '2005-07-28 16:55:47', 1864, 488, '2005-08-02 13:20:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8051, '2005-07-28 16:56:16', 4405, 192, '2005-07-29 22:48:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8052, '2005-07-28 16:57:31', 2460, 166, '2005-08-03 18:03:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8053, '2005-07-28 16:59:41', 1511, 526, '2005-08-03 22:28:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8054, '2005-07-28 17:02:18', 1062, 225, '2005-08-06 11:55:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8055, '2005-07-28 17:02:32', 4162, 304, '2005-07-31 22:05:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8056, '2005-07-28 17:04:15', 4018, 589, '2005-08-03 19:11:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8057, '2005-07-28 17:07:13', 4177, 483, '2005-08-03 16:25:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8058, '2005-07-28 17:07:49', 2148, 404, '2005-08-03 22:57:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8059, '2005-07-28 17:09:59', 2611, 372, '2005-07-31 15:42:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8060, '2005-07-28 17:10:02', 3765, 577, '2005-08-05 17:11:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8061, '2005-07-28 17:12:53', 650, 467, '2005-08-05 13:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8062, '2005-07-28 17:15:06', 1384, 317, '2005-07-30 16:56:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8063, '2005-07-28 17:15:11', 935, 163, '2005-08-04 16:45:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8064, '2005-07-28 17:15:38', 3788, 488, '2005-08-04 18:04:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8065, '2005-07-28 17:15:48', 413, 220, '2005-08-04 15:49:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8066, '2005-07-28 17:20:09', 3208, 462, '2005-07-31 18:36:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8067, '2005-07-28 17:20:17', 3923, 209, '2005-07-29 21:55:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8068, '2005-07-28 17:22:28', 209, 216, '2005-07-29 12:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8069, '2005-07-28 17:23:46', 2822, 178, '2005-07-30 16:19:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8070, '2005-07-28 17:26:56', 1606, 89, '2005-08-01 17:33:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8071, '2005-07-28 17:27:48', 2582, 131, '2005-08-03 11:48:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8072, '2005-07-28 17:27:59', 2347, 99, '2005-07-30 19:08:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8073, '2005-07-28 17:29:02', 630, 314, '2005-08-01 22:17:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8074, '2005-07-28 17:33:39', 1558, 1, '2005-07-29 20:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8075, '2005-07-28 17:37:28', 2175, 61, '2005-07-29 11:56:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8076, '2005-07-28 17:45:58', 214, 17, '2005-08-04 18:07:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8077, '2005-07-28 17:54:35', 3253, 122, '2005-07-29 19:28:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8078, '2005-07-28 17:54:42', 3839, 407, '2005-07-30 18:18:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8079, '2005-07-28 17:58:36', 3564, 432, '2005-07-29 14:48:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8080, '2005-07-28 18:05:06', 3035, 406, '2005-07-29 22:44:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8081, '2005-07-28 18:06:46', 4404, 362, '2005-08-04 18:54:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8082, '2005-07-28 18:08:02', 3089, 423, '2005-08-04 14:33:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8083, '2005-07-28 18:09:48', 2187, 30, '2005-08-04 21:47:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8084, '2005-07-28 18:11:58', 911, 571, '2005-08-03 23:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8085, '2005-07-28 18:13:15', 3059, 552, '2005-08-04 13:45:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8086, '2005-07-28 18:17:14', 1182, 3, '2005-07-30 18:22:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8087, '2005-07-28 18:21:16', 1913, 295, '2005-08-03 12:38:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8088, '2005-07-28 18:23:49', 2590, 343, '2005-08-06 23:25:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8089, '2005-07-28 18:26:47', 1414, 50, '2005-08-03 21:28:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8090, '2005-07-28 18:27:29', 1336, 387, '2005-08-02 14:08:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8091, '2005-07-28 18:27:29', 3025, 126, '2005-08-01 19:45:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8092, '2005-07-28 18:28:07', 2034, 167, '2005-07-30 19:17:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8093, '2005-07-28 18:29:16', 1427, 533, '2005-08-05 21:49:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8094, '2005-07-28 18:30:28', 4276, 432, '2005-08-05 17:37:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8095, '2005-07-28 18:32:40', 2685, 42, '2005-08-06 23:45:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8096, '2005-07-28 18:32:46', 502, 506, '2005-08-06 15:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8097, '2005-07-28 18:32:49', 2719, 436, '2005-08-06 16:09:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8098, '2005-07-28 18:34:20', 1757, 41, '2005-07-31 19:07:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8099, '2005-07-28 18:35:12', 3694, 36, '2005-07-30 15:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8100, '2005-07-28 18:43:11', 2859, 11, '2005-08-02 15:56:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8101, '2005-07-28 18:47:23', 731, 6, '2005-07-31 16:23:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8102, '2005-07-28 18:49:43', 4505, 237, '2005-08-03 23:04:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8103, '2005-07-28 18:50:14', 4472, 397, '2005-08-04 16:53:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8104, '2005-07-28 18:59:36', 1080, 533, '2005-08-03 22:05:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8105, '2005-07-28 18:59:46', 1316, 314, '2005-07-29 22:51:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8106, '2005-07-28 19:02:46', 963, 137, '2005-07-30 20:48:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8107, '2005-07-28 19:03:16', 1318, 518, '2005-08-05 17:18:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8108, '2005-07-28 19:07:38', 1600, 295, '2005-08-03 15:13:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8109, '2005-07-28 19:07:44', 652, 407, '2005-07-31 14:59:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8110, '2005-07-28 19:07:45', 1244, 225, '2005-08-04 22:12:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8111, '2005-07-28 19:10:03', 3226, 148, '2005-07-29 22:25:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8112, '2005-07-28 19:11:07', 2444, 528, '2005-08-03 18:41:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8113, '2005-07-28 19:14:00', 4269, 541, '2005-08-06 00:05:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8114, '2005-07-28 19:14:06', 815, 509, '2005-08-05 13:16:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8115, '2005-07-28 19:14:17', 2080, 106, '2005-08-03 14:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8116, '2005-07-28 19:20:07', 4497, 1, '2005-07-29 22:54:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8117, '2005-07-28 19:20:16', 1502, 300, '2005-08-05 23:55:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8118, '2005-07-28 19:22:22', 331, 566, '2005-08-01 22:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8119, '2005-07-28 19:23:15', 1542, 398, '2005-08-04 15:53:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8120, '2005-07-28 19:24:24', 3993, 235, '2005-07-31 14:31:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8121, '2005-07-28 19:25:45', 2229, 363, '2005-08-02 13:30:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8122, '2005-07-28 19:27:37', 2141, 18, '2005-07-29 19:48:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8123, '2005-07-28 19:28:23', 2256, 138, '2005-08-04 19:41:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8124, '2005-07-28 19:28:58', 1187, 357, '2005-07-31 00:45:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8125, '2005-07-28 19:31:48', 4330, 96, '2005-07-30 01:09:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8126, '2005-07-28 19:32:41', 719, 537, '2005-08-05 00:33:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8127, '2005-07-28 19:45:19', 4265, 20, '2005-07-31 22:07:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8128, '2005-07-28 19:46:06', 2872, 71, '2005-08-06 16:10:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8129, '2005-07-28 19:47:02', 2546, 345, '2005-07-31 21:33:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8130, '2005-07-28 19:48:15', 4055, 499, '2005-08-05 14:18:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8131, '2005-07-28 19:55:21', 437, 281, '2005-08-02 21:52:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8132, '2005-07-28 19:57:31', 1303, 562, '2005-08-02 22:16:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8133, '2005-07-28 20:01:06', 849, 461, '2005-08-01 20:01:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8134, '2005-07-28 20:01:23', 1695, 41, '2005-08-03 01:00:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8135, '2005-07-28 20:03:25', 1339, 164, '2005-08-03 01:28:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8136, '2005-07-28 20:05:48', 3434, 429, '2005-08-01 20:31:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8137, '2005-07-28 20:07:18', 3188, 312, '2005-08-03 17:41:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8138, '2005-07-28 20:12:17', 1258, 371, '2005-08-01 15:21:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8139, '2005-07-28 20:16:30', 3651, 177, '2005-08-03 18:00:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8140, '2005-07-28 20:17:50', 4270, 119, '2005-07-30 18:07:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8141, '2005-07-28 20:21:19', 361, 523, '2005-07-30 19:16:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8142, '2005-07-28 20:21:54', 1075, 322, '2005-07-31 18:39:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8143, '2005-07-28 20:23:11', 3629, 429, '2005-08-01 18:17:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8144, '2005-07-28 20:30:55', 3556, 320, '2005-07-31 18:10:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8145, '2005-07-28 20:34:41', 937, 198, '2005-08-05 15:28:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8146, '2005-07-28 20:37:36', 2430, 476, '2005-07-31 16:03:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8147, '2005-07-28 20:37:56', 628, 228, '2005-07-30 18:26:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8148, '2005-07-28 20:39:47', 537, 347, '2005-08-02 16:29:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8149, '2005-07-28 20:48:12', 1790, 591, '2005-08-01 20:07:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8150, '2005-07-28 20:50:41', 3489, 497, '2005-08-02 00:43:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8151, '2005-07-28 20:50:52', 4370, 495, '2005-07-31 14:50:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8152, '2005-07-28 20:53:05', 2557, 46, '2005-08-06 20:03:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8153, '2005-07-28 20:55:49', 2173, 347, '2005-08-01 15:56:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8154, '2005-07-28 20:56:18', 1180, 285, '2005-08-01 21:56:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8155, '2005-07-28 20:57:06', 3023, 428, '2005-08-02 18:40:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8156, '2005-07-28 20:59:04', 1977, 257, '2005-08-01 01:52:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8157, '2005-07-28 21:06:45', 915, 566, '2005-08-04 16:06:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8158, '2005-07-28 21:08:46', 4327, 458, '2005-08-01 21:50:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8159, '2005-07-28 21:09:28', 1118, 47, '2005-08-04 15:34:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8160, '2005-07-28 21:10:30', 2446, 138, '2005-08-05 16:52:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8161, '2005-07-28 21:11:00', 848, 555, '2005-08-03 23:32:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8162, '2005-07-28 21:11:46', 4393, 107, '2005-08-04 18:26:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8163, '2005-07-28 21:11:48', 1919, 157, '2005-07-31 18:30:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8164, '2005-07-28 21:17:19', 1674, 461, '2005-07-30 21:12:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8165, '2005-07-28 21:23:06', 3460, 197, '2005-08-01 21:32:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8166, '2005-07-28 21:23:33', 3906, 42, '2005-08-03 21:07:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8167, '2005-07-28 21:25:45', 3181, 311, '2005-08-04 18:04:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8168, '2005-07-28 21:28:32', 1120, 365, '2005-07-30 02:10:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8169, '2005-07-28 21:29:46', 4086, 366, '2005-08-06 22:29:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8170, '2005-07-28 21:32:29', 2495, 40, '2005-08-03 22:02:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8171, '2005-07-28 21:32:57', 3380, 296, '2005-07-30 21:19:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8172, '2005-07-28 21:34:36', 1237, 329, '2005-08-06 23:53:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8173, '2005-07-28 21:35:44', 4377, 332, '2005-08-06 19:15:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8174, '2005-07-28 21:36:52', 465, 359, '2005-08-04 00:32:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8175, '2005-07-28 21:38:16', 641, 429, '2005-08-07 01:34:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8176, '2005-07-28 21:42:08', 3527, 347, '2005-08-03 22:59:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8177, '2005-07-28 21:43:54', 3696, 122, '2005-08-02 22:38:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8178, '2005-07-28 21:54:31', 2825, 503, '2005-08-02 23:56:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8179, '2005-07-28 22:05:13', 2902, 578, '2005-07-30 21:57:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8180, '2005-07-28 22:05:24', 3236, 281, '2005-08-01 19:09:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8181, '2005-07-28 22:18:38', 357, 522, '2005-08-06 02:43:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8182, '2005-07-28 22:19:12', 4120, 427, '2005-08-01 22:40:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8183, '2005-07-28 22:21:07', 1545, 119, '2005-08-04 19:20:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8184, '2005-07-28 22:22:35', 1249, 160, '2005-07-31 19:30:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8185, '2005-07-28 22:23:49', 2452, 568, '2005-07-31 00:07:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8186, '2005-07-28 22:30:27', 4255, 102, '2005-07-31 21:08:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8187, '2005-07-28 22:33:53', 945, 87, '2005-08-03 03:54:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8188, '2005-07-28 22:34:12', 3826, 10, '2005-08-01 02:32:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8189, '2005-07-28 22:36:26', 3515, 361, '2005-08-04 00:12:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8190, '2005-07-28 22:47:06', 2290, 267, '2005-08-04 21:51:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8191, '2005-07-28 22:47:14', 1777, 508, '2005-07-31 23:13:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8192, '2005-07-28 22:49:11', 255, 552, '2005-07-30 04:13:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8193, '2005-07-28 22:50:50', 2402, 15, '2005-08-01 04:14:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8194, '2005-07-28 22:51:44', 1148, 424, '2005-07-29 17:13:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8195, '2005-07-28 22:52:58', 3989, 590, '2005-08-04 02:12:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8196, '2005-07-28 22:56:11', 3435, 21, '2005-08-06 04:53:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8197, '2005-07-28 23:04:10', 4126, 407, '2005-08-05 00:06:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8198, '2005-07-28 23:08:05', 1767, 356, '2005-08-06 00:43:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8199, '2005-07-28 23:10:25', 404, 471, '2005-08-04 23:30:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8200, '2005-07-28 23:10:46', 353, 185, '2005-07-29 18:35:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8201, '2005-07-28 23:10:48', 220, 567, '2005-08-01 00:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8202, '2005-07-28 23:11:45', 3802, 75, '2005-08-03 21:57:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8203, '2005-07-28 23:14:56', 3878, 100, '2005-07-31 04:19:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8204, '2005-07-28 23:18:29', 2472, 398, '2005-08-02 04:49:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8205, '2005-07-28 23:18:48', 2944, 434, '2005-07-30 00:37:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8206, '2005-07-28 23:20:31', 2979, 422, '2005-08-04 21:36:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8207, '2005-07-28 23:26:31', 1195, 475, '2005-08-06 03:26:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8208, '2005-07-28 23:26:35', 1362, 530, '2005-08-01 23:00:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8209, '2005-07-28 23:29:28', 2484, 127, '2005-08-07 04:22:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8210, '2005-07-28 23:31:05', 3424, 300, '2005-08-06 17:36:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8211, '2005-07-28 23:34:22', 1859, 193, '2005-08-04 21:18:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8212, '2005-07-28 23:37:23', 1305, 159, '2005-08-04 04:33:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8213, '2005-07-28 23:37:33', 3816, 17, '2005-07-31 00:32:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8214, '2005-07-28 23:37:57', 352, 509, '2005-08-07 00:29:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8215, '2005-07-28 23:43:56', 2921, 437, '2005-08-03 19:30:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8216, '2005-07-28 23:43:59', 2211, 254, '2005-08-06 05:05:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8217, '2005-07-28 23:44:13', 3747, 206, '2005-08-03 21:27:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8218, '2005-07-28 23:45:41', 2769, 578, '2005-08-02 00:14:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8219, '2005-07-28 23:46:31', 3609, 227, '2005-08-03 00:11:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8220, '2005-07-28 23:46:41', 1061, 360, '2005-07-31 22:14:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8221, '2005-07-28 23:47:19', 3138, 496, '2005-08-02 20:42:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8222, '2005-07-28 23:51:53', 2999, 278, '2005-08-05 22:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8223, '2005-07-28 23:56:01', 4508, 282, '2005-08-03 22:27:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8224, '2005-07-28 23:59:02', 1995, 467, '2005-08-02 04:54:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8225, '2005-07-28 23:59:29', 3631, 41, '2005-07-30 03:27:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8226, '2005-07-29 00:01:04', 3541, 368, '2005-08-01 19:08:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8227, '2005-07-29 00:02:22', 269, 167, '2005-07-31 04:05:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8228, '2005-07-29 00:08:58', 1955, 72, '2005-08-03 00:12:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8229, '2005-07-29 00:09:08', 4272, 498, '2005-07-31 19:29:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8230, '2005-07-29 00:12:59', 1937, 2, '2005-08-06 19:52:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8231, '2005-07-29 00:14:37', 1083, 331, '2005-07-31 19:12:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8232, '2005-07-29 00:14:37', 3255, 526, '2005-08-06 00:57:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8233, '2005-07-29 00:16:23', 1640, 93, '2005-08-03 05:17:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8234, '2005-07-29 00:19:20', 644, 227, '2005-08-03 19:16:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8235, '2005-07-29 00:22:56', 1581, 320, '2005-08-03 04:03:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8236, '2005-07-29 00:27:04', 1901, 369, '2005-07-31 05:02:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8237, '2005-07-29 00:29:56', 608, 441, '2005-08-06 03:10:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8238, '2005-07-29 00:30:06', 2941, 320, '2005-08-02 22:52:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8239, '2005-07-29 00:31:39', 3951, 549, '2005-07-29 19:33:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8240, '2005-07-29 00:33:32', 1975, 509, '2005-08-05 21:25:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8241, '2005-07-29 00:33:36', 4297, 26, '2005-08-03 01:31:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8242, '2005-07-29 00:34:27', 509, 99, '2005-08-05 23:13:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8243, '2005-07-29 00:35:33', 1873, 481, '2005-08-04 06:02:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8244, '2005-07-29 00:35:34', 1552, 175, '2005-08-05 04:18:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8245, '2005-07-29 00:37:09', 3330, 555, '2005-08-05 05:48:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8246, '2005-07-29 00:38:41', 1724, 146, '2005-08-05 06:28:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8247, '2005-07-29 00:41:38', 2607, 539, '2005-08-06 20:29:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8248, '2005-07-29 00:41:56', 2017, 272, '2005-08-05 18:53:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8249, '2005-07-29 00:48:44', 3331, 57, '2005-08-07 04:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8250, '2005-07-29 00:49:15', 4519, 533, '2005-08-04 02:53:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8251, '2005-07-29 00:50:14', 2317, 408, '2005-08-03 23:52:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8252, '2005-07-29 00:54:17', 3312, 257, '2005-07-31 20:34:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8253, '2005-07-29 00:57:06', 2388, 76, '2005-08-07 01:46:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8254, '2005-07-29 00:59:31', 1787, 392, '2005-08-03 23:43:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8255, '2005-07-29 01:02:30', 3715, 224, '2005-08-01 22:39:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8256, '2005-07-29 01:02:42', 1483, 537, '2005-07-31 22:29:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8257, '2005-07-29 01:03:20', 3024, 566, '2005-08-04 21:54:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8258, '2005-07-29 01:03:42', 1379, 370, '2005-08-04 22:08:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8259, '2005-07-29 01:05:16', 343, 274, '2005-08-01 23:27:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8260, '2005-07-29 01:11:00', 4249, 366, '2005-08-06 00:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8261, '2005-07-29 01:11:05', 1915, 50, '2005-08-04 03:13:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8262, '2005-07-29 01:11:18', 1341, 563, '2005-08-02 05:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8263, '2005-07-29 01:11:23', 28, 5, '2005-07-31 01:53:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8264, '2005-07-29 01:18:50', 2987, 175, '2005-08-03 05:31:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8265, '2005-07-29 01:20:15', 2389, 409, '2005-08-06 19:32:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8266, '2005-07-29 01:20:16', 1972, 196, '2005-07-30 04:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8267, '2005-07-29 01:21:02', 4107, 131, '2005-08-04 19:34:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8268, '2005-07-29 01:23:23', 4239, 421, '2005-08-05 01:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8269, '2005-07-29 01:26:54', 2778, 376, '2005-08-04 22:42:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8270, '2005-07-29 01:27:22', 3565, 282, '2005-07-29 20:55:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8271, '2005-07-29 01:27:44', 83, 481, '2005-08-07 05:01:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8272, '2005-07-29 01:29:51', 70, 346, '2005-08-03 21:56:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8273, '2005-07-29 01:33:16', 4244, 532, '2005-08-06 04:26:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8274, '2005-07-29 01:34:32', 2634, 340, '2005-08-01 20:15:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8275, '2005-07-29 01:35:47', 4432, 336, '2005-07-30 02:16:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8276, '2005-07-29 01:38:43', 2451, 466, '2005-08-03 23:00:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8277, '2005-07-29 01:38:53', 1296, 13, '2005-08-04 07:09:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8278, '2005-07-29 01:42:55', 768, 265, '2005-08-05 01:55:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8279, '2005-07-29 01:43:37', 3838, 176, '2005-08-03 02:36:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8280, '2005-07-29 01:45:51', 1208, 195, '2005-08-05 22:51:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8281, '2005-07-29 01:46:00', 899, 441, '2005-08-04 23:09:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8282, '2005-07-29 01:49:04', 980, 462, '2005-08-05 01:51:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8283, '2005-07-29 01:52:22', 2002, 300, '2005-08-05 03:22:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8284, '2005-07-29 01:56:40', 4371, 446, '2005-08-07 07:15:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8285, '2005-07-29 02:00:18', 678, 56, '2005-08-03 20:43:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8286, '2005-07-29 02:02:46', 4092, 87, '2005-08-06 06:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8287, '2005-07-29 02:03:58', 812, 178, '2005-08-07 02:11:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8288, '2005-07-29 02:04:22', 1822, 55, '2005-08-05 04:21:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8289, '2005-07-29 02:23:24', 4579, 459, '2005-08-06 03:23:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8290, '2005-07-29 02:24:08', 3823, 462, '2005-08-03 01:02:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8291, '2005-07-29 02:28:25', 2817, 455, '2005-08-03 20:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8292, '2005-07-29 02:29:36', 4003, 192, '2005-08-07 08:06:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8293, '2005-07-29 02:30:50', 831, 71, '2005-08-04 03:09:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8294, '2005-07-29 02:32:41', 1811, 520, '2005-08-02 06:28:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8295, '2005-07-29 02:42:14', 2065, 406, '2005-07-30 22:22:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8296, '2005-07-29 02:43:25', 2543, 88, '2005-08-01 00:23:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8297, '2005-07-29 02:45:46', 3774, 349, '2005-07-31 20:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8298, '2005-07-29 02:47:36', 952, 493, '2005-08-05 07:58:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8299, '2005-07-29 02:56:00', 1797, 173, '2005-07-30 22:35:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8300, '2005-07-29 02:57:59', 4364, 222, '2005-08-05 01:12:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8301, '2005-07-29 03:00:08', 562, 101, '2005-08-01 04:26:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8302, '2005-07-29 03:01:24', 1314, 103, '2005-07-30 01:08:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8303, '2005-07-29 03:05:56', 1620, 574, '2005-08-04 06:13:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8304, '2005-07-29 03:08:30', 4431, 119, '2005-08-02 03:04:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8305, '2005-07-29 03:08:47', 3916, 566, '2005-08-06 07:49:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8306, '2005-07-29 03:12:26', 1708, 232, '2005-08-01 23:26:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8307, '2005-07-29 03:18:34', 3197, 39, '2005-08-06 05:51:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8308, '2005-07-29 03:22:15', 601, 582, '2005-08-04 21:38:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8309, '2005-07-29 03:22:20', 2250, 446, '2005-08-01 06:30:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8310, '2005-07-29 03:25:56', 2637, 238, '2005-08-06 23:18:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8311, '2005-07-29 03:26:07', 3623, 63, '2005-08-02 01:46:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8312, '2005-07-29 03:32:38', 3996, 143, '2005-07-31 02:12:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8313, '2005-07-29 03:34:21', 2736, 91, '2005-08-02 01:32:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8314, '2005-07-29 03:35:04', 2182, 118, '2005-08-06 08:43:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8315, '2005-07-29 03:37:07', 1420, 135, '2005-07-29 23:22:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8316, '2005-07-29 03:38:49', 4118, 549, '2005-08-03 07:41:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8317, '2005-07-29 03:39:07', 3898, 415, '2005-08-03 00:14:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8318, '2005-07-29 03:44:30', 4524, 167, '2005-07-30 05:03:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8319, '2005-07-29 03:44:52', 747, 280, '2005-08-01 00:35:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8320, '2005-07-29 03:49:58', 1285, 513, '2005-08-03 01:00:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8321, '2005-07-29 03:50:54', 1875, 354, '2005-08-01 02:08:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8322, '2005-07-29 03:52:49', 301, 541, '2005-08-02 22:53:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8323, '2005-07-29 03:52:59', 2766, 87, '2005-08-06 01:49:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8324, '2005-07-29 03:56:05', 1467, 98, '2005-08-02 01:41:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8325, '2005-07-29 03:57:27', 932, 362, '2005-08-06 22:30:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8326, '2005-07-29 03:58:49', 108, 1, '2005-08-01 05:16:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8327, '2005-07-29 04:00:52', 2928, 317, '2005-07-31 08:27:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8328, '2005-07-29 04:06:24', 4454, 314, '2005-08-03 22:24:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8329, '2005-07-29 04:06:33', 3468, 108, '2005-08-06 01:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8330, '2005-07-29 04:09:07', 2294, 412, '2005-08-05 05:00:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8331, '2005-07-29 04:13:29', 18, 148, '2005-08-04 07:09:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8332, '2005-07-29 04:16:00', 1142, 217, '2005-08-03 03:34:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8333, '2005-07-29 04:16:40', 823, 494, '2005-08-02 10:10:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8334, '2005-07-29 04:18:25', 982, 154, '2005-08-07 07:18:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8335, '2005-07-29 04:18:25', 1719, 143, '2005-07-31 08:12:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8336, '2005-07-29 04:20:42', 2120, 210, '2005-08-05 10:17:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8337, '2005-07-29 04:31:55', 752, 157, '2005-08-02 02:38:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8338, '2005-07-29 04:40:39', 2257, 389, '2005-08-07 04:40:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8339, '2005-07-29 04:41:13', 1870, 129, '2005-07-30 09:01:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8340, '2005-07-29 04:41:44', 1553, 386, '2005-08-07 10:33:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8341, '2005-07-29 04:42:01', 4208, 309, '2005-08-04 00:58:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8342, '2005-07-29 04:45:05', 3301, 572, '2005-08-01 07:20:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8343, '2005-07-29 04:45:16', 4267, 439, '2005-08-02 03:37:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8344, '2005-07-29 04:45:25', 221, 257, '2005-08-06 01:53:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8345, '2005-07-29 04:47:37', 1034, 129, '2005-08-02 07:25:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8346, '2005-07-29 04:48:22', 2475, 385, '2005-08-01 04:22:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8347, '2005-07-29 04:49:25', 4407, 157, '2005-07-31 00:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8348, '2005-07-29 04:49:26', 4533, 174, '2005-08-05 03:26:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8349, '2005-07-29 04:50:22', 534, 416, '2005-08-05 08:50:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8350, '2005-07-29 04:50:39', 3726, 513, '2005-07-31 05:36:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8351, '2005-07-29 04:50:53', 2963, 202, '2005-07-30 07:28:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8352, '2005-07-29 04:52:01', 2710, 168, '2005-08-06 07:39:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8353, '2005-07-29 04:52:10', 26, 585, '2005-07-30 04:01:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8354, '2005-07-29 04:56:26', 4476, 579, '2005-08-01 08:04:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8355, '2005-07-29 04:57:43', 4569, 270, '2005-08-03 06:25:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8356, '2005-07-29 04:58:56', 2951, 483, '2005-08-06 03:07:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8357, '2005-07-29 04:59:44', 892, 76, '2005-08-01 04:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8358, '2005-07-29 05:00:58', 1449, 372, '2005-08-01 02:49:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8359, '2005-07-29 05:02:12', 140, 531, '2005-08-04 08:52:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8360, '2005-07-29 05:08:00', 4135, 62, '2005-08-02 00:40:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8361, '2005-07-29 05:08:57', 3404, 360, '2005-08-03 02:49:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8362, '2005-07-29 05:09:11', 2287, 223, '2005-08-04 00:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8363, '2005-07-29 05:10:08', 1607, 302, '2005-08-06 00:11:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8364, '2005-07-29 05:10:31', 1361, 362, '2005-07-30 04:02:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8365, '2005-07-29 05:11:00', 53, 280, '2005-07-30 05:30:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8366, '2005-07-29 05:11:14', 479, 39, '2005-08-05 01:48:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8367, '2005-07-29 05:11:19', 4551, 383, '2005-08-02 00:35:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8368, '2005-07-29 05:15:41', 1410, 200, '2005-08-07 01:35:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8369, '2005-07-29 05:15:42', 1456, 507, '2005-08-01 03:36:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8370, '2005-07-29 05:16:21', 1206, 121, '2005-08-06 23:16:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8371, '2005-07-29 05:16:35', 2466, 396, '2005-07-31 01:49:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8372, '2005-07-29 05:18:08', 754, 523, '2005-08-06 09:39:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8373, '2005-07-29 05:19:53', 2070, 457, '2005-08-04 04:39:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8374, '2005-07-29 05:24:02', 1084, 589, '2005-08-05 03:55:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8375, '2005-07-29 05:25:30', 3634, 125, '2005-08-04 01:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8376, '2005-07-29 05:25:32', 3588, 43, '2005-08-01 07:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8377, '2005-07-29 05:27:40', 270, 73, '2005-07-30 02:52:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8378, '2005-07-29 05:28:35', 3500, 347, '2005-08-02 05:55:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8379, '2005-07-29 05:29:40', 3907, 193, '2005-08-06 05:56:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8380, '2005-07-29 05:31:29', 2279, 145, '2005-08-02 01:27:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8381, '2005-07-29 05:31:44', 865, 313, '2005-07-31 09:20:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8382, '2005-07-29 05:33:21', 317, 238, '2005-08-03 03:38:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8383, '2005-07-29 05:36:47', 3809, 495, '2005-08-03 05:53:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8384, '2005-07-29 05:38:43', 3807, 227, '2005-08-01 07:31:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8385, '2005-07-29 05:39:16', 4108, 233, '2005-08-03 00:30:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8386, '2005-07-29 05:45:30', 388, 435, '2005-08-05 03:56:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8387, '2005-07-29 05:47:27', 910, 428, '2005-07-31 06:26:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8388, '2005-07-29 05:48:15', 770, 178, '2005-08-05 06:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8389, '2005-07-29 05:50:09', 1241, 133, '2005-08-06 05:15:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8390, '2005-07-29 05:52:26', 581, 32, '2005-08-04 08:12:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8391, '2005-07-29 05:52:50', 2134, 36, '2005-08-03 04:45:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8392, '2005-07-29 06:00:27', 1323, 65, '2005-08-02 00:30:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8393, '2005-07-29 06:02:11', 3369, 504, '2005-08-07 03:23:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8394, '2005-07-29 06:02:14', 3933, 148, '2005-08-03 08:15:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8395, '2005-07-29 06:03:30', 1471, 535, '2005-07-31 09:08:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8396, '2005-07-29 06:07:00', 3911, 516, '2005-07-30 05:32:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8397, '2005-07-29 06:09:35', 3542, 518, '2005-08-01 02:08:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8398, '2005-07-29 06:12:40', 348, 220, '2005-08-02 05:01:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8399, '2005-07-29 06:20:18', 233, 286, '2005-08-04 01:26:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8400, '2005-07-29 06:23:56', 3680, 573, '2005-07-31 02:41:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8401, '2005-07-29 06:25:08', 3121, 232, '2005-08-01 06:49:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8402, '2005-07-29 06:25:45', 186, 47, '2005-08-07 10:48:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8403, '2005-07-29 06:26:39', 1360, 163, '2005-08-02 05:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8404, '2005-07-29 06:27:01', 2086, 65, '2005-08-07 04:33:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8405, '2005-07-29 06:28:19', 2164, 76, '2005-08-07 08:14:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8406, '2005-07-29 06:34:45', 2047, 274, '2005-08-06 02:28:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8407, '2005-07-29 06:37:02', 2985, 336, '2005-08-04 03:13:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8408, '2005-07-29 06:40:40', 1841, 90, '2005-07-30 10:02:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8409, '2005-07-29 06:41:22', 4314, 303, '2005-07-31 11:21:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8410, '2005-07-29 06:41:36', 3448, 277, '2005-08-02 08:38:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8411, '2005-07-29 06:44:23', 3085, 412, '2005-08-07 03:56:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8412, '2005-07-29 06:44:50', 743, 312, '2005-08-06 05:04:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8413, '2005-07-29 06:47:39', 2762, 104, '2005-08-02 09:15:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8414, '2005-07-29 06:48:35', 1337, 433, '2005-08-06 10:54:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8415, '2005-07-29 06:52:27', 2903, 128, '2005-08-02 10:40:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8416, '2005-07-29 06:52:54', 1999, 315, '2005-08-05 09:50:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8417, '2005-07-29 06:53:36', 750, 227, '2005-08-06 09:31:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8418, '2005-07-29 06:54:21', 3081, 355, '2005-08-05 06:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8419, '2005-07-29 06:54:48', 4574, 37, '2005-08-06 05:02:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8420, '2005-07-29 07:00:45', 4184, 376, '2005-08-06 02:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8421, '2005-07-29 07:00:47', 3399, 588, '2005-08-02 08:03:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8422, '2005-07-29 07:02:55', 3104, 7, '2005-08-03 12:35:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8423, '2005-07-29 07:02:57', 187, 468, '2005-08-06 04:59:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8424, '2005-07-29 07:06:03', 366, 138, '2005-08-06 12:00:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8425, '2005-07-29 07:06:21', 3491, 486, '2005-08-05 07:57:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8426, '2005-07-29 07:07:48', 1840, 564, '2005-08-07 08:56:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8427, '2005-07-29 07:08:36', 1624, 441, '2005-07-30 11:54:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8428, '2005-07-29 07:10:14', 2545, 398, '2005-08-06 02:29:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8429, '2005-07-29 07:11:49', 2456, 588, '2005-07-31 02:45:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8430, '2005-07-29 07:12:17', 3377, 219, '2005-08-03 09:53:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8431, '2005-07-29 07:12:48', 1583, 193, '2005-08-01 10:03:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8432, '2005-07-29 07:13:33', 3896, 572, '2005-07-30 03:14:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8433, '2005-07-29 07:19:16', 1957, 125, '2005-08-05 03:29:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8434, '2005-07-29 07:20:14', 40, 141, '2005-07-30 08:50:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8435, '2005-07-29 07:20:16', 4462, 520, '2005-08-02 09:54:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8436, '2005-07-29 07:21:20', 2702, 598, '2005-07-31 12:56:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8437, '2005-07-29 07:23:43', 2118, 96, '2005-08-04 10:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8438, '2005-07-29 07:25:42', 720, 97, '2005-08-04 07:39:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8439, '2005-07-29 07:28:43', 182, 224, '2005-08-04 11:22:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8440, '2005-07-29 07:31:26', 489, 175, '2005-08-04 07:04:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8441, '2005-07-29 07:33:05', 1000, 526, '2005-08-04 04:00:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8442, '2005-07-29 07:33:07', 4345, 185, '2005-08-03 03:09:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8443, '2005-07-29 07:33:12', 1059, 251, '2005-08-02 01:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8444, '2005-07-29 07:36:13', 3329, 213, '2005-08-05 04:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8445, '2005-07-29 07:37:48', 2792, 384, '2005-08-04 10:43:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8446, '2005-07-29 07:38:10', 1593, 235, '2005-08-06 04:39:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8447, '2005-07-29 07:38:14', 930, 11, '2005-08-05 02:27:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8448, '2005-07-29 07:41:54', 4349, 393, '2005-08-02 13:12:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8449, '2005-07-29 07:42:25', 2610, 273, '2005-07-30 06:07:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8450, '2005-07-29 07:44:05', 484, 401, '2005-08-01 12:23:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8451, '2005-07-29 07:44:56', 3309, 495, '2005-08-06 02:29:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8452, '2005-07-29 07:45:00', 4312, 16, '2005-08-05 09:46:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8453, '2005-07-29 07:46:29', 2907, 32, '2005-07-30 07:07:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8454, '2005-07-29 07:49:04', 159, 244, '2005-08-03 04:43:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8455, '2005-07-29 07:53:06', 4043, 404, '2005-08-05 05:29:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8456, '2005-07-29 07:58:31', 671, 388, '2005-08-05 07:17:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8457, '2005-07-29 07:59:03', 3371, 239, '2005-08-04 08:42:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8458, '2005-07-29 08:05:09', 3857, 317, '2005-08-02 03:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8459, '2005-07-29 08:05:40', 3441, 144, '2005-08-04 03:24:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8460, '2005-07-29 08:08:03', 2826, 329, '2005-08-07 06:53:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8461, '2005-07-29 08:11:31', 3373, 399, '2005-08-06 09:23:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8462, '2005-07-29 08:15:42', 3633, 200, '2005-08-04 03:57:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8463, '2005-07-29 08:17:51', 466, 203, '2005-08-03 13:41:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8464, '2005-07-29 08:18:20', 2343, 28, '2005-08-03 04:50:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8465, '2005-07-29 08:20:49', 4109, 238, '2005-07-31 04:02:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8466, '2005-07-29 08:24:47', 4010, 285, '2005-07-31 03:43:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8467, '2005-07-29 08:25:35', 263, 326, '2005-08-07 03:28:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8468, '2005-07-29 08:26:04', 1338, 282, '2005-08-02 07:18:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8469, '2005-07-29 08:26:27', 2754, 408, '2005-08-05 04:26:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8470, '2005-07-29 08:28:50', 3717, 159, '2005-07-30 13:40:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8471, '2005-07-29 08:32:11', 1520, 533, '2005-08-01 13:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8472, '2005-07-29 08:36:22', 2975, 196, '2005-08-02 07:55:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8473, '2005-07-29 08:36:53', 4141, 311, '2005-07-31 12:14:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8474, '2005-07-29 08:36:56', 4346, 323, '2005-08-01 03:07:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8475, '2005-07-29 08:37:41', 3695, 260, '2005-08-04 10:03:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8476, '2005-07-29 08:39:12', 3741, 470, '2005-08-06 03:03:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8477, '2005-07-29 08:40:36', 3571, 354, '2005-08-06 08:28:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8478, '2005-07-29 08:40:36', 3742, 162, '2005-08-01 10:23:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8479, '2005-07-29 08:42:04', 1990, 195, '2005-08-01 03:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8480, '2005-07-29 08:44:46', 3512, 467, '2005-08-05 13:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8481, '2005-07-29 08:45:57', 1739, 454, '2005-08-01 12:50:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8482, '2005-07-29 08:46:33', 2686, 405, '2005-07-31 11:07:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8483, '2005-07-29 08:50:18', 2786, 186, '2005-08-03 06:46:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8484, '2005-07-29 08:51:59', 742, 260, '2005-07-30 09:07:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8485, '2005-07-29 08:53:09', 3172, 420, '2005-07-30 11:25:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8486, '2005-07-29 08:53:38', 1759, 221, '2005-08-01 14:12:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8487, '2005-07-29 08:53:49', 1893, 82, '2005-07-31 09:10:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8488, '2005-07-29 08:57:38', 2176, 478, '2005-08-02 04:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8489, '2005-07-29 08:58:03', 375, 265, '2005-08-02 07:50:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8490, '2005-07-29 08:59:25', 1943, 367, '2005-08-05 14:02:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8491, '2005-07-29 09:02:13', 1806, 242, '2005-08-03 04:32:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8492, '2005-07-29 09:04:17', 4553, 266, '2005-08-02 08:48:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8493, '2005-07-29 09:04:31', 664, 390, '2005-08-04 05:17:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8494, '2005-07-29 09:04:32', 3524, 92, '2005-07-31 10:30:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8495, '2005-07-29 09:05:06', 344, 51, '2005-08-06 05:48:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8496, '2005-07-29 09:05:33', 765, 114, '2005-08-02 06:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8497, '2005-07-29 09:07:03', 1837, 593, '2005-08-02 09:18:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8498, '2005-07-29 09:07:38', 4468, 190, '2005-08-04 07:01:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8499, '2005-07-29 09:10:41', 219, 42, '2005-08-05 10:01:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8500, '2005-07-29 09:12:01', 4516, 348, '2005-07-31 10:15:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8501, '2005-07-29 09:12:51', 1052, 309, '2005-07-30 11:19:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8502, '2005-07-29 09:15:41', 2149, 457, '2005-07-30 10:41:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8503, '2005-07-29 09:16:50', 1164, 240, '2005-08-04 11:34:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8504, '2005-07-29 09:20:16', 2295, 561, '2005-08-07 04:27:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8505, '2005-07-29 09:22:52', 1454, 346, '2005-08-06 05:23:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8506, '2005-07-29 09:23:52', 3714, 506, '2005-07-31 04:42:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8507, '2005-07-29 09:29:44', 3273, 524, '2005-08-07 05:48:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8508, '2005-07-29 09:34:38', 4173, 484, '2005-08-01 14:52:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8509, '2005-07-29 09:38:19', 1332, 80, '2005-08-04 11:45:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8510, '2005-07-29 09:41:38', 7, 487, '2005-08-05 05:30:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8511, '2005-07-29 09:42:42', 3667, 598, '2005-08-06 14:22:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8512, '2005-07-29 09:48:03', 4132, 351, '2005-07-31 13:40:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8513, '2005-07-29 09:52:59', 3156, 142, '2005-07-31 12:05:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8514, '2005-07-29 09:53:33', 3755, 99, '2005-07-30 06:34:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8515, '2005-07-29 09:55:20', 1071, 477, '2005-08-05 07:08:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8516, '2005-07-29 10:00:03', 981, 337, '2005-08-02 09:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8517, '2005-07-29 10:00:48', 2064, 274, '2005-08-06 14:37:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8518, '2005-07-29 10:05:27', 2311, 385, '2005-08-02 05:39:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8519, '2005-07-29 10:09:43', 1163, 588, '2005-08-03 08:14:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8520, '2005-07-29 10:10:02', 2440, 103, '2005-08-02 05:25:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8521, '2005-07-29 10:12:45', 2608, 402, '2005-08-07 04:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8522, '2005-07-29 10:16:19', 3636, 363, '2005-08-06 14:58:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8523, '2005-07-29 10:18:27', 3614, 558, '2005-08-04 09:31:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8524, '2005-07-29 10:20:07', 2110, 124, '2005-08-03 04:30:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8525, '2005-07-29 10:20:19', 1322, 111, '2005-07-30 05:49:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8526, '2005-07-29 10:20:48', 575, 88, '2005-08-03 14:15:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8527, '2005-07-29 10:21:00', 709, 168, '2005-08-05 16:05:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8528, '2005-07-29 10:24:22', 2107, 428, '2005-08-07 10:34:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8529, '2005-07-29 10:24:31', 1055, 501, '2005-08-01 16:06:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8530, '2005-07-29 10:26:14', 4528, 233, '2005-07-31 10:24:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8531, '2005-07-29 10:26:15', 1631, 427, '2005-08-06 09:28:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8532, '2005-07-29 10:26:56', 3045, 546, '2005-08-02 13:23:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8533, '2005-07-29 10:29:16', 551, 542, '2005-08-01 06:52:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8534, '2005-07-29 10:30:13', 4029, 516, '2005-08-02 04:47:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8535, '2005-07-29 10:32:33', 4489, 536, '2005-07-31 05:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8536, '2005-07-29 10:37:23', 4510, 219, '2005-07-31 07:21:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8537, '2005-07-29 10:44:54', 1012, 447, '2005-08-06 14:55:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8538, '2005-07-29 10:45:17', 3768, 500, '2005-08-04 15:12:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8539, '2005-07-29 10:48:24', 599, 325, '2005-07-30 06:29:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8540, '2005-07-29 10:52:51', 539, 180, '2005-08-07 11:44:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8541, '2005-07-29 10:55:01', 976, 340, '2005-07-31 10:53:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8542, '2005-07-29 11:01:50', 792, 213, '2005-07-30 08:19:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8543, '2005-07-29 11:01:57', 403, 346, '2005-08-03 06:03:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8544, '2005-07-29 11:02:08', 412, 542, '2005-08-06 15:06:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8545, '2005-07-29 11:07:04', 3261, 3, '2005-08-06 13:30:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8546, '2005-07-29 11:08:48', 3224, 418, '2005-08-03 16:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8547, '2005-07-29 11:10:15', 875, 438, '2005-08-03 12:50:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8548, '2005-07-29 11:11:33', 3366, 14, '2005-08-04 11:52:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8549, '2005-07-29 11:12:13', 1866, 206, '2005-08-06 06:04:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8550, '2005-07-29 11:12:37', 1340, 70, '2005-07-30 15:05:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8551, '2005-07-29 11:13:11', 2083, 340, '2005-08-05 05:17:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8552, '2005-07-29 11:14:02', 1987, 490, '2005-08-05 14:13:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8553, '2005-07-29 11:15:36', 2645, 49, '2005-08-07 16:37:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8554, '2005-07-29 11:16:29', 1563, 582, '2005-07-31 06:38:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8555, '2005-07-29 11:18:01', 2784, 18, '2005-07-30 10:47:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8556, '2005-07-29 11:18:27', 2793, 231, '2005-07-30 05:21:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8557, '2005-07-29 11:19:59', 1481, 459, '2005-08-07 12:50:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8558, '2005-07-29 11:24:49', 1160, 169, '2005-07-31 15:03:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8559, '2005-07-29 11:25:54', 2078, 279, '2005-08-04 10:16:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8560, '2005-07-29 11:27:27', 3499, 430, '2005-08-01 12:05:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8561, '2005-07-29 11:29:12', 2207, 344, '2005-08-05 09:17:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8562, '2005-07-29 11:32:13', 3595, 255, '2005-07-30 08:23:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8563, '2005-07-29 11:32:58', 61, 67, '2005-08-05 07:21:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8564, '2005-07-29 11:33:00', 2830, 316, '2005-08-05 15:35:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8565, '2005-07-29 11:35:23', 3211, 280, '2005-08-06 08:28:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8566, '2005-07-29 11:35:46', 2011, 544, '2005-07-30 13:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8567, '2005-07-29 11:37:30', 1612, 594, '2005-08-03 05:58:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8568, '2005-07-29 11:38:22', 1599, 583, '2005-08-04 13:22:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8569, '2005-07-29 11:39:17', 276, 348, '2005-07-31 07:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8570, '2005-07-29 11:40:08', 3094, 131, '2005-08-06 10:23:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8571, '2005-07-29 11:48:39', 1778, 407, '2005-08-03 06:35:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8572, '2005-07-29 11:51:24', 2815, 267, '2005-08-02 11:44:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8573, '2005-07-29 11:51:25', 1637, 179, '2005-08-07 08:53:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8574, '2005-07-29 11:51:53', 2949, 71, '2005-08-03 05:59:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8575, '2005-07-29 11:52:47', 1668, 441, '2005-08-03 08:14:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8576, '2005-07-29 11:55:01', 3552, 157, '2005-08-03 08:41:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8577, '2005-07-29 11:56:30', 520, 328, '2005-08-07 15:41:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8578, '2005-07-29 11:58:14', 3737, 148, '2005-08-03 06:25:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8579, '2005-07-29 11:59:22', 4045, 250, '2005-07-30 11:41:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8580, '2005-07-29 12:00:27', 4040, 543, '2005-08-04 16:39:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8581, '2005-07-29 12:02:06', 2102, 254, '2005-08-02 10:32:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8582, '2005-07-29 12:03:27', 841, 162, '2005-08-03 07:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8583, '2005-07-29 12:04:50', 3130, 191, '2005-08-04 17:21:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8584, '2005-07-29 12:07:53', 1656, 482, '2005-07-31 09:27:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8585, '2005-07-29 12:14:18', 512, 516, '2005-08-03 08:31:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8586, '2005-07-29 12:16:34', 2752, 374, '2005-08-07 06:48:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8587, '2005-07-29 12:18:40', 1941, 108, '2005-08-03 14:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8588, '2005-07-29 12:22:20', 2858, 416, '2005-07-31 10:49:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8589, '2005-07-29 12:28:17', 1628, 293, '2005-08-05 11:40:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8590, '2005-07-29 12:32:20', 2505, 114, '2005-08-07 08:00:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8591, '2005-07-29 12:32:33', 2568, 418, '2005-08-01 16:19:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8592, '2005-07-29 12:33:58', 1952, 271, '2005-08-04 07:14:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8593, '2005-07-29 12:38:14', 2601, 181, '2005-08-07 07:04:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8594, '2005-07-29 12:42:13', 4155, 115, '2005-08-02 07:38:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8595, '2005-07-29 12:47:43', 3225, 423, '2005-08-07 13:51:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8596, '2005-07-29 12:48:54', 59, 233, '2005-08-04 07:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8597, '2005-07-29 12:55:55', 4218, 222, '2005-08-05 18:54:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8598, '2005-07-29 12:56:59', 626, 2, '2005-08-01 08:39:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8599, '2005-07-29 12:58:52', 1169, 545, '2005-08-03 08:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8600, '2005-07-29 13:01:19', 1488, 226, '2005-07-31 15:40:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8601, '2005-07-29 13:03:31', 3247, 181, '2005-08-06 16:32:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8602, '2005-07-29 13:04:27', 4002, 64, '2005-08-03 12:21:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8603, '2005-07-29 13:07:07', 3007, 594, '2005-08-04 18:32:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8604, '2005-07-29 13:07:13', 3909, 326, '2005-07-31 18:00:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8605, '2005-07-29 13:13:34', 3805, 224, '2005-08-07 08:29:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8606, '2005-07-29 13:14:24', 4051, 340, '2005-07-30 14:52:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8607, '2005-07-29 13:18:00', 4290, 336, '2005-07-30 18:51:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8608, '2005-07-29 13:18:52', 2976, 165, '2005-07-30 19:01:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8609, '2005-07-29 13:19:25', 3997, 354, '2005-08-06 08:33:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8610, '2005-07-29 13:25:02', 4222, 563, '2005-08-03 08:10:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8611, '2005-07-29 13:26:21', 610, 373, '2005-08-07 18:20:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8612, '2005-07-29 13:28:20', 3518, 392, '2005-08-06 14:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8613, '2005-07-29 13:30:58', 394, 411, '2005-08-05 16:21:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8614, '2005-07-29 13:32:05', 604, 552, '2005-08-04 15:26:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8615, '2005-07-29 13:36:01', 4453, 15, '2005-08-03 13:15:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8616, '2005-07-29 13:39:09', 2583, 493, '2005-08-01 16:49:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8617, '2005-07-29 13:46:14', 385, 441, '2005-08-06 13:26:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8618, '2005-07-29 13:48:20', 985, 270, '2005-08-06 14:12:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8619, '2005-07-29 13:50:08', 2169, 50, '2005-08-06 13:15:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8620, '2005-07-29 13:51:20', 3718, 306, '2005-08-02 13:05:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8621, '2005-07-29 13:52:42', 2473, 358, '2005-07-30 11:42:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8622, '2005-07-29 13:53:28', 4076, 98, '2005-07-31 16:12:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8623, '2005-07-29 13:55:11', 458, 142, '2005-08-05 11:16:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8624, '2005-07-29 13:55:36', 4402, 439, '2005-08-02 12:23:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8625, '2005-07-29 13:59:13', 884, 410, '2005-08-07 17:56:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8626, '2005-07-29 14:03:20', 3092, 148, '2005-08-02 09:05:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8627, '2005-07-29 14:05:12', 4235, 226, '2005-08-05 16:53:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8628, '2005-07-29 14:06:24', 4484, 550, '2005-08-06 10:42:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8629, '2005-07-29 14:06:35', 853, 567, '2005-08-03 16:59:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8630, '2005-07-29 14:07:59', 1378, 406, '2005-08-03 13:18:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8631, '2005-07-29 14:08:06', 98, 559, '2005-08-05 14:57:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8632, '2005-07-29 14:11:25', 1666, 563, '2005-08-07 15:32:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8633, '2005-07-29 14:19:53', 3436, 534, '2005-08-01 11:31:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8634, '2005-07-29 14:19:57', 2023, 335, '2005-08-07 13:44:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8635, '2005-07-29 14:22:48', 2894, 383, '2005-08-01 11:59:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8636, '2005-07-29 14:24:13', 4308, 252, '2005-08-02 14:39:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8637, '2005-07-29 14:30:11', 1069, 310, '2005-08-04 14:00:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8638, '2005-07-29 14:30:23', 4060, 571, '2005-08-01 10:32:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8639, '2005-07-29 14:30:31', 3504, 290, '2005-08-02 16:04:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8640, '2005-07-29 14:34:17', 1874, 257, '2005-08-01 13:09:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8641, '2005-07-29 14:37:30', 3199, 30, '2005-08-02 19:32:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8642, '2005-07-29 14:38:17', 3947, 522, '2005-08-03 14:41:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8643, '2005-07-29 14:45:23', 381, 59, '2005-08-04 18:42:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8644, '2005-07-29 14:45:45', 4507, 314, '2005-08-03 20:10:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8645, '2005-07-29 14:47:45', 2532, 535, '2005-07-30 14:56:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8646, '2005-07-29 14:48:48', 89, 302, '2005-08-03 18:11:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8647, '2005-07-29 14:52:59', 556, 307, '2005-08-06 11:09:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8648, '2005-07-29 14:56:21', 160, 416, '2005-07-31 16:56:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8649, '2005-07-29 14:57:33', 789, 69, '2005-08-07 09:43:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8650, '2005-07-29 14:59:04', 1272, 134, '2005-08-04 13:13:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8651, '2005-07-29 15:02:18', 2095, 61, '2005-08-07 09:34:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8652, '2005-07-29 15:02:54', 2729, 219, '2005-08-07 17:21:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8653, '2005-07-29 15:04:23', 4440, 230, '2005-08-02 09:39:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8654, '2005-07-29 15:04:27', 3925, 84, '2005-08-07 18:37:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8655, '2005-07-29 15:04:42', 3986, 232, '2005-08-04 11:26:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8656, '2005-07-29 15:05:52', 1385, 460, '2005-07-31 20:57:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8657, '2005-07-29 15:09:25', 3194, 236, '2005-07-31 19:10:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8658, '2005-07-29 15:16:37', 2033, 427, '2005-08-07 20:45:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8659, '2005-07-29 15:26:31', 558, 168, '2005-08-06 19:05:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8660, '2005-07-29 15:26:59', 3122, 566, '2005-08-05 21:04:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8661, '2005-07-29 15:28:24', 3409, 341, '2005-08-05 20:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8662, '2005-07-29 15:31:33', 3758, 362, '2005-07-30 09:39:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8663, '2005-07-29 15:33:18', 1281, 214, '2005-07-30 18:03:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8664, '2005-07-29 15:36:27', 198, 102, '2005-08-04 20:11:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8665, '2005-07-29 15:39:29', 1113, 265, '2005-08-01 10:33:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8666, '2005-07-29 15:39:38', 3669, 591, '2005-08-06 17:12:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8667, '2005-07-29 15:40:57', 3439, 25, '2005-07-31 20:59:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8668, '2005-07-29 15:41:31', 4531, 71, '2005-08-01 16:20:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8669, '2005-07-29 15:44:55', 1667, 401, '2005-08-01 14:09:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8670, '2005-07-29 15:49:03', 2354, 446, '2005-08-01 20:19:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8671, '2005-07-29 15:49:37', 1431, 577, '2005-08-05 18:20:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8672, '2005-07-29 15:49:48', 405, 495, '2005-08-06 17:59:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8673, '2005-07-29 15:50:14', 2167, 29, '2005-08-03 18:30:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8674, '2005-07-29 15:54:22', 1744, 412, '2005-07-31 12:15:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8675, '2005-07-29 15:56:18', 1026, 258, '2005-07-30 18:50:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8676, '2005-07-29 15:59:06', 283, 533, '2005-08-05 19:12:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8677, '2005-07-29 16:01:13', 513, 315, '2005-08-07 19:21:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8678, '2005-07-29 16:04:00', 3991, 210, '2005-08-05 12:37:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8679, '2005-07-29 16:07:47', 3549, 536, '2005-08-02 18:37:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8680, '2005-07-29 16:08:03', 1227, 330, '2005-07-31 17:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8681, '2005-07-29 16:12:01', 4004, 309, '2005-08-01 18:14:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8682, '2005-07-29 16:15:26', 4328, 348, '2005-08-03 20:15:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8683, '2005-07-29 16:15:43', 3915, 513, '2005-08-07 19:19:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8684, '2005-07-29 16:16:33', 2457, 185, '2005-08-07 12:27:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8685, '2005-07-29 16:17:05', 1827, 321, '2005-08-07 17:44:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8686, '2005-07-29 16:17:49', 4160, 52, '2005-08-01 12:50:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8687, '2005-07-29 16:19:17', 222, 117, '2005-08-01 15:28:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8688, '2005-07-29 16:31:32', 2263, 381, '2005-07-30 12:39:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8689, '2005-07-29 16:38:58', 824, 487, '2005-08-01 17:09:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8690, '2005-07-29 16:39:28', 1292, 291, '2005-08-01 14:03:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8691, '2005-07-29 16:41:23', 672, 446, '2005-08-02 12:32:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8692, '2005-07-29 16:43:39', 3192, 88, '2005-08-01 15:54:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8693, '2005-07-29 16:44:13', 917, 51, '2005-08-01 15:56:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8694, '2005-07-29 16:44:48', 503, 345, '2005-08-06 16:28:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8695, '2005-07-29 16:44:55', 694, 280, '2005-08-07 12:47:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8696, '2005-07-29 16:45:18', 2553, 178, '2005-08-07 18:51:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8697, '2005-07-29 16:46:07', 443, 291, '2005-08-02 19:27:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8698, '2005-07-29 16:52:17', 2973, 324, '2005-08-04 13:20:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8699, '2005-07-29 16:53:00', 4080, 123, '2005-08-07 20:31:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8700, '2005-07-29 16:56:01', 3710, 196, '2005-07-31 16:19:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8701, '2005-07-29 17:02:35', 3158, 245, '2005-08-07 19:55:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8702, '2005-07-29 17:04:37', 2215, 306, '2005-08-05 15:30:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8703, '2005-07-29 17:12:44', 1065, 439, '2005-07-30 19:38:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8704, '2005-07-29 17:13:45', 2117, 107, '2005-08-03 20:03:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8705, '2005-07-29 17:14:29', 4038, 2, '2005-08-02 16:01:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8706, '2005-07-29 17:19:15', 2886, 515, '2005-08-03 22:52:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8707, '2005-07-29 17:21:58', 2525, 157, '2005-08-02 14:47:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8708, '2005-07-29 17:24:13', 4054, 529, '2005-08-04 13:57:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8709, '2005-07-29 17:25:54', 902, 199, '2005-08-02 22:35:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8710, '2005-07-29 17:26:03', 3391, 566, '2005-07-30 19:51:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8711, '2005-07-29 17:27:15', 3471, 575, '2005-07-31 12:57:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8712, '2005-07-29 17:30:06', 2800, 41, '2005-08-03 22:55:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8713, '2005-07-29 17:31:19', 473, 433, '2005-08-02 16:37:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8714, '2005-07-29 17:31:40', 4547, 362, '2005-08-04 16:12:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8715, '2005-07-29 17:33:45', 860, 11, '2005-08-01 17:30:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8716, '2005-07-29 17:39:09', 2123, 48, '2005-08-03 20:26:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8717, '2005-07-29 17:40:45', 1821, 260, '2005-08-01 22:38:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8718, '2005-07-29 17:41:14', 137, 23, '2005-08-01 18:22:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8719, '2005-07-29 17:45:45', 995, 333, '2005-08-01 13:53:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8720, '2005-07-29 17:48:32', 152, 180, '2005-08-04 14:30:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8721, '2005-07-29 17:56:21', 2416, 312, '2005-08-02 21:30:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8722, '2005-07-29 17:58:58', 1389, 401, '2005-08-07 23:40:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8723, '2005-07-29 18:03:47', 224, 39, '2005-08-06 18:53:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8724, '2005-07-29 18:05:21', 898, 372, '2005-08-01 15:41:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8725, '2005-07-29 18:08:42', 2385, 421, '2005-08-04 16:01:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8726, '2005-07-29 18:09:22', 897, 409, '2005-08-06 16:24:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8727, '2005-07-29 18:09:57', 3031, 528, '2005-08-03 13:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8728, '2005-07-29 18:12:49', 973, 341, '2005-08-06 22:45:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8729, '2005-07-29 18:23:02', 3342, 83, '2005-07-31 16:09:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8730, '2005-07-29 18:23:34', 4191, 592, '2005-08-01 19:56:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8731, '2005-07-29 18:23:57', 2638, 179, '2005-08-05 19:38:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8732, '2005-07-29 18:25:03', 1143, 346, '2005-08-07 18:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8733, '2005-07-29 18:26:34', 3187, 450, '2005-08-03 15:06:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8734, '2005-07-29 18:28:15', 2374, 303, '2005-08-05 23:38:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8735, '2005-07-29 18:28:54', 2881, 570, '2005-08-03 12:43:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8736, '2005-07-29 18:31:15', 1726, 530, '2005-07-30 16:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8737, '2005-07-29 18:32:13', 4154, 298, '2005-08-05 21:07:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8738, '2005-07-29 18:32:47', 3893, 210, '2005-08-02 13:05:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8739, '2005-07-29 18:34:33', 4310, 326, '2005-08-02 16:05:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8740, '2005-07-29 18:41:31', 3781, 378, '2005-08-01 18:38:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8741, '2005-07-29 18:44:57', 165, 4, '2005-08-03 18:25:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8742, '2005-07-29 18:56:12', 918, 208, '2005-08-03 16:42:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8743, '2005-07-29 18:57:01', 2664, 282, '2005-07-31 22:09:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8744, '2005-07-29 18:58:24', 1086, 280, '2005-08-05 17:56:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8745, '2005-07-29 19:03:05', 1766, 293, '2005-08-06 14:06:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8746, '2005-07-29 19:03:15', 2179, 275, '2005-07-30 17:06:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8747, '2005-07-29 19:07:57', 2584, 70, '2005-07-30 16:01:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8748, '2005-07-29 19:08:37', 2184, 237, '2005-08-01 16:24:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8749, '2005-07-29 19:13:15', 2252, 456, '2005-08-01 15:02:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8750, '2005-07-29 19:14:21', 3157, 158, '2005-07-31 17:22:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8751, '2005-07-29 19:14:39', 3467, 386, '2005-07-31 23:11:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8752, '2005-07-29 19:15:07', 4202, 253, '2005-07-31 13:27:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8753, '2005-07-29 19:15:50', 1345, 560, '2005-07-31 19:13:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8754, '2005-07-29 19:18:30', 1678, 174, '2005-08-05 18:39:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8755, '2005-07-29 19:18:31', 1498, 372, '2005-07-31 19:20:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8756, '2005-07-29 19:18:57', 4146, 120, '2005-08-02 20:07:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8757, '2005-07-29 19:19:10', 3473, 462, '2005-08-02 13:47:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8758, '2005-07-29 19:20:49', 2816, 442, '2005-08-05 21:57:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8759, '2005-07-29 19:22:37', 844, 209, '2005-08-07 15:36:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8760, '2005-07-29 19:22:40', 3566, 118, '2005-08-05 01:09:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8761, '2005-07-29 19:26:47', 1317, 539, '2005-08-08 00:09:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8762, '2005-07-29 19:30:02', 2765, 463, '2005-08-04 18:38:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8763, '2005-07-29 19:38:24', 374, 510, '2005-08-04 16:51:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8764, '2005-07-29 19:39:04', 2348, 303, '2005-08-01 13:52:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8765, '2005-07-29 19:40:08', 2631, 538, '2005-07-31 14:24:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8766, '2005-07-29 19:41:04', 3888, 338, '2005-08-02 00:41:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8767, '2005-07-29 19:42:33', 962, 467, '2005-08-01 20:52:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8768, '2005-07-29 19:43:02', 1601, 468, '2005-08-03 23:36:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8769, '2005-07-29 19:45:33', 2180, 588, '2005-08-05 22:09:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8770, '2005-07-29 19:53:50', 4025, 499, '2005-08-05 14:22:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8771, '2005-07-29 19:54:41', 3533, 347, '2005-08-03 20:38:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8772, '2005-07-29 19:55:25', 3526, 122, '2005-08-05 18:48:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8773, '2005-07-29 19:55:34', 131, 592, '2005-07-30 14:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8774, '2005-07-29 20:05:04', 315, 161, '2005-07-31 14:32:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8775, '2005-07-29 20:05:38', 1358, 44, '2005-07-30 21:13:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8776, '2005-07-29 20:07:06', 1565, 587, '2005-08-06 20:42:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8777, '2005-07-29 20:10:21', 2462, 382, '2005-07-30 20:32:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8778, '2005-07-29 20:14:25', 3654, 582, '2005-08-04 00:50:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8779, '2005-07-29 20:15:00', 3245, 202, '2005-08-03 21:17:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8780, '2005-07-29 20:19:45', 1095, 328, '2005-08-03 22:22:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8781, '2005-07-29 20:20:16', 3746, 235, '2005-07-30 16:19:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8782, '2005-07-29 20:29:34', 4379, 365, '2005-08-04 02:19:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8783, '2005-07-29 20:31:28', 2316, 71, '2005-08-02 19:33:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8784, '2005-07-29 20:35:37', 2308, 580, '2005-07-30 17:22:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8785, '2005-07-29 20:36:26', 216, 42, '2005-07-30 15:06:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8786, '2005-07-29 20:39:49', 2404, 533, '2005-08-03 18:08:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8787, '2005-07-29 20:43:49', 2366, 222, '2005-07-31 15:15:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8788, '2005-07-29 20:46:44', 3412, 121, '2005-08-03 02:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8789, '2005-07-29 20:47:27', 3062, 71, '2005-08-05 18:36:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8790, '2005-07-29 20:51:41', 751, 323, '2005-07-30 17:30:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8791, '2005-07-29 20:53:23', 1677, 469, '2005-07-31 18:14:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8792, '2005-07-29 20:56:14', 3764, 203, '2005-08-07 16:44:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8793, '2005-07-29 20:57:22', 1819, 167, '2005-08-02 01:40:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8794, '2005-07-29 20:59:38', 3509, 320, '2005-07-31 00:15:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8795, '2005-07-29 21:04:14', 1896, 302, '2005-07-31 02:58:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8796, '2005-07-29 21:09:11', 2234, 74, '2005-08-04 22:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8797, '2005-07-29 21:10:37', 2929, 566, '2005-08-07 21:43:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8798, '2005-07-29 21:15:38', 800, 513, '2005-08-05 02:46:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8799, '2005-07-29 21:16:47', 326, 237, '2005-08-07 22:09:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8800, '2005-07-29 21:18:59', 2082, 207, '2005-08-06 19:59:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8801, '2005-07-29 21:25:22', 1111, 590, '2005-08-01 00:02:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8802, '2005-07-29 21:25:51', 296, 407, '2005-07-30 18:15:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8803, '2005-07-29 21:26:24', 2814, 86, '2005-08-06 18:05:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8804, '2005-07-29 21:28:19', 4461, 363, '2005-08-01 20:15:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8805, '2005-07-29 21:29:58', 4041, 39, '2005-08-04 23:12:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8806, '2005-07-29 21:36:34', 4085, 454, '2005-08-02 00:58:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8807, '2005-07-29 21:36:59', 2612, 396, '2005-08-01 17:40:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8808, '2005-07-29 21:39:07', 593, 173, '2005-08-03 02:09:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8809, '2005-07-29 21:42:49', 3278, 8, '2005-08-04 01:13:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8810, '2005-07-29 21:45:19', 1233, 431, '2005-08-08 01:45:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8811, '2005-07-29 21:46:21', 2041, 245, '2005-08-07 16:51:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8812, '2005-07-29 21:47:40', 1172, 563, '2005-08-04 01:18:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8813, '2005-07-29 21:47:55', 3442, 497, '2005-08-05 01:16:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8814, '2005-07-29 21:49:43', 1492, 487, '2005-08-01 19:56:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8815, '2005-07-29 21:51:26', 3469, 230, '2005-08-03 22:37:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8816, '2005-07-29 21:53:00', 3984, 209, '2005-08-01 21:20:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8817, '2005-07-29 22:09:08', 2716, 175, '2005-08-01 19:07:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8818, '2005-07-29 22:14:04', 3090, 98, '2005-08-07 17:26:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8819, '2005-07-29 22:14:26', 3100, 591, '2005-08-06 23:02:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8820, '2005-07-29 22:14:56', 481, 594, '2005-08-05 23:36:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8821, '2005-07-29 22:18:12', 52, 477, '2005-08-05 22:00:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8822, '2005-07-29 22:20:21', 744, 35, '2005-08-06 03:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8823, '2005-07-29 22:22:12', 951, 75, '2005-08-07 21:03:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8824, '2005-07-29 22:22:58', 3506, 164, '2005-07-31 21:02:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8825, '2005-07-29 22:24:16', 881, 101, '2005-08-05 00:27:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8826, '2005-07-29 22:30:16', 1800, 369, '2005-07-30 19:43:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8827, '2005-07-29 22:31:24', 1517, 157, '2005-08-06 21:05:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8828, '2005-07-29 22:32:54', 1608, 547, '2005-07-30 20:41:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8829, '2005-07-29 22:33:34', 1466, 173, '2005-08-05 20:23:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8830, '2005-07-29 22:34:35', 1751, 202, '2005-08-05 20:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8831, '2005-07-29 22:37:41', 3520, 13, '2005-08-08 04:28:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8832, '2005-07-29 22:37:49', 380, 125, '2005-08-04 23:32:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8833, '2005-07-29 22:39:36', 1741, 101, '2005-08-05 21:19:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8834, '2005-07-29 22:41:48', 4477, 243, '2005-08-05 03:21:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8835, '2005-07-29 22:44:35', 2653, 237, '2005-08-05 23:28:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8836, '2005-07-29 22:46:08', 3265, 14, '2005-08-02 19:53:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8837, '2005-07-29 22:49:00', 42, 372, '2005-08-07 21:56:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8838, '2005-07-29 22:52:23', 133, 550, '2005-08-03 22:49:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8839, '2005-07-29 22:52:34', 3440, 580, '2005-08-05 03:24:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8840, '2005-07-29 22:55:38', 1484, 295, '2005-08-06 02:11:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8841, '2005-07-29 22:56:07', 3935, 363, '2005-08-01 21:21:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8842, '2005-07-29 23:03:40', 4203, 292, '2005-08-06 23:23:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8843, '2005-07-29 23:04:25', 406, 294, '2005-08-05 22:12:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8844, '2005-07-29 23:05:08', 327, 244, '2005-08-06 00:24:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8845, '2005-07-29 23:06:13', 3036, 543, '2005-08-02 20:16:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8846, '2005-07-29 23:10:28', 2912, 108, '2005-08-03 22:07:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8847, '2005-07-29 23:13:41', 4133, 480, '2005-07-31 23:55:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8848, '2005-07-29 23:20:58', 2972, 545, '2005-08-03 17:28:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8849, '2005-07-29 23:21:01', 4300, 79, '2005-08-03 20:01:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8850, '2005-07-29 23:24:20', 355, 86, '2005-07-31 00:43:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8851, '2005-07-29 23:26:19', 212, 445, '2005-08-05 03:59:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8852, '2005-07-29 23:30:03', 1138, 42, '2005-08-05 05:22:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8853, '2005-07-29 23:34:21', 2323, 58, '2005-07-31 21:20:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8854, '2005-07-29 23:40:07', 1365, 527, '2005-08-01 00:35:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8855, '2005-07-29 23:40:10', 4388, 335, '2005-08-02 18:07:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8856, '2005-07-29 23:42:00', 2942, 365, '2005-08-07 03:00:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8857, '2005-07-29 23:44:22', 1348, 477, '2005-07-31 21:32:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8858, '2005-07-29 23:44:35', 2378, 558, '2005-08-01 05:25:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8859, '2005-07-29 23:44:43', 603, 216, '2005-08-07 18:14:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8860, '2005-07-29 23:45:57', 2841, 531, '2005-08-06 02:14:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8861, '2005-07-29 23:47:29', 759, 560, '2005-08-07 01:27:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8862, '2005-07-29 23:49:23', 916, 21, '2005-08-04 20:11:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8863, '2005-07-29 23:52:01', 75, 47, '2005-08-04 20:28:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8864, '2005-07-29 23:52:12', 2321, 167, '2005-07-30 22:12:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8865, '2005-07-29 23:54:54', 1835, 305, '2005-07-31 05:10:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8866, '2005-07-29 23:58:19', 1530, 44, '2005-08-01 05:19:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8867, '2005-07-30 00:02:18', 1388, 497, '2005-08-04 00:44:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8868, '2005-07-30 00:02:26', 1229, 512, '2005-08-01 22:28:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8869, '2005-07-30 00:06:32', 4353, 308, '2005-07-31 20:49:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8870, '2005-07-30 00:08:08', 4104, 90, '2005-08-08 00:15:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8871, '2005-07-30 00:12:41', 4535, 382, '2005-08-08 03:53:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8872, '2005-07-30 00:13:54', 2669, 186, '2005-08-01 18:34:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8873, '2005-07-30 00:14:32', 3498, 91, '2005-08-04 20:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8874, '2005-07-30 00:14:45', 459, 564, '2005-08-02 22:34:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8875, '2005-07-30 00:15:09', 1294, 121, '2005-08-04 02:54:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8876, '2005-07-30 00:15:09', 2394, 579, '2005-08-02 23:56:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8877, '2005-07-30 00:15:22', 1140, 417, '2005-07-31 00:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8878, '2005-07-30 00:15:57', 440, 25, '2005-08-01 00:22:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8879, '2005-07-30 00:16:02', 2956, 584, '2005-08-06 20:10:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8880, '2005-07-30 00:16:55', 2920, 51, '2005-08-01 01:05:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8881, '2005-07-30 00:22:31', 2012, 118, '2005-08-04 19:10:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8882, '2005-07-30 00:24:05', 441, 410, '2005-08-03 19:48:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8883, '2005-07-30 00:24:48', 1421, 168, '2005-08-04 00:24:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8884, '2005-07-30 00:26:22', 3050, 80, '2005-08-05 03:24:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8885, '2005-07-30 00:36:26', 2984, 135, '2005-08-06 03:05:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8886, '2005-07-30 00:36:31', 1469, 418, '2005-08-08 06:18:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8887, '2005-07-30 00:36:54', 4119, 389, '2005-08-04 19:07:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8888, '2005-07-30 00:39:36', 2824, 284, '2005-08-01 02:28:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8889, '2005-07-30 00:39:43', 3457, 558, '2005-08-02 23:22:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8890, '2005-07-30 00:42:06', 3656, 470, '2005-08-05 21:04:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8891, '2005-07-30 00:46:55', 4093, 435, '2005-08-06 23:32:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8892, '2005-07-30 00:47:03', 1584, 184, '2005-08-06 03:23:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8893, '2005-07-30 00:48:19', 1048, 147, '2005-08-01 03:25:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8894, '2005-07-30 00:48:31', 2055, 552, '2005-07-31 05:49:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8895, '2005-07-30 00:49:17', 3217, 494, '2005-07-31 01:56:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8896, '2005-07-30 00:51:21', 3560, 205, '2005-07-31 22:33:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8897, '2005-07-30 01:00:17', 1964, 459, '2005-08-01 03:41:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8898, '2005-07-30 01:02:20', 3961, 452, '2005-08-05 22:02:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8899, '2005-07-30 01:05:30', 4148, 252, '2005-08-01 23:32:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8900, '2005-07-30 01:07:03', 3057, 375, '2005-08-06 04:07:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8901, '2005-07-30 01:07:12', 4392, 28, '2005-08-02 06:34:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8902, '2005-07-30 01:08:06', 2983, 408, '2005-08-05 00:00:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8903, '2005-07-30 01:08:06', 4546, 406, '2005-07-30 21:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8904, '2005-07-30 01:08:33', 3622, 575, '2005-08-04 02:33:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8905, '2005-07-30 01:11:11', 2154, 240, '2005-08-04 22:39:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8906, '2005-07-30 01:21:39', 2667, 560, '2005-08-07 02:14:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8907, '2005-07-30 01:25:03', 3239, 576, '2005-08-03 05:41:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8908, '2005-07-30 01:26:05', 4498, 391, '2005-07-31 20:39:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8909, '2005-07-30 01:28:03', 2606, 556, '2005-08-06 04:40:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8910, '2005-07-30 01:29:48', 1039, 569, '2005-07-31 21:33:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8911, '2005-07-30 01:30:57', 2159, 445, '2005-08-02 20:01:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8912, '2005-07-30 01:31:25', 1686, 280, '2005-08-02 07:14:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8913, '2005-07-30 01:35:01', 429, 391, '2005-08-06 06:13:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8914, '2005-07-30 01:42:03', 1347, 32, '2005-08-04 03:53:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8915, '2005-07-30 01:42:09', 3030, 42, '2005-08-04 23:29:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8916, '2005-07-30 01:42:21', 3852, 377, '2005-08-03 05:28:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8917, '2005-07-30 01:47:02', 4460, 309, '2005-08-05 21:10:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8918, '2005-07-30 01:56:22', 2544, 424, '2005-08-04 01:58:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8919, '2005-07-30 01:57:03', 4006, 337, '2005-08-08 05:14:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8920, '2005-07-30 01:59:24', 4079, 78, '2005-08-02 22:37:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8921, '2005-07-30 02:04:02', 1016, 354, '2005-07-31 06:18:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8922, '2005-07-30 02:08:25', 1696, 446, '2005-08-08 07:19:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8923, '2005-07-30 02:08:49', 2425, 446, '2005-08-03 23:45:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8924, '2005-07-30 02:08:58', 2291, 38, '2005-08-05 02:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8925, '2005-07-30 02:09:14', 3753, 500, '2005-07-30 21:39:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8926, '2005-07-30 02:10:31', 3677, 510, '2005-08-03 23:56:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8927, '2005-07-30 02:13:31', 272, 15, '2005-08-01 01:34:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8928, '2005-07-30 02:18:19', 706, 366, '2005-08-05 00:49:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8929, '2005-07-30 02:28:22', 3501, 472, '2005-08-06 06:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8930, '2005-07-30 02:28:38', 1107, 202, '2005-08-02 01:43:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8931, '2005-07-30 02:30:07', 16, 268, '2005-08-02 08:24:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8932, '2005-07-30 02:31:26', 4537, 295, '2005-08-04 02:17:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8933, '2005-07-30 02:36:06', 1664, 260, '2005-08-02 23:37:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8934, '2005-07-30 02:37:05', 3223, 494, '2005-08-01 20:42:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8935, '2005-07-30 02:38:45', 285, 76, '2005-08-02 07:11:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8936, '2005-07-30 02:47:13', 1408, 227, '2005-08-01 02:25:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8937, '2005-07-30 02:53:21', 2406, 544, '2005-08-08 03:33:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8938, '2005-07-30 02:56:08', 4031, 92, '2005-07-31 23:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8939, '2005-07-30 02:56:53', 4175, 598, '2005-08-01 21:19:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8940, '2005-07-30 02:57:26', 1566, 212, '2005-08-05 22:05:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8941, '2005-07-30 02:59:21', 4147, 329, '2005-08-02 05:18:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8942, '2005-07-30 03:01:07', 4375, 77, '2005-08-06 22:50:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8943, '2005-07-30 03:06:48', 3698, 531, '2005-08-02 00:59:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8944, '2005-07-30 03:11:44', 3513, 172, '2005-08-06 23:15:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8945, '2005-07-30 03:11:48', 1441, 447, '2005-08-07 07:53:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8946, '2005-07-30 03:14:53', 3510, 257, '2005-08-04 00:50:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8947, '2005-07-30 03:15:37', 341, 24, '2005-08-04 07:10:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8948, '2005-07-30 03:16:18', 948, 597, '2005-08-04 03:16:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8949, '2005-07-30 03:17:02', 2876, 231, '2005-08-08 07:38:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8950, '2005-07-30 03:17:13', 3015, 11, '2005-08-07 00:20:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8951, '2005-07-30 03:18:24', 127, 336, '2005-08-08 08:50:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8952, '2005-07-30 03:20:38', 4397, 36, '2005-08-02 02:54:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8953, '2005-07-30 03:21:05', 535, 278, '2005-08-02 05:24:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8954, '2005-07-30 03:25:51', 991, 137, '2005-08-06 05:10:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8955, '2005-07-30 03:28:27', 4532, 405, '2005-08-04 04:56:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8956, '2005-07-30 03:32:29', 2129, 71, '2005-08-01 03:08:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8957, '2005-07-30 03:34:10', 811, 158, '2005-08-06 07:05:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8958, '2005-07-30 03:34:26', 1556, 536, '2005-08-06 08:14:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8959, '2005-07-30 03:35:49', 3508, 550, '2005-08-06 02:02:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8960, '2005-07-30 03:36:31', 391, 525, '2005-08-01 23:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8961, '2005-07-30 03:43:35', 3679, 211, '2005-08-06 07:42:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8962, '2005-07-30 03:43:45', 4439, 406, '2005-08-07 00:33:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8963, '2005-07-30 03:46:26', 100, 544, '2005-08-08 06:12:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8964, '2005-07-30 03:49:35', 280, 424, '2005-08-06 23:28:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8965, '2005-07-30 03:52:37', 2419, 599, '2005-08-05 01:28:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8966, '2005-07-30 03:54:12', 1903, 522, '2005-07-31 04:51:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8967, '2005-07-30 03:56:55', 1536, 480, '2005-08-06 05:25:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8968, '2005-07-30 03:57:32', 2280, 339, '2005-07-31 00:09:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8969, '2005-07-30 04:00:19', 2043, 121, '2005-08-06 04:39:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8970, '2005-07-30 04:02:05', 2940, 313, '2005-08-07 03:40:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8971, '2005-07-30 04:03:58', 3572, 35, '2005-08-08 04:16:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8972, '2005-07-30 04:06:25', 1974, 89, '2005-08-04 22:49:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8973, '2005-07-30 04:09:13', 886, 282, '2005-08-07 22:30:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8974, '2005-07-30 04:09:16', 3376, 425, '2005-08-04 06:55:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8975, '2005-07-30 04:10:18', 3288, 356, '2005-08-07 01:06:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8976, '2005-07-30 04:12:32', 2135, 507, '2005-08-04 23:08:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8977, '2005-07-30 04:14:07', 4099, 334, '2005-08-05 23:45:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8978, '2005-07-30 04:14:28', 711, 5, '2005-08-06 09:08:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8979, '2005-07-30 04:20:25', 1394, 529, '2005-08-08 03:39:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8980, '2005-07-30 04:22:15', 3061, 105, '2005-08-04 08:16:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8981, '2005-07-30 04:25:30', 4413, 310, '2005-08-06 02:37:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8982, '2005-07-30 04:31:02', 1128, 251, '2005-07-31 04:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8983, '2005-07-30 04:31:08', 1861, 144, '2005-07-31 09:28:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8984, '2005-07-30 04:31:50', 2126, 485, '2005-08-04 03:24:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8985, '2005-07-30 04:34:51', 3179, 12, '2005-08-06 00:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8986, '2005-07-30 04:37:20', 3992, 551, '2005-07-31 23:54:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8987, '2005-07-30 04:37:36', 1434, 135, '2005-08-08 10:14:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8988, '2005-07-30 04:38:49', 777, 487, '2005-08-07 07:00:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8989, '2005-07-30 04:39:19', 954, 575, '2005-08-06 02:11:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8990, '2005-07-30 04:41:42', 1869, 292, '2005-08-07 22:50:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8991, '2005-07-30 04:42:54', 4540, 474, '2005-08-01 23:51:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8992, '2005-07-30 04:44:18', 4478, 54, '2005-08-01 00:29:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8993, '2005-07-30 04:51:25', 1891, 382, '2005-08-01 01:04:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8994, '2005-07-30 04:51:32', 1527, 287, '2005-08-07 09:41:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8995, '2005-07-30 04:53:11', 3575, 331, '2005-08-07 00:24:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8996, '2005-07-30 04:53:23', 1970, 579, '2005-07-31 06:01:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8997, '2005-07-30 04:53:56', 850, 31, '2005-08-03 07:10:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8998, '2005-07-30 04:54:14', 1573, 120, '2005-08-08 08:18:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (8999, '2005-07-30 04:55:46', 3458, 424, '2005-08-01 00:16:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9000, '2005-07-30 04:58:55', 3763, 290, '2005-08-08 04:01:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9001, '2005-07-30 04:59:41', 3682, 440, '2005-07-31 08:56:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9002, '2005-07-30 05:02:21', 1936, 137, '2005-07-31 04:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9003, '2005-07-30 05:02:52', 1605, 507, '2005-07-31 10:33:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9004, '2005-07-30 05:04:27', 3775, 178, '2005-07-31 00:49:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9005, '2005-07-30 05:04:58', 157, 204, '2005-08-03 07:41:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9006, '2005-07-30 05:06:32', 3315, 49, '2005-07-31 08:24:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9007, '2005-07-30 05:09:32', 2813, 63, '2005-08-02 06:12:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9008, '2005-07-30 05:10:26', 3592, 371, '2005-07-31 08:13:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9009, '2005-07-30 05:12:01', 4136, 166, '2005-08-07 10:58:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9010, '2005-07-30 05:12:04', 1698, 152, '2005-08-06 02:54:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9011, '2005-07-30 05:16:29', 2799, 236, '2005-08-05 06:57:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9012, '2005-07-30 05:18:57', 3604, 494, '2005-08-06 06:21:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9013, '2005-07-30 05:19:20', 2367, 347, '2005-08-04 01:35:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9014, '2005-07-30 05:19:27', 311, 297, '2005-08-01 01:10:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9015, '2005-07-30 05:21:32', 4128, 203, '2005-08-08 07:03:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9016, '2005-07-30 05:26:13', 4309, 312, '2005-08-04 00:25:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9017, '2005-07-30 05:26:20', 3325, 319, '2005-08-04 10:00:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9018, '2005-07-30 05:28:40', 1982, 218, '2005-08-07 01:34:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9019, '2005-07-30 05:28:53', 946, 235, '2005-08-03 02:16:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9020, '2005-07-30 05:31:27', 1700, 142, '2005-08-08 06:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9021, '2005-07-30 05:34:24', 674, 498, '2005-08-03 04:13:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9022, '2005-07-30 05:34:45', 4473, 159, '2005-08-03 23:57:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9023, '2005-07-30 05:36:40', 2911, 148, '2005-08-07 06:20:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9024, '2005-07-30 05:44:42', 164, 329, '2005-08-05 03:15:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9025, '2005-07-30 05:50:08', 2244, 473, '2005-07-31 09:58:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9026, '2005-07-30 05:55:31', 1524, 423, '2005-08-01 03:19:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9027, '2005-07-30 05:58:27', 449, 72, '2005-08-03 03:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9028, '2005-07-30 06:00:35', 2687, 119, '2005-08-02 01:35:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9029, '2005-07-30 06:03:11', 2220, 52, '2005-08-04 01:42:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9030, '2005-07-30 06:05:38', 2237, 367, '2005-08-03 00:19:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9031, '2005-07-30 06:06:10', 2377, 2, '2005-08-04 10:45:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9032, '2005-07-30 06:06:54', 4448, 369, '2005-08-01 05:27:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9033, '2005-07-30 06:07:42', 3416, 35, '2005-08-05 01:18:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9034, '2005-07-30 06:10:58', 3847, 144, '2005-08-08 05:00:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9035, '2005-07-30 06:16:07', 3785, 243, '2005-08-06 09:22:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9036, '2005-07-30 06:18:38', 790, 18, '2005-07-31 01:22:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9037, '2005-07-30 06:23:14', 3833, 356, '2005-08-08 06:25:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9038, '2005-07-30 06:23:35', 217, 514, '2005-08-06 11:10:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9039, '2005-07-30 06:24:28', 4493, 485, '2005-08-08 00:28:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9040, '2005-07-30 06:31:45', 392, 33, '2005-08-03 12:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9041, '2005-07-30 06:32:36', 1103, 454, '2005-08-01 10:28:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9042, '2005-07-30 06:33:55', 2770, 398, '2005-08-04 09:31:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9043, '2005-07-30 06:34:07', 4127, 9, '2005-08-02 01:16:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9044, '2005-07-30 06:35:21', 3796, 319, '2005-07-31 10:27:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9045, '2005-07-30 06:36:57', 4521, 46, '2005-08-08 01:51:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9046, '2005-07-30 06:46:55', 1736, 215, '2005-08-01 02:21:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9047, '2005-07-30 06:56:33', 256, 522, '2005-08-08 06:40:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9048, '2005-07-30 06:57:07', 3929, 100, '2005-08-05 00:57:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9049, '2005-07-30 06:57:28', 2620, 417, '2005-08-04 09:02:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9050, '2005-07-30 06:59:55', 106, 40, '2005-08-06 06:37:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9051, '2005-07-30 07:05:54', 1847, 337, '2005-08-07 09:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9052, '2005-07-30 07:06:08', 3351, 408, '2005-08-03 10:30:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9053, '2005-07-30 07:07:39', 2535, 485, '2005-08-01 09:22:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9054, '2005-07-30 07:11:44', 2860, 209, '2005-08-08 01:55:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9055, '2005-07-30 07:13:07', 634, 512, '2005-08-01 12:18:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9056, '2005-07-30 07:13:20', 4363, 380, '2005-08-03 07:36:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9057, '2005-07-30 07:14:18', 3141, 202, '2005-08-01 05:10:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9058, '2005-07-30 07:15:45', 4214, 403, '2005-07-31 02:57:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9059, '2005-07-30 07:18:44', 480, 267, '2005-08-08 08:39:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9060, '2005-07-30 07:20:36', 4360, 87, '2005-08-03 10:51:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9061, '2005-07-30 07:21:52', 1933, 255, '2005-08-08 10:52:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9062, '2005-07-30 07:23:17', 2780, 358, '2005-08-02 12:07:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9063, '2005-07-30 07:24:34', 2851, 564, '2005-08-05 01:28:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9064, '2005-07-30 07:24:55', 1417, 194, '2005-08-07 08:44:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9065, '2005-07-30 07:25:09', 349, 238, '2005-07-31 05:18:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9066, '2005-07-30 07:28:54', 196, 171, '2005-08-02 05:23:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9067, '2005-07-30 07:31:01', 3628, 382, '2005-08-04 11:44:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9068, '2005-07-30 07:31:45', 2264, 78, '2005-08-08 06:40:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9069, '2005-07-30 07:39:59', 1852, 258, '2005-08-02 04:10:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9070, '2005-07-30 07:40:39', 3690, 276, '2005-08-01 04:19:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9071, '2005-07-30 07:40:58', 3151, 523, '2005-08-01 06:59:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9072, '2005-07-30 07:45:49', 4536, 106, '2005-08-04 10:00:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9073, '2005-07-30 07:49:56', 2185, 141, '2005-08-05 06:25:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9074, '2005-07-30 07:50:10', 3244, 84, '2005-08-01 11:21:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9075, '2005-07-30 07:55:14', 1931, 20, '2005-08-02 13:49:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9076, '2005-07-30 07:58:12', 496, 447, '2005-08-08 06:04:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9077, '2005-07-30 08:00:19', 4324, 471, '2005-08-08 11:21:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9078, '2005-07-30 08:01:00', 955, 300, '2005-07-31 10:39:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9079, '2005-07-30 08:02:00', 2143, 193, '2005-07-31 04:02:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9080, '2005-07-30 08:02:39', 94, 276, '2005-08-06 12:02:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9081, '2005-07-30 08:09:58', 3040, 572, '2005-08-03 13:27:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9082, '2005-07-30 08:11:22', 4042, 438, '2005-08-06 09:26:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9083, '2005-07-30 08:14:27', 456, 488, '2005-08-07 14:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9084, '2005-07-30 08:14:29', 3950, 171, '2005-08-03 11:12:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9085, '2005-07-30 08:17:24', 3400, 33, '2005-08-03 09:35:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9086, '2005-07-30 08:18:46', 2779, 57, '2005-08-06 06:10:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9087, '2005-07-30 08:19:47', 4048, 546, '2005-08-02 07:15:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9088, '2005-07-30 08:21:02', 3407, 245, '2005-08-01 09:55:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9089, '2005-07-30 08:23:39', 490, 369, '2005-07-31 06:00:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9090, '2005-07-30 08:24:42', 3426, 104, '2005-08-08 06:17:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9091, '2005-07-30 08:30:45', 2249, 66, '2005-08-07 13:28:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9092, '2005-07-30 08:30:56', 1877, 17, '2005-08-06 08:09:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9093, '2005-07-30 08:33:24', 2208, 96, '2005-08-04 11:07:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9094, '2005-07-30 08:35:10', 2699, 140, '2005-08-07 08:18:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9095, '2005-07-30 08:38:36', 3019, 511, '2005-07-31 06:14:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9096, '2005-07-30 08:39:23', 540, 216, '2005-08-01 03:33:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9097, '2005-07-30 08:40:35', 570, 173, '2005-08-04 11:19:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9098, '2005-07-30 08:44:21', 1267, 144, '2005-08-08 12:31:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9099, '2005-07-30 08:45:48', 594, 250, '2005-08-01 03:18:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9100, '2005-07-30 08:46:09', 4117, 4, '2005-08-05 10:34:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9101, '2005-07-30 08:47:13', 3165, 566, '2005-08-02 12:52:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9102, '2005-07-30 08:48:20', 1154, 276, '2005-08-04 10:19:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9103, '2005-07-30 08:49:26', 3806, 280, '2005-07-31 14:15:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9104, '2005-07-30 08:49:55', 3372, 322, '2005-08-06 12:23:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9105, '2005-07-30 08:50:25', 4443, 262, '2005-08-05 06:08:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9106, '2005-07-30 08:52:34', 2935, 148, '2005-08-02 07:38:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9107, '2005-07-30 08:52:45', 1068, 531, '2005-08-05 08:39:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9108, '2005-07-30 08:56:36', 3977, 490, '2005-08-04 11:07:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9109, '2005-07-30 08:58:24', 787, 266, '2005-08-07 06:56:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9110, '2005-07-30 09:05:42', 1474, 317, '2005-08-03 05:15:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9111, '2005-07-30 09:05:44', 166, 211, '2005-08-04 14:27:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9112, '2005-07-30 09:06:31', 395, 74, '2005-08-04 05:12:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9113, '2005-07-30 09:09:03', 3903, 374, '2005-07-31 03:13:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9114, '2005-07-30 09:13:21', 893, 18, '2005-08-05 06:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9115, '2005-07-30 09:13:55', 3750, 322, '2005-08-04 04:02:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9116, '2005-07-30 09:19:41', 2917, 446, '2005-08-03 08:01:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9117, '2005-07-30 09:20:59', 3055, 371, '2005-08-07 08:47:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9118, '2005-07-30 09:24:18', 4538, 172, '2005-08-02 14:46:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9119, '2005-07-30 09:25:56', 275, 305, '2005-08-03 03:36:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9120, '2005-07-30 09:26:08', 139, 473, '2005-08-08 09:52:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9121, '2005-07-30 09:36:26', 3098, 150, '2005-08-05 15:17:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9122, '2005-07-30 09:36:52', 627, 365, '2005-08-05 13:20:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9123, '2005-07-30 09:39:15', 3748, 293, '2005-08-02 08:12:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9124, '2005-07-30 09:43:12', 4552, 105, '2005-08-06 06:17:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9125, '2005-07-30 09:43:39', 333, 335, '2005-08-07 14:02:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9126, '2005-07-30 09:44:15', 4495, 590, '2005-08-02 11:02:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9127, '2005-07-30 09:46:36', 4114, 300, '2005-07-31 07:43:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9128, '2005-07-30 09:51:14', 3647, 372, '2005-08-07 06:23:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9129, '2005-07-30 09:51:21', 2658, 125, '2005-08-07 08:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9130, '2005-07-30 09:55:10', 1715, 354, '2005-08-04 08:57:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9131, '2005-07-30 09:55:57', 623, 142, '2005-08-01 14:21:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9132, '2005-07-30 09:56:00', 402, 159, '2005-08-02 09:22:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9133, '2005-07-30 09:59:00', 408, 576, '2005-08-07 04:24:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9134, '2005-07-30 10:00:21', 3797, 559, '2005-08-01 05:01:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9135, '2005-07-30 10:06:53', 821, 161, '2005-08-03 13:57:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9136, '2005-07-30 10:07:20', 1734, 57, '2005-07-31 08:20:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9137, '2005-07-30 10:09:24', 840, 459, '2005-08-06 04:30:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9138, '2005-07-30 10:11:52', 2550, 17, '2005-07-31 07:05:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9139, '2005-07-30 10:11:52', 2809, 133, '2005-08-03 12:44:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9140, '2005-07-30 10:12:01', 4095, 25, '2005-08-06 09:16:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9141, '2005-07-30 10:16:04', 3087, 484, '2005-08-05 08:01:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9142, '2005-07-30 10:21:03', 4467, 486, '2005-08-04 15:14:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9143, '2005-07-30 10:22:11', 2962, 511, '2005-08-07 06:13:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9144, '2005-07-30 10:22:15', 718, 381, '2005-08-05 08:14:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9145, '2005-07-30 10:27:55', 559, 176, '2005-08-07 14:41:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9146, '2005-07-30 10:32:08', 483, 302, '2005-08-08 14:30:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9147, '2005-07-30 10:38:59', 4167, 394, '2005-08-02 11:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9148, '2005-07-30 10:39:10', 1407, 333, '2005-08-04 07:17:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9149, '2005-07-30 10:45:12', 2632, 21, '2005-08-01 09:40:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9150, '2005-07-30 10:49:32', 2834, 213, '2005-08-08 15:43:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9151, '2005-07-30 10:50:53', 3956, 102, '2005-08-07 08:19:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9152, '2005-07-30 10:51:27', 3607, 595, '2005-07-31 06:38:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9153, '2005-07-30 10:58:16', 3743, 589, '2005-08-03 06:16:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9154, '2005-07-30 10:59:54', 576, 312, '2005-08-05 16:47:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9155, '2005-07-30 11:00:00', 3787, 107, '2005-08-02 05:24:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9156, '2005-07-30 11:04:55', 1747, 145, '2005-07-31 14:10:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9157, '2005-07-30 11:06:23', 146, 19, '2005-08-05 05:29:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9158, '2005-07-30 11:12:03', 4017, 16, '2005-08-02 05:55:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9159, '2005-07-30 11:16:37', 1234, 217, '2005-08-03 10:32:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9160, '2005-07-30 11:17:33', 183, 34, '2005-08-06 15:16:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9161, '2005-07-30 11:19:18', 969, 433, '2005-08-02 05:32:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9162, '2005-07-30 11:21:56', 4198, 184, '2005-08-02 15:32:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9163, '2005-07-30 11:23:22', 4562, 345, '2005-07-31 07:34:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9164, '2005-07-30 11:24:14', 4434, 342, '2005-08-08 16:24:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9165, '2005-07-30 11:24:28', 4034, 291, '2005-08-03 09:38:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9166, '2005-07-30 11:26:28', 308, 12, '2005-08-04 12:32:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9167, '2005-07-30 11:30:37', 1785, 162, '2005-08-08 17:13:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9168, '2005-07-30 11:31:17', 2035, 75, '2005-08-08 16:56:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9169, '2005-07-30 11:35:00', 1567, 245, '2005-08-06 16:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9170, '2005-07-30 11:35:24', 4279, 425, '2005-08-05 05:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9171, '2005-07-30 11:36:24', 1832, 189, '2005-08-07 06:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9172, '2005-07-30 11:36:38', 695, 437, '2005-08-04 09:39:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9173, '2005-07-30 11:40:10', 2103, 381, '2005-08-04 05:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9174, '2005-07-30 11:42:10', 2636, 144, '2005-07-31 09:52:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9175, '2005-07-30 11:47:48', 358, 133, '2005-08-02 08:13:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9176, '2005-07-30 11:50:54', 2659, 260, '2005-08-02 14:25:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9177, '2005-07-30 11:52:40', 1088, 400, '2005-08-08 09:35:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9178, '2005-07-30 11:58:50', 2046, 448, '2005-08-08 15:24:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9179, '2005-07-30 12:02:41', 62, 50, '2005-08-05 15:23:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9180, '2005-07-30 12:03:15', 3479, 442, '2005-08-01 14:25:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9181, '2005-07-30 12:05:58', 3953, 224, '2005-08-02 06:22:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9182, '2005-07-30 12:06:58', 2533, 165, '2005-08-08 11:33:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9183, '2005-07-30 12:09:56', 4320, 475, '2005-08-06 11:50:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9184, '2005-07-30 12:10:19', 51, 365, '2005-08-01 07:35:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9185, '2005-07-30 12:10:40', 2268, 426, '2005-08-06 07:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9186, '2005-07-30 12:13:48', 4513, 273, '2005-07-31 11:59:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9187, '2005-07-30 12:14:03', 4008, 469, '2005-08-04 13:10:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9188, '2005-07-30 12:19:54', 727, 195, '2005-08-06 09:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9189, '2005-07-30 12:20:59', 4529, 485, '2005-08-06 16:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9190, '2005-07-30 12:24:17', 4421, 177, '2005-08-03 07:41:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9191, '2005-07-30 12:25:51', 500, 314, '2005-08-05 16:13:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9192, '2005-07-30 12:26:26', 2372, 102, '2005-08-04 07:54:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9193, '2005-07-30 12:28:42', 3470, 69, '2005-08-02 12:17:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9194, '2005-07-30 12:28:45', 2467, 294, '2005-08-06 14:38:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9195, '2005-07-30 12:29:43', 944, 440, '2005-08-04 12:35:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9196, '2005-07-30 12:30:19', 4298, 251, '2005-07-31 18:01:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9197, '2005-07-30 12:31:36', 3214, 168, '2005-08-03 09:05:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9198, '2005-07-30 12:37:08', 2371, 105, '2005-08-07 16:37:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9199, '2005-07-30 12:38:00', 4336, 580, '2005-08-01 07:09:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9200, '2005-07-30 12:39:52', 3277, 137, '2005-08-08 09:43:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9201, '2005-07-30 12:42:21', 4387, 291, '2005-08-08 06:50:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9202, '2005-07-30 12:43:24', 4525, 466, '2005-08-07 10:39:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9203, '2005-07-30 12:43:40', 2112, 169, '2005-08-01 09:31:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9204, '2005-07-30 12:43:58', 4378, 43, '2005-08-03 16:26:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9205, '2005-07-30 12:46:40', 4165, 259, '2005-08-08 14:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9206, '2005-07-30 12:46:59', 2021, 404, '2005-08-03 14:58:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9207, '2005-07-30 12:49:57', 1346, 345, '2005-07-31 14:32:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9208, '2005-07-30 12:54:03', 2751, 339, '2005-08-06 17:22:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9209, '2005-07-30 12:55:36', 3940, 23, '2005-08-03 11:31:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9210, '2005-07-30 12:56:44', 101, 105, '2005-08-08 09:41:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9211, '2005-07-30 12:59:45', 595, 57, '2005-08-07 18:17:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9212, '2005-07-30 13:03:13', 2111, 73, '2005-08-06 09:48:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9213, '2005-07-30 13:07:11', 184, 388, '2005-08-01 15:30:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9214, '2005-07-30 13:10:14', 2823, 181, '2005-08-06 14:22:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9215, '2005-07-30 13:11:11', 3591, 128, '2005-08-06 13:06:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9216, '2005-07-30 13:11:19', 2783, 38, '2005-07-31 11:27:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9217, '2005-07-30 13:13:55', 1561, 112, '2005-08-05 17:27:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9218, '2005-07-30 13:14:35', 119, 172, '2005-08-07 18:03:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9219, '2005-07-30 13:15:21', 771, 329, '2005-08-01 11:39:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9220, '2005-07-30 13:17:27', 2463, 569, '2005-08-07 11:34:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9221, '2005-07-30 13:20:06', 2496, 113, '2005-08-06 13:58:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9222, '2005-07-30 13:21:08', 3648, 95, '2005-08-08 10:42:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9223, '2005-07-30 13:23:20', 3231, 595, '2005-08-04 11:24:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9224, '2005-07-30 13:25:37', 2260, 406, '2005-08-01 15:13:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9225, '2005-07-30 13:29:47', 1992, 391, '2005-08-02 17:08:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9226, '2005-07-30 13:31:20', 4315, 3, '2005-08-06 16:42:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9227, '2005-07-30 13:36:13', 2353, 522, '2005-08-07 17:39:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9228, '2005-07-30 13:36:57', 2325, 91, '2005-08-05 10:43:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9229, '2005-07-30 13:38:17', 3780, 276, '2005-08-08 18:17:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9230, '2005-07-30 13:39:42', 1199, 109, '2005-07-31 19:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9231, '2005-07-30 13:42:15', 1587, 489, '2005-08-02 19:27:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9232, '2005-07-30 13:43:00', 1991, 502, '2005-08-02 11:39:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9233, '2005-07-30 13:44:15', 2320, 357, '2005-08-07 13:02:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9234, '2005-07-30 13:45:54', 1660, 128, '2005-08-02 15:33:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9235, '2005-07-30 13:47:17', 984, 181, '2005-08-06 17:15:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9236, '2005-07-30 13:47:43', 4030, 2, '2005-08-08 18:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9237, '2005-07-30 13:48:17', 2777, 157, '2005-07-31 13:57:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9238, '2005-07-30 13:49:43', 3356, 12, '2005-08-08 08:25:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9239, '2005-07-30 13:50:52', 1728, 580, '2005-08-06 16:28:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9240, '2005-07-30 13:57:54', 587, 92, '2005-08-03 12:23:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9241, '2005-07-30 13:58:41', 4145, 187, '2005-08-04 09:44:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9242, '2005-07-30 14:03:58', 755, 306, '2005-08-02 18:09:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9243, '2005-07-30 14:06:27', 876, 516, '2005-08-06 09:26:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9244, '2005-07-30 14:06:53', 3640, 27, '2005-08-03 19:46:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9245, '2005-07-30 14:07:50', 2586, 116, '2005-08-06 17:59:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9246, '2005-07-30 14:12:31', 3390, 185, '2005-08-02 14:25:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9247, '2005-07-30 14:13:56', 4106, 426, '2005-08-02 16:34:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9248, '2005-07-30 14:14:11', 1382, 2, '2005-08-05 11:19:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9249, '2005-07-30 14:15:02', 2015, 296, '2005-08-05 13:02:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9250, '2005-07-30 14:18:16', 4544, 539, '2005-08-04 12:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9251, '2005-07-30 14:19:25', 2948, 390, '2005-08-08 11:22:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9252, '2005-07-30 14:19:59', 2350, 322, '2005-08-07 15:17:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9253, '2005-07-30 14:20:12', 4183, 151, '2005-07-31 11:31:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9254, '2005-07-30 14:26:11', 495, 33, '2005-08-04 16:12:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9255, '2005-07-30 14:26:46', 1596, 23, '2005-08-07 18:16:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9256, '2005-07-30 14:29:29', 4021, 19, '2005-08-05 16:59:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9257, '2005-07-30 14:30:38', 2615, 466, '2005-08-04 17:57:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9258, '2005-07-30 14:31:31', 2007, 275, '2005-08-05 16:29:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9259, '2005-07-30 14:37:44', 97, 138, '2005-08-06 18:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9260, '2005-07-30 14:38:22', 3969, 13, '2005-08-07 18:47:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9261, '2005-07-30 14:39:35', 372, 380, '2005-08-08 11:26:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9262, '2005-07-30 14:45:02', 2322, 349, '2005-08-05 15:18:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9263, '2005-07-30 14:48:24', 73, 410, '2005-08-04 19:06:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9264, '2005-07-30 14:51:36', 4071, 157, '2005-08-02 10:06:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9265, '2005-07-30 14:55:25', 3700, 560, '2005-08-02 11:34:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9266, '2005-07-30 14:59:01', 1705, 364, '2005-07-31 17:01:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9267, '2005-07-30 14:59:05', 645, 409, '2005-08-04 10:17:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9268, '2005-07-30 15:02:30', 3593, 592, '2005-08-05 12:50:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9269, '2005-07-30 15:02:33', 548, 435, '2005-08-02 16:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9270, '2005-07-30 15:03:16', 700, 232, '2005-07-31 16:09:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9271, '2005-07-30 15:04:31', 2660, 100, '2005-07-31 20:33:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9272, '2005-07-30 15:05:22', 1352, 553, '2005-08-05 10:02:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9273, '2005-07-30 15:05:36', 1867, 497, '2005-08-08 09:07:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9274, '2005-07-30 15:07:04', 4424, 47, '2005-08-06 11:17:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9275, '2005-07-30 15:09:15', 1916, 439, '2005-07-31 10:23:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9276, '2005-07-30 15:09:28', 1528, 237, '2005-08-06 19:39:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9277, '2005-07-30 15:13:45', 3734, 82, '2005-08-05 10:25:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9278, '2005-07-30 15:15:19', 3782, 581, '2005-08-03 20:21:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9279, '2005-07-30 15:15:21', 1070, 567, '2005-08-07 18:46:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9280, '2005-07-30 15:15:38', 4103, 286, '2005-08-05 19:20:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9281, '2005-07-30 15:15:51', 3086, 398, '2005-08-05 12:58:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9282, '2005-07-30 15:17:31', 736, 259, '2005-08-07 20:46:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9283, '2005-07-30 15:25:19', 1858, 360, '2005-08-01 15:35:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9284, '2005-07-30 15:25:19', 3976, 38, '2005-08-01 17:45:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9285, '2005-07-30 15:26:08', 3686, 273, '2005-08-06 15:59:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9286, '2005-07-30 15:32:28', 2477, 154, '2005-07-31 20:42:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9287, '2005-07-30 15:35:39', 2048, 551, '2005-08-02 10:15:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9288, '2005-07-30 15:56:39', 2640, 447, '2005-08-04 13:25:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9289, '2005-07-30 15:57:04', 389, 453, '2005-08-07 18:46:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9290, '2005-07-30 15:59:08', 2275, 500, '2005-08-06 21:49:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9291, '2005-07-30 16:03:39', 2884, 406, '2005-08-05 11:11:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9292, '2005-07-30 16:08:21', 1702, 11, '2005-08-07 10:38:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9293, '2005-07-30 16:12:28', 1676, 65, '2005-08-05 18:34:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9294, '2005-07-30 16:14:37', 2468, 433, '2005-08-07 18:49:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9295, '2005-07-30 16:18:39', 494, 102, '2005-08-03 12:46:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9296, '2005-07-30 16:21:13', 4088, 2, '2005-08-08 11:57:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9297, '2005-07-30 16:26:29', 3502, 191, '2005-08-03 13:51:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9298, '2005-07-30 16:27:53', 2106, 208, '2005-08-07 12:32:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9299, '2005-07-30 16:32:51', 1515, 555, '2005-08-08 15:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9300, '2005-07-30 16:33:12', 1639, 571, '2005-08-05 15:56:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9301, '2005-07-30 16:34:29', 1073, 174, '2005-07-31 18:41:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9302, '2005-07-30 16:34:57', 2326, 55, '2005-07-31 11:08:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9303, '2005-07-30 16:35:59', 4299, 186, '2005-08-03 18:31:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9304, '2005-07-30 16:41:34', 2937, 296, '2005-08-02 13:55:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9305, '2005-07-30 16:45:56', 1224, 82, '2005-08-08 21:15:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9306, '2005-07-30 16:47:17', 3983, 336, '2005-08-02 22:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9307, '2005-07-30 16:52:43', 3831, 538, '2005-08-01 11:58:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9308, '2005-07-30 16:53:21', 2202, 267, '2005-08-08 15:33:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9309, '2005-07-30 16:55:53', 3616, 30, '2005-08-07 11:23:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9310, '2005-07-30 16:57:09', 2957, 529, '2005-08-03 18:14:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9311, '2005-07-30 16:58:31', 1432, 178, '2005-08-07 15:23:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9312, '2005-07-30 16:59:17', 2483, 76, '2005-08-03 17:24:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9313, '2005-07-30 16:59:43', 4070, 41, '2005-08-05 14:06:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9314, '2005-07-30 17:05:19', 2358, 390, '2005-07-31 12:19:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9315, '2005-07-30 17:05:29', 444, 96, '2005-08-01 12:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9316, '2005-07-30 17:11:58', 4409, 366, '2005-08-05 14:36:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9317, '2005-07-30 17:13:37', 4138, 217, '2005-08-08 11:33:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9318, '2005-07-30 17:14:30', 2426, 314, '2005-08-06 16:53:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9319, '2005-07-30 17:15:27', 4066, 136, '2005-08-03 14:03:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9320, '2005-07-30 17:16:39', 909, 221, '2005-08-06 18:43:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9321, '2005-07-30 17:19:44', 3558, 112, '2005-08-06 22:42:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9322, '2005-07-30 17:21:39', 223, 439, '2005-08-06 16:58:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9323, '2005-07-30 17:21:44', 3749, 131, '2005-08-03 16:28:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9324, '2005-07-30 17:28:52', 1231, 332, '2005-08-06 19:02:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9325, '2005-07-30 17:29:19', 1938, 476, '2005-08-08 12:55:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9326, '2005-07-30 17:30:03', 3772, 588, '2005-08-01 13:41:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9327, '2005-07-30 17:31:03', 345, 373, '2005-08-08 19:16:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9328, '2005-07-30 17:32:11', 1087, 89, '2005-08-05 13:36:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9329, '2005-07-30 17:42:38', 1293, 593, '2005-08-08 23:17:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9330, '2005-07-30 17:44:24', 4227, 232, '2005-08-08 17:39:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9331, '2005-07-30 17:46:50', 2248, 274, '2005-08-01 19:03:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9332, '2005-07-30 17:53:39', 1156, 480, '2005-08-02 12:25:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9333, '2005-07-30 17:53:45', 1377, 437, '2005-07-31 22:35:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9334, '2005-07-30 17:56:38', 1499, 25, '2005-08-03 21:27:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9335, '2005-07-30 18:00:53', 1006, 522, '2005-08-01 16:05:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9336, '2005-07-30 18:01:15', 1911, 557, '2005-08-05 23:10:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9337, '2005-07-30 18:02:25', 2363, 90, '2005-07-31 12:30:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9338, '2005-07-30 18:03:13', 1482, 333, '2005-08-08 23:57:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9339, '2005-07-30 18:03:28', 3171, 68, '2005-08-08 19:45:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9340, '2005-07-30 18:07:16', 3228, 213, '2005-08-04 14:33:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9341, '2005-07-30 18:07:58', 894, 557, '2005-08-01 17:43:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9342, '2005-07-30 18:09:56', 2318, 552, '2005-08-08 13:54:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9343, '2005-07-30 18:13:13', 3521, 53, '2005-08-02 13:48:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9344, '2005-07-30 18:13:45', 1005, 396, '2005-08-07 15:23:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9345, '2005-07-30 18:13:51', 2042, 436, '2005-08-07 13:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9346, '2005-07-30 18:13:52', 2845, 196, '2005-08-03 17:58:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9347, '2005-07-30 18:16:03', 3557, 479, '2005-08-05 18:35:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9348, '2005-07-30 18:17:09', 3128, 87, '2005-08-07 15:25:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9349, '2005-07-30 18:20:08', 3739, 579, '2005-08-08 22:06:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9350, '2005-07-30 18:24:30', 798, 434, '2005-08-02 15:34:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9351, '2005-07-30 18:28:30', 2063, 107, '2005-08-02 17:26:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9352, '2005-07-30 18:29:26', 2619, 360, '2005-07-31 19:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9353, '2005-07-30 18:30:37', 3581, 283, '2005-08-06 22:32:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9354, '2005-07-30 18:32:51', 510, 595, '2005-08-02 21:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9355, '2005-07-30 18:35:25', 1122, 201, '2005-08-03 20:33:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9356, '2005-07-30 18:36:24', 4188, 60, '2005-08-03 14:10:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9357, '2005-07-30 18:37:00', 3927, 181, '2005-08-08 19:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9358, '2005-07-30 18:37:24', 712, 302, '2005-08-07 23:34:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9359, '2005-07-30 18:39:28', 21, 501, '2005-07-31 15:39:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9360, '2005-07-30 18:39:43', 2119, 186, '2005-08-04 22:41:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9361, '2005-07-30 18:43:49', 4163, 335, '2005-08-06 21:24:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9362, '2005-07-30 18:44:16', 3357, 420, '2005-08-01 20:14:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9363, '2005-07-30 18:44:23', 873, 323, '2005-08-04 15:03:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9364, '2005-07-30 18:44:44', 306, 87, '2005-08-08 23:55:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9365, '2005-07-30 18:46:02', 1539, 232, '2005-08-03 20:15:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9366, '2005-07-30 18:48:57', 4013, 557, '2005-08-03 15:17:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9367, '2005-07-30 18:49:58', 793, 557, '2005-08-08 22:04:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9368, '2005-07-30 18:50:53', 3026, 388, '2005-08-05 17:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9369, '2005-07-30 18:52:19', 3538, 36, '2005-08-01 12:53:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9370, '2005-07-30 18:57:29', 4433, 588, '2005-08-01 21:35:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9371, '2005-07-30 18:58:00', 2980, 4, '2005-08-03 15:14:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9372, '2005-07-30 19:04:30', 4075, 454, '2005-08-09 00:18:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9373, '2005-07-30 19:05:36', 3478, 180, '2005-08-05 16:16:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9374, '2005-07-30 19:10:03', 103, 302, '2005-08-06 21:54:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9375, '2005-07-30 19:10:17', 3063, 529, '2005-08-02 23:00:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9376, '2005-07-30 19:11:49', 451, 86, '2005-08-04 18:14:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9377, '2005-07-30 19:12:18', 4164, 421, '2005-08-05 19:38:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9378, '2005-07-30 19:12:54', 2209, 197, '2005-08-05 18:16:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9379, '2005-07-30 19:13:01', 3855, 452, '2005-08-07 19:18:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9380, '2005-07-30 19:17:31', 4403, 264, '2005-08-01 20:46:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9381, '2005-07-30 19:23:04', 4064, 329, '2005-07-31 23:37:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9382, '2005-07-30 19:23:44', 2127, 17, '2005-08-06 16:20:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9383, '2005-07-30 19:24:50', 2806, 416, '2005-08-01 21:41:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9384, '2005-07-30 19:25:35', 2313, 220, '2005-08-08 21:50:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9385, '2005-07-30 19:25:49', 3453, 570, '2005-08-08 17:08:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9386, '2005-07-30 19:26:21', 1123, 189, '2005-08-05 21:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9387, '2005-07-30 19:27:05', 577, 495, '2005-08-07 21:19:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9388, '2005-07-30 19:27:22', 2116, 332, '2005-08-08 15:31:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9389, '2005-07-30 19:27:59', 3124, 198, '2005-08-04 18:25:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9390, '2005-07-30 19:42:07', 1794, 103, '2005-08-01 23:17:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9391, '2005-07-30 19:48:41', 665, 273, '2005-08-04 15:27:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9392, '2005-07-30 19:50:13', 2797, 29, '2005-08-03 22:38:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9393, '2005-07-30 20:04:48', 843, 158, '2005-08-02 15:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9394, '2005-07-30 20:06:24', 161, 204, '2005-08-06 22:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9395, '2005-07-30 20:07:06', 1298, 306, '2005-08-08 21:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9396, '2005-07-30 20:07:24', 1250, 91, '2005-08-03 21:20:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9397, '2005-07-30 20:07:29', 1550, 373, '2005-08-05 00:36:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9398, '2005-07-30 20:09:00', 1175, 570, '2005-08-01 23:35:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9399, '2005-07-30 20:14:50', 3668, 569, '2005-08-03 17:30:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9400, '2005-07-30 20:15:58', 3910, 368, '2005-08-03 21:21:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9401, '2005-07-30 20:18:19', 2057, 331, '2005-08-07 15:46:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9402, '2005-07-30 20:18:27', 2424, 48, '2005-08-07 21:29:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9403, '2005-07-30 20:18:53', 3466, 267, '2005-08-06 19:54:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9404, '2005-07-30 20:21:35', 3832, 140, '2005-08-02 15:52:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9405, '2005-07-30 20:22:17', 1983, 463, '2005-08-08 16:55:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9406, '2005-07-30 20:24:00', 3419, 453, '2005-08-07 19:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9407, '2005-07-30 20:25:24', 2594, 585, '2005-08-08 22:51:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9408, '2005-07-30 20:32:09', 4383, 571, '2005-08-04 20:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9409, '2005-07-30 20:33:53', 3053, 156, '2005-08-05 18:32:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9410, '2005-07-30 20:38:05', 1789, 22, '2005-07-31 19:57:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9411, '2005-07-30 20:38:22', 3484, 536, '2005-08-06 01:23:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9412, '2005-07-30 20:44:10', 2482, 522, '2005-08-06 21:13:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9413, '2005-07-30 20:44:39', 2618, 290, '2005-08-01 01:56:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9414, '2005-07-30 20:46:02', 578, 484, '2005-08-07 21:23:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9415, '2005-07-30 20:48:31', 3336, 139, '2005-08-05 19:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9416, '2005-07-30 20:52:45', 1470, 265, '2005-08-02 17:38:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9417, '2005-07-30 20:54:55', 2509, 519, '2005-08-04 00:54:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9418, '2005-07-30 21:00:52', 241, 168, '2005-08-08 15:56:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9419, '2005-07-30 21:04:59', 4427, 142, '2005-08-06 15:47:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9420, '2005-07-30 21:05:18', 147, 72, '2005-08-05 23:52:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9421, '2005-07-30 21:08:32', 2206, 161, '2005-08-02 00:43:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9422, '2005-07-30 21:08:41', 1843, 470, '2005-08-07 15:55:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9423, '2005-07-30 21:10:14', 3145, 242, '2005-08-07 16:34:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9424, '2005-07-30 21:10:56', 4499, 256, '2005-08-05 00:01:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9425, '2005-07-30 21:11:21', 271, 295, '2005-08-05 19:00:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9427, '2005-07-30 21:16:33', 1494, 85, '2005-08-05 17:23:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9428, '2005-07-30 21:18:37', 1948, 335, '2005-08-05 16:09:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9429, '2005-07-30 21:19:26', 1769, 288, '2005-08-07 18:39:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9430, '2005-07-30 21:20:13', 1529, 367, '2005-08-04 21:45:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9431, '2005-07-30 21:24:22', 3364, 39, '2005-08-03 01:22:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9432, '2005-07-30 21:26:18', 2489, 570, '2005-08-05 00:23:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9433, '2005-07-30 21:28:17', 1082, 128, '2005-08-08 18:20:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9434, '2005-07-30 21:29:41', 3792, 13, '2005-08-01 16:30:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9435, '2005-07-30 21:31:02', 3116, 301, '2005-08-05 22:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9436, '2005-07-30 21:33:01', 2329, 268, '2005-08-06 17:38:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9437, '2005-07-30 21:36:04', 1230, 592, '2005-08-08 01:26:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9438, '2005-07-30 21:36:15', 121, 14, '2005-08-07 16:54:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9439, '2005-07-30 21:38:12', 290, 479, '2005-08-06 00:03:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9440, '2005-07-30 21:40:15', 414, 535, '2005-08-04 15:45:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9441, '2005-07-30 21:43:28', 3982, 519, '2005-08-08 16:57:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9442, '2005-07-30 21:44:31', 44, 75, '2005-08-04 01:29:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9443, '2005-07-30 21:45:46', 1675, 3, '2005-08-05 21:22:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9444, '2005-07-30 21:48:44', 1134, 259, '2005-08-08 22:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9445, '2005-07-30 21:50:42', 1480, 549, '2005-08-05 18:34:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9446, '2005-07-30 21:53:01', 1880, 477, '2005-08-06 19:00:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9447, '2005-07-30 21:54:22', 1053, 82, '2005-08-09 01:07:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9448, '2005-07-30 21:56:13', 1213, 278, '2005-08-04 18:03:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9449, '2005-07-30 22:02:34', 2, 581, '2005-08-06 02:09:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9450, '2005-07-30 22:04:04', 1371, 430, '2005-08-05 18:39:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9451, '2005-07-30 22:10:17', 685, 584, '2005-08-07 02:53:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9452, '2005-07-30 22:19:16', 3178, 130, '2005-08-04 19:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9453, '2005-07-30 22:20:04', 1988, 221, '2005-08-08 02:27:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9454, '2005-07-30 22:20:09', 3028, 81, '2005-08-04 01:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9455, '2005-07-30 22:20:29', 2647, 220, '2005-08-08 20:08:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9456, '2005-07-30 22:22:16', 2068, 534, '2005-08-05 18:56:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9457, '2005-07-30 22:23:05', 2172, 487, '2005-07-31 23:07:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9458, '2005-07-30 22:24:34', 3105, 343, '2005-08-04 21:26:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9459, '2005-07-30 22:24:46', 1132, 489, '2005-08-02 00:44:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9460, '2005-07-30 22:25:39', 4463, 580, '2005-08-08 20:56:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9461, '2005-07-30 22:29:13', 1679, 377, '2005-08-05 20:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9462, '2005-07-30 22:30:44', 4090, 192, '2005-08-09 03:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9463, '2005-07-30 22:30:57', 883, 352, '2005-08-03 22:53:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9464, '2005-07-30 22:31:31', 3904, 534, '2005-08-07 01:10:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9465, '2005-07-30 22:39:53', 3084, 2, '2005-08-06 16:43:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9466, '2005-07-30 22:44:36', 2595, 137, '2005-08-07 02:35:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9467, '2005-07-30 22:45:34', 1905, 202, '2005-08-08 00:58:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9468, '2005-07-30 22:53:52', 4366, 20, '2005-08-07 00:22:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9469, '2005-07-30 22:56:34', 967, 59, '2005-08-07 03:16:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9470, '2005-07-30 23:01:31', 3908, 566, '2005-08-07 01:35:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9471, '2005-07-30 23:02:36', 2390, 424, '2005-08-04 17:49:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9472, '2005-07-30 23:03:32', 4178, 404, '2005-08-01 18:02:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9473, '2005-07-30 23:04:13', 1717, 185, '2005-08-04 21:48:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9474, '2005-07-30 23:05:44', 3771, 206, '2005-08-05 23:46:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9475, '2005-07-30 23:06:33', 2186, 567, '2005-08-04 23:23:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9476, '2005-07-30 23:06:40', 3599, 197, '2005-08-04 22:52:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9477, '2005-07-30 23:07:22', 1932, 213, '2005-08-04 20:54:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9478, '2005-07-30 23:12:53', 1139, 283, '2005-08-04 02:41:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9479, '2005-07-30 23:22:09', 3461, 308, '2005-07-31 22:26:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9480, '2005-07-30 23:26:03', 597, 373, '2005-08-04 21:18:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9481, '2005-07-30 23:26:05', 613, 481, '2005-08-04 17:46:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9482, '2005-07-30 23:29:16', 2421, 348, '2005-08-02 20:37:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9483, '2005-07-30 23:31:31', 1136, 593, '2005-08-09 04:29:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9484, '2005-07-30 23:31:40', 3389, 26, '2005-08-02 18:25:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9485, '2005-07-30 23:32:40', 3722, 338, '2005-08-08 17:44:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9486, '2005-07-30 23:35:42', 2787, 403, '2005-08-09 02:08:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9487, '2005-07-30 23:40:22', 2165, 406, '2005-08-01 22:29:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9488, '2005-07-30 23:42:42', 4221, 528, '2005-08-08 22:15:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9489, '2005-07-30 23:43:32', 4011, 17, '2005-07-31 20:45:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9490, '2005-07-30 23:45:09', 1302, 487, '2005-08-07 18:50:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9491, '2005-07-30 23:45:23', 3624, 179, '2005-08-01 00:33:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9492, '2005-07-30 23:52:21', 639, 126, '2005-08-08 20:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9493, '2005-07-30 23:52:30', 1522, 5, '2005-08-08 05:22:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9494, '2005-07-30 23:52:46', 3799, 254, '2005-08-05 23:13:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9495, '2005-07-30 23:54:26', 2128, 397, '2005-08-01 22:02:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9496, '2005-07-30 23:55:20', 453, 125, '2005-08-02 02:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9497, '2005-07-30 23:56:54', 933, 595, '2005-08-04 19:52:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9498, '2005-07-30 23:56:55', 1035, 289, '2005-08-03 18:34:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9499, '2005-07-30 23:58:30', 602, 461, '2005-08-01 00:55:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9500, '2005-07-30 23:58:36', 2808, 241, '2005-08-07 21:08:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9501, '2005-07-30 23:59:21', 4398, 75, '2005-08-05 19:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9502, '2005-07-31 00:02:10', 2700, 471, '2005-08-01 19:47:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9503, '2005-07-31 00:02:38', 1013, 311, '2005-08-06 06:01:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9504, '2005-07-31 00:09:07', 91, 125, '2005-08-02 05:44:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9505, '2005-07-31 00:11:19', 4047, 543, '2005-08-05 18:24:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9506, '2005-07-31 00:19:01', 3872, 189, '2005-08-02 00:20:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9507, '2005-07-31 00:22:29', 387, 525, '2005-08-07 05:59:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9508, '2005-07-31 00:22:39', 1204, 316, '2005-08-04 05:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9509, '2005-07-31 00:22:42', 818, 320, '2005-08-03 23:24:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9510, '2005-07-31 00:24:17', 2301, 494, '2005-08-08 18:47:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9511, '2005-07-31 00:25:05', 964, 549, '2005-08-09 02:46:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9512, '2005-07-31 00:26:30', 3786, 173, '2005-08-04 23:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9513, '2005-07-31 00:28:30', 396, 317, '2005-08-01 00:22:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9514, '2005-07-31 00:29:44', 1892, 243, '2005-08-02 23:49:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9515, '2005-07-31 00:35:05', 3099, 264, '2005-08-02 23:35:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9516, '2005-07-31 00:40:58', 3519, 424, '2005-08-07 02:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9517, '2005-07-31 00:41:23', 3299, 170, '2005-08-02 23:08:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9518, '2005-07-31 00:43:26', 2714, 215, '2005-08-04 19:12:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9519, '2005-07-31 00:45:57', 3767, 235, '2005-08-06 00:59:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9520, '2005-07-31 00:50:54', 1306, 299, '2005-08-04 20:05:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9521, '2005-07-31 00:52:24', 1423, 227, '2005-08-06 03:33:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9522, '2005-07-31 00:55:11', 4266, 294, '2005-08-03 06:41:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9523, '2005-07-31 00:56:09', 891, 356, '2005-08-05 05:44:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9524, '2005-07-31 01:01:06', 1796, 535, '2005-08-04 04:06:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9525, '2005-07-31 01:02:18', 2990, 246, '2005-08-06 21:31:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9526, '2005-07-31 01:02:22', 417, 342, '2005-08-04 03:00:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9527, '2005-07-31 01:02:24', 2539, 200, '2005-08-09 02:08:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9528, '2005-07-31 01:05:04', 193, 241, '2005-08-07 01:16:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9529, '2005-07-31 01:05:26', 816, 123, '2005-08-02 22:30:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9530, '2005-07-31 01:09:06', 1718, 148, '2005-08-04 23:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9531, '2005-07-31 01:11:53', 4550, 268, '2005-08-07 02:49:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9532, '2005-07-31 01:16:51', 1309, 488, '2005-08-01 20:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9533, '2005-07-31 01:18:10', 4156, 522, '2005-08-07 19:58:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9534, '2005-07-31 01:18:27', 4457, 519, '2005-08-06 00:28:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9535, '2005-07-31 01:18:53', 2413, 485, '2005-08-04 03:04:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9536, '2005-07-31 01:19:02', 2547, 310, '2005-08-02 19:38:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9537, '2005-07-31 01:23:00', 546, 488, '2005-08-01 01:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9538, '2005-07-31 01:25:22', 3402, 68, '2005-08-06 00:10:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9539, '2005-07-31 01:36:19', 3793, 436, '2005-08-04 23:47:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9540, '2005-07-31 01:40:06', 2200, 365, '2005-08-01 01:09:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9541, '2005-07-31 01:40:14', 1774, 422, '2005-08-05 06:34:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9542, '2005-07-31 01:41:48', 2243, 595, '2005-08-01 00:49:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9543, '2005-07-31 01:43:34', 956, 369, '2005-08-01 06:49:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9544, '2005-07-31 01:44:51', 2383, 28, '2005-08-05 05:25:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9545, '2005-07-31 01:46:24', 3451, 594, '2005-08-09 06:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9546, '2005-07-31 01:47:40', 211, 63, '2005-08-02 07:25:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9547, '2005-07-31 01:52:34', 2414, 440, '2005-08-03 23:12:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9548, '2005-07-31 01:54:19', 3038, 576, '2005-08-05 00:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9549, '2005-07-31 01:57:04', 2409, 63, '2005-08-07 21:00:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9550, '2005-07-31 01:57:34', 2233, 583, '2005-08-08 23:33:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9551, '2005-07-31 02:04:58', 1260, 30, '2005-08-06 04:07:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9552, '2005-07-31 02:05:32', 3544, 261, '2005-08-01 06:59:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9553, '2005-07-31 02:06:34', 4187, 579, '2005-08-08 02:20:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9554, '2005-07-31 02:06:49', 2581, 490, '2005-08-01 22:27:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9555, '2005-07-31 02:11:16', 2108, 382, '2005-08-03 06:58:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9556, '2005-07-31 02:13:30', 3269, 521, '2005-08-08 06:46:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9557, '2005-07-31 02:14:01', 708, 328, '2005-08-05 23:55:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9558, '2005-07-31 02:14:35', 1161, 418, '2005-08-06 03:00:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9559, '2005-07-31 02:15:53', 2882, 159, '2005-08-08 02:38:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9560, '2005-07-31 02:17:27', 4236, 471, '2005-08-07 03:33:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9561, '2005-07-31 02:22:13', 1079, 58, '2005-08-03 07:00:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9562, '2005-07-31 02:23:20', 1571, 116, '2005-08-06 21:01:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9563, '2005-07-31 02:28:39', 3858, 167, '2005-08-05 22:10:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9564, '2005-07-31 02:31:37', 383, 377, '2005-08-03 22:57:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9565, '2005-07-31 02:32:00', 3621, 485, '2005-08-04 05:45:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9566, '2005-07-31 02:32:10', 643, 346, '2005-08-02 23:54:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9567, '2005-07-31 02:36:11', 3688, 37, '2005-08-07 01:19:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9568, '2005-07-31 02:37:44', 1248, 358, '2005-08-02 07:07:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9569, '2005-07-31 02:39:38', 813, 405, '2005-08-02 05:09:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9570, '2005-07-31 02:40:37', 591, 385, '2005-08-01 01:59:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9571, '2005-07-31 02:42:18', 2219, 1, '2005-08-02 23:26:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9572, '2005-07-31 02:44:10', 1453, 283, '2005-08-01 03:30:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9573, '2005-07-31 02:45:38', 3745, 59, '2005-08-09 04:31:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9574, '2005-07-31 02:49:20', 2782, 233, '2005-08-05 02:36:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9575, '2005-07-31 02:51:53', 3971, 193, '2005-08-03 20:54:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9576, '2005-07-31 02:52:59', 3327, 145, '2005-08-05 23:35:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9577, '2005-07-31 02:53:33', 2423, 526, '2005-08-07 05:56:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9578, '2005-07-31 02:54:31', 2965, 115, '2005-08-02 02:48:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9579, '2005-07-31 02:59:20', 3547, 35, '2005-08-06 03:52:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9580, '2005-07-31 03:01:11', 532, 22, '2005-08-05 06:01:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9581, '2005-07-31 03:03:07', 2588, 302, '2005-08-05 23:01:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9582, '2005-07-31 03:05:19', 3913, 347, '2005-08-04 07:26:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9583, '2005-07-31 03:05:21', 3543, 568, '2005-08-06 00:14:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9584, '2005-07-31 03:05:48', 419, 141, '2005-08-01 05:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9585, '2005-07-31 03:05:55', 3249, 197, '2005-08-02 23:54:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9586, '2005-07-31 03:07:16', 3987, 415, '2005-08-04 00:39:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9587, '2005-07-31 03:10:30', 2966, 235, '2005-08-06 06:54:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9588, '2005-07-31 03:13:13', 1368, 499, '2005-08-02 04:06:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9589, '2005-07-31 03:13:29', 2604, 574, '2005-08-09 01:51:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9590, '2005-07-31 03:17:16', 2293, 585, '2005-08-08 04:24:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9591, '2005-07-31 03:19:28', 504, 97, '2005-08-01 07:30:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9592, '2005-07-31 03:21:16', 1828, 14, '2005-08-05 08:32:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9593, '2005-07-31 03:22:30', 1223, 28, '2005-08-05 08:23:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9594, '2005-07-31 03:23:52', 4382, 148, '2005-08-04 23:06:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9595, '2005-07-31 03:27:58', 2829, 3, '2005-08-03 05:58:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9596, '2005-07-31 03:28:47', 2847, 55, '2005-08-04 03:43:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9597, '2005-07-31 03:29:07', 3317, 61, '2005-08-09 03:33:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9598, '2005-07-31 03:30:41', 1105, 468, '2005-08-04 03:54:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9599, '2005-07-31 03:32:06', 3164, 502, '2005-08-04 07:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9600, '2005-07-31 03:35:34', 3731, 464, '2005-08-08 22:50:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9601, '2005-07-31 03:42:17', 1592, 553, '2005-08-04 02:02:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9602, '2005-07-31 03:42:51', 3173, 386, '2005-08-01 08:39:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9603, '2005-07-31 03:43:43', 2266, 541, '2005-08-02 00:11:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9604, '2005-07-31 03:47:12', 4342, 580, '2005-08-03 06:48:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9605, '2005-07-31 03:50:07', 1477, 94, '2005-08-07 09:15:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9606, '2005-07-31 03:50:46', 1357, 253, '2005-08-01 05:29:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9607, '2005-07-31 03:51:06', 3414, 294, '2005-08-02 00:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9608, '2005-07-31 03:51:52', 363, 397, '2005-08-06 05:38:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9609, '2005-07-31 03:53:24', 693, 112, '2005-08-05 08:32:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9610, '2005-07-31 03:54:05', 3110, 16, '2005-08-06 23:11:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9611, '2005-07-31 03:54:43', 1976, 215, '2005-08-05 03:54:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9612, '2005-07-31 03:58:31', 2142, 69, '2005-08-04 07:34:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9613, '2005-07-31 03:58:53', 3251, 188, '2005-08-02 00:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9614, '2005-07-31 03:59:31', 2955, 548, '2005-08-08 04:19:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9615, '2005-07-31 03:59:56', 3370, 50, '2005-08-02 00:46:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9616, '2005-07-31 04:05:01', 1210, 550, '2005-08-05 00:10:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9617, '2005-07-31 04:15:38', 529, 102, '2005-08-02 04:24:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9618, '2005-07-31 04:16:14', 2688, 253, '2005-08-07 02:43:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9619, '2005-07-31 04:17:02', 1730, 138, '2005-08-05 06:36:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9620, '2005-07-31 04:19:18', 2177, 576, '2005-08-08 09:20:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9621, '2005-07-31 04:21:08', 325, 38, '2005-08-08 03:50:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9622, '2005-07-31 04:21:45', 2255, 411, '2005-08-02 09:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9623, '2005-07-31 04:30:02', 113, 360, '2005-08-06 23:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9624, '2005-07-31 04:30:03', 3480, 7, '2005-08-06 09:13:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9625, '2005-07-31 04:30:48', 1703, 445, '2005-08-03 01:12:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9626, '2005-07-31 04:37:41', 2216, 546, '2005-08-08 04:00:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9627, '2005-07-31 04:42:46', 471, 12, '2005-08-08 00:42:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9628, '2005-07-31 04:51:11', 1387, 565, '2005-07-31 23:11:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9629, '2005-07-31 04:54:43', 2773, 8, '2005-08-02 08:36:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9630, '2005-07-31 04:57:07', 2008, 599, '2005-08-07 10:55:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9631, '2005-07-31 05:02:00', 321, 595, '2005-08-02 02:04:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9632, '2005-07-31 05:02:23', 3368, 217, '2005-08-06 04:49:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9633, '2005-07-31 05:04:08', 1141, 334, '2005-08-06 00:52:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9634, '2005-07-31 05:06:02', 924, 444, '2005-08-04 06:53:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9635, '2005-07-31 05:12:27', 1687, 371, '2005-08-02 00:24:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9636, '2005-07-31 05:12:59', 1725, 27, '2005-08-09 07:31:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9637, '2005-07-31 05:18:54', 3013, 130, '2005-08-03 01:23:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9638, '2005-07-31 05:30:27', 1616, 436, '2005-08-09 02:04:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9639, '2005-07-31 05:32:10', 1373, 459, '2005-08-03 07:04:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9640, '2005-07-31 05:33:25', 1067, 67, '2005-08-09 09:41:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9641, '2005-07-31 05:33:48', 1085, 30, '2005-08-04 07:43:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9642, '2005-07-31 05:33:57', 3550, 68, '2005-08-05 04:54:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9643, '2005-07-31 05:35:48', 3576, 538, '2005-08-08 04:28:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9644, '2005-07-31 05:40:35', 4577, 441, '2005-08-09 08:18:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9645, '2005-07-31 05:42:49', 3413, 519, '2005-08-04 00:08:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9646, '2005-07-31 05:43:28', 3756, 89, '2005-08-08 04:00:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9647, '2005-07-31 05:45:15', 3415, 475, '2005-08-06 08:54:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9648, '2005-07-31 05:46:03', 4063, 72, '2005-08-09 04:36:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9649, '2005-07-31 05:46:54', 1588, 51, '2005-08-04 08:42:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9650, '2005-07-31 05:47:32', 2997, 414, '2005-08-04 00:50:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9651, '2005-07-31 05:48:49', 4059, 324, '2005-08-04 06:53:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9652, '2005-07-31 05:49:53', 448, 207, '2005-08-06 07:38:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9653, '2005-07-31 05:55:38', 1451, 383, '2005-08-03 09:35:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9654, '2005-07-31 05:57:42', 3286, 506, '2005-08-06 04:19:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9655, '2005-07-31 05:57:54', 3403, 435, '2005-08-06 02:00:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9656, '2005-07-31 06:00:21', 4215, 39, '2005-08-05 04:36:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9657, '2005-07-31 06:00:41', 2681, 402, '2005-08-06 06:51:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9658, '2005-07-31 06:00:52', 2332, 282, '2005-08-09 04:47:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9659, '2005-07-31 06:02:14', 4262, 360, '2005-08-07 00:54:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9660, '2005-07-31 06:03:17', 1090, 406, '2005-08-07 06:59:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9661, '2005-07-31 06:06:37', 2693, 237, '2005-08-04 07:37:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9662, '2005-07-31 06:09:53', 2757, 96, '2005-08-08 00:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9663, '2005-07-31 06:10:48', 2099, 339, '2005-08-01 11:40:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9664, '2005-07-31 06:12:08', 360, 13, '2005-08-04 02:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9665, '2005-07-31 06:17:33', 2863, 478, '2005-08-04 08:53:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9666, '2005-07-31 06:20:58', 4318, 592, '2005-08-06 06:09:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9667, '2005-07-31 06:23:52', 4289, 523, '2005-08-09 09:12:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9668, '2005-07-31 06:31:03', 1647, 378, '2005-08-07 06:19:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9669, '2005-07-31 06:31:36', 4496, 277, '2005-08-08 03:05:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9670, '2005-07-31 06:33:33', 3709, 349, '2005-08-07 04:51:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9671, '2005-07-31 06:33:41', 920, 133, '2005-08-02 07:50:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9672, '2005-07-31 06:34:06', 4394, 183, '2005-08-08 10:29:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9673, '2005-07-31 06:34:55', 339, 27, '2005-08-09 09:15:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9674, '2005-07-31 06:36:53', 3213, 297, '2005-08-06 02:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9675, '2005-07-31 06:37:07', 2523, 243, '2005-08-03 07:03:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9676, '2005-07-31 06:39:13', 681, 239, '2005-08-05 09:31:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9677, '2005-07-31 06:39:45', 3200, 274, '2005-08-01 02:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9678, '2005-07-31 06:40:47', 3430, 383, '2005-08-02 00:57:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9679, '2005-07-31 06:41:19', 3819, 599, '2005-08-02 07:23:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9680, '2005-07-31 06:41:46', 3010, 84, '2005-08-01 11:02:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9681, '2005-07-31 06:42:09', 64, 160, '2005-08-06 08:21:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9682, '2005-07-31 06:47:10', 2427, 425, '2005-08-04 09:07:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9683, '2005-07-31 06:47:13', 856, 141, '2005-08-04 05:52:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9684, '2005-07-31 06:48:33', 362, 591, '2005-08-01 07:07:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9685, '2005-07-31 06:49:18', 3097, 165, '2005-08-04 03:19:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9686, '2005-07-31 06:50:06', 3825, 386, '2005-08-06 08:41:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9687, '2005-07-31 06:52:54', 3540, 470, '2005-08-01 03:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9688, '2005-07-31 06:56:08', 1304, 566, '2005-08-08 03:31:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9689, '2005-07-31 07:00:08', 819, 498, '2005-08-04 03:33:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9690, '2005-07-31 07:06:29', 4449, 468, '2005-08-06 09:45:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9691, '2005-07-31 07:09:55', 2626, 50, '2005-08-09 02:29:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9692, '2005-07-31 07:11:04', 3481, 295, '2005-08-07 06:34:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9693, '2005-07-31 07:11:50', 1031, 273, '2005-08-08 09:55:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9694, '2005-07-31 07:13:16', 3447, 508, '2005-08-06 09:12:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9695, '2005-07-31 07:13:30', 726, 95, '2005-08-07 05:38:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9696, '2005-07-31 07:13:46', 2703, 156, '2005-08-03 10:49:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9697, '2005-07-31 07:23:11', 762, 479, '2005-08-05 08:04:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9698, '2005-07-31 07:24:35', 3477, 594, '2005-08-09 04:52:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9699, '2005-07-31 07:29:25', 199, 21, '2005-08-06 01:35:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9700, '2005-07-31 07:29:59', 2678, 40, '2005-08-02 09:53:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9701, '2005-07-31 07:32:21', 4581, 401, '2005-08-01 05:07:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9702, '2005-07-31 07:34:07', 3353, 525, '2005-08-02 06:13:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9703, '2005-07-31 07:34:52', 2708, 57, '2005-08-03 13:33:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9704, '2005-07-31 07:39:32', 1402, 385, '2005-08-06 01:50:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9705, '2005-07-31 07:40:33', 4158, 28, '2005-08-01 03:50:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9706, '2005-07-31 07:43:19', 142, 508, '2005-08-05 11:11:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9707, '2005-07-31 07:44:18', 203, 351, '2005-08-08 12:45:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9708, '2005-07-31 07:45:33', 3264, 12, '2005-08-08 08:56:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9709, '2005-07-31 08:04:55', 2096, 137, '2005-08-07 08:58:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9710, '2005-07-31 08:05:31', 3486, 380, '2005-08-09 03:29:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9711, '2005-07-31 08:06:41', 1525, 231, '2005-08-02 10:30:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9712, '2005-07-31 08:13:11', 2487, 219, '2005-08-08 12:40:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9713, '2005-07-31 08:13:28', 929, 158, '2005-08-07 10:11:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9714, '2005-07-31 08:15:32', 1532, 144, '2005-08-03 08:33:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9715, '2005-07-31 08:16:58', 3319, 237, '2005-08-04 11:13:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9716, '2005-07-31 08:23:53', 3385, 287, '2005-08-08 12:03:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9717, '2005-07-31 08:24:41', 4207, 114, '2005-08-04 02:51:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9718, '2005-07-31 08:25:03', 2747, 23, '2005-08-08 04:16:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9719, '2005-07-31 08:25:13', 335, 584, '2005-08-05 08:22:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9720, '2005-07-31 08:25:21', 1282, 587, '2005-08-07 11:30:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9721, '2005-07-31 08:28:46', 3942, 196, '2005-08-05 14:03:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9722, '2005-07-31 08:29:48', 4260, 125, '2005-08-07 07:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9723, '2005-07-31 08:31:18', 3968, 24, '2005-08-03 10:25:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9724, '2005-07-31 08:33:08', 518, 130, '2005-08-08 04:50:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9725, '2005-07-31 08:35:18', 3960, 503, '2005-08-03 03:46:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9726, '2005-07-31 08:37:07', 1701, 162, '2005-08-09 06:09:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9727, '2005-07-31 08:39:13', 3076, 536, '2005-08-03 07:54:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9728, '2005-07-31 08:40:54', 3630, 399, '2005-08-03 04:14:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9729, '2005-07-31 08:43:43', 4199, 273, '2005-08-01 13:25:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9730, '2005-07-31 08:50:08', 2605, 242, '2005-08-08 12:21:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9731, '2005-07-31 08:54:47', 3713, 349, '2005-08-05 03:47:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9732, '2005-07-31 08:56:08', 3262, 288, '2005-08-07 11:05:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9733, '2005-07-31 08:57:35', 1255, 575, '2005-08-04 04:47:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9734, '2005-07-31 08:57:45', 3320, 125, '2005-08-05 11:57:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9735, '2005-07-31 08:57:49', 4228, 315, '2005-08-08 13:51:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9736, '2005-07-31 08:58:40', 2072, 13, '2005-08-09 08:34:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9737, '2005-07-31 08:59:18', 1720, 475, '2005-08-03 12:19:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9738, '2005-07-31 09:04:14', 2278, 568, '2005-08-05 14:40:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9739, '2005-07-31 09:08:03', 1328, 343, '2005-08-04 13:57:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9740, '2005-07-31 09:08:03', 3497, 443, '2005-08-06 04:48:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9741, '2005-07-31 09:09:22', 1971, 495, '2005-08-07 10:01:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9742, '2005-07-31 09:10:20', 4058, 48, '2005-08-08 10:07:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9743, '2005-07-31 09:12:42', 1740, 476, '2005-08-06 11:57:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9744, '2005-07-31 09:15:38', 839, 459, '2005-08-03 10:31:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9745, '2005-07-31 09:16:14', 3610, 217, '2005-08-07 12:11:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9746, '2005-07-31 09:16:48', 1459, 308, '2005-08-07 06:36:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9747, '2005-07-31 09:16:57', 2455, 106, '2005-08-08 06:47:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9748, '2005-07-31 09:17:56', 3308, 550, '2005-08-02 14:54:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9749, '2005-07-31 09:18:33', 658, 52, '2005-08-06 07:41:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9750, '2005-07-31 09:19:46', 3174, 527, '2005-08-06 08:07:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9751, '2005-07-31 09:20:50', 36, 202, '2005-08-01 05:34:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9752, '2005-07-31 09:22:02', 249, 199, '2005-08-02 14:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9753, '2005-07-31 09:22:38', 3529, 98, '2005-08-01 08:45:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9754, '2005-07-31 09:23:43', 3751, 479, '2005-08-08 06:04:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9755, '2005-07-31 09:24:55', 86, 108, '2005-08-07 06:00:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9756, '2005-07-31 09:25:00', 207, 400, '2005-08-02 05:11:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9757, '2005-07-31 09:25:14', 2596, 408, '2005-08-01 14:43:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9758, '2005-07-31 09:25:38', 1307, 160, '2005-08-03 14:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9759, '2005-07-31 09:25:57', 2950, 574, '2005-08-07 12:56:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9760, '2005-07-31 09:29:33', 426, 511, '2005-08-09 07:32:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9761, '2005-07-31 09:31:54', 3778, 60, '2005-08-03 11:02:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9762, '2005-07-31 09:32:54', 155, 540, '2005-08-05 04:55:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9763, '2005-07-31 09:34:03', 126, 393, '2005-08-08 05:30:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9764, '2005-07-31 09:42:58', 3761, 136, '2005-08-07 07:22:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9765, '2005-07-31 09:44:40', 472, 551, '2005-08-05 10:57:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9766, '2005-07-31 09:46:29', 4049, 570, '2005-08-01 05:08:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9767, '2005-07-31 09:46:49', 3432, 89, '2005-08-03 11:20:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9768, '2005-07-31 09:48:41', 2656, 582, '2005-08-08 11:40:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9769, '2005-07-31 09:52:16', 2958, 484, '2005-08-06 09:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9770, '2005-07-31 09:52:40', 1226, 317, '2005-08-09 06:44:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9771, '2005-07-31 09:55:36', 4123, 398, '2005-08-04 10:11:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9772, '2005-07-31 09:56:07', 3639, 147, '2005-08-01 13:50:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9773, '2005-07-31 09:56:56', 4555, 376, '2005-08-04 09:38:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9774, '2005-07-31 09:57:51', 4174, 306, '2005-08-02 09:08:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9775, '2005-07-31 10:00:00', 2818, 162, '2005-08-01 08:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9776, '2005-07-31 10:01:03', 2524, 73, '2005-08-03 07:20:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9777, '2005-07-31 10:01:06', 225, 539, '2005-08-08 04:44:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9778, '2005-07-31 10:02:04', 304, 230, '2005-08-04 07:44:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9779, '2005-07-31 10:08:33', 1280, 402, '2005-08-03 14:56:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9780, '2005-07-31 10:10:22', 3241, 102, '2005-08-02 11:43:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9781, '2005-07-31 10:13:02', 2310, 155, '2005-08-09 14:46:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9782, '2005-07-31 10:14:26', 2397, 438, '2005-08-06 16:11:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9783, '2005-07-31 10:15:46', 836, 75, '2005-08-09 13:22:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9784, '2005-07-31 10:21:32', 2761, 362, '2005-08-07 09:20:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9785, '2005-07-31 10:22:15', 4101, 587, '2005-08-02 10:02:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9786, '2005-07-31 10:25:21', 2560, 586, '2005-08-03 04:28:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9787, '2005-07-31 10:26:19', 3559, 272, '2005-08-09 09:02:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9788, '2005-07-31 10:28:21', 4367, 344, '2005-08-09 13:45:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9789, '2005-07-31 10:30:25', 619, 137, '2005-08-03 14:58:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9790, '2005-07-31 10:34:08', 3643, 284, '2005-08-04 11:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9791, '2005-07-31 10:35:22', 3642, 300, '2005-08-03 05:34:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9792, '2005-07-31 10:43:41', 3163, 292, '2005-08-07 10:18:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9793, '2005-07-31 10:45:11', 4576, 295, '2005-08-03 14:29:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9794, '2005-07-31 10:47:01', 1771, 403, '2005-08-02 06:52:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9795, '2005-07-31 10:47:19', 2005, 63, '2005-08-04 09:32:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9796, '2005-07-31 10:52:43', 1038, 539, '2005-08-09 06:08:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9797, '2005-07-31 10:53:44', 687, 52, '2005-08-09 05:51:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9798, '2005-07-31 10:55:18', 3759, 55, '2005-08-01 07:37:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9799, '2005-07-31 10:58:32', 3008, 494, '2005-08-01 12:08:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9800, '2005-07-31 11:00:58', 2153, 257, '2005-08-02 10:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9801, '2005-07-31 11:03:13', 3033, 158, '2005-08-04 10:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9802, '2005-07-31 11:04:20', 2156, 594, '2005-08-03 05:28:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9803, '2005-07-31 11:06:02', 3783, 520, '2005-08-01 06:25:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9804, '2005-07-31 11:07:39', 2490, 196, '2005-08-09 11:57:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9805, '2005-07-31 11:11:10', 4179, 36, '2005-08-03 07:36:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9806, '2005-07-31 11:13:49', 245, 46, '2005-08-04 06:18:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9807, '2005-07-31 11:13:52', 2137, 267, '2005-08-02 07:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9808, '2005-07-31 11:17:22', 3259, 583, '2005-08-07 15:54:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9809, '2005-07-31 11:19:21', 359, 286, '2005-08-08 12:43:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9810, '2005-07-31 11:22:41', 2066, 545, '2005-08-01 09:40:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9811, '2005-07-31 11:23:45', 3305, 77, '2005-08-06 15:51:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9812, '2005-07-31 11:28:07', 1540, 57, '2005-08-01 12:35:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9813, '2005-07-31 11:29:23', 1706, 245, '2005-08-07 08:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9814, '2005-07-31 11:29:46', 136, 79, '2005-08-08 15:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9815, '2005-07-31 11:30:51', 2728, 540, '2005-08-08 12:52:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9816, '2005-07-31 11:32:58', 4560, 3, '2005-08-04 17:12:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9817, '2005-07-31 11:33:31', 4019, 170, '2005-08-08 14:49:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9818, '2005-07-31 11:34:32', 1254, 183, '2005-08-04 08:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9819, '2005-07-31 11:39:13', 1927, 292, '2005-08-06 09:11:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9820, '2005-07-31 11:46:57', 499, 279, '2005-08-08 13:35:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9821, '2005-07-31 11:47:54', 386, 271, '2005-08-08 06:21:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9822, '2005-07-31 11:48:25', 2469, 381, '2005-08-05 15:52:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9823, '2005-07-31 11:49:00', 4423, 129, '2005-08-07 09:06:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9824, '2005-07-31 11:49:55', 4368, 404, '2005-08-07 16:54:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9825, '2005-07-31 11:50:51', 4322, 390, '2005-08-02 07:18:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9826, '2005-07-31 11:51:46', 2649, 595, '2005-08-09 17:18:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9827, '2005-07-31 11:56:55', 3840, 329, '2005-08-09 16:29:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9828, '2005-07-31 11:56:57', 3845, 376, '2005-08-02 17:05:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9829, '2005-07-31 11:58:38', 231, 435, '2005-08-07 08:11:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9830, '2005-07-31 11:59:05', 170, 112, '2005-08-06 10:38:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9831, '2005-07-31 11:59:32', 1961, 192, '2005-08-04 07:14:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9832, '2005-07-31 12:01:49', 3126, 64, '2005-08-08 09:21:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9833, '2005-07-31 12:05:01', 4243, 368, '2005-08-09 09:25:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9834, '2005-07-31 12:05:42', 2292, 340, '2005-08-07 15:26:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9835, '2005-07-31 12:07:35', 1051, 328, '2005-08-04 07:32:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9836, '2005-07-31 12:12:00', 2870, 313, '2005-08-09 06:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9837, '2005-07-31 12:14:19', 3488, 573, '2005-08-09 17:08:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9838, '2005-07-31 12:18:49', 3866, 208, '2005-08-03 16:49:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9839, '2005-07-31 12:21:16', 1591, 561, '2005-08-09 13:41:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9840, '2005-07-31 12:23:18', 364, 388, '2005-08-06 15:59:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9841, '2005-07-31 12:24:19', 4554, 238, '2005-08-09 15:31:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9842, '2005-07-31 12:24:58', 2896, 261, '2005-08-02 11:01:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9843, '2005-07-31 12:25:28', 2923, 532, '2005-08-01 09:51:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9844, '2005-07-31 12:26:31', 3930, 181, '2005-08-05 13:58:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9845, '2005-07-31 12:28:05', 2417, 79, '2005-08-06 06:47:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9846, '2005-07-31 12:30:12', 4240, 573, '2005-08-05 08:24:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9847, '2005-07-31 12:33:43', 1137, 174, '2005-08-04 14:15:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9848, '2005-07-31 12:44:33', 3290, 346, '2005-08-07 13:49:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9849, '2005-07-31 12:44:34', 2230, 429, '2005-08-02 16:49:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9850, '2005-07-31 12:46:52', 1461, 497, '2005-08-04 10:52:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9851, '2005-07-31 12:50:24', 25, 49, '2005-08-08 08:30:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9852, '2005-07-31 12:52:17', 4257, 415, '2005-08-05 07:59:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9853, '2005-07-31 12:58:20', 1782, 221, '2005-08-04 10:47:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9854, '2005-07-31 12:59:34', 1049, 441, '2005-08-03 07:20:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9855, '2005-07-31 13:00:33', 1246, 326, '2005-08-03 16:18:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9856, '2005-07-31 13:00:35', 723, 347, '2005-08-07 18:07:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9857, '2005-07-31 13:00:53', 3316, 168, '2005-08-09 15:56:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9858, '2005-07-31 13:02:07', 252, 128, '2005-08-03 15:14:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9859, '2005-07-31 13:02:55', 4094, 127, '2005-08-05 11:04:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9860, '2005-07-31 13:03:24', 3266, 585, '2005-08-07 07:28:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9861, '2005-07-31 13:04:14', 1050, 264, '2005-08-09 15:22:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9862, '2005-07-31 13:05:03', 474, 513, '2005-08-01 09:05:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9863, '2005-07-31 13:05:29', 19, 239, '2005-08-08 12:33:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9864, '2005-07-31 13:06:54', 3619, 394, '2005-08-02 11:47:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9865, '2005-07-31 13:10:45', 1355, 580, '2005-08-02 09:19:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9866, '2005-07-31 13:13:50', 3555, 374, '2005-08-07 15:11:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9867, '2005-07-31 13:17:04', 2485, 83, '2005-08-05 07:17:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9868, '2005-07-31 13:20:08', 266, 378, '2005-08-01 18:17:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9869, '2005-07-31 13:21:54', 783, 261, '2005-08-07 09:09:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9870, '2005-07-31 13:22:51', 442, 195, '2005-08-05 16:04:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9871, '2005-07-31 13:25:46', 194, 109, '2005-08-01 13:12:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9872, '2005-07-31 13:27:55', 1021, 376, '2005-08-04 14:33:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9873, '2005-07-31 13:32:18', 667, 442, '2005-08-06 11:15:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9874, '2005-07-31 13:32:31', 2476, 482, '2005-08-07 09:50:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9875, '2005-07-31 13:37:41', 2878, 421, '2005-08-03 15:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9876, '2005-07-31 13:37:51', 828, 347, '2005-08-07 18:05:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9877, '2005-07-31 13:41:57', 1299, 559, '2005-08-06 15:27:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9878, '2005-07-31 13:42:02', 1753, 424, '2005-08-05 10:15:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9879, '2005-07-31 13:45:32', 1935, 178, '2005-08-07 17:12:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9880, '2005-07-31 13:49:02', 3590, 64, '2005-08-08 10:31:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9881, '2005-07-31 13:50:38', 4209, 412, '2005-08-06 08:58:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9882, '2005-07-31 13:53:33', 1429, 311, '2005-08-09 15:55:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9883, '2005-07-31 13:53:37', 4286, 356, '2005-08-06 15:45:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9884, '2005-07-31 13:56:24', 511, 590, '2005-08-01 16:59:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9885, '2005-07-31 13:59:32', 3600, 461, '2005-08-07 12:30:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9886, '2005-07-31 14:00:13', 1386, 519, '2005-08-08 19:30:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9887, '2005-07-31 14:00:32', 436, 549, '2005-08-05 19:16:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9888, '2005-07-31 14:00:53', 4400, 5, '2005-08-08 18:51:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9889, '2005-07-31 14:02:50', 2842, 143, '2005-08-05 12:09:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9890, '2005-07-31 14:04:44', 1024, 151, '2005-08-01 11:24:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9891, '2005-07-31 14:05:44', 3359, 462, '2005-08-02 16:21:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9892, '2005-07-31 14:06:25', 1045, 251, '2005-08-03 18:11:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9893, '2005-07-31 14:07:21', 2445, 179, '2005-08-01 09:20:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9894, '2005-07-31 14:07:44', 3724, 199, '2005-08-05 18:01:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9895, '2005-07-31 14:07:56', 835, 560, '2005-08-05 14:56:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9896, '2005-07-31 14:09:48', 2591, 586, '2005-08-01 20:02:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9897, '2005-07-31 14:11:57', 3945, 538, '2005-08-02 12:20:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9898, '2005-07-31 14:12:03', 2151, 359, '2005-08-01 12:27:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9899, '2005-07-31 14:12:36', 3352, 168, '2005-08-08 08:59:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9900, '2005-07-31 14:15:05', 3132, 453, '2005-08-07 11:58:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9901, '2005-07-31 14:20:59', 3332, 277, '2005-08-03 09:30:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9902, '2005-07-31 14:24:33', 486, 218, '2005-08-09 11:11:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9903, '2005-07-31 14:31:44', 1621, 316, '2005-08-08 20:03:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9904, '2005-07-31 14:34:17', 4089, 428, '2005-08-08 17:19:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9905, '2005-07-31 14:37:03', 2839, 519, '2005-08-01 15:55:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9906, '2005-07-31 14:38:12', 4241, 204, '2005-08-01 13:56:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9907, '2005-07-31 14:39:50', 4282, 120, '2005-08-09 09:39:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9908, '2005-07-31 14:39:52', 4408, 27, '2005-08-09 09:46:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9909, '2005-07-31 14:43:34', 2600, 587, '2005-08-09 15:31:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9910, '2005-07-31 14:47:57', 368, 122, '2005-08-05 18:20:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9911, '2005-07-31 14:48:01', 3879, 112, '2005-08-06 11:55:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9912, '2005-07-31 14:49:04', 3119, 367, '2005-08-03 15:40:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9913, '2005-07-31 14:51:04', 3744, 229, '2005-08-06 12:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9914, '2005-07-31 14:51:19', 3147, 530, '2005-08-05 09:51:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9915, '2005-07-31 14:52:26', 2933, 566, '2005-08-03 11:53:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9916, '2005-07-31 14:54:52', 949, 432, '2005-08-07 13:18:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9917, '2005-07-31 14:55:11', 3829, 159, '2005-08-02 13:58:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9918, '2005-07-31 14:55:22', 2519, 283, '2005-08-04 09:02:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9919, '2005-07-31 14:55:46', 3205, 291, '2005-08-08 11:43:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9920, '2005-07-31 14:57:13', 3108, 139, '2005-08-03 18:58:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9921, '2005-07-31 14:59:21', 1004, 332, '2005-08-01 12:40:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9922, '2005-07-31 14:59:37', 3615, 25, '2005-08-06 14:05:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9923, '2005-07-31 15:00:15', 1635, 209, '2005-08-05 11:09:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9924, '2005-07-31 15:04:57', 1986, 64, '2005-08-05 20:07:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9925, '2005-07-31 15:08:47', 2351, 24, '2005-08-02 20:27:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9926, '2005-07-31 15:11:51', 3733, 472, '2005-08-09 18:26:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9927, '2005-07-31 15:12:13', 999, 346, '2005-08-01 11:37:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9928, '2005-07-31 15:13:57', 3627, 53, '2005-08-06 20:39:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9929, '2005-07-31 15:17:24', 2521, 564, '2005-08-03 17:27:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9930, '2005-07-31 15:18:03', 4491, 304, '2005-08-01 12:36:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9931, '2005-07-31 15:18:19', 3455, 183, '2005-08-04 14:23:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9932, '2005-07-31 15:19:48', 1691, 264, '2005-08-05 21:09:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9933, '2005-07-31 15:24:46', 2349, 111, '2005-08-01 10:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9934, '2005-07-31 15:25:26', 2492, 236, '2005-08-05 17:13:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9935, '2005-07-31 15:27:07', 2247, 10, '2005-08-05 11:23:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9936, '2005-07-31 15:27:41', 979, 153, '2005-08-06 16:25:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9937, '2005-07-31 15:28:10', 3697, 521, '2005-08-06 21:20:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9938, '2005-07-31 15:28:47', 2871, 63, '2005-08-09 21:24:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9939, '2005-07-31 15:29:00', 3049, 538, '2005-08-08 11:09:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9940, '2005-07-31 15:29:06', 3975, 388, '2005-08-06 14:26:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9941, '2005-07-31 15:31:25', 1756, 175, '2005-08-05 17:23:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9942, '2005-07-31 15:35:43', 4573, 545, '2005-08-07 17:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9943, '2005-07-31 15:37:29', 887, 494, '2005-08-09 18:25:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9944, '2005-07-31 15:44:43', 2540, 241, '2005-08-08 10:30:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9945, '2005-07-31 15:47:51', 2075, 309, '2005-08-02 19:06:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9946, '2005-07-31 15:48:54', 2100, 29, '2005-08-03 12:42:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9947, '2005-07-31 15:49:40', 1173, 138, '2005-08-08 11:11:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9948, '2005-07-31 15:49:41', 806, 342, '2005-08-06 12:36:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9949, '2005-07-31 15:50:10', 3258, 309, '2005-08-01 17:53:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9950, '2005-07-31 15:50:22', 1657, 572, '2005-08-08 19:10:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9951, '2005-07-31 15:51:16', 4412, 95, '2005-08-03 14:54:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9952, '2005-07-31 15:52:37', 1634, 128, '2005-08-06 10:50:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9953, '2005-07-31 15:56:35', 1646, 211, '2005-08-02 12:01:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9954, '2005-07-31 15:57:07', 1830, 463, '2005-08-05 12:04:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9955, '2005-07-31 16:01:26', 1745, 342, '2005-08-04 11:15:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9956, '2005-07-31 16:03:47', 4485, 342, '2005-08-01 16:40:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9957, '2005-07-31 16:03:55', 1857, 85, '2005-08-04 15:16:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9958, '2005-07-31 16:03:56', 4142, 157, '2005-08-04 15:21:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9959, '2005-07-31 16:04:22', 340, 199, '2005-08-03 21:51:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9960, '2005-07-31 16:05:52', 1022, 569, '2005-08-05 14:15:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9961, '2005-07-31 16:07:50', 1856, 40, '2005-08-07 18:37:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9962, '2005-07-31 16:10:36', 1951, 576, '2005-08-02 17:09:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9963, '2005-07-31 16:16:46', 1609, 573, '2005-08-02 22:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9964, '2005-07-31 16:17:39', 3149, 191, '2005-08-03 15:03:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9965, '2005-07-31 16:19:32', 3946, 101, '2005-08-05 20:18:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9966, '2005-07-31 16:26:46', 4137, 373, '2005-08-03 14:29:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9967, '2005-07-31 16:31:17', 958, 537, '2005-08-06 13:52:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9968, '2005-07-31 16:32:16', 2666, 363, '2005-08-08 12:23:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9969, '2005-07-31 16:38:12', 938, 151, '2005-08-05 11:45:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9970, '2005-07-31 16:38:24', 2846, 578, '2005-08-02 12:59:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9971, '2005-07-31 16:42:16', 2674, 573, '2005-08-09 18:08:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9972, '2005-07-31 16:42:43', 190, 506, '2005-08-02 11:05:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9973, '2005-07-31 16:49:31', 1850, 369, '2005-08-03 22:03:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9974, '2005-07-31 16:51:11', 430, 503, '2005-08-05 16:04:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9975, '2005-07-31 16:53:43', 2564, 40, '2005-08-07 20:13:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9976, '2005-07-31 16:57:49', 4219, 579, '2005-08-03 16:33:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9977, '2005-07-31 16:58:42', 2300, 363, '2005-08-09 13:34:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9978, '2005-07-31 16:59:51', 2812, 427, '2005-08-06 16:48:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9979, '2005-07-31 17:00:07', 646, 576, '2005-08-08 20:40:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9980, '2005-07-31 17:02:00', 122, 225, '2005-08-08 11:11:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9981, '2005-07-31 17:08:31', 1354, 321, '2005-08-01 22:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9982, '2005-07-31 17:09:02', 2698, 428, '2005-08-02 13:02:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9983, '2005-07-31 17:09:36', 350, 129, '2005-08-08 20:26:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9984, '2005-07-31 17:12:23', 433, 432, '2005-08-01 21:04:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9985, '2005-07-31 17:14:47', 1831, 85, '2005-08-01 12:11:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9986, '2005-07-31 17:16:50', 1242, 124, '2005-08-05 18:34:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9987, '2005-07-31 17:22:35', 1619, 15, '2005-08-01 21:19:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9988, '2005-07-31 17:22:36', 3844, 243, '2005-08-07 18:35:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9989, '2005-07-31 17:22:39', 1713, 79, '2005-08-01 18:55:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9990, '2005-07-31 17:24:21', 4481, 555, '2005-08-09 17:14:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9991, '2005-07-31 17:26:27', 3662, 414, '2005-08-03 17:36:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9992, '2005-07-31 17:29:48', 4242, 304, '2005-08-09 13:02:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9993, '2005-07-31 17:30:20', 2503, 225, '2005-08-01 20:53:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9994, '2005-07-31 17:30:31', 2155, 195, '2005-08-01 11:35:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9995, '2005-07-31 17:30:47', 1978, 180, '2005-08-04 12:20:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9996, '2005-07-31 17:32:03', 3271, 104, '2005-08-06 16:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9997, '2005-07-31 17:37:30', 640, 579, '2005-08-02 14:49:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9998, '2005-07-31 17:40:35', 2549, 30, '2005-08-04 18:15:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (9999, '2005-07-31 17:40:53', 1438, 543, '2005-08-01 14:25:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10000, '2005-07-31 17:41:05', 3221, 576, '2005-08-02 20:51:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10001, '2005-07-31 17:46:18', 2188, 244, '2005-08-07 20:38:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10002, '2005-07-31 17:48:16', 1002, 323, '2005-08-06 16:15:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10003, '2005-07-31 17:48:51', 1603, 13, '2005-08-02 14:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10004, '2005-07-31 17:51:23', 2396, 570, '2005-08-03 19:12:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10005, '2005-07-31 17:53:51', 928, 454, '2005-08-09 21:39:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10006, '2005-07-31 17:54:35', 2538, 470, '2005-08-02 20:40:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10007, '2005-07-31 17:54:58', 293, 445, '2005-08-05 17:24:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10008, '2005-07-31 17:59:36', 2589, 91, '2005-08-03 22:43:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10009, '2005-07-31 18:00:28', 4441, 437, '2005-08-08 22:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10010, '2005-07-31 18:01:36', 2655, 373, '2005-08-07 20:27:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10011, '2005-07-31 18:02:41', 606, 128, '2005-08-08 17:04:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10012, '2005-07-31 18:06:06', 2554, 513, '2005-08-09 16:47:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10013, '2005-07-31 18:08:21', 2364, 377, '2005-08-08 13:22:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10014, '2005-07-31 18:10:56', 2344, 443, '2005-08-02 23:36:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10015, '2005-07-31 18:11:17', 67, 153, '2005-08-03 15:48:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10016, '2005-07-31 18:13:06', 2183, 478, '2005-08-09 22:11:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10017, '2005-07-31 18:13:22', 1495, 424, '2005-08-05 16:03:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10018, '2005-07-31 18:15:14', 3708, 481, '2005-08-05 14:44:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10019, '2005-07-31 18:20:56', 2114, 536, '2005-08-07 14:25:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10020, '2005-07-31 18:21:08', 302, 526, '2005-08-02 14:03:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10021, '2005-07-31 18:24:39', 3235, 597, '2005-08-01 19:16:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10022, '2005-07-31 18:25:30', 1900, 115, '2005-08-04 13:35:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10023, '2005-07-31 18:25:51', 384, 318, '2005-08-09 18:00:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10024, '2005-07-31 18:26:36', 265, 129, '2005-08-09 16:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10025, '2005-07-31 18:29:09', 475, 565, '2005-08-07 14:20:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10026, '2005-07-31 18:31:51', 39, 332, '2005-08-03 21:14:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10027, '2005-07-31 18:33:51', 525, 287, '2005-08-09 18:40:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10028, '2005-07-31 18:35:54', 2305, 323, '2005-08-01 13:01:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10029, '2005-07-31 18:37:47', 505, 578, '2005-08-06 14:58:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10030, '2005-07-31 18:39:36', 1392, 325, '2005-08-03 15:29:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10031, '2005-07-31 18:40:15', 3048, 96, '2005-08-03 14:38:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10032, '2005-07-31 18:41:55', 2331, 126, '2005-08-04 22:45:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10033, '2005-07-31 18:44:29', 4480, 381, '2005-08-04 19:52:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10034, '2005-07-31 18:45:30', 354, 442, '2005-08-04 21:13:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10035, '2005-07-31 18:46:46', 2694, 333, '2005-08-04 20:33:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10036, '2005-07-31 18:47:20', 41, 491, '2005-08-03 22:53:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10037, '2005-07-31 18:48:08', 438, 58, '2005-08-09 19:11:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10038, '2005-07-31 18:49:12', 3727, 112, '2005-08-01 18:02:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10039, '2005-07-31 18:50:40', 4391, 111, '2005-08-01 18:49:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10040, '2005-07-31 18:54:15', 2281, 268, '2005-08-05 17:33:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10041, '2005-07-31 19:01:02', 2994, 379, '2005-08-07 21:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10042, '2005-07-31 19:01:25', 123, 204, '2005-08-06 14:21:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10043, '2005-07-31 19:02:07', 2558, 222, '2005-08-07 17:58:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10044, '2005-07-31 19:02:33', 3349, 388, '2005-08-05 13:24:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10045, '2005-07-31 19:04:35', 58, 118, '2005-08-07 16:53:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10046, '2005-07-31 19:07:11', 4302, 50, '2005-08-03 13:25:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10047, '2005-07-31 19:07:43', 4195, 244, '2005-08-07 00:20:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10048, '2005-07-31 19:08:56', 3821, 267, '2005-08-05 20:15:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10049, '2005-07-31 19:11:11', 854, 457, '2005-08-03 22:15:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10050, '2005-07-31 19:13:29', 295, 230, '2005-08-06 15:44:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10051, '2005-07-31 19:14:20', 163, 74, '2005-08-05 19:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10052, '2005-07-31 19:15:13', 3307, 39, '2005-08-07 22:47:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10053, '2005-07-31 19:15:39', 4102, 223, '2005-08-07 22:32:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10054, '2005-07-31 19:15:52', 2303, 598, '2005-08-04 19:54:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10055, '2005-07-31 19:15:58', 2725, 336, '2005-08-05 20:23:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10056, '2005-07-31 19:19:13', 281, 237, '2005-08-01 16:09:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10057, '2005-07-31 19:20:18', 3485, 230, '2005-08-08 17:59:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10058, '2005-07-31 19:20:21', 758, 237, '2005-08-04 00:41:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10059, '2005-07-31 19:20:49', 2020, 274, '2005-08-03 14:39:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10060, '2005-07-31 19:23:00', 1979, 42, '2005-08-08 19:07:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10061, '2005-07-31 19:23:25', 1401, 390, '2005-08-04 19:38:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10062, '2005-07-31 19:24:55', 1815, 333, '2005-08-03 22:51:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10063, '2005-07-31 19:25:13', 3003, 517, '2005-08-09 15:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10064, '2005-07-31 19:27:02', 3140, 41, '2005-08-06 21:15:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10065, '2005-07-31 19:27:34', 1426, 495, '2005-08-01 13:45:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10066, '2005-07-31 19:30:01', 4285, 123, '2005-08-01 14:45:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10067, '2005-07-31 19:37:58', 1940, 148, '2005-08-04 17:32:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10068, '2005-07-31 19:39:38', 4000, 58, '2005-08-05 22:49:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10069, '2005-07-31 19:43:18', 2168, 270, '2005-08-06 19:40:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10070, '2005-07-31 19:46:29', 1010, 325, '2005-08-03 22:21:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10071, '2005-07-31 19:49:35', 2360, 353, '2005-08-03 00:00:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10072, '2005-07-31 19:50:37', 3963, 520, '2005-08-03 00:25:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10073, '2005-07-31 19:53:15', 4246, 584, '2005-08-05 23:12:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10074, '2005-07-31 19:57:16', 1268, 69, '2005-08-04 00:54:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10075, '2005-07-31 19:58:42', 2037, 469, '2005-08-08 19:49:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10076, '2005-07-31 20:00:34', 1117, 555, '2005-08-10 00:37:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10077, '2005-07-31 20:01:06', 2333, 19, '2005-08-09 16:07:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10078, '2005-07-31 20:02:02', 3198, 151, '2005-08-04 00:45:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10079, '2005-07-31 20:05:45', 4541, 486, '2005-08-04 16:25:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10080, '2005-07-31 20:07:10', 4355, 62, '2005-08-04 23:07:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10081, '2005-07-31 20:07:44', 3183, 443, '2005-08-06 20:04:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10082, '2005-07-31 20:09:32', 1275, 76, '2005-08-01 15:41:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10083, '2005-07-31 20:10:19', 2585, 449, '2005-08-06 23:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10084, '2005-07-31 20:11:29', 524, 528, '2005-08-06 22:28:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10085, '2005-07-31 20:12:02', 2556, 392, '2005-08-03 00:03:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10086, '2005-07-31 20:14:08', 2853, 205, '2005-08-07 01:33:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10087, '2005-07-31 20:15:22', 1393, 245, '2005-08-07 01:33:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10088, '2005-07-31 20:16:21', 4293, 46, '2005-08-01 22:47:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10089, '2005-07-31 20:17:09', 248, 160, '2005-08-01 19:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10090, '2005-07-31 20:22:01', 4023, 533, '2005-08-04 17:30:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10091, '2005-07-31 20:23:13', 1878, 135, '2005-08-02 21:58:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10092, '2005-07-31 20:28:09', 4151, 364, '2005-08-01 21:37:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10093, '2005-07-31 20:30:32', 3943, 162, '2005-08-04 00:04:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10094, '2005-07-31 20:31:18', 2865, 596, '2005-08-06 18:31:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10095, '2005-07-31 20:38:35', 4062, 370, '2005-08-02 02:33:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10096, '2005-07-31 20:38:58', 3606, 290, '2005-08-06 02:34:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10097, '2005-07-31 20:39:38', 784, 519, '2005-08-08 22:22:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10098, '2005-07-31 20:41:17', 1324, 155, '2005-08-02 00:06:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10099, '2005-07-31 20:47:14', 1960, 220, '2005-08-02 17:25:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10100, '2005-07-31 20:47:18', 4050, 330, '2005-08-03 16:58:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10101, '2005-07-31 20:47:29', 2513, 119, '2005-08-04 21:28:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10102, '2005-07-31 20:49:10', 4078, 170, '2005-08-08 20:15:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10103, '2005-07-31 20:49:13', 77, 25, '2005-08-05 15:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10104, '2005-07-31 20:49:14', 3358, 186, '2005-08-05 01:11:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10105, '2005-07-31 20:54:20', 112, 286, '2005-08-09 17:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10106, '2005-07-31 21:00:47', 3444, 556, '2005-08-02 20:11:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10107, '2005-07-31 21:01:46', 1326, 414, '2005-08-09 01:33:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10108, '2005-07-31 21:02:14', 3703, 326, '2005-08-01 18:28:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10109, '2005-07-31 21:04:49', 2852, 403, '2005-08-08 19:25:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10110, '2005-07-31 21:06:12', 4081, 138, '2005-08-03 02:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10111, '2005-07-31 21:08:33', 3474, 38, '2005-08-06 02:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10112, '2005-07-31 21:08:56', 2643, 198, '2005-08-01 23:35:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10113, '2005-07-31 21:10:03', 3974, 461, '2005-08-02 21:13:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10114, '2005-07-31 21:12:58', 3881, 218, '2005-08-02 19:45:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10115, '2005-07-31 21:13:47', 2731, 68, '2005-08-10 00:44:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10116, '2005-07-31 21:14:02', 738, 28, '2005-08-03 01:48:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10117, '2005-07-31 21:14:31', 1894, 459, '2005-08-01 15:59:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10118, '2005-07-31 21:16:31', 1209, 143, '2005-08-03 02:32:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10119, '2005-07-31 21:20:59', 54, 351, '2005-08-02 23:14:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10120, '2005-07-31 21:24:24', 1709, 396, '2005-08-03 17:44:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10121, '2005-07-31 21:24:53', 2969, 425, '2005-08-03 22:24:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10122, '2005-07-31 21:29:28', 4229, 196, '2005-08-09 00:04:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10123, '2005-07-31 21:30:46', 4564, 487, '2005-08-06 16:28:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10124, '2005-07-31 21:31:49', 1956, 396, '2005-08-04 00:06:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10125, '2005-07-31 21:33:03', 493, 178, '2005-08-01 19:10:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10126, '2005-07-31 21:36:07', 3, 39, '2005-08-03 23:59:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10127, '2005-07-31 21:39:48', 717, 478, '2005-08-06 00:10:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10128, '2005-07-31 21:40:04', 2559, 508, '2005-08-02 02:21:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10129, '2005-07-31 21:41:35', 2848, 564, '2005-08-05 17:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10130, '2005-07-31 21:44:30', 3964, 95, '2005-08-04 17:06:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10131, '2005-07-31 21:45:28', 4169, 510, '2005-08-04 00:19:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10132, '2005-07-31 21:50:24', 3934, 23, '2005-08-07 23:37:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10133, '2005-07-31 21:55:07', 614, 234, '2005-08-08 23:04:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10134, '2005-07-31 21:56:10', 4483, 311, '2005-08-06 21:20:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10135, '2005-07-31 21:57:32', 4193, 307, '2005-08-05 22:23:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10136, '2005-07-31 21:58:56', 3142, 2, '2005-08-03 19:44:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10137, '2005-07-31 22:01:41', 612, 236, '2005-08-07 22:24:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10138, '2005-07-31 22:02:09', 179, 225, '2005-08-07 20:46:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10139, '2005-07-31 22:02:20', 407, 441, '2005-08-04 02:09:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10140, '2005-07-31 22:03:20', 2494, 550, '2005-08-07 23:15:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10141, '2005-07-31 22:08:29', 8, 8, '2005-08-06 16:59:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10142, '2005-07-31 22:10:54', 1839, 257, '2005-08-09 19:04:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10143, '2005-07-31 22:11:43', 2139, 271, '2005-08-09 17:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10144, '2005-07-31 22:13:52', 3011, 49, '2005-08-05 19:27:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10145, '2005-07-31 22:15:13', 2511, 361, '2005-08-06 23:26:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10146, '2005-07-31 22:17:56', 1721, 559, '2005-08-02 21:27:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10147, '2005-07-31 22:18:43', 1351, 198, '2005-08-02 23:08:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10148, '2005-07-31 22:19:16', 1381, 63, '2005-08-05 00:15:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10149, '2005-07-31 22:20:46', 890, 276, '2005-08-07 23:12:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10150, '2005-07-31 22:22:00', 2328, 419, '2005-08-05 01:17:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10151, '2005-07-31 22:22:37', 4442, 361, '2005-08-01 22:20:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10152, '2005-07-31 22:28:05', 1114, 244, '2005-08-08 22:39:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10153, '2005-07-31 22:30:10', 2945, 297, '2005-08-06 02:32:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10154, '2005-07-31 22:30:49', 2745, 149, '2005-08-07 03:05:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10155, '2005-07-31 22:31:43', 3176, 235, '2005-08-07 02:43:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10156, '2005-07-31 22:36:00', 141, 179, '2005-08-02 00:03:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10157, '2005-07-31 22:38:48', 2960, 232, '2005-08-01 21:38:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10158, '2005-07-31 22:40:31', 1626, 393, '2005-08-08 18:25:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10159, '2005-07-31 22:54:30', 1174, 515, '2005-08-03 00:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10160, '2005-07-31 23:07:40', 863, 295, '2005-08-05 23:34:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10161, '2005-07-31 23:09:41', 2651, 120, '2005-08-02 20:46:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10162, '2005-07-31 23:11:01', 1327, 475, '2005-08-07 01:52:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10163, '2005-07-31 23:12:34', 2811, 425, '2005-08-01 22:47:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10164, '2005-07-31 23:17:57', 1405, 89, '2005-08-05 19:43:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10165, '2005-07-31 23:21:23', 3476, 50, '2005-08-06 18:06:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10166, '2005-07-31 23:22:20', 4304, 484, '2005-08-07 18:06:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10167, '2005-07-31 23:24:31', 1222, 129, '2005-08-06 17:42:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10168, '2005-07-31 23:25:24', 4548, 570, '2005-08-02 19:03:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10169, '2005-07-31 23:27:13', 2675, 57, '2005-08-05 20:32:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10170, '2005-07-31 23:27:31', 804, 41, '2005-08-08 04:53:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10171, '2005-07-31 23:29:05', 1367, 401, '2005-08-03 19:39:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10172, '2005-07-31 23:29:51', 2506, 426, '2005-08-09 01:57:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10173, '2005-07-31 23:36:59', 2527, 326, '2005-08-08 20:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10174, '2005-07-31 23:40:08', 2459, 359, '2005-08-06 21:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10175, '2005-07-31 23:40:11', 3672, 137, '2005-08-09 02:22:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10176, '2005-07-31 23:40:35', 1181, 19, '2005-08-09 00:46:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10177, '2005-07-31 23:42:33', 2242, 279, '2005-08-03 01:30:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10178, '2005-07-31 23:43:04', 1582, 491, '2005-08-03 00:43:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10179, '2005-07-31 23:49:54', 2136, 131, '2005-08-01 20:46:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10180, '2005-07-31 23:57:43', 757, 50, '2005-08-09 04:04:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10181, '2005-08-01 00:00:44', 3111, 113, '2005-08-04 19:33:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10182, '2005-08-01 00:08:01', 4112, 578, '2005-08-09 18:14:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10183, '2005-08-01 00:08:01', 4319, 377, '2005-08-09 20:41:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10184, '2005-08-01 00:09:33', 2785, 77, '2005-08-05 04:12:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10185, '2005-08-01 00:12:11', 1266, 64, '2005-08-03 03:03:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10186, '2005-08-01 00:12:36', 4563, 294, '2005-08-07 05:08:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10187, '2005-08-01 00:15:49', 1629, 400, '2005-08-05 01:00:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10188, '2005-08-01 00:19:41', 1221, 331, '2005-08-08 00:19:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10189, '2005-08-01 00:25:00', 616, 509, '2005-08-03 06:01:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10190, '2005-08-01 00:27:53', 4411, 138, '2005-08-01 20:32:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10191, '2005-08-01 00:28:38', 1131, 196, '2005-08-06 02:23:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10192, '2005-08-01 00:33:00', 1632, 569, '2005-08-05 03:37:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10193, '2005-08-01 00:33:27', 2036, 358, '2005-08-07 20:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10194, '2005-08-01 00:33:52', 1447, 290, '2005-08-06 04:50:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10195, '2005-08-01 00:34:42', 2691, 396, '2005-08-08 05:04:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10196, '2005-08-01 00:34:51', 3070, 199, '2005-08-05 03:43:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10197, '2005-08-01 00:35:25', 1186, 127, '2005-08-07 06:04:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10198, '2005-08-01 00:36:15', 1297, 366, '2005-08-07 06:18:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10199, '2005-08-01 00:38:55', 3665, 526, '2005-08-05 03:41:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10200, '2005-08-01 00:39:05', 580, 421, '2005-08-05 01:07:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10201, '2005-08-01 00:42:18', 3649, 299, '2005-08-08 20:49:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10202, '2005-08-01 00:43:18', 1099, 306, '2005-08-08 23:26:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10203, '2005-08-01 00:45:27', 1096, 157, '2005-08-04 22:45:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10204, '2005-08-01 00:47:39', 764, 572, '2005-08-05 01:11:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10205, '2005-08-01 00:48:24', 33, 87, '2005-08-06 23:53:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10206, '2005-08-01 00:52:40', 4479, 90, '2005-08-10 02:36:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10207, '2005-08-01 00:53:01', 2925, 334, '2005-08-05 05:51:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10208, '2005-08-01 00:54:51', 3324, 246, '2005-08-04 22:39:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10209, '2005-08-01 00:56:47', 2429, 303, '2005-08-03 19:58:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10210, '2005-08-01 00:58:52', 49, 391, '2005-08-10 01:16:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10211, '2005-08-01 01:01:16', 810, 530, '2005-08-10 01:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10212, '2005-08-01 01:01:35', 3728, 324, '2005-08-02 23:02:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10213, '2005-08-01 01:03:18', 1462, 106, '2005-08-09 20:07:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10214, '2005-08-01 01:04:15', 648, 597, '2005-08-01 19:31:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10215, '2005-08-01 01:04:28', 838, 345, '2005-08-09 21:43:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10216, '2005-08-01 01:06:27', 3603, 436, '2005-08-08 22:41:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10217, '2005-08-01 01:07:27', 1193, 389, '2005-08-09 00:42:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10218, '2005-08-01 01:09:44', 3886, 101, '2005-08-05 20:08:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10219, '2005-08-01 01:10:33', 2262, 505, '2005-08-10 02:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10220, '2005-08-01 01:13:22', 3920, 294, '2005-08-04 22:57:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10221, '2005-08-01 01:16:50', 3051, 373, '2005-08-03 05:35:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10222, '2005-08-01 01:17:42', 1214, 295, '2005-08-08 02:45:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10223, '2005-08-01 01:23:15', 1370, 522, '2005-08-02 19:39:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10224, '2005-08-01 01:31:56', 1443, 587, '2005-08-05 21:21:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10225, '2005-08-01 01:38:40', 3131, 498, '2005-08-06 20:00:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10226, '2005-08-01 01:40:04', 3067, 107, '2005-08-08 01:02:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10227, '2005-08-01 01:42:22', 872, 571, '2005-08-09 23:45:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10228, '2005-08-01 01:43:18', 1742, 106, '2005-08-06 22:10:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10229, '2005-08-01 01:45:26', 3459, 175, '2005-08-10 06:21:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10230, '2005-08-01 01:49:36', 76, 398, '2005-08-05 01:29:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10231, '2005-08-01 01:50:49', 1056, 511, '2005-08-06 03:12:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10232, '2005-08-01 01:50:55', 586, 512, '2005-08-03 04:12:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10233, '2005-08-01 01:54:23', 4571, 459, '2005-08-10 00:23:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10234, '2005-08-01 01:56:20', 1641, 207, '2005-08-09 01:51:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10235, '2005-08-01 01:57:48', 2850, 30, '2005-08-10 07:38:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10236, '2005-08-01 02:05:34', 3754, 470, '2005-08-01 23:40:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10237, '2005-08-01 02:07:32', 432, 313, '2005-08-07 03:54:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10238, '2005-08-01 02:08:05', 561, 192, '2005-08-02 01:52:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10239, '2005-08-01 02:09:22', 1232, 467, '2005-08-04 01:35:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10240, '2005-08-01 02:09:33', 4494, 109, '2005-08-07 02:22:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10241, '2005-08-01 02:12:25', 1526, 161, '2005-08-08 00:37:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10242, '2005-08-01 02:18:12', 1825, 342, '2005-08-02 22:32:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10243, '2005-08-01 02:18:46', 2236, 132, '2005-08-06 21:45:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10244, '2005-08-01 02:20:01', 567, 51, '2005-08-06 23:06:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10245, '2005-08-01 02:24:09', 2880, 163, '2005-08-02 02:31:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10246, '2005-08-01 02:29:50', 3598, 261, '2005-08-09 01:17:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10247, '2005-08-01 02:34:06', 4035, 189, '2005-08-09 02:33:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10248, '2005-08-01 02:35:28', 2146, 298, '2005-08-08 02:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10249, '2005-08-01 02:35:39', 135, 437, '2005-08-06 06:50:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10250, '2005-08-01 02:38:42', 3706, 116, '2005-08-07 03:59:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10251, '2005-08-01 02:39:12', 2986, 39, '2005-08-06 03:51:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10252, '2005-08-01 02:39:39', 2380, 86, '2005-08-10 00:40:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10253, '2005-08-01 02:39:49', 1406, 101, '2005-08-08 04:28:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10254, '2005-08-01 02:42:03', 2238, 416, '2005-08-05 23:31:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10255, '2005-08-01 02:46:13', 4558, 459, '2005-08-03 05:54:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10256, '2005-08-01 02:47:11', 780, 58, '2005-08-05 05:21:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10257, '2005-08-01 02:49:43', 2403, 543, '2005-08-04 04:45:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10258, '2005-08-01 02:51:09', 2062, 469, '2005-08-08 23:57:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10259, '2005-08-01 02:52:05', 1881, 566, '2005-08-03 20:54:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10260, '2005-08-01 02:58:07', 2864, 461, '2005-08-05 02:06:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10261, '2005-08-01 02:58:27', 2346, 50, '2005-08-01 21:55:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10262, '2005-08-01 03:01:26', 3842, 181, '2005-08-08 08:03:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10263, '2005-08-01 03:02:48', 2420, 415, '2005-08-08 02:16:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10264, '2005-08-01 03:03:12', 1374, 297, '2005-08-08 00:34:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10265, '2005-08-01 03:05:04', 3338, 510, '2005-08-08 08:09:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10266, '2005-08-01 03:05:59', 476, 49, '2005-08-06 06:23:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10267, '2005-08-01 03:07:26', 3883, 72, '2005-08-07 22:49:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10268, '2005-08-01 03:08:56', 2755, 138, '2005-08-08 02:41:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10269, '2005-08-01 03:09:26', 2537, 39, '2005-08-02 00:01:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10270, '2005-08-01 03:10:24', 2025, 168, '2005-08-07 03:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10271, '2005-08-01 03:13:39', 3692, 6, '2005-08-07 23:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10272, '2005-08-01 03:14:34', 128, 273, '2005-08-10 05:56:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10273, '2005-08-01 03:14:47', 1458, 212, '2005-08-07 03:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10274, '2005-08-01 03:16:51', 2916, 375, '2005-08-04 22:22:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10275, '2005-08-01 03:20:08', 669, 463, '2005-08-08 06:48:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10276, '2005-08-01 03:22:23', 2201, 48, '2005-08-03 07:59:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10277, '2005-08-01 03:22:41', 1472, 176, '2005-08-05 05:07:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10278, '2005-08-01 03:25:27', 2497, 154, '2005-08-08 07:52:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10279, '2005-08-01 03:26:44', 3794, 247, '2005-08-07 22:35:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10280, '2005-08-01 03:27:15', 1457, 542, '2005-08-07 23:01:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10281, '2005-08-01 03:28:33', 1047, 549, '2005-08-02 05:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10282, '2005-08-01 03:29:10', 617, 472, '2005-08-07 06:16:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10283, '2005-08-01 03:29:45', 4237, 462, '2005-08-07 04:19:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10284, '2005-08-01 03:33:19', 2879, 20, '2005-08-09 07:58:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10285, '2005-08-01 03:35:11', 4523, 167, '2005-08-05 03:55:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10286, '2005-08-01 03:35:58', 498, 532, '2005-08-10 05:17:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10287, '2005-08-01 03:37:01', 125, 141, '2005-08-05 23:03:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10288, '2005-08-01 03:38:42', 572, 63, '2005-08-06 04:34:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10289, '2005-08-01 03:39:48', 3153, 566, '2005-08-08 02:56:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10290, '2005-08-01 03:39:50', 4542, 364, '2005-08-08 22:29:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10291, '2005-08-01 03:39:57', 2056, 420, '2005-08-05 02:05:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10292, '2005-08-01 03:42:40', 2562, 340, '2005-08-01 23:36:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10293, '2005-08-01 03:44:26', 1570, 258, '2005-08-05 04:16:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10294, '2005-08-01 03:48:12', 528, 28, '2005-08-09 01:19:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10295, '2005-08-01 03:53:49', 2355, 123, '2005-08-10 03:56:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10296, '2005-08-01 04:04:37', 1958, 573, '2005-08-01 23:59:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10297, '2005-08-01 04:05:04', 2795, 289, '2005-08-09 06:08:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10298, '2005-08-01 04:06:03', 1383, 323, '2005-08-05 05:59:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10299, '2005-08-01 04:08:04', 1125, 369, '2005-08-04 08:11:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10300, '2005-08-01 04:08:11', 4334, 207, '2005-08-04 00:24:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10301, '2005-08-01 04:09:37', 3072, 583, '2005-08-04 23:14:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10302, '2005-08-01 04:12:08', 1043, 144, '2005-08-01 22:12:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10303, '2005-08-01 04:13:33', 936, 479, '2005-08-06 02:16:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10304, '2005-08-01 04:14:12', 1538, 346, '2005-08-07 22:38:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10305, '2005-08-01 04:16:16', 2946, 160, '2005-08-07 23:47:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10306, '2005-08-01 04:19:18', 2819, 541, '2005-08-09 02:16:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10307, '2005-08-01 04:21:54', 975, 332, '2005-08-04 09:24:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10308, '2005-08-01 04:22:49', 588, 240, '2005-08-09 04:39:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10309, '2005-08-01 04:24:18', 1505, 156, '2005-08-09 08:32:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10310, '2005-08-01 04:24:47', 9, 271, '2005-08-04 05:36:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10311, '2005-08-01 04:27:59', 4211, 151, '2005-08-02 08:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10312, '2005-08-01 04:29:06', 4389, 172, '2005-08-08 04:52:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10313, '2005-08-01 04:29:29', 1194, 80, '2005-08-04 08:12:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10314, '2005-08-01 04:31:18', 1548, 252, '2005-08-06 01:49:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10315, '2005-08-01 04:34:45', 895, 258, '2005-08-07 05:27:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10316, '2005-08-01 04:34:57', 1907, 469, '2005-08-06 02:34:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10317, '2005-08-01 04:35:34', 110, 561, '2005-08-06 02:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10318, '2005-08-01 04:36:53', 885, 548, '2005-08-04 00:54:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10319, '2005-08-01 04:37:19', 3120, 394, '2005-08-05 03:18:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10320, '2005-08-01 04:39:26', 2298, 152, '2005-08-08 06:01:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10321, '2005-08-01 04:40:02', 4512, 177, '2005-08-03 04:18:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10322, '2005-08-01 04:44:13', 1543, 535, '2005-08-08 00:20:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10323, '2005-08-01 04:44:58', 3539, 577, '2005-08-06 07:56:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10324, '2005-08-01 04:49:06', 523, 25, '2005-08-09 08:04:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10325, '2005-08-01 04:52:12', 2749, 258, '2005-08-08 09:31:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10326, '2005-08-01 04:55:34', 3856, 325, '2005-08-02 05:18:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10327, '2005-08-01 04:55:35', 328, 382, '2005-08-07 08:17:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10328, '2005-08-01 04:56:10', 1191, 85, '2005-08-01 23:22:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10329, '2005-08-01 04:56:13', 2289, 302, '2005-08-03 03:54:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10330, '2005-08-01 04:57:04', 1580, 7, '2005-08-07 23:00:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10331, '2005-08-01 04:57:14', 4152, 575, '2005-08-07 06:46:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10332, '2005-08-01 04:57:32', 642, 258, '2005-08-10 02:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10333, '2005-08-01 04:58:32', 3955, 499, '2005-08-04 00:51:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10334, '2005-08-01 04:58:42', 3387, 445, '2005-08-09 02:00:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10335, '2005-08-01 04:59:30', 323, 33, '2005-08-05 02:26:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10336, '2005-08-01 04:59:53', 1091, 370, '2005-08-03 08:05:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10337, '2005-08-01 05:01:46', 307, 451, '2005-08-10 02:41:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10338, '2005-08-01 05:03:03', 1295, 339, '2005-08-09 05:13:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10339, '2005-08-01 05:05:50', 615, 363, '2005-08-10 07:15:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10340, '2005-08-01 05:07:03', 3608, 568, '2005-08-06 01:03:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10341, '2005-08-01 05:10:02', 3304, 445, '2005-08-07 11:01:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10342, '2005-08-01 05:11:11', 332, 140, '2005-08-10 00:27:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10343, '2005-08-01 05:15:47', 2627, 267, '2005-08-02 04:48:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10344, '2005-08-01 05:18:23', 3673, 367, '2005-08-06 05:20:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10345, '2005-08-01 05:18:56', 3985, 42, '2005-08-04 01:34:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10346, '2005-08-01 05:19:23', 4192, 476, '2005-08-06 01:00:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10347, '2005-08-01 05:20:03', 953, 574, '2005-08-04 10:03:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10348, '2005-08-01 05:23:00', 2076, 14, '2005-08-04 01:12:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10349, '2005-08-01 05:27:13', 114, 295, '2005-08-08 10:15:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10350, '2005-08-01 05:30:05', 2067, 78, '2005-08-05 09:59:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10351, '2005-08-01 05:32:13', 3725, 173, '2005-08-08 09:48:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10352, '2005-08-01 05:44:36', 1288, 564, '2005-08-05 07:15:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10353, '2005-08-01 05:46:33', 1446, 535, '2005-08-08 09:14:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10354, '2005-08-01 05:47:10', 1680, 416, '2005-08-06 09:04:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10355, '2005-08-01 05:47:37', 2158, 161, '2005-08-02 09:28:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10356, '2005-08-01 05:49:17', 313, 56, '2005-08-10 05:57:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10357, '2005-08-01 05:49:49', 3102, 475, '2005-08-04 02:34:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10358, '2005-08-01 05:50:07', 3039, 517, '2005-08-03 08:18:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10359, '2005-08-01 05:52:21', 259, 369, '2005-08-06 05:52:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10360, '2005-08-01 05:52:53', 1129, 443, '2005-08-05 10:55:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10361, '2005-08-01 05:53:49', 318, 529, '2005-08-10 00:42:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10362, '2005-08-01 05:55:13', 72, 181, '2005-08-10 10:23:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10363, '2005-08-01 06:01:52', 320, 174, '2005-08-05 03:56:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10364, '2005-08-01 06:06:49', 1842, 317, '2005-08-09 06:05:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10365, '2005-08-01 06:08:44', 4032, 442, '2005-08-06 02:07:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10366, '2005-08-01 06:09:37', 2654, 119, '2005-08-05 03:19:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10367, '2005-08-01 06:12:19', 3408, 242, '2005-08-04 12:11:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10368, '2005-08-01 06:13:38', 3535, 593, '2005-08-08 04:40:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10369, '2005-08-01 06:13:44', 2534, 424, '2005-08-07 09:46:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10370, '2005-08-01 06:18:04', 4358, 546, '2005-08-05 01:41:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10371, '2005-08-01 06:20:29', 923, 327, '2005-08-04 00:31:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10372, '2005-08-01 06:23:48', 635, 419, '2005-08-06 03:47:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10373, '2005-08-01 06:24:26', 1754, 588, '2005-08-02 12:07:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10374, '2005-08-01 06:25:27', 4351, 307, '2005-08-07 05:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10375, '2005-08-01 06:26:22', 857, 202, '2005-08-06 02:51:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10376, '2005-08-01 06:27:13', 4194, 474, '2005-08-07 06:11:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10377, '2005-08-01 06:28:28', 2401, 559, '2005-08-10 05:45:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10378, '2005-08-01 06:30:04', 4110, 113, '2005-08-06 09:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10379, '2005-08-01 06:34:29', 3103, 141, '2005-08-06 07:49:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10380, '2005-08-01 06:34:36', 2225, 533, '2005-08-02 09:08:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10381, '2005-08-01 06:36:37', 522, 412, '2005-08-05 11:17:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10382, '2005-08-01 06:36:45', 4455, 242, '2005-08-02 06:06:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10383, '2005-08-01 06:37:16', 4166, 592, '2005-08-03 07:36:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10384, '2005-08-01 06:39:14', 2622, 366, '2005-08-02 03:06:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10385, '2005-08-01 06:39:55', 778, 179, '2005-08-06 02:16:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10386, '2005-08-01 06:42:20', 1568, 26, '2005-08-07 06:12:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10387, '2005-08-01 06:42:31', 1651, 87, '2005-08-08 07:44:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10388, '2005-08-01 06:42:44', 3180, 99, '2005-08-09 11:43:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10389, '2005-08-01 06:46:43', 3534, 346, '2005-08-08 07:07:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10390, '2005-08-01 06:46:48', 1489, 502, '2005-08-09 02:55:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10391, '2005-08-01 06:49:05', 2203, 357, '2005-08-04 01:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10392, '2005-08-01 06:50:26', 3017, 12, '2005-08-10 10:52:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10393, '2005-08-01 06:52:50', 808, 258, '2005-08-05 08:45:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10394, '2005-08-01 06:58:17', 1655, 128, '2005-08-05 02:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10395, '2005-08-01 07:08:22', 279, 129, '2005-08-05 08:00:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10396, '2005-08-01 07:08:46', 2982, 284, '2005-08-08 03:47:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10397, '2005-08-01 07:11:27', 4168, 504, '2005-08-03 07:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10398, '2005-08-01 07:11:49', 4306, 174, '2005-08-04 05:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10399, '2005-08-01 07:13:39', 2515, 204, '2005-08-10 06:56:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10400, '2005-08-01 07:18:24', 3897, 132, '2005-08-10 08:38:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10401, '2005-08-01 07:27:09', 1560, 564, '2005-08-02 01:38:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10402, '2005-08-01 07:27:19', 274, 410, '2005-08-04 12:30:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10403, '2005-08-01 07:30:45', 1968, 494, '2005-08-03 03:03:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10404, '2005-08-01 07:31:25', 2580, 253, '2005-08-07 09:23:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10405, '2005-08-01 07:35:25', 3641, 463, '2005-08-05 05:38:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10406, '2005-08-01 07:37:05', 2614, 391, '2005-08-02 06:11:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10407, '2005-08-01 07:38:07', 543, 101, '2005-08-02 05:38:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10408, '2005-08-01 07:42:10', 4144, 334, '2005-08-09 02:29:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10409, '2005-08-01 07:49:15', 2804, 449, '2005-08-02 13:42:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10410, '2005-08-01 07:53:29', 3901, 247, '2005-08-10 08:56:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10411, '2005-08-01 07:56:32', 1946, 522, '2005-08-10 04:58:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10412, '2005-08-01 07:57:16', 1555, 325, '2005-08-04 11:44:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10413, '2005-08-01 07:59:39', 1018, 376, '2005-08-08 03:55:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10414, '2005-08-01 08:03:55', 1271, 361, '2005-08-04 08:44:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10415, '2005-08-01 08:05:59', 2597, 591, '2005-08-04 13:46:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10416, '2005-08-01 08:08:39', 2629, 449, '2005-08-10 09:26:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10417, '2005-08-01 08:10:36', 3675, 427, '2005-08-02 03:42:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10418, '2005-08-01 08:11:07', 1692, 248, '2005-08-04 11:12:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10419, '2005-08-01 08:13:22', 415, 66, '2005-08-06 04:45:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10420, '2005-08-01 08:13:53', 3490, 354, '2005-08-06 08:05:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10421, '2005-08-01 08:14:10', 925, 262, '2005-08-03 05:56:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10422, '2005-08-01 08:17:11', 37, 166, '2005-08-10 10:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10423, '2005-08-01 08:19:53', 739, 7, '2005-08-08 10:25:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10424, '2005-08-01 08:22:54', 1921, 88, '2005-08-06 13:44:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10425, '2005-08-01 08:23:25', 322, 447, '2005-08-05 04:29:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10426, '2005-08-01 08:26:08', 1325, 305, '2005-08-09 04:09:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10427, '2005-08-01 08:30:11', 2978, 356, '2005-08-07 06:18:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10428, '2005-08-01 08:30:11', 4245, 46, '2005-08-02 09:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10429, '2005-08-01 08:34:18', 3894, 511, '2005-08-10 12:38:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10430, '2005-08-01 08:37:06', 1150, 471, '2005-08-03 07:25:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10431, '2005-08-01 08:41:54', 1074, 138, '2005-08-07 09:44:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10432, '2005-08-01 08:43:21', 4238, 450, '2005-08-08 13:09:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10433, '2005-08-01 08:45:56', 1508, 517, '2005-08-05 09:46:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10434, '2005-08-01 08:47:00', 4073, 73, '2005-08-06 08:34:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10435, '2005-08-01 08:50:51', 1934, 392, '2005-08-08 12:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10436, '2005-08-01 08:50:59', 4026, 455, '2005-08-04 05:23:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10437, '2005-08-01 08:51:04', 14, 1, '2005-08-10 12:12:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10438, '2005-08-01 08:53:04', 4217, 316, '2005-08-09 06:39:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10439, '2005-08-01 08:54:26', 2711, 332, '2005-08-08 14:04:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10440, '2005-08-01 08:54:32', 842, 299, '2005-08-02 10:59:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10441, '2005-08-01 08:55:56', 4122, 176, '2005-08-03 10:26:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10442, '2005-08-01 08:58:08', 4570, 40, '2005-08-05 09:07:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10443, '2005-08-01 09:01:04', 1965, 403, '2005-08-04 09:07:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10444, '2005-08-01 09:01:40', 3242, 106, '2005-08-09 11:31:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10445, '2005-08-01 09:02:15', 3582, 211, '2005-08-08 10:26:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10446, '2005-08-01 09:02:17', 2671, 95, '2005-08-04 10:00:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10447, '2005-08-01 09:04:58', 1198, 241, '2005-08-08 06:24:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10448, '2005-08-01 09:09:31', 2254, 311, '2005-08-02 09:55:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10449, '2005-08-01 09:09:59', 1395, 213, '2005-08-05 11:25:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10450, '2005-08-01 09:10:03', 234, 380, '2005-08-08 12:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10451, '2005-08-01 09:11:25', 2435, 9, '2005-08-03 12:37:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10452, '2005-08-01 09:11:36', 1973, 442, '2005-08-04 13:28:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10453, '2005-08-01 09:13:27', 1531, 188, '2005-08-08 11:34:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10454, '2005-08-01 09:14:00', 397, 9, '2005-08-04 04:52:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10455, '2005-08-01 09:15:00', 4197, 99, '2005-08-05 13:35:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10456, '2005-08-01 09:17:21', 4339, 81, '2005-08-06 10:30:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10457, '2005-08-01 09:17:34', 3052, 121, '2005-08-06 07:28:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10458, '2005-08-01 09:19:48', 1500, 309, '2005-08-02 10:16:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10459, '2005-08-01 09:20:09', 201, 131, '2005-08-03 11:36:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10460, '2005-08-01 09:31:00', 4504, 197, '2005-08-09 09:28:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10461, '2005-08-01 09:32:53', 3212, 270, '2005-08-09 10:19:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10462, '2005-08-01 09:38:28', 4526, 193, '2005-08-02 09:52:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10463, '2005-08-01 09:39:43', 1301, 291, '2005-08-10 03:42:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10464, '2005-08-01 09:43:14', 464, 427, '2005-08-06 09:01:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10465, '2005-08-01 09:45:25', 4384, 534, '2005-08-10 09:08:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10466, '2005-08-01 09:45:26', 138, 2, '2005-08-06 06:28:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10467, '2005-08-01 09:45:58', 3773, 412, '2005-08-09 10:17:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10468, '2005-08-01 09:48:29', 2115, 129, '2005-08-05 09:58:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10469, '2005-08-01 09:51:11', 3054, 466, '2005-08-05 06:53:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10470, '2005-08-01 09:52:26', 82, 523, '2005-08-05 06:52:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10471, '2005-08-01 09:52:37', 1684, 135, '2005-08-07 09:40:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10472, '2005-08-01 09:54:41', 506, 405, '2005-08-04 13:31:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10473, '2005-08-01 09:56:24', 3034, 329, '2005-08-10 12:36:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10474, '2005-08-01 10:01:42', 4482, 488, '2005-08-08 12:32:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10475, '2005-08-01 10:03:17', 2931, 115, '2005-08-10 15:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10476, '2005-08-01 10:03:20', 1993, 263, '2005-08-10 06:52:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10477, '2005-08-01 10:04:17', 235, 506, '2005-08-06 11:32:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10478, '2005-08-01 10:09:06', 3885, 417, '2005-08-06 05:05:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10479, '2005-08-01 10:11:25', 4580, 275, '2005-08-06 04:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10480, '2005-08-01 10:13:41', 553, 560, '2005-08-03 10:27:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10481, '2005-08-01 10:17:26', 229, 170, '2005-08-09 08:50:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10482, '2005-08-01 10:17:47', 48, 358, '2005-08-02 15:04:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10483, '2005-08-01 10:19:45', 1521, 129, '2005-08-04 09:29:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10484, '2005-08-01 10:19:53', 1908, 400, '2005-08-03 05:36:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10485, '2005-08-01 10:20:34', 29, 50, '2005-08-09 09:20:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10486, '2005-08-01 10:23:43', 2454, 527, '2005-08-05 07:11:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10487, '2005-08-01 10:26:34', 1121, 577, '2005-08-07 16:11:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10488, '2005-08-01 10:27:27', 297, 423, '2005-08-02 11:05:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10489, '2005-08-01 10:27:42', 4067, 54, '2005-08-07 12:56:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10490, '2005-08-01 10:37:11', 4365, 329, '2005-08-03 10:01:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10491, '2005-08-01 10:38:27', 3091, 24, '2005-08-04 04:55:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10492, '2005-08-01 10:42:28', 1669, 334, '2005-08-02 07:05:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10493, '2005-08-01 10:43:12', 2375, 285, '2005-08-07 08:13:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10494, '2005-08-01 10:45:21', 847, 188, '2005-08-02 12:34:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10495, '2005-08-01 10:45:51', 2232, 41, '2005-08-06 08:11:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10496, '2005-08-01 10:53:16', 411, 525, '2005-08-08 10:34:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10497, '2005-08-01 10:55:59', 1060, 499, '2005-08-07 11:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10498, '2005-08-01 10:56:48', 2672, 355, '2005-08-03 15:46:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10499, '2005-08-01 11:00:20', 3293, 459, '2005-08-10 11:52:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10500, '2005-08-01 11:01:01', 469, 477, '2005-08-06 08:59:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10501, '2005-08-01 11:04:46', 1792, 351, '2005-08-02 12:10:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10502, '2005-08-01 11:06:39', 3193, 357, '2005-08-05 07:11:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10503, '2005-08-01 11:07:44', 1823, 357, '2005-08-08 08:22:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10504, '2005-08-01 11:10:55', 3345, 530, '2005-08-10 10:16:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10505, '2005-08-01 11:13:59', 2977, 426, '2005-08-05 07:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10506, '2005-08-01 11:16:05', 1171, 216, '2005-08-03 05:37:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10507, '2005-08-01 11:22:20', 367, 45, '2005-08-04 13:18:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10508, '2005-08-01 11:23:27', 3890, 431, '2005-08-02 10:17:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10509, '2005-08-01 11:25:28', 96, 504, '2005-08-10 09:19:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10510, '2005-08-01 11:28:30', 410, 259, '2005-08-07 11:37:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10511, '2005-08-01 11:32:16', 3874, 487, '2005-08-04 09:38:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10512, '2005-08-01 11:36:19', 3294, 438, '2005-08-09 06:52:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10513, '2005-08-01 11:37:34', 4057, 105, '2005-08-02 17:15:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10514, '2005-08-01 11:39:26', 1512, 7, '2005-08-03 07:53:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10515, '2005-08-01 11:41:33', 874, 383, '2005-08-08 06:23:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10516, '2005-08-01 11:41:55', 3924, 449, '2005-08-08 17:16:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10517, '2005-08-01 11:41:57', 2299, 199, '2005-08-05 06:14:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10518, '2005-08-01 11:44:08', 4444, 556, '2005-08-07 07:58:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10519, '2005-08-01 11:44:13', 1967, 456, '2005-08-09 16:57:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10520, '2005-08-01 11:45:58', 4396, 543, '2005-08-06 17:28:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10521, '2005-08-01 11:46:17', 662, 346, '2005-08-05 11:06:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10522, '2005-08-01 11:48:51', 4159, 254, '2005-08-05 12:40:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10523, '2005-08-01 11:52:32', 2408, 34, '2005-08-02 10:47:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10524, '2005-08-01 11:53:12', 4116, 38, '2005-08-08 10:40:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10525, '2005-08-01 11:53:17', 3811, 36, '2005-08-07 07:24:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10526, '2005-08-01 11:55:33', 27, 14, '2005-08-08 16:42:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10527, '2005-08-01 11:55:54', 4530, 431, '2005-08-05 15:56:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10528, '2005-08-01 11:56:22', 4401, 564, '2005-08-07 07:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10529, '2005-08-01 12:00:02', 851, 444, '2005-08-08 16:18:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10530, '2005-08-01 12:01:17', 3216, 520, '2005-08-06 09:55:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10531, '2005-08-01 12:06:30', 3846, 459, '2005-08-04 10:23:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10532, '2005-08-01 12:06:35', 746, 191, '2005-08-07 16:04:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10533, '2005-08-01 12:14:16', 1924, 593, '2005-08-09 17:13:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10534, '2005-08-01 12:15:11', 4354, 397, '2005-08-04 17:06:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10535, '2005-08-01 12:21:13', 1838, 284, '2005-08-09 08:58:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10536, '2005-08-01 12:21:53', 1251, 86, '2005-08-04 13:08:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10537, '2005-08-01 12:22:28', 2140, 418, '2005-08-08 07:27:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10538, '2005-08-01 12:22:41', 686, 37, '2005-08-02 10:31:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10539, '2005-08-01 12:23:00', 3341, 232, '2005-08-07 10:25:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10540, '2005-08-01 12:24:42', 4121, 84, '2005-08-03 08:39:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10541, '2005-08-01 12:24:54', 1413, 234, '2005-08-03 16:18:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10542, '2005-08-01 12:32:23', 1102, 465, '2005-08-08 16:26:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10543, '2005-08-01 12:36:09', 624, 29, '2005-08-07 07:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10544, '2005-08-01 12:36:21', 3195, 589, '2005-08-07 12:25:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10545, '2005-08-01 12:37:46', 4230, 425, '2005-08-04 16:02:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10546, '2005-08-01 12:44:17', 1589, 362, '2005-08-06 16:26:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10547, '2005-08-01 12:44:17', 1707, 403, '2005-08-08 06:53:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10548, '2005-08-01 12:44:32', 1914, 85, '2005-08-07 09:17:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10549, '2005-08-01 12:46:39', 3719, 61, '2005-08-06 17:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10550, '2005-08-01 12:46:52', 1980, 129, '2005-08-05 16:48:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10551, '2005-08-01 12:48:55', 2974, 294, '2005-08-10 16:11:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10552, '2005-08-01 12:49:44', 4263, 119, '2005-08-04 16:20:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10553, '2005-08-01 12:54:06', 2768, 415, '2005-08-06 15:27:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10554, '2005-08-01 12:56:19', 3220, 209, '2005-08-03 09:44:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10555, '2005-08-01 12:56:38', 377, 487, '2005-08-10 18:19:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10556, '2005-08-01 12:58:42', 144, 117, '2005-08-03 07:18:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10557, '2005-08-01 12:59:24', 240, 385, '2005-08-04 17:08:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10558, '2005-08-01 13:00:20', 4399, 117, '2005-08-05 16:31:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10559, '2005-08-01 13:02:58', 2861, 174, '2005-08-09 10:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10560, '2005-08-01 13:04:57', 1534, 427, '2005-08-05 18:25:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10561, '2005-08-01 13:05:35', 2195, 8, '2005-08-04 08:34:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10562, '2005-08-01 13:05:52', 1947, 178, '2005-08-02 17:05:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10563, '2005-08-01 13:06:03', 1885, 214, '2005-08-09 08:39:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10564, '2005-08-01 13:07:34', 4469, 387, '2005-08-06 15:14:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10565, '2005-08-01 13:08:27', 347, 165, '2005-08-02 10:30:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10566, '2005-08-01 13:12:11', 3988, 269, '2005-08-05 11:16:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10567, '2005-08-01 13:16:01', 2744, 212, '2005-08-05 14:59:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10568, '2005-08-01 13:17:28', 3009, 130, '2005-08-08 17:04:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10569, '2005-08-01 13:18:23', 611, 179, '2005-08-10 13:33:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10570, '2005-08-01 13:23:06', 369, 21, '2005-08-05 15:30:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10571, '2005-08-01 13:25:30', 3660, 308, '2005-08-02 16:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10572, '2005-08-01 13:26:53', 1239, 386, '2005-08-07 18:47:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10573, '2005-08-01 13:27:24', 4252, 585, '2005-08-04 15:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10574, '2005-08-01 13:36:51', 679, 287, '2005-08-10 13:25:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10575, '2005-08-01 13:41:41', 4447, 251, '2005-08-08 11:30:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10576, '2005-08-01 13:46:02', 1876, 180, '2005-08-05 10:19:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10577, '2005-08-01 13:46:38', 2240, 428, '2005-08-06 11:35:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10578, '2005-08-01 13:48:02', 3704, 113, '2005-08-07 13:40:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10579, '2005-08-01 13:48:22', 4068, 270, '2005-08-07 11:51:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10580, '2005-08-01 13:51:14', 590, 234, '2005-08-08 11:49:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10581, '2005-08-01 13:52:30', 2801, 217, '2005-08-10 19:11:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10582, '2005-08-01 13:54:22', 2536, 233, '2005-08-05 16:46:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10583, '2005-08-01 13:54:35', 704, 125, '2005-08-03 18:21:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10584, '2005-08-01 13:58:47', 715, 86, '2005-08-06 13:38:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10585, '2005-08-01 14:00:42', 2670, 228, '2005-08-09 11:42:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10586, '2005-08-01 14:00:59', 3306, 583, '2005-08-06 10:00:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10587, '2005-08-01 14:03:38', 3000, 521, '2005-08-08 19:59:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10588, '2005-08-01 14:10:21', 2384, 49, '2005-08-03 13:47:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10589, '2005-08-01 14:11:09', 4280, 375, '2005-08-09 09:28:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10590, '2005-08-01 14:11:53', 740, 78, '2005-08-04 20:04:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10591, '2005-08-01 14:12:29', 3360, 52, '2005-08-04 08:46:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10592, '2005-08-01 14:13:00', 829, 265, '2005-08-09 13:03:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10593, '2005-08-01 14:13:19', 1886, 144, '2005-08-06 08:48:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10594, '2005-08-01 14:14:59', 1826, 53, '2005-08-07 10:48:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10595, '2005-08-01 14:16:28', 966, 137, '2005-08-03 10:37:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10596, '2005-08-01 14:18:57', 803, 112, '2005-08-07 14:59:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10597, '2005-08-01 14:19:48', 3292, 3, '2005-08-08 20:01:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10598, '2005-08-01 14:23:36', 2341, 397, '2005-08-10 14:07:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10599, '2005-08-01 14:23:58', 2422, 271, '2005-08-06 10:45:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10600, '2005-08-01 14:25:21', 3900, 294, '2005-08-06 18:00:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10601, '2005-08-01 14:25:40', 2843, 420, '2005-08-10 09:07:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10602, '2005-08-01 14:30:23', 1506, 111, '2005-08-07 15:20:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10603, '2005-08-01 14:30:35', 4024, 394, '2005-08-05 11:13:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10604, '2005-08-01 14:35:08', 2833, 250, '2005-08-08 10:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10605, '2005-08-01 14:36:26', 680, 341, '2005-08-06 12:04:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10606, '2005-08-01 14:39:15', 81, 335, '2005-08-08 11:31:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10607, '2005-08-01 14:44:43', 3999, 438, '2005-08-02 16:39:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10608, '2005-08-01 14:48:41', 3835, 381, '2005-08-04 17:32:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10609, '2005-08-01 14:48:45', 2587, 5, '2005-08-04 13:41:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10610, '2005-08-01 14:49:41', 1865, 396, '2005-08-03 13:07:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10611, '2005-08-01 14:53:52', 957, 135, '2005-08-07 09:15:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10612, '2005-08-01 14:55:31', 287, 554, '2005-08-06 19:01:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10613, '2005-08-01 14:56:14', 4357, 527, '2005-08-07 09:33:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10614, '2005-08-01 14:57:00', 232, 533, '2005-08-10 09:31:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10615, '2005-08-01 14:58:14', 2639, 34, '2005-08-02 13:38:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10616, '2005-08-01 14:59:50', 1094, 20, '2005-08-07 11:38:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10617, '2005-08-01 15:05:52', 4344, 476, '2005-08-09 18:54:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10618, '2005-08-01 15:06:38', 3729, 386, '2005-08-06 15:52:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10619, '2005-08-01 15:07:04', 2189, 132, '2005-08-07 11:42:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10620, '2005-08-01 15:09:17', 3064, 183, '2005-08-09 13:58:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10621, '2005-08-01 15:10:26', 1650, 172, '2005-08-04 10:58:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10622, '2005-08-01 15:12:00', 3044, 171, '2005-08-08 14:09:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10623, '2005-08-01 15:22:38', 4426, 494, '2005-08-03 11:03:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10624, '2005-08-01 15:27:05', 3801, 74, '2005-08-05 19:50:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10625, '2005-08-01 15:27:10', 3022, 5, '2005-08-02 13:16:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10626, '2005-08-01 15:32:41', 1042, 122, '2005-08-05 18:08:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10627, '2005-08-01 15:33:03', 2026, 472, '2005-08-02 21:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10628, '2005-08-01 15:33:19', 427, 285, '2005-08-05 17:27:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10629, '2005-08-01 15:33:32', 997, 575, '2005-08-08 12:40:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10630, '2005-08-01 15:34:46', 2335, 39, '2005-08-03 10:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10631, '2005-08-01 15:35:14', 2712, 304, '2005-08-03 10:48:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10632, '2005-08-01 15:36:56', 1290, 406, '2005-08-05 17:32:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10633, '2005-08-01 15:37:17', 3125, 475, '2005-08-10 14:30:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10634, '2005-08-01 15:37:48', 445, 592, '2005-08-02 12:11:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10635, '2005-08-01 15:37:58', 547, 52, '2005-08-07 11:15:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10636, '2005-08-01 15:40:35', 621, 385, '2005-08-05 18:46:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10637, '2005-08-01 15:44:09', 1243, 161, '2005-08-04 14:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10638, '2005-08-01 15:44:20', 2239, 132, '2005-08-08 16:05:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10639, '2005-08-01 15:44:43', 1015, 39, '2005-08-10 13:51:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10640, '2005-08-01 15:44:51', 3020, 375, '2005-08-06 15:52:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10641, '2005-08-01 15:44:57', 972, 285, '2005-08-04 18:15:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10642, '2005-08-01 15:45:11', 2573, 294, '2005-08-02 20:13:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10643, '2005-08-01 15:48:33', 3853, 495, '2005-08-06 20:24:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10644, '2005-08-01 15:52:00', 4374, 7, '2005-08-08 16:08:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10645, '2005-08-01 15:52:01', 3864, 130, '2005-08-09 18:58:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10646, '2005-08-01 15:57:55', 1752, 209, '2005-08-02 19:08:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10647, '2005-08-01 16:08:46', 3137, 115, '2005-08-06 20:37:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10648, '2005-08-01 16:08:52', 691, 270, '2005-08-05 20:17:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10649, '2005-08-01 16:11:40', 1032, 278, '2005-08-06 14:09:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10650, '2005-08-01 16:18:45', 2306, 242, '2005-08-09 16:29:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10651, '2005-08-01 16:20:22', 1541, 404, '2005-08-03 15:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10652, '2005-08-01 16:24:08', 1633, 241, '2005-08-03 16:00:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10653, '2005-08-01 16:28:07', 1190, 75, '2005-08-07 21:22:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10654, '2005-08-01 16:31:35', 2522, 399, '2005-08-05 12:04:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10655, '2005-08-01 16:33:27', 1399, 385, '2005-08-08 17:17:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10656, '2005-08-01 16:38:04', 2571, 80, '2005-08-09 19:37:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10657, '2005-08-01 16:38:44', 3075, 590, '2005-08-06 16:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10658, '2005-08-01 16:39:18', 2943, 469, '2005-08-09 18:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10659, '2005-08-01 16:40:34', 786, 238, '2005-08-09 21:00:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10660, '2005-08-01 16:48:01', 2518, 253, '2005-08-07 14:42:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10661, '2005-08-01 16:48:31', 3311, 177, '2005-08-02 21:02:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10662, '2005-08-01 16:50:57', 2857, 151, '2005-08-03 17:19:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10663, '2005-08-01 16:51:08', 4258, 433, '2005-08-08 21:17:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10664, '2005-08-01 16:51:15', 3167, 337, '2005-08-04 19:14:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10665, '2005-08-01 16:56:17', 3594, 133, '2005-08-03 18:58:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10666, '2005-08-01 16:56:36', 1945, 197, '2005-08-07 22:23:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10667, '2005-08-01 16:58:22', 3937, 340, '2005-08-10 15:41:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10668, '2005-08-01 17:00:27', 2085, 58, '2005-08-02 14:49:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10669, '2005-08-01 17:03:28', 2121, 559, '2005-08-08 21:34:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10670, '2005-08-01 17:07:16', 156, 512, '2005-08-10 11:46:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10671, '2005-08-01 17:09:59', 4430, 10, '2005-08-09 21:36:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10672, '2005-08-01 17:10:54', 3674, 375, '2005-08-07 12:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10673, '2005-08-01 17:11:51', 2735, 528, '2005-08-03 13:32:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10674, '2005-08-01 17:11:52', 1962, 340, '2005-08-08 19:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10675, '2005-08-01 17:11:57', 649, 522, '2005-08-10 17:18:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10676, '2005-08-01 17:14:15', 629, 79, '2005-08-04 12:34:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10677, '2005-08-01 17:24:35', 4350, 483, '2005-08-04 20:03:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10678, '2005-08-01 17:26:24', 4438, 56, '2005-08-05 22:55:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10679, '2005-08-01 17:27:58', 4437, 198, '2005-08-08 16:06:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10680, '2005-08-01 17:28:05', 2498, 60, '2005-08-04 19:34:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10681, '2005-08-01 17:30:35', 1468, 119, '2005-08-02 14:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10682, '2005-08-01 17:32:53', 4557, 18, '2005-08-06 15:49:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10683, '2005-08-01 17:33:03', 244, 246, '2005-08-04 23:12:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10684, '2005-08-01 17:47:00', 1985, 244, '2005-08-09 15:00:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10685, '2005-08-01 17:49:38', 2029, 200, '2005-08-07 21:04:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10686, '2005-08-01 17:51:21', 2542, 150, '2005-08-03 19:01:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10687, '2005-08-01 17:53:02', 3191, 16, '2005-08-05 19:16:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10688, '2005-08-01 17:53:43', 3161, 449, '2005-08-09 21:50:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10689, '2005-08-01 18:04:18', 1442, 568, '2005-08-05 21:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10690, '2005-08-01 18:05:54', 807, 80, '2005-08-10 21:43:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10691, '2005-08-01 18:09:53', 4281, 276, '2005-08-03 16:32:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10692, '2005-08-01 18:12:35', 371, 596, '2005-08-07 13:06:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10693, '2005-08-01 18:14:14', 2387, 444, '2005-08-03 22:00:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10694, '2005-08-01 18:15:07', 3429, 98, '2005-08-10 15:38:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10695, '2005-08-01 18:16:20', 3612, 374, '2005-08-03 12:21:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10696, '2005-08-01 18:18:13', 47, 120, '2005-08-04 14:09:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10697, '2005-08-01 18:20:23', 3115, 519, '2005-08-07 21:18:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10698, '2005-08-01 18:24:41', 2738, 135, '2005-08-08 18:59:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10699, '2005-08-01 18:24:51', 1029, 125, '2005-08-06 20:18:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10700, '2005-08-01 18:26:31', 4259, 203, '2005-08-07 19:51:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10701, '2005-08-01 18:28:17', 3958, 538, '2005-08-09 21:51:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10702, '2005-08-01 18:34:59', 2802, 560, '2005-08-09 23:44:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10703, '2005-08-01 18:37:39', 1818, 181, '2005-08-07 23:50:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10704, '2005-08-01 18:38:02', 960, 594, '2005-08-08 20:19:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10705, '2005-08-01 18:38:54', 4338, 381, '2005-08-04 18:00:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10706, '2005-08-01 18:41:28', 1183, 147, '2005-08-10 14:30:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10707, '2005-08-01 18:41:34', 1165, 558, '2005-08-06 12:41:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10708, '2005-08-01 18:43:28', 3978, 567, '2005-08-09 15:24:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10709, '2005-08-01 18:43:57', 282, 418, '2005-08-06 13:17:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10710, '2005-08-01 18:44:36', 3082, 177, '2005-08-03 13:17:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10711, '2005-08-01 18:45:09', 4278, 400, '2005-08-02 19:47:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10712, '2005-08-01 18:47:56', 1188, 532, '2005-08-07 19:26:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10713, '2005-08-01 18:50:05', 2030, 369, '2005-08-05 00:43:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10714, '2005-08-01 18:51:29', 1465, 64, '2005-08-04 18:49:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10715, '2005-08-01 18:51:48', 1054, 386, '2005-08-06 14:44:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10716, '2005-08-01 18:53:48', 3405, 515, '2005-08-04 13:49:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10717, '2005-08-01 18:53:53', 2934, 365, '2005-08-05 21:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10718, '2005-08-01 18:55:38', 2763, 394, '2005-08-04 14:45:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10719, '2005-08-01 19:00:28', 3861, 188, '2005-08-07 17:04:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10720, '2005-08-01 19:04:33', 3712, 326, '2005-08-06 23:12:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10721, '2005-08-01 19:05:18', 904, 18, '2005-08-09 20:45:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10722, '2005-08-01 19:07:08', 2849, 90, '2005-08-04 14:09:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10723, '2005-08-01 19:10:49', 2526, 580, '2005-08-08 19:21:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10724, '2005-08-01 19:10:59', 3425, 576, '2005-08-07 18:44:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10725, '2005-08-01 19:11:04', 4486, 534, '2005-08-07 18:16:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10726, '2005-08-01 19:14:53', 749, 75, '2005-08-08 23:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10727, '2005-08-01 19:15:08', 2049, 16, '2005-08-03 13:52:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10728, '2005-08-01 19:15:09', 3133, 309, '2005-08-04 19:35:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10729, '2005-08-01 19:21:11', 2918, 595, '2005-08-07 21:20:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10730, '2005-08-01 19:21:42', 1793, 368, '2005-08-10 21:18:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10731, '2005-08-01 19:21:48', 4248, 278, '2005-08-08 22:01:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10732, '2005-08-01 19:25:18', 2810, 538, '2005-08-10 22:26:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10733, '2005-08-01 19:28:01', 3980, 560, '2005-08-09 18:41:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10734, '2005-08-01 19:28:47', 1130, 21, '2005-08-03 00:41:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10735, '2005-08-01 19:29:45', 4061, 544, '2005-08-02 19:50:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10736, '2005-08-01 19:30:21', 2227, 272, '2005-08-02 22:37:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10737, '2005-08-01 19:31:24', 1773, 149, '2005-08-10 19:17:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10738, '2005-08-01 19:39:08', 544, 377, '2005-08-10 20:37:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10739, '2005-08-01 19:46:11', 3160, 197, '2005-08-06 21:08:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10740, '2005-08-01 19:50:32', 3215, 144, '2005-08-07 23:25:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10741, '2005-08-01 19:52:52', 3300, 469, '2005-08-04 19:58:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10742, '2005-08-01 19:53:13', 3658, 416, '2005-08-10 15:05:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10743, '2005-08-01 19:55:09', 4206, 197, '2005-08-03 19:29:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10744, '2005-08-01 19:56:49', 565, 439, '2005-08-09 16:33:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10745, '2005-08-01 19:57:06', 446, 307, '2005-08-07 18:04:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10746, '2005-08-01 19:58:49', 305, 508, '2005-08-10 19:00:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10747, '2005-08-01 19:59:41', 4527, 266, '2005-08-10 00:00:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10748, '2005-08-01 20:01:24', 3769, 181, '2005-08-05 19:55:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10749, '2005-08-01 20:02:01', 2953, 214, '2005-08-03 14:20:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10750, '2005-08-01 20:06:00', 3206, 201, '2005-08-07 15:48:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10751, '2005-08-01 20:06:10', 3257, 518, '2005-08-10 22:36:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10752, '2005-08-01 20:08:49', 3203, 147, '2005-08-10 15:41:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10753, '2005-08-01 20:09:24', 1557, 273, '2005-08-09 19:31:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10754, '2005-08-01 20:12:33', 2122, 460, '2005-08-10 01:07:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10755, '2005-08-01 20:14:14', 1217, 239, '2005-08-07 01:04:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10756, '2005-08-01 20:17:03', 4247, 596, '2005-08-08 18:31:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10757, '2005-08-01 20:22:44', 102, 188, '2005-08-04 19:48:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10758, '2005-08-01 20:22:51', 191, 373, '2005-08-10 16:11:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10759, '2005-08-01 20:22:51', 3528, 256, '2005-08-07 22:07:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10760, '2005-08-01 20:25:20', 1311, 497, '2005-08-09 16:57:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10761, '2005-08-01 20:25:35', 3967, 36, '2005-08-08 15:20:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10762, '2005-08-01 20:28:39', 1363, 208, '2005-08-05 17:36:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10763, '2005-08-01 20:32:27', 987, 276, '2005-08-05 01:24:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10764, '2005-08-01 20:32:42', 3808, 357, '2005-08-03 22:14:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10765, '2005-08-01 20:34:51', 566, 337, '2005-08-04 00:02:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10766, '2005-08-01 20:36:29', 947, 420, '2005-08-04 00:30:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10767, '2005-08-01 20:37:23', 2875, 488, '2005-08-04 23:15:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10768, '2005-08-01 20:39:32', 454, 273, '2005-08-10 19:41:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10769, '2005-08-01 20:43:02', 3222, 348, '2005-08-05 02:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10770, '2005-08-01 20:45:39', 2567, 262, '2005-08-04 19:21:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10771, '2005-08-01 20:49:35', 1274, 485, '2005-08-10 16:58:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10772, '2005-08-01 20:51:10', 132, 485, '2005-08-10 15:50:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10773, '2005-08-01 20:53:45', 3854, 181, '2005-08-07 00:16:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10774, '2005-08-01 20:54:33', 4231, 407, '2005-08-08 20:59:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10775, '2005-08-01 20:59:52', 4190, 263, '2005-08-04 19:31:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10776, '2005-08-01 20:59:58', 1598, 565, '2005-08-10 20:33:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10777, '2005-08-01 21:03:50', 3487, 493, '2005-08-06 19:29:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10778, '2005-08-01 21:11:39', 1939, 220, '2005-08-02 22:59:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10779, '2005-08-01 21:11:54', 2092, 578, '2005-08-09 21:00:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10780, '2005-08-01 21:14:24', 1450, 51, '2005-08-07 16:32:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10781, '2005-08-01 21:22:41', 1321, 259, '2005-08-06 01:02:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10782, '2005-08-01 21:23:25', 1507, 577, '2005-08-03 20:15:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10783, '2005-08-01 21:23:37', 1192, 495, '2005-08-09 20:18:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10784, '2005-08-01 21:24:28', 3494, 208, '2005-08-09 19:23:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10785, '2005-08-01 21:24:55', 2282, 397, '2005-08-06 17:47:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10786, '2005-08-01 21:29:34', 50, 490, '2005-08-10 17:27:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10787, '2005-08-01 21:35:01', 3246, 127, '2005-08-10 23:30:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10788, '2005-08-01 21:37:10', 3350, 160, '2005-08-03 01:33:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10789, '2005-08-01 21:37:55', 3298, 403, '2005-08-07 17:01:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10790, '2005-08-01 21:38:37', 3080, 274, '2005-08-08 17:20:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10791, '2005-08-01 21:41:52', 2061, 338, '2005-08-04 03:28:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10792, '2005-08-01 21:44:24', 1037, 264, '2005-08-02 19:48:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10793, '2005-08-01 21:48:03', 3018, 225, '2005-08-10 19:16:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10794, '2005-08-01 21:51:15', 889, 27, '2005-08-10 18:51:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10795, '2005-08-01 21:56:37', 2748, 76, '2005-08-03 01:36:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10796, '2005-08-01 21:56:41', 2113, 534, '2005-08-05 01:09:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10797, '2005-08-01 22:02:51', 1731, 308, '2005-08-03 23:07:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10798, '2005-08-01 22:03:10', 382, 141, '2005-08-08 01:34:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10799, '2005-08-01 22:03:31', 3282, 145, '2005-08-06 20:19:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10800, '2005-08-01 22:07:44', 507, 583, '2005-08-05 22:45:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10801, '2005-08-01 22:09:35', 3757, 116, '2005-08-08 22:23:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10802, '2005-08-01 22:18:32', 3998, 178, '2005-08-10 18:41:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10803, '2005-08-01 22:22:07', 3318, 46, '2005-08-08 02:37:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10804, '2005-08-01 22:22:11', 2915, 596, '2005-08-03 03:42:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10805, '2005-08-01 22:23:37', 557, 203, '2005-08-05 01:22:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10806, '2005-08-01 22:25:29', 3553, 89, '2005-08-04 18:46:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10807, '2005-08-01 22:26:10', 1673, 287, '2005-08-05 21:55:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10808, '2005-08-01 22:37:11', 596, 480, '2005-08-09 02:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10809, '2005-08-01 22:39:27', 1167, 340, '2005-08-03 03:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10810, '2005-08-01 22:40:39', 2314, 376, '2005-08-06 19:47:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10811, '2005-08-01 22:41:15', 4012, 209, '2005-08-10 00:10:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10812, '2005-08-01 22:41:16', 3762, 11, '2005-08-07 00:50:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10813, '2005-08-01 22:43:00', 3580, 456, '2005-08-03 21:43:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10814, '2005-08-01 22:43:12', 2758, 49, '2005-08-05 02:35:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10815, '2005-08-01 22:46:21', 877, 62, '2005-08-03 02:43:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10816, '2005-08-01 22:48:57', 905, 129, '2005-08-10 04:39:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10817, '2005-08-01 22:51:08', 3056, 501, '2005-08-10 16:55:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10818, '2005-08-01 22:52:45', 4549, 309, '2005-08-06 04:07:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10819, '2005-08-01 22:52:57', 983, 308, '2005-08-06 00:08:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10820, '2005-08-01 22:53:40', 1487, 97, '2005-08-02 17:59:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10821, '2005-08-01 22:54:27', 2016, 522, '2005-08-07 02:15:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10822, '2005-08-01 22:54:28', 3895, 343, '2005-08-02 17:19:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10823, '2005-08-01 22:59:10', 3322, 405, '2005-08-08 23:44:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10824, '2005-08-01 23:00:22', 3948, 482, '2005-08-04 04:14:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10825, '2005-08-01 23:05:33', 4386, 587, '2005-08-04 04:33:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10826, '2005-08-01 23:07:56', 1228, 476, '2005-08-08 04:10:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10827, '2005-08-01 23:13:00', 1590, 46, '2005-08-08 02:51:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10828, '2005-08-01 23:16:10', 2448, 471, '2005-08-09 21:17:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10829, '2005-08-01 23:17:06', 168, 554, '2005-08-09 17:22:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10830, '2005-08-01 23:18:06', 4176, 148, '2005-08-06 23:15:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10831, '2005-08-01 23:22:45', 1496, 78, '2005-08-07 01:05:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10832, '2005-08-01 23:24:53', 4096, 487, '2005-08-06 23:18:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10833, '2005-08-01 23:25:55', 4380, 422, '2005-08-10 18:01:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10834, '2005-08-01 23:28:00', 2270, 252, '2005-08-07 01:21:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10835, '2005-08-01 23:28:49', 351, 90, '2005-08-10 21:28:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10836, '2005-08-01 23:29:58', 4534, 217, '2005-08-07 23:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10837, '2005-08-01 23:30:22', 1816, 410, '2005-08-07 23:02:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10838, '2005-08-01 23:36:10', 69, 387, '2005-08-05 04:55:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10839, '2005-08-01 23:37:39', 2867, 482, '2005-08-02 20:18:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10840, '2005-08-01 23:38:34', 583, 593, '2005-08-07 02:36:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10841, '2005-08-01 23:39:21', 4337, 102, '2005-08-07 20:47:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10842, '2005-08-01 23:41:24', 1300, 137, '2005-08-11 03:48:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10843, '2005-08-01 23:43:03', 1286, 192, '2005-08-09 23:49:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10844, '2005-08-01 23:46:58', 1516, 333, '2005-08-09 19:42:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10845, '2005-08-01 23:47:03', 2737, 42, '2005-08-08 01:57:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10846, '2005-08-01 23:47:54', 2277, 441, '2005-08-08 01:10:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10847, '2005-08-01 23:49:33', 1200, 280, '2005-08-10 05:37:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10848, '2005-08-01 23:50:22', 2630, 368, '2005-08-06 00:52:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10849, '2005-08-01 23:51:00', 1683, 278, '2005-08-10 19:59:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10850, '2005-08-01 23:53:45', 1853, 199, '2005-08-10 21:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10851, '2005-08-01 23:58:45', 1359, 154, '2005-08-04 00:59:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10852, '2005-08-02 00:00:33', 3862, 27, '2005-08-03 23:09:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10853, '2005-08-02 00:00:54', 2682, 41, '2005-08-10 05:37:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10854, '2005-08-02 00:02:06', 3295, 356, '2005-08-02 21:55:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10855, '2005-08-02 00:06:37', 1366, 274, '2005-08-03 00:39:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10856, '2005-08-02 00:07:14', 2010, 451, '2005-08-04 02:48:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10857, '2005-08-02 00:07:20', 2961, 360, '2005-08-04 02:35:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10858, '2005-08-02 00:08:39', 852, 312, '2005-08-05 00:58:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10859, '2005-08-02 00:11:39', 277, 375, '2005-08-08 19:52:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10860, '2005-08-02 00:12:32', 2827, 25, '2005-08-04 03:50:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10861, '2005-08-02 00:12:46', 2162, 131, '2005-08-09 04:09:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10862, '2005-08-02 00:17:34', 1077, 176, '2005-08-08 00:31:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10863, '2005-08-02 00:18:07', 1170, 161, '2005-08-10 06:16:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10864, '2005-08-02 00:18:59', 1694, 134, '2005-08-08 22:20:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10865, '2005-08-02 00:22:46', 1485, 201, '2005-08-09 05:08:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10866, '2005-08-02 00:22:49', 117, 424, '2005-08-07 04:38:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10867, '2005-08-02 00:24:15', 2577, 473, '2005-08-05 21:09:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10868, '2005-08-02 00:25:15', 2443, 562, '2005-08-10 02:31:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10869, '2005-08-02 00:26:54', 2967, 568, '2005-08-04 03:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10870, '2005-08-02 00:27:12', 1509, 33, '2005-08-02 20:00:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10871, '2005-08-02 00:27:24', 104, 75, '2005-08-05 06:25:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10872, '2005-08-02 00:27:50', 2470, 84, '2005-08-06 20:34:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10873, '2005-08-02 00:30:34', 169, 506, '2005-08-07 00:16:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10874, '2005-08-02 00:31:00', 2552, 230, '2005-08-07 05:04:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10875, '2005-08-02 00:31:44', 862, 175, '2005-08-05 22:24:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10876, '2005-08-02 00:31:58', 2161, 559, '2005-08-05 21:45:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10877, '2005-08-02 00:32:04', 3337, 487, '2005-08-07 19:44:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10878, '2005-08-02 00:33:12', 3511, 45, '2005-08-07 06:02:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10879, '2005-08-02 00:33:20', 4415, 334, '2005-08-09 04:13:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10880, '2005-08-02 00:34:12', 450, 528, '2005-08-06 21:15:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10881, '2005-08-02 00:38:14', 781, 253, '2005-08-09 22:02:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10882, '2005-08-02 00:47:16', 1349, 54, '2005-08-09 22:11:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10883, '2005-08-02 00:47:19', 4, 301, '2005-08-03 00:02:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10884, '2005-08-02 00:47:33', 3702, 569, '2005-08-03 04:38:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10885, '2005-08-02 00:51:37', 4223, 493, '2005-08-09 20:49:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10886, '2005-08-02 00:52:34', 943, 77, '2005-08-08 00:30:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10887, '2005-08-02 00:52:35', 3450, 573, '2005-08-03 05:37:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10888, '2005-08-02 00:52:45', 2412, 428, '2005-08-03 03:07:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10889, '2005-08-02 00:54:33', 2098, 64, '2005-08-07 19:42:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10890, '2005-08-02 00:58:46', 78, 210, '2005-08-10 02:13:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10891, '2005-08-02 01:09:55', 1269, 201, '2005-08-05 05:03:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10892, '2005-08-02 01:12:06', 3243, 109, '2005-08-09 23:53:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10893, '2005-08-02 01:12:13', 2529, 306, '2005-08-11 05:53:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10894, '2005-08-02 01:12:35', 598, 51, '2005-08-09 22:55:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10895, '2005-08-02 01:16:59', 93, 77, '2005-08-03 02:41:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10896, '2005-08-02 01:19:33', 2283, 505, '2005-08-08 06:54:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10897, '2005-08-02 01:23:42', 291, 338, '2005-08-03 23:27:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10898, '2005-08-02 01:29:57', 3814, 23, '2005-08-06 00:07:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10899, '2005-08-02 01:30:21', 859, 29, '2005-08-06 05:01:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10900, '2005-08-02 01:34:26', 1749, 139, '2005-08-07 00:52:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10901, '2005-08-02 01:35:44', 3813, 290, '2005-08-04 21:20:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10902, '2005-08-02 01:35:46', 3863, 486, '2005-08-09 01:59:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10903, '2005-08-02 01:41:59', 2696, 547, '2005-08-06 23:03:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10904, '2005-08-02 01:43:02', 3681, 593, '2005-08-04 04:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10905, '2005-08-02 01:45:59', 2835, 439, '2005-08-04 22:28:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10906, '2005-08-02 01:47:04', 3139, 463, '2005-08-07 20:41:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10907, '2005-08-02 01:51:48', 1430, 561, '2005-08-02 19:53:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10908, '2005-08-02 01:53:06', 1284, 269, '2005-08-04 02:46:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10909, '2005-08-02 01:53:59', 3516, 413, '2005-08-03 04:36:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10910, '2005-08-02 01:54:34', 2428, 266, '2005-08-10 04:04:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10911, '2005-08-02 01:58:36', 769, 195, '2005-08-08 07:37:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10912, '2005-08-02 02:00:03', 732, 477, '2005-08-06 05:55:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10913, '2005-08-02 02:04:03', 3388, 565, '2005-08-09 03:21:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10914, '2005-08-02 02:04:43', 585, 584, '2005-08-06 03:00:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10915, '2005-08-02 02:05:04', 4568, 418, '2005-08-10 21:58:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10916, '2005-08-02 02:05:59', 3841, 25, '2005-08-06 03:46:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10917, '2005-08-02 02:06:18', 3146, 378, '2005-08-03 22:42:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10918, '2005-08-02 02:10:56', 3418, 2, '2005-08-02 21:23:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10919, '2005-08-02 02:11:03', 868, 115, '2005-08-04 01:49:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10920, '2005-08-02 02:14:10', 3106, 531, '2005-08-06 23:36:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10921, '2005-08-02 02:14:33', 1820, 555, '2005-08-09 20:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10922, '2005-08-02 02:14:40', 4522, 539, '2005-08-06 06:04:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10923, '2005-08-02 02:15:01', 2602, 239, '2005-08-03 04:18:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10924, '2005-08-02 02:20:19', 589, 540, '2005-08-11 05:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10925, '2005-08-02 02:24:38', 1475, 98, '2005-08-03 05:06:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10926, '2005-08-02 02:26:37', 4016, 460, '2005-08-09 20:55:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10927, '2005-08-02 02:31:15', 4125, 288, '2005-08-10 20:41:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10928, '2005-08-02 02:34:12', 2885, 211, '2005-08-07 21:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10929, '2005-08-02 02:35:44', 913, 305, '2005-08-05 03:52:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10930, '2005-08-02 02:38:07', 2027, 206, '2005-08-08 05:15:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10931, '2005-08-02 02:44:59', 3268, 545, '2005-08-04 02:02:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10932, '2005-08-02 02:46:22', 1688, 595, '2005-08-06 01:49:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10933, '2005-08-02 02:50:49', 3970, 313, '2005-08-08 04:39:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10934, '2005-08-02 02:52:18', 4458, 142, '2005-08-06 01:23:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10935, '2005-08-02 02:54:53', 4373, 42, '2005-08-10 00:07:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10936, '2005-08-02 02:55:04', 463, 445, '2005-08-11 07:56:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10937, '2005-08-02 03:00:18', 1320, 416, '2005-08-11 03:44:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10938, '2005-08-02 03:05:22', 3918, 502, '2005-08-05 08:31:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10939, '2005-08-02 03:06:20', 2131, 161, '2005-08-04 01:22:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10940, '2005-08-02 03:08:29', 3760, 120, '2005-08-07 21:28:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10941, '2005-08-02 03:11:33', 2132, 531, '2005-08-10 07:31:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10942, '2005-08-02 03:16:31', 2304, 78, '2005-08-11 02:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10943, '2005-08-02 03:17:29', 1036, 377, '2005-08-03 00:50:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10944, '2005-08-02 03:20:03', 2373, 470, '2005-08-04 04:13:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10945, '2005-08-02 03:20:23', 3684, 532, '2005-08-09 03:23:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10946, '2005-08-02 03:20:39', 4271, 56, '2005-08-05 02:59:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10947, '2005-08-02 03:23:17', 2510, 500, '2005-08-07 05:25:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10948, '2005-08-02 03:23:23', 4429, 220, '2005-08-05 23:18:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10949, '2005-08-02 03:24:04', 2309, 389, '2005-08-06 08:36:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10950, '2005-08-02 03:25:08', 707, 451, '2005-08-07 23:11:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10951, '2005-08-02 03:26:35', 173, 144, '2005-08-07 22:03:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10952, '2005-08-02 03:28:21', 3218, 111, '2005-08-09 01:41:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10953, '2005-08-02 03:28:38', 1510, 483, '2005-08-11 03:53:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10954, '2005-08-02 03:30:24', 3406, 20, '2005-08-08 05:52:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10955, '2005-08-02 03:32:34', 618, 490, '2005-08-09 21:53:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10956, '2005-08-02 03:33:14', 4372, 54, '2005-08-09 09:20:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10957, '2005-08-02 03:33:30', 1652, 447, '2005-08-10 06:19:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10958, '2005-08-02 03:37:13', 2174, 160, '2005-08-04 23:28:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10959, '2005-08-02 03:39:39', 4233, 431, '2005-08-11 07:20:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10960, '2005-08-02 03:46:18', 3536, 399, '2005-08-11 01:29:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10961, '2005-08-02 03:47:55', 1416, 375, '2005-08-09 02:03:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10962, '2005-08-02 03:48:13', 1953, 538, '2005-08-07 00:04:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10963, '2005-08-02 03:48:17', 4501, 36, '2005-08-02 22:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10964, '2005-08-02 03:56:23', 2356, 36, '2005-08-09 23:11:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10965, '2005-08-02 04:00:19', 2192, 580, '2005-08-09 03:27:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10966, '2005-08-02 04:00:47', 478, 584, '2005-08-08 01:58:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10967, '2005-08-02 04:02:16', 683, 149, '2005-08-09 07:57:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10968, '2005-08-02 04:03:13', 888, 234, '2005-08-11 08:36:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10969, '2005-08-02 04:04:32', 1898, 244, '2005-08-09 23:18:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10970, '2005-08-02 04:06:46', 1202, 260, '2005-08-10 04:27:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10971, '2005-08-02 04:08:17', 2789, 383, '2005-08-09 00:02:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10972, '2005-08-02 04:08:25', 1928, 348, '2005-08-09 23:25:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10973, '2005-08-02 04:09:42', 3562, 127, '2005-08-08 05:24:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10974, '2005-08-02 04:10:52', 690, 491, '2005-08-09 08:26:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10975, '2005-08-02 04:11:25', 2616, 361, '2005-08-04 04:39:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10976, '2005-08-02 04:11:48', 2418, 326, '2005-08-06 06:30:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10977, '2005-08-02 04:12:17', 2302, 300, '2005-08-06 06:52:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10978, '2005-08-02 04:12:27', 1597, 487, '2005-08-10 08:19:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10979, '2005-08-02 04:16:37', 2625, 160, '2005-08-06 00:01:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10980, '2005-08-02 04:17:32', 150, 547, '2005-08-04 05:12:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10981, '2005-08-02 04:17:53', 3699, 305, '2005-08-09 03:45:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10982, '2005-08-02 04:19:11', 2508, 345, '2005-08-04 00:20:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10983, '2005-08-02 04:24:23', 4502, 380, '2005-08-09 08:05:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10984, '2005-08-02 04:30:02', 1813, 450, '2005-08-10 02:51:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10985, '2005-08-02 04:30:19', 2734, 186, '2005-08-03 05:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10986, '2005-08-02 04:35:24', 555, 597, '2005-08-09 07:34:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10987, '2005-08-02 04:36:52', 968, 349, '2005-08-04 00:03:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10988, '2005-08-02 04:38:17', 1157, 509, '2005-08-09 00:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10989, '2005-08-02 04:40:54', 2272, 7, '2005-08-09 03:39:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10990, '2005-08-02 04:41:06', 262, 111, '2005-08-10 05:02:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10991, '2005-08-02 04:41:12', 2854, 77, '2005-08-05 05:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10992, '2005-08-02 04:41:17', 11, 180, '2005-08-09 02:13:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10993, '2005-08-02 04:45:01', 292, 383, '2005-08-04 03:32:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10994, '2005-08-02 04:46:53', 647, 323, '2005-08-11 10:30:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10995, '2005-08-02 04:48:00', 2891, 340, '2005-08-07 05:00:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10996, '2005-08-02 04:48:11', 2235, 26, '2005-08-06 08:00:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10997, '2005-08-02 04:49:02', 300, 334, '2005-08-10 08:13:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10998, '2005-08-02 04:50:55', 1479, 435, '2005-08-11 03:43:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (10999, '2005-08-02 04:53:13', 2013, 227, '2005-08-06 04:36:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11000, '2005-08-02 04:56:14', 264, 265, '2005-08-07 01:39:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11001, '2005-08-02 04:56:45', 3701, 5, '2005-08-11 08:04:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11002, '2005-08-02 05:02:56', 3073, 583, '2005-08-05 07:04:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11003, '2005-08-02 05:03:05', 4301, 272, '2005-08-05 10:48:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11004, '2005-08-02 05:04:18', 200, 45, '2005-08-11 00:03:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11005, '2005-08-02 05:05:23', 1547, 216, '2005-08-07 23:28:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11006, '2005-08-02 05:05:52', 2776, 473, '2005-08-05 03:33:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11007, '2005-08-02 05:05:53', 4172, 98, '2005-08-05 01:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11008, '2005-08-02 05:06:17', 2831, 375, '2005-08-10 01:22:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11009, '2005-08-02 05:06:23', 2574, 596, '2005-08-08 03:02:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11010, '2005-08-02 05:06:27', 869, 326, '2005-08-03 23:47:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11011, '2005-08-02 05:07:07', 3981, 256, '2005-08-09 07:16:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11012, '2005-08-02 05:09:42', 542, 162, '2005-08-05 07:22:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11013, '2005-08-02 05:10:54', 2993, 527, '2005-08-10 08:59:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11014, '2005-08-02 05:12:22', 393, 269, '2005-08-07 09:33:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11015, '2005-08-02 05:13:00', 4331, 138, '2005-08-08 04:18:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11016, '2005-08-02 05:19:13', 4446, 116, '2005-08-05 05:31:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11017, '2005-08-02 05:19:51', 4140, 480, '2005-08-09 00:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11018, '2005-08-02 05:27:53', 2988, 197, '2005-08-07 10:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11019, '2005-08-02 05:29:31', 3227, 112, '2005-08-04 00:42:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11020, '2005-08-02 05:29:48', 1645, 242, '2005-08-06 05:36:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11021, '2005-08-02 05:30:11', 2069, 385, '2005-08-05 05:50:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11022, '2005-08-02 05:35:03', 827, 206, '2005-08-09 10:20:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11023, '2005-08-02 05:36:38', 3617, 6, '2005-08-10 05:39:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11024, '2005-08-02 05:38:31', 2284, 427, '2005-08-11 04:47:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11025, '2005-08-02 05:39:12', 2253, 419, '2005-08-08 00:09:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11026, '2005-08-02 05:46:05', 3554, 531, '2005-08-07 06:27:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11027, '2005-08-02 05:47:10', 571, 412, '2005-08-05 23:51:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11028, '2005-08-02 05:48:20', 2764, 66, '2005-08-10 11:21:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11029, '2005-08-02 05:51:10', 1023, 45, '2005-08-05 04:15:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11030, '2005-08-02 05:51:20', 1437, 569, '2005-08-06 04:20:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11031, '2005-08-02 05:52:58', 1205, 361, '2005-08-07 07:14:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11032, '2005-08-02 05:53:35', 1119, 359, '2005-08-05 02:58:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11033, '2005-08-02 05:54:17', 3323, 155, '2005-08-09 10:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11034, '2005-08-02 05:54:53', 2939, 586, '2005-08-09 04:14:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11035, '2005-08-02 05:55:39', 3776, 305, '2005-08-08 06:46:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11036, '2005-08-02 05:56:29', 2054, 502, '2005-08-05 05:00:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11037, '2005-08-02 05:58:12', 4291, 220, '2005-08-07 11:26:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11038, '2005-08-02 05:59:42', 4452, 403, '2005-08-08 04:37:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11039, '2005-08-02 06:00:53', 549, 170, '2005-08-05 06:19:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11040, '2005-08-02 06:03:22', 2297, 223, '2005-08-03 07:58:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11041, '2005-08-02 06:03:53', 1897, 435, '2005-08-03 11:57:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11042, '2005-08-02 06:04:33', 4149, 439, '2005-08-11 01:30:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11043, '2005-08-02 06:04:44', 65, 573, '2005-08-06 11:37:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11044, '2005-08-02 06:05:27', 2922, 122, '2005-08-06 05:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11045, '2005-08-02 06:07:54', 2214, 402, '2005-08-08 00:37:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11046, '2005-08-02 06:08:34', 2105, 526, '2005-08-06 08:45:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11047, '2005-08-02 06:09:20', 2267, 416, '2005-08-11 08:36:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11048, '2005-08-02 06:15:07', 206, 491, '2005-08-04 02:47:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11049, '2005-08-02 06:15:40', 4352, 38, '2005-08-11 10:09:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11050, '2005-08-02 06:17:16', 2077, 234, '2005-08-09 05:58:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11051, '2005-08-02 06:23:39', 4189, 446, '2005-08-06 06:46:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11052, '2005-08-02 06:26:19', 1089, 331, '2005-08-06 04:20:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11053, '2005-08-02 06:27:13', 2599, 50, '2005-08-09 11:24:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11054, '2005-08-02 06:33:07', 728, 577, '2005-08-10 02:52:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11055, '2005-08-02 06:36:05', 3851, 182, '2005-08-06 00:36:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11056, '2005-08-02 06:36:27', 1404, 88, '2005-08-10 06:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11057, '2005-08-02 06:38:19', 3143, 137, '2005-08-11 03:43:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11058, '2005-08-02 06:38:44', 3270, 274, '2005-08-06 06:45:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11059, '2005-08-02 06:41:38', 428, 189, '2005-08-09 04:34:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11060, '2005-08-02 06:48:18', 3395, 496, '2005-08-10 11:49:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11061, '2005-08-02 06:50:18', 809, 245, '2005-08-07 07:41:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11062, '2005-08-02 06:52:54', 2014, 346, '2005-08-07 10:59:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11063, '2005-08-02 06:53:48', 2261, 461, '2005-08-05 03:38:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11064, '2005-08-02 06:55:17', 3012, 338, '2005-08-06 03:29:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11065, '2005-08-02 06:57:55', 2226, 357, '2005-08-06 01:31:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11066, '2005-08-02 06:58:32', 4213, 373, '2005-08-10 01:27:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11067, '2005-08-02 07:03:24', 965, 85, '2005-08-10 08:59:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11068, '2005-08-02 07:08:07', 1262, 52, '2005-08-09 11:15:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11069, '2005-08-02 07:09:34', 57, 4, '2005-08-08 08:39:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11070, '2005-08-02 07:10:39', 4020, 298, '2005-08-03 07:43:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11071, '2005-08-02 07:10:53', 4264, 294, '2005-08-07 09:58:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11072, '2005-08-02 07:10:57', 3078, 21, '2005-08-04 07:42:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11073, '2005-08-02 07:13:03', 4232, 234, '2005-08-03 05:46:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11074, '2005-08-02 07:21:43', 1439, 277, '2005-08-08 05:18:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11075, '2005-08-02 07:24:23', 3027, 503, '2005-08-08 04:55:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11076, '2005-08-02 07:24:47', 837, 211, '2005-08-10 09:16:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11077, '2005-08-02 07:26:43', 4254, 158, '2005-08-09 10:34:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11078, '2005-08-02 07:26:58', 2362, 587, '2005-08-07 01:59:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11079, '2005-08-02 07:29:10', 3185, 29, '2005-08-07 01:59:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11080, '2005-08-02 07:29:56', 4303, 571, '2005-08-08 05:58:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11081, '2005-08-02 07:30:14', 3804, 513, '2005-08-09 08:50:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11082, '2005-08-02 07:30:19', 3037, 190, '2005-08-07 05:20:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11083, '2005-08-02 07:32:01', 4395, 295, '2005-08-08 02:23:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11084, '2005-08-02 07:34:19', 32, 369, '2005-08-07 09:30:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11085, '2005-08-02 07:36:44', 3207, 276, '2005-08-04 03:32:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11086, '2005-08-02 07:38:44', 552, 371, '2005-08-11 06:30:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11087, '2005-08-02 07:41:41', 654, 2, '2005-08-10 10:37:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11088, '2005-08-02 07:48:31', 2739, 138, '2005-08-05 08:09:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11089, '2005-08-02 07:52:20', 825, 421, '2005-08-07 07:24:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11090, '2005-08-02 07:56:40', 2743, 89, '2005-08-10 07:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11091, '2005-08-02 07:56:41', 1659, 423, '2005-08-07 05:35:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11092, '2005-08-02 07:58:50', 569, 60, '2005-08-04 03:23:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11093, '2005-08-02 07:59:49', 239, 82, '2005-08-11 06:01:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11094, '2005-08-02 08:03:02', 3095, 18, '2005-08-03 11:34:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11095, '2005-08-02 08:03:20', 3517, 278, '2005-08-10 05:20:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11096, '2005-08-02 08:05:19', 1436, 34, '2005-08-04 07:28:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11097, '2005-08-02 08:05:46', 2493, 575, '2005-08-10 12:00:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11098, '2005-08-02 08:06:18', 158, 570, '2005-08-11 04:50:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11099, '2005-08-02 08:07:12', 1444, 102, '2005-08-07 12:11:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11100, '2005-08-02 08:08:00', 3047, 65, '2005-08-10 07:19:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11101, '2005-08-02 08:08:24', 2621, 80, '2005-08-06 05:55:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11102, '2005-08-02 08:08:30', 3112, 73, '2005-08-04 09:16:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11103, '2005-08-02 08:09:54', 1879, 158, '2005-08-07 12:05:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11104, '2005-08-02 08:09:58', 3042, 196, '2005-08-05 11:55:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11105, '2005-08-02 08:13:31', 3170, 245, '2005-08-03 11:08:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11106, '2005-08-02 08:17:38', 2307, 287, '2005-08-03 07:54:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11107, '2005-08-02 08:19:38', 2217, 410, '2005-08-07 08:46:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11108, '2005-08-02 08:20:01', 560, 447, '2005-08-03 13:22:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11109, '2005-08-02 08:20:29', 2683, 479, '2005-08-09 11:35:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11110, '2005-08-02 08:20:31', 4311, 4, '2005-08-04 05:06:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11111, '2005-08-02 08:21:27', 334, 378, '2005-08-06 07:48:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11112, '2005-08-02 08:25:14', 526, 207, '2005-08-03 08:41:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11113, '2005-08-02 08:26:24', 1654, 231, '2005-08-07 09:24:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11114, '2005-08-02 08:26:45', 1273, 572, '2005-08-03 08:41:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11115, '2005-08-02 08:31:06', 3812, 408, '2005-08-04 02:36:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11116, '2005-08-02 08:34:40', 434, 344, '2005-08-09 04:56:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11117, '2005-08-02 08:36:03', 1613, 474, '2005-08-05 06:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11118, '2005-08-02 08:44:18', 2411, 15, '2005-08-05 08:08:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11119, '2005-08-02 08:44:44', 4307, 489, '2005-08-10 11:32:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11120, '2005-08-02 08:47:04', 4185, 322, '2005-08-05 05:33:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11121, '2005-08-02 08:48:31', 1025, 572, '2005-08-04 05:08:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11122, '2005-08-02 08:49:09', 3021, 383, '2005-08-08 04:33:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11123, '2005-08-02 08:54:17', 1926, 150, '2005-08-09 11:11:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11124, '2005-08-02 08:55:25', 698, 249, '2005-08-10 10:59:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11125, '2005-08-02 08:55:35', 2081, 237, '2005-08-03 09:12:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11126, '2005-08-02 08:59:04', 3310, 47, '2005-08-04 11:00:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11127, '2005-08-02 09:00:59', 1106, 351, '2005-08-05 11:54:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11128, '2005-08-02 09:03:25', 3472, 386, '2005-08-09 04:36:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11129, '2005-08-02 09:08:44', 23, 566, '2005-08-04 04:00:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11130, '2005-08-02 09:08:59', 684, 329, '2005-08-09 07:50:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11131, '2005-08-02 09:10:04', 1860, 293, '2005-08-08 09:59:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11132, '2005-08-02 09:14:09', 2212, 398, '2005-08-08 06:39:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11133, '2005-08-02 09:15:45', 675, 120, '2005-08-04 10:39:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11134, '2005-08-02 09:19:22', 2641, 372, '2005-08-11 03:56:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11135, '2005-08-02 09:22:25', 799, 32, '2005-08-04 14:30:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11136, '2005-08-02 09:22:57', 1315, 559, '2005-08-08 14:12:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11137, '2005-08-02 09:25:31', 2500, 310, '2005-08-08 08:10:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11138, '2005-08-02 09:26:16', 4250, 458, '2005-08-11 07:50:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11139, '2005-08-02 09:27:36', 1011, 236, '2005-08-08 14:07:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11140, '2005-08-02 09:27:45', 3836, 132, '2005-08-05 04:10:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11141, '2005-08-02 09:29:11', 1614, 15, '2005-08-04 07:50:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11142, '2005-08-02 09:30:11', 2954, 306, '2005-08-05 06:52:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11143, '2005-08-02 09:32:54', 3382, 100, '2005-08-05 12:04:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11144, '2005-08-02 09:39:17', 2724, 376, '2005-08-03 11:53:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11145, '2005-08-02 09:43:24', 1270, 291, '2005-08-05 15:29:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11146, '2005-08-02 09:45:32', 2488, 552, '2005-08-07 07:33:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11147, '2005-08-02 09:45:54', 1562, 597, '2005-08-07 07:28:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11148, '2005-08-02 09:47:08', 2991, 230, '2005-08-08 10:57:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11149, '2005-08-02 09:51:43', 3254, 358, '2005-08-11 09:40:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11150, '2005-08-02 09:51:46', 2193, 527, '2005-08-05 09:03:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11151, '2005-08-02 09:52:44', 3939, 391, '2005-08-05 06:29:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11152, '2005-08-02 09:53:36', 3887, 494, '2005-08-11 14:58:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11153, '2005-08-02 09:54:19', 1546, 220, '2005-08-10 14:57:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11154, '2005-08-02 09:54:50', 697, 160, '2005-08-06 14:48:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11155, '2005-08-02 09:55:28', 2001, 73, '2005-08-03 06:00:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11156, '2005-08-02 09:56:06', 907, 465, '2005-08-04 13:36:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11157, '2005-08-02 09:58:15', 1313, 244, '2005-08-06 04:23:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11158, '2005-08-02 09:58:28', 530, 190, '2005-08-10 13:54:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11159, '2005-08-02 10:00:55', 4575, 249, '2005-08-05 10:38:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11160, '2005-08-02 10:05:30', 3260, 436, '2005-08-07 08:30:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11161, '2005-08-02 10:05:57', 3321, 503, '2005-08-06 05:05:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11162, '2005-08-02 10:07:54', 1809, 277, '2005-08-05 11:35:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11163, '2005-08-02 10:08:40', 1925, 505, '2005-08-05 14:59:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11164, '2005-08-02 10:10:56', 4450, 580, '2005-08-10 11:20:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11165, '2005-08-02 10:12:17', 2059, 513, '2005-08-04 11:09:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11166, '2005-08-02 10:14:58', 638, 11, '2005-08-11 11:43:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11167, '2005-08-02 10:15:51', 148, 451, '2005-08-09 09:18:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11168, '2005-08-02 10:19:42', 468, 555, '2005-08-04 08:42:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11169, '2005-08-02 10:19:42', 2392, 329, '2005-08-07 05:45:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11170, '2005-08-02 10:21:53', 1333, 547, '2005-08-08 11:08:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11171, '2005-08-02 10:23:41', 3117, 339, '2005-08-04 14:22:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11172, '2005-08-02 10:27:52', 1207, 76, '2005-08-11 12:47:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11173, '2005-08-02 10:28:00', 4296, 146, '2005-08-10 14:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11174, '2005-08-02 10:32:11', 1551, 328, '2005-08-09 12:30:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11175, '2005-08-02 10:38:47', 85, 164, '2005-08-07 07:11:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11176, '2005-08-02 10:39:43', 1448, 37, '2005-08-09 14:42:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11177, '2005-08-02 10:43:48', 1149, 2, '2005-08-10 10:55:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11178, '2005-08-02 10:48:10', 2613, 342, '2005-08-06 06:07:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11179, '2005-08-02 10:50:06', 4376, 5, '2005-08-04 05:24:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11180, '2005-08-02 10:54:30', 3632, 534, '2005-08-11 15:55:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11181, '2005-08-02 10:55:03', 3127, 557, '2005-08-07 10:43:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11182, '2005-08-02 10:55:14', 605, 54, '2005-08-06 05:58:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11183, '2005-08-02 11:00:32', 833, 102, '2005-08-04 08:59:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11184, '2005-08-02 11:01:26', 871, 259, '2005-08-11 06:29:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11185, '2005-08-02 11:04:35', 1215, 469, '2005-08-05 13:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11186, '2005-08-02 11:12:08', 733, 353, '2005-08-03 10:46:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11187, '2005-08-02 11:16:19', 3626, 410, '2005-08-11 06:11:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11188, '2005-08-02 11:17:11', 1372, 485, '2005-08-08 16:46:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11189, '2005-08-02 11:17:23', 729, 565, '2005-08-09 16:30:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11190, '2005-08-02 11:21:34', 922, 254, '2005-08-05 05:23:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11191, '2005-08-02 11:24:07', 1097, 571, '2005-08-10 10:39:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11192, '2005-08-02 11:29:41', 1998, 349, '2005-08-07 06:01:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11193, '2005-08-02 11:31:33', 2246, 292, '2005-08-04 14:00:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11194, '2005-08-02 11:35:53', 2732, 135, '2005-08-10 11:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11195, '2005-08-02 11:42:23', 4359, 177, '2005-08-03 08:29:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11196, '2005-08-02 11:42:40', 2648, 126, '2005-08-10 11:58:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11197, '2005-08-02 11:45:07', 3041, 122, '2005-08-03 09:07:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11198, '2005-08-02 11:45:15', 2908, 540, '2005-08-10 11:42:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11199, '2005-08-02 11:47:40', 3926, 578, '2005-08-10 06:52:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11200, '2005-08-02 11:48:36', 2730, 98, '2005-08-07 08:35:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11201, '2005-08-02 11:49:16', 1501, 195, '2005-08-11 08:39:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11202, '2005-08-02 11:51:57', 3625, 231, '2005-08-08 09:41:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11203, '2005-08-02 11:52:41', 4520, 92, '2005-08-10 15:52:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11204, '2005-08-02 11:56:31', 3578, 247, '2005-08-06 14:16:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11205, '2005-08-02 11:56:54', 4321, 552, '2005-08-05 08:24:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11206, '2005-08-02 11:58:03', 4131, 72, '2005-08-07 12:36:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11207, '2005-08-02 12:01:30', 4470, 481, '2005-08-05 07:56:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11208, '2005-08-02 12:02:37', 4566, 320, '2005-08-05 10:56:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11209, '2005-08-02 12:09:45', 3219, 24, '2005-08-07 08:52:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11210, '2005-08-02 12:15:54', 422, 202, '2005-08-04 16:18:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11211, '2005-08-02 12:16:48', 1722, 245, '2005-08-03 10:40:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11212, '2005-08-02 12:18:29', 4007, 343, '2005-08-05 16:05:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11213, '2005-08-02 12:18:35', 1007, 584, '2005-08-05 08:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11214, '2005-08-02 12:19:50', 2722, 407, '2005-08-11 06:38:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11215, '2005-08-02 12:20:42', 379, 197, '2005-08-06 14:01:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11216, '2005-08-02 12:23:43', 1109, 473, '2005-08-03 13:19:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11217, '2005-08-02 12:26:31', 1201, 417, '2005-08-09 09:53:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11218, '2005-08-02 12:29:12', 1126, 500, '2005-08-10 16:13:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11219, '2005-08-02 12:30:20', 2889, 461, '2005-08-08 13:42:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11220, '2005-08-02 12:31:41', 3777, 84, '2005-08-05 08:23:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11221, '2005-08-02 12:32:12', 1689, 146, '2005-08-03 17:13:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11222, '2005-08-02 12:32:28', 1780, 407, '2005-08-11 18:15:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11223, '2005-08-02 12:34:27', 1994, 597, '2005-08-07 14:21:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11224, '2005-08-02 12:40:38', 3938, 181, '2005-08-04 10:02:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11225, '2005-08-02 12:43:27', 3721, 159, '2005-08-04 18:41:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11226, '2005-08-02 12:47:30', 79, 282, '2005-08-06 11:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11227, '2005-08-02 12:48:05', 1101, 65, '2005-08-11 14:08:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11228, '2005-08-02 12:55:23', 2561, 144, '2005-08-08 12:31:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11229, '2005-08-02 12:56:37', 941, 332, '2005-08-11 11:13:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11230, '2005-08-02 12:59:08', 1463, 257, '2005-08-04 13:42:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11231, '2005-08-02 13:02:11', 1100, 90, '2005-08-07 10:05:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11232, '2005-08-02 13:04:12', 971, 8, '2005-08-10 15:39:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11233, '2005-08-02 13:06:11', 2221, 266, '2005-08-08 15:02:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11234, '2005-08-02 13:12:17', 1020, 27, '2005-08-05 17:37:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11235, '2005-08-02 13:13:21', 2501, 127, '2005-08-03 07:17:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11236, '2005-08-02 13:17:21', 145, 420, '2005-08-09 09:53:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11237, '2005-08-02 13:24:01', 2668, 426, '2005-08-05 11:41:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11238, '2005-08-02 13:25:50', 2705, 506, '2005-08-08 19:12:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11239, '2005-08-02 13:27:11', 189, 111, '2005-08-03 14:36:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11240, '2005-08-02 13:28:30', 2170, 597, '2005-08-05 11:40:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11241, '2005-08-02 13:29:24', 3657, 543, '2005-08-11 11:36:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11242, '2005-08-02 13:32:00', 1041, 434, '2005-08-10 19:24:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11243, '2005-08-02 13:32:48', 2517, 361, '2005-08-11 18:55:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11244, '2005-08-02 13:33:24', 3423, 142, '2005-08-10 10:18:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11245, '2005-08-02 13:33:50', 2609, 92, '2005-08-04 10:20:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11246, '2005-08-02 13:33:56', 3577, 550, '2005-08-03 08:52:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11247, '2005-08-02 13:34:08', 1661, 441, '2005-08-06 16:23:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11248, '2005-08-02 13:35:34', 4139, 312, '2005-08-03 10:37:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11249, '2005-08-02 13:35:40', 3394, 157, '2005-08-07 11:22:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11250, '2005-08-02 13:35:42', 2223, 279, '2005-08-10 12:32:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11251, '2005-08-02 13:40:49', 2181, 532, '2005-08-09 14:16:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11252, '2005-08-02 13:42:13', 2410, 337, '2005-08-06 19:04:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11253, '2005-08-02 13:42:44', 2898, 303, '2005-08-09 17:06:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11254, '2005-08-02 13:43:49', 56, 315, '2005-08-08 13:16:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11255, '2005-08-02 13:44:30', 3393, 569, '2005-08-03 12:00:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11256, '2005-08-02 13:44:53', 2060, 2, '2005-08-04 16:39:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11257, '2005-08-02 13:45:05', 105, 468, '2005-08-11 16:37:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11258, '2005-08-02 13:45:39', 1576, 242, '2005-08-06 07:57:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11259, '2005-08-02 13:46:30', 896, 330, '2005-08-07 14:03:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11260, '2005-08-02 13:52:19', 4015, 207, '2005-08-06 08:13:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11261, '2005-08-02 13:54:26', 31, 204, '2005-08-10 19:04:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11262, '2005-08-02 13:58:55', 71, 348, '2005-08-05 18:09:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11263, '2005-08-02 14:02:19', 1189, 421, '2005-08-07 14:03:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11264, '2005-08-02 14:05:18', 3420, 360, '2005-08-10 08:46:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11265, '2005-08-02 14:05:42', 3870, 531, '2005-08-11 15:27:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11266, '2005-08-02 14:07:35', 3972, 99, '2005-08-04 13:31:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11267, '2005-08-02 14:09:08', 2045, 244, '2005-08-10 12:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11268, '2005-08-02 14:10:39', 3275, 558, '2005-08-04 14:35:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11269, '2005-08-02 14:11:41', 2398, 297, '2005-08-08 18:53:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11270, '2005-08-02 14:18:07', 1882, 418, '2005-08-03 08:20:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11271, '2005-08-02 14:18:22', 4323, 93, '2005-08-07 09:35:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11272, '2005-08-02 14:20:27', 4111, 158, '2005-08-07 12:24:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11273, '2005-08-02 14:20:55', 3383, 541, '2005-08-07 12:57:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11274, '2005-08-02 14:24:08', 1253, 70, '2005-08-11 14:56:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11275, '2005-08-02 14:25:58', 2838, 464, '2005-08-07 11:20:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11276, '2005-08-02 14:28:46', 4226, 190, '2005-08-04 14:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11277, '2005-08-02 14:28:50', 2050, 68, '2005-08-04 13:50:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11278, '2005-08-02 14:29:43', 961, 143, '2005-08-07 10:13:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11279, '2005-08-02 14:30:03', 151, 125, '2005-08-10 09:49:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11280, '2005-08-02 14:34:33', 1846, 134, '2005-08-08 15:40:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11281, '2005-08-02 14:35:01', 2210, 137, '2005-08-07 17:28:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11282, '2005-08-02 14:35:03', 1824, 273, '2005-08-03 16:02:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11283, '2005-08-02 14:39:46', 312, 134, '2005-08-05 10:19:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11284, '2005-08-02 14:42:45', 172, 8, '2005-08-04 11:55:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11285, '2005-08-02 14:44:02', 3849, 585, '2005-08-11 16:45:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11286, '2005-08-02 14:44:22', 1319, 207, '2005-08-10 09:01:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11287, '2005-08-02 14:49:51', 927, 55, '2005-08-09 09:19:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11288, '2005-08-02 14:54:08', 1478, 298, '2005-08-11 12:22:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11289, '2005-08-02 14:55:00', 2869, 10, '2005-08-11 13:57:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11290, '2005-08-02 14:57:44', 425, 582, '2005-08-09 19:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11291, '2005-08-02 14:57:58', 491, 417, '2005-08-11 09:04:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11292, '2005-08-02 14:58:41', 210, 13, '2005-08-06 14:38:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11293, '2005-08-02 15:00:43', 1514, 475, '2005-08-11 17:49:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11294, '2005-08-02 15:08:27', 855, 411, '2005-08-03 18:28:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11295, '2005-08-02 15:10:06', 423, 67, '2005-08-10 09:52:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11296, '2005-08-02 15:15:27', 247, 154, '2005-08-11 16:12:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11297, '2005-08-02 15:22:47', 2531, 62, '2005-08-11 18:45:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11298, '2005-08-02 15:32:32', 1663, 35, '2005-08-06 20:22:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11299, '2005-08-02 15:36:52', 3232, 1, '2005-08-10 16:40:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11300, '2005-08-02 15:37:42', 3032, 552, '2005-08-11 14:25:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11301, '2005-08-02 15:37:59', 676, 502, '2005-08-04 10:57:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11302, '2005-08-02 15:38:03', 1918, 51, '2005-08-09 10:33:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11303, '2005-08-02 15:39:18', 1817, 417, '2005-08-05 10:59:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11304, '2005-08-02 15:40:10', 2592, 413, '2005-08-06 16:12:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11305, '2005-08-02 15:44:55', 1690, 341, '2005-08-08 16:42:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11306, '2005-08-02 15:45:10', 13, 247, '2005-08-03 21:14:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11307, '2005-08-02 15:48:08', 1490, 15, '2005-08-06 20:33:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11308, '2005-08-02 15:50:44', 699, 16, '2005-08-05 11:38:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11309, '2005-08-02 15:50:55', 607, 275, '2005-08-09 18:28:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11310, '2005-08-02 15:51:58', 3601, 415, '2005-08-07 12:34:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11311, '2005-08-02 15:53:48', 204, 197, '2005-08-03 16:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11312, '2005-08-02 15:56:51', 1093, 190, '2005-08-07 20:56:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11313, '2005-08-02 16:02:51', 2689, 419, '2005-08-03 14:54:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11314, '2005-08-02 16:04:08', 2790, 26, '2005-08-04 18:47:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11315, '2005-08-02 16:05:17', 1116, 13, '2005-08-05 16:33:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11316, '2005-08-02 16:07:49', 521, 108, '2005-08-10 13:22:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11317, '2005-08-02 16:08:52', 1889, 502, '2005-08-08 21:12:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11318, '2005-08-02 16:09:11', 2386, 532, '2005-08-07 11:28:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11319, '2005-08-02 16:10:09', 4069, 178, '2005-08-09 11:21:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11320, '2005-08-02 16:13:28', 3362, 550, '2005-08-05 21:23:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11321, '2005-08-02 16:15:07', 205, 266, '2005-08-04 20:35:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11322, '2005-08-02 16:23:17', 761, 418, '2005-08-09 19:55:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11323, '2005-08-02 16:29:57', 3784, 419, '2005-08-06 16:01:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11324, '2005-08-02 16:31:17', 2900, 540, '2005-08-08 15:38:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11325, '2005-08-02 16:33:11', 4514, 422, '2005-08-08 13:42:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11326, '2005-08-02 16:34:29', 1762, 530, '2005-08-03 17:40:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11327, '2005-08-02 16:40:47', 773, 361, '2005-08-03 22:13:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11328, '2005-08-02 16:42:38', 2031, 219, '2005-08-04 21:02:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11329, '2005-08-02 16:42:52', 2677, 399, '2005-08-08 16:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11330, '2005-08-02 16:45:33', 4326, 75, '2005-08-04 15:15:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11331, '2005-08-02 16:49:01', 3789, 568, '2005-08-09 19:15:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11332, '2005-08-02 16:52:57', 2381, 467, '2005-08-04 14:13:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11333, '2005-08-02 16:53:00', 3335, 225, '2005-08-07 20:49:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11334, '2005-08-02 16:53:20', 1504, 560, '2005-08-11 20:47:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11335, '2005-08-02 16:57:37', 2968, 157, '2005-08-09 19:43:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11336, '2005-08-02 16:58:56', 1949, 473, '2005-08-06 16:56:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11337, '2005-08-02 16:59:09', 3428, 366, '2005-08-10 20:41:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11338, '2005-08-02 17:00:12', 3689, 26, '2005-08-03 18:54:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11339, '2005-08-02 17:02:06', 705, 263, '2005-08-08 21:12:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11340, '2005-08-02 17:05:43', 1403, 366, '2005-08-09 13:25:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11341, '2005-08-02 17:09:24', 3586, 15, '2005-08-09 19:48:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11342, '2005-08-02 17:11:35', 4251, 179, '2005-08-07 15:04:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11343, '2005-08-02 17:12:30', 564, 466, '2005-08-09 12:08:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11344, '2005-08-02 17:13:26', 365, 38, '2005-08-07 16:44:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11345, '2005-08-02 17:14:19', 1895, 405, '2005-08-11 14:02:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11346, '2005-08-02 17:15:38', 584, 100, '2005-08-04 13:31:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11347, '2005-08-02 17:18:07', 195, 217, '2005-08-05 12:30:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11348, '2005-08-02 17:18:38', 1704, 389, '2005-08-06 16:11:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11349, '2005-08-02 17:21:49', 1871, 73, '2005-08-06 18:40:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11350, '2005-08-02 17:22:59', 1265, 598, '2005-08-09 19:56:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11351, '2005-08-02 17:28:07', 242, 198, '2005-08-09 21:55:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11352, '2005-08-02 17:29:39', 2760, 546, '2005-08-10 15:31:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11353, '2005-08-02 17:34:45', 1729, 444, '2005-08-09 16:01:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11354, '2005-08-02 17:35:10', 1887, 569, '2005-08-09 12:07:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11355, '2005-08-02 17:37:43', 2673, 185, '2005-08-05 19:59:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11356, '2005-08-02 17:42:40', 303, 200, '2005-08-11 23:29:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11357, '2005-08-02 17:42:49', 2644, 148, '2005-08-11 18:14:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11358, '2005-08-02 17:45:02', 2361, 56, '2005-08-11 18:16:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11359, '2005-08-02 17:45:55', 1648, 466, '2005-08-10 20:53:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11360, '2005-08-02 17:46:04', 1750, 66, '2005-08-04 21:02:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11361, '2005-08-02 17:46:34', 1124, 547, '2005-08-03 15:21:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11362, '2005-08-02 17:47:25', 2628, 331, '2005-08-07 20:14:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11363, '2005-08-02 17:48:39', 3190, 274, '2005-08-05 17:20:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11364, '2005-08-02 17:53:36', 4515, 44, '2005-08-03 14:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11365, '2005-08-02 18:00:09', 1151, 508, '2005-08-04 13:40:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11366, '2005-08-02 18:01:25', 3583, 280, '2005-08-11 15:02:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11367, '2005-08-02 18:01:38', 1440, 1, '2005-08-04 13:19:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11368, '2005-08-02 18:03:05', 866, 153, '2005-08-07 20:40:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11369, '2005-08-02 18:04:41', 2480, 480, '2005-08-09 18:41:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11370, '2005-08-02 18:06:01', 3077, 146, '2005-08-04 15:10:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11371, '2005-08-02 18:07:36', 324, 561, '2005-08-06 17:52:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11372, '2005-08-02 18:10:50', 796, 327, '2005-08-07 17:58:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11373, '2005-08-02 18:14:12', 181, 267, '2005-08-06 23:37:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11374, '2005-08-02 18:14:54', 2805, 424, '2005-08-04 18:22:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11375, '2005-08-02 18:14:56', 1064, 346, '2005-08-08 23:29:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11376, '2005-08-02 18:16:00', 2530, 177, '2005-08-11 23:38:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11377, '2005-08-02 18:16:47', 3334, 119, '2005-08-08 13:46:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11378, '2005-08-02 18:16:52', 3824, 188, '2005-08-03 14:25:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11379, '2005-08-02 18:16:55', 251, 61, '2005-08-07 18:12:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11380, '2005-08-02 18:17:32', 1046, 551, '2005-08-03 19:26:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11381, '2005-08-02 18:19:29', 993, 451, '2005-08-08 20:39:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11382, '2005-08-02 18:20:52', 3848, 407, '2005-08-07 17:06:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11383, '2005-08-02 18:22:05', 257, 445, '2005-08-11 17:18:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11384, '2005-08-02 18:23:01', 2840, 225, '2005-08-05 17:59:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11385, '2005-08-02 18:23:11', 2478, 192, '2005-08-06 12:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11386, '2005-08-02 18:24:03', 519, 183, '2005-08-06 21:22:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11387, '2005-08-02 18:32:38', 2491, 481, '2005-08-07 19:08:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11388, '2005-08-02 18:35:55', 477, 369, '2005-08-09 21:56:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11389, '2005-08-02 18:39:12', 3267, 270, '2005-08-03 23:23:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11390, '2005-08-02 18:39:16', 3135, 294, '2005-08-04 21:43:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11391, '2005-08-02 18:40:12', 2039, 403, '2005-08-10 15:55:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11392, '2005-08-02 18:41:11', 261, 146, '2005-08-11 21:41:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11393, '2005-08-02 18:44:29', 1033, 501, '2005-08-11 23:58:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11394, '2005-08-02 18:44:45', 2087, 257, '2005-08-06 22:51:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11395, '2005-08-02 18:47:44', 4234, 225, '2005-08-10 17:07:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11396, '2005-08-02 18:48:29', 1155, 59, '2005-08-04 16:05:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11397, '2005-08-02 18:53:14', 2566, 470, '2005-08-09 18:09:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11398, '2005-08-02 18:55:15', 3952, 6, '2005-08-10 19:50:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11399, '2005-08-02 18:56:28', 2094, 565, '2005-08-11 23:19:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11400, '2005-08-02 19:00:52', 3150, 9, '2005-08-09 19:45:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11401, '2005-08-02 19:05:06', 1799, 544, '2005-08-09 22:34:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11402, '2005-08-02 19:07:21', 3291, 561, '2005-08-07 20:59:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11403, '2005-08-02 19:10:21', 4072, 587, '2005-08-04 00:44:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11404, '2005-08-02 19:12:40', 3285, 60, '2005-08-11 22:38:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11405, '2005-08-02 19:13:39', 418, 10, '2005-08-07 19:19:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11406, '2005-08-02 19:16:10', 2502, 525, '2005-08-04 20:51:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11407, '2005-08-02 19:18:43', 3437, 513, '2005-08-08 16:15:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11408, '2005-08-02 19:25:13', 1779, 83, '2005-08-06 17:12:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11409, '2005-08-02 19:26:51', 3691, 418, '2005-08-07 19:55:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11410, '2005-08-02 19:29:01', 692, 592, '2005-08-11 16:50:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11411, '2005-08-02 19:29:47', 1497, 141, '2005-08-09 16:27:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11412, '2005-08-02 19:32:51', 2271, 141, '2005-08-11 22:16:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11413, '2005-08-02 19:35:19', 1115, 297, '2005-08-05 21:33:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11414, '2005-08-02 19:43:07', 1772, 353, '2005-08-07 15:22:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11415, '2005-08-02 19:43:38', 2197, 572, '2005-08-10 15:13:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11416, '2005-08-02 19:44:04', 1848, 58, '2005-08-11 15:30:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11417, '2005-08-02 19:44:46', 3083, 437, '2005-08-11 21:43:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11418, '2005-08-02 19:45:33', 4490, 91, '2005-08-06 17:40:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11419, '2005-08-02 19:46:38', 514, 444, '2005-08-11 14:49:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11420, '2005-08-02 19:47:56', 3928, 158, '2005-08-05 21:48:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11421, '2005-08-02 19:51:53', 3361, 473, '2005-08-12 00:50:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11422, '2005-08-02 19:52:08', 342, 72, '2005-08-11 18:40:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11423, '2005-08-02 19:57:13', 3431, 241, '2005-08-06 00:54:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11424, '2005-08-02 19:57:42', 1030, 84, '2005-08-10 16:57:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11425, '2005-08-02 19:58:48', 989, 419, '2005-08-03 19:30:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11426, '2005-08-02 20:00:09', 130, 572, '2005-08-09 01:30:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11427, '2005-08-02 20:02:39', 3287, 403, '2005-08-04 22:26:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11428, '2005-08-02 20:03:10', 722, 326, '2005-08-04 01:55:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11429, '2005-08-02 20:03:52', 1098, 348, '2005-08-10 16:38:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11430, '2005-08-02 20:04:36', 2258, 140, '2005-08-08 19:43:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11431, '2005-08-02 20:05:16', 1409, 271, '2005-08-04 00:05:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11432, '2005-08-02 20:10:01', 959, 540, '2005-08-07 01:28:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11433, '2005-08-02 20:13:10', 1, 518, '2005-08-11 21:35:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11434, '2005-08-02 20:13:14', 3154, 391, '2005-08-05 15:01:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11435, '2005-08-02 20:14:23', 1625, 502, '2005-08-05 20:40:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11436, '2005-08-02 20:16:06', 3834, 106, '2005-08-05 20:40:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11437, '2005-08-02 20:20:06', 2679, 225, '2005-08-05 22:17:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11438, '2005-08-02 20:21:08', 1040, 372, '2005-08-10 22:12:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11439, '2005-08-02 20:22:45', 2897, 18, '2005-08-04 18:30:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11440, '2005-08-02 20:24:02', 2727, 306, '2005-08-07 16:42:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11441, '2005-08-02 20:25:41', 1027, 389, '2005-08-05 00:05:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11442, '2005-08-02 20:26:19', 2598, 208, '2005-08-07 00:33:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11443, '2005-08-02 20:29:30', 1291, 581, '2005-08-07 01:08:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11444, '2005-08-02 20:32:55', 1419, 28, '2005-08-08 23:21:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11445, '2005-08-02 20:33:35', 3340, 108, '2005-08-08 16:02:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11446, '2005-08-02 20:33:37', 748, 342, '2005-08-03 18:22:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11447, '2005-08-02 20:36:25', 3868, 508, '2005-08-07 18:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11448, '2005-08-02 20:44:33', 1185, 496, '2005-08-05 22:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11449, '2005-08-02 20:44:43', 3279, 443, '2005-08-07 23:47:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11450, '2005-08-02 20:45:54', 2009, 214, '2005-08-08 17:17:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11451, '2005-08-02 20:45:56', 776, 515, '2005-08-06 21:42:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11452, '2005-08-02 20:59:52', 1245, 35, '2005-08-12 01:16:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11453, '2005-08-02 21:00:05', 4578, 84, '2005-08-08 22:03:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11454, '2005-08-02 21:04:39', 2901, 199, '2005-08-05 19:03:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11455, '2005-08-02 21:07:06', 2000, 498, '2005-08-12 01:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11456, '2005-08-02 21:14:04', 3638, 322, '2005-08-07 19:49:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11457, '2005-08-02 21:14:16', 1642, 379, '2005-08-10 02:39:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11458, '2005-08-02 21:24:02', 3514, 575, '2005-08-04 01:32:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11459, '2005-08-02 21:25:25', 3730, 392, '2005-08-04 19:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11460, '2005-08-02 21:28:03', 4113, 403, '2005-08-08 18:24:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11461, '2005-08-02 21:35:00', 4343, 65, '2005-08-05 01:34:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11462, '2005-08-02 21:36:46', 167, 268, '2005-08-10 01:48:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11463, '2005-08-02 21:37:36', 1944, 138, '2005-08-08 03:11:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11464, '2005-08-02 21:42:07', 538, 577, '2005-08-03 21:44:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11465, '2005-08-02 21:43:52', 2190, 447, '2005-08-10 22:24:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11466, '2005-08-02 21:46:46', 3363, 556, '2005-08-06 01:42:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11467, '2005-08-02 21:47:07', 246, 117, '2005-08-09 00:50:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11468, '2005-08-02 21:47:26', 3168, 413, '2005-08-05 02:30:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11469, '2005-08-02 21:48:09', 230, 77, '2005-08-06 18:37:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11470, '2005-08-02 21:48:28', 2379, 346, '2005-08-05 23:58:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11471, '2005-08-02 21:49:03', 3378, 355, '2005-08-08 00:17:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11472, '2005-08-02 21:49:06', 1829, 410, '2005-08-11 20:17:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11473, '2005-08-02 21:52:03', 620, 536, '2005-08-09 02:01:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11474, '2005-08-02 21:53:08', 574, 214, '2005-08-05 22:36:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11475, '2005-08-02 21:55:09', 3687, 194, '2005-08-09 20:28:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11476, '2005-08-02 22:03:47', 724, 144, '2005-08-09 02:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11477, '2005-08-02 22:09:01', 1671, 47, '2005-08-07 03:46:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11478, '2005-08-02 22:09:05', 3932, 197, '2005-08-04 18:02:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11479, '2005-08-02 22:18:13', 4077, 237, '2005-08-12 00:43:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11480, '2005-08-02 22:18:24', 4161, 14, '2005-08-04 21:22:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11481, '2005-08-02 22:18:41', 4028, 234, '2005-08-09 23:43:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11482, '2005-08-02 22:24:31', 1400, 134, '2005-08-04 01:48:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11483, '2005-08-02 22:28:22', 1586, 45, '2005-08-11 18:06:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11484, '2005-08-02 22:28:23', 330, 165, '2005-08-04 20:51:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11485, '2005-08-02 22:33:25', 1872, 326, '2005-08-04 23:26:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11486, '2005-08-02 22:34:06', 1610, 236, '2005-08-09 00:46:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11487, '2005-08-02 22:35:05', 734, 239, '2005-08-08 00:54:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11488, '2005-08-02 22:35:15', 2520, 45, '2005-08-09 00:28:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11489, '2005-08-02 22:35:28', 3001, 474, '2005-08-04 00:29:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11490, '2005-08-02 22:36:00', 1178, 156, '2005-08-09 16:36:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11491, '2005-08-02 22:44:50', 268, 307, '2005-08-11 01:55:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11492, '2005-08-02 22:46:47', 4037, 349, '2005-08-09 19:54:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11493, '2005-08-02 22:47:00', 3375, 124, '2005-08-10 20:53:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11494, '2005-08-02 22:51:23', 3994, 579, '2005-08-09 01:52:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11495, '2005-08-16 22:51:20', 1265, 247, '2005-08-23 00:44:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11496, '2006-02-14 15:16:03', 2047, 155, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11497, '2005-08-16 22:52:30', 436, 12, '2005-08-21 19:52:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11498, '2005-08-16 22:52:54', 487, 482, '2005-08-25 03:27:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11499, '2005-08-16 22:54:12', 3857, 172, '2005-08-24 03:37:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11500, '2005-08-16 23:01:22', 4003, 584, '2005-08-24 22:54:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11501, '2005-08-16 23:04:53', 2147, 23, '2005-08-19 20:57:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11502, '2005-08-16 23:06:30', 4470, 11, '2005-08-19 03:49:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11503, '2005-08-16 23:10:34', 1496, 526, '2005-08-25 03:55:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11504, '2005-08-16 23:16:46', 2132, 350, '2005-08-18 20:49:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11505, '2005-08-16 23:18:47', 3344, 34, '2005-08-23 19:52:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11506, '2005-08-16 23:25:48', 1529, 565, '2005-08-22 18:17:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11507, '2005-08-16 23:26:43', 4197, 236, '2005-08-24 22:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11508, '2005-08-16 23:27:36', 2688, 19, '2005-08-25 01:34:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11509, '2005-08-16 23:29:53', 2750, 273, '2005-08-19 02:09:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11510, '2005-08-16 23:30:07', 2997, 400, '2005-08-25 17:35:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11511, '2005-08-16 23:39:59', 2127, 397, '2005-08-18 18:04:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11512, '2005-08-16 23:51:06', 1248, 373, '2005-08-26 02:06:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11513, '2005-08-16 23:51:33', 4473, 499, '2005-08-24 01:37:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11514, '2005-08-16 23:53:10', 4240, 423, '2005-08-23 22:04:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11515, '2005-08-16 23:54:34', 1053, 279, '2005-08-21 19:00:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11516, '2005-08-16 23:54:47', 1860, 90, '2005-08-17 20:05:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11517, '2005-08-16 23:56:28', 4266, 280, '2005-08-21 22:40:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11518, '2005-08-16 23:59:49', 3297, 407, '2005-08-17 22:51:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11519, '2005-08-17 00:01:27', 1034, 381, '2005-08-19 04:54:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11520, '2005-08-17 00:04:28', 3536, 119, '2005-08-26 02:03:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11521, '2005-08-17 00:04:54', 463, 229, '2005-08-21 00:57:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11522, '2005-08-17 00:05:05', 2033, 599, '2005-08-24 04:56:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11523, '2005-08-17 00:10:10', 1329, 421, '2005-08-24 22:39:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11524, '2005-08-17 00:10:55', 317, 533, '2005-08-23 05:30:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11525, '2005-08-17 00:15:31', 1107, 174, '2005-08-20 21:14:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11526, '2005-08-17 00:17:38', 2419, 572, '2005-08-18 03:59:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11527, '2005-08-17 00:25:06', 162, 264, '2005-08-22 21:13:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11528, '2005-08-17 00:27:23', 893, 14, '2005-08-22 06:12:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11529, '2005-08-17 00:28:01', 3071, 4, '2005-08-19 04:47:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11530, '2005-08-17 00:29:00', 365, 400, '2005-08-22 03:22:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11531, '2005-08-17 00:30:04', 1817, 278, '2005-08-20 01:12:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11532, '2005-08-17 00:34:14', 1947, 413, '2005-08-22 19:37:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11533, '2005-08-17 00:34:53', 4252, 264, '2005-08-22 06:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11534, '2005-08-17 00:35:27', 2414, 144, '2005-08-24 01:36:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11535, '2005-08-17 00:39:54', 1649, 356, '2005-08-24 20:46:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11536, '2005-08-17 00:40:03', 2735, 428, '2005-08-21 19:11:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11537, '2005-08-17 00:41:08', 190, 474, '2005-08-19 00:25:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11538, '2005-08-17 00:44:04', 554, 431, '2005-08-18 03:43:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11539, '2005-08-17 00:45:41', 2064, 264, '2005-08-19 06:03:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11540, '2005-08-17 00:48:03', 3385, 370, '2005-08-25 03:46:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11541, '2006-02-14 15:16:03', 2026, 335, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11542, '2005-08-17 00:51:32', 2155, 7, '2005-08-24 20:29:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11543, '2005-08-17 00:54:28', 2860, 238, '2005-08-25 04:31:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11544, '2005-08-17 00:55:07', 836, 439, '2005-08-22 19:25:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11545, '2005-08-17 00:56:06', 3198, 257, '2005-08-25 22:47:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11546, '2005-08-17 00:57:36', 2522, 24, '2005-08-18 23:16:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11547, '2005-08-17 00:59:24', 737, 114, '2005-08-20 04:03:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11548, '2005-08-17 00:59:47', 480, 323, '2005-08-22 05:09:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11549, '2005-08-17 01:01:48', 945, 402, '2005-08-19 21:24:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11550, '2005-08-17 01:02:06', 2972, 339, '2005-08-22 21:44:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11551, '2005-08-17 01:03:49', 3356, 168, '2005-08-18 22:31:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11552, '2005-08-17 01:04:29', 1143, 230, '2005-08-23 23:07:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11553, '2005-08-17 01:04:31', 3317, 360, '2005-08-24 00:44:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11554, '2005-08-17 01:05:17', 2212, 460, '2005-08-20 06:20:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11555, '2005-08-17 01:08:59', 2569, 372, '2005-08-18 06:09:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11556, '2005-08-17 01:11:53', 373, 9, '2005-08-18 23:41:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11557, '2005-08-17 01:19:20', 2376, 416, '2005-08-24 02:25:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11558, '2005-08-17 01:19:52', 1681, 403, '2005-08-19 00:47:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11559, '2005-08-17 01:20:26', 1812, 385, '2005-08-24 03:11:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11560, '2005-08-17 01:20:30', 2316, 320, '2005-08-18 04:29:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12746, '2006-02-14 15:16:03', 1012, 211, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11561, '2005-08-17 01:23:09', 189, 149, '2005-08-23 21:02:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12101, '2006-02-14 15:16:03', 1556, 479, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11562, '2005-08-17 01:23:39', 2992, 424, '2005-08-26 06:16:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11563, '2006-02-14 15:16:03', 1545, 83, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11564, '2005-08-17 01:27:49', 2237, 332, '2005-08-19 22:07:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11565, '2005-08-17 01:28:05', 173, 83, '2005-08-23 23:33:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11566, '2005-08-17 01:28:35', 4020, 520, '2005-08-20 22:42:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11567, '2005-08-17 01:28:43', 567, 558, '2005-08-24 20:20:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11568, '2005-08-17 01:30:01', 183, 342, '2005-08-18 22:21:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11569, '2005-08-17 01:31:04', 2592, 504, '2005-08-24 03:36:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11570, '2005-08-17 01:34:32', 2466, 343, '2005-08-24 05:47:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11571, '2005-08-17 01:37:51', 203, 296, '2005-08-17 20:30:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11572, '2005-08-17 01:37:55', 3512, 515, '2005-08-19 06:22:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11573, '2005-08-17 01:38:18', 639, 146, '2005-08-19 05:06:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11574, '2005-08-17 01:38:19', 3596, 277, '2005-08-18 20:30:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11575, '2005-08-17 01:50:26', 1725, 319, '2005-08-18 00:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11576, '2005-08-17 01:53:20', 327, 293, '2005-08-19 00:15:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11577, '2006-02-14 15:16:03', 4106, 219, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11578, '2005-08-17 01:54:13', 192, 590, '2005-08-26 02:00:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11579, '2005-08-17 01:57:49', 4256, 356, '2005-08-22 02:42:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11580, '2005-08-17 01:59:07', 1346, 436, '2005-08-21 06:18:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11581, '2005-08-17 02:03:02', 1249, 231, '2005-08-24 03:53:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11582, '2005-08-17 02:03:49', 2115, 339, '2005-08-24 03:29:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11583, '2005-08-17 02:08:13', 133, 542, '2005-08-20 23:13:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11584, '2005-08-17 02:13:26', 3906, 479, '2005-08-22 01:24:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11585, '2005-08-17 02:14:36', 753, 297, '2005-08-20 07:37:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11586, '2005-08-17 02:20:42', 3140, 465, '2005-08-26 05:01:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11587, '2005-08-17 02:21:03', 1319, 156, '2005-08-25 21:02:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11588, '2005-08-17 02:26:23', 2480, 565, '2005-08-22 02:32:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11589, '2005-08-17 02:28:22', 3480, 554, '2005-08-25 00:08:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11590, '2005-08-17 02:28:33', 3600, 491, '2005-08-20 03:13:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11591, '2005-08-17 02:29:41', 1670, 6, '2005-08-23 20:47:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11592, '2005-08-17 02:36:04', 720, 383, '2005-08-19 00:31:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11593, '2006-02-14 15:16:03', 817, 99, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11594, '2005-08-17 02:47:02', 319, 198, '2005-08-22 05:14:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11595, '2005-08-17 02:53:14', 466, 350, '2005-08-26 02:05:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11596, '2005-08-17 02:53:55', 1674, 290, '2005-08-26 02:19:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11597, '2005-08-17 03:02:56', 4073, 272, '2005-08-26 04:47:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11598, '2005-08-17 03:03:07', 1949, 319, '2005-08-22 21:05:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11599, '2005-08-17 03:08:10', 3749, 112, '2005-08-25 05:01:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11600, '2005-08-17 03:12:04', 1978, 400, '2005-08-23 07:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11601, '2005-08-17 03:14:47', 1098, 471, '2005-08-20 00:21:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11602, '2005-08-17 03:21:19', 2082, 391, '2005-08-19 05:23:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11603, '2005-08-17 03:22:10', 3910, 406, '2005-08-18 06:48:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11604, '2005-08-17 03:28:27', 1820, 388, '2005-08-19 05:38:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11605, '2005-08-17 03:30:57', 1292, 455, '2005-08-24 07:02:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11606, '2005-08-17 03:32:43', 4138, 499, '2005-08-18 04:30:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11607, '2005-08-17 03:36:06', 4345, 242, '2005-08-20 01:06:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11608, '2005-08-17 03:36:52', 1673, 448, '2005-08-25 07:17:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11609, '2005-08-17 03:41:11', 351, 73, '2005-08-25 01:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11610, '2005-08-17 03:43:37', 3048, 275, '2005-08-20 22:14:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11611, '2006-02-14 15:16:03', 1857, 192, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11612, '2005-08-17 03:48:51', 375, 526, '2005-08-20 03:03:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11613, '2005-08-17 03:50:33', 2486, 126, '2005-08-25 00:37:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11614, '2005-08-17 03:52:18', 805, 2, '2005-08-20 07:04:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11615, '2005-08-17 03:54:35', 4331, 436, '2005-08-23 06:54:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11616, '2005-08-17 04:00:01', 2588, 36, '2005-08-20 23:03:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11617, '2005-08-17 04:00:40', 1898, 324, '2005-08-18 00:36:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11618, '2005-08-17 04:01:36', 954, 175, '2005-08-23 01:02:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11619, '2005-08-17 04:03:26', 3652, 374, '2005-08-22 03:07:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11620, '2005-08-17 04:06:22', 3801, 502, '2005-08-17 23:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11621, '2005-08-17 04:13:45', 3708, 216, '2005-08-26 01:00:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11622, '2005-08-17 04:15:46', 499, 220, '2005-08-24 04:48:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11623, '2005-08-17 04:15:47', 759, 163, '2005-08-19 04:11:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11624, '2005-08-17 04:17:42', 606, 527, '2005-08-18 02:46:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11625, '2005-08-17 04:18:52', 712, 521, '2005-08-25 03:05:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11626, '2005-08-17 04:25:42', 4279, 266, '2005-08-23 05:46:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11627, '2005-08-17 04:25:47', 3945, 168, '2005-08-26 02:54:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11628, '2005-08-17 04:27:18', 3656, 256, '2005-08-25 01:12:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11629, '2005-08-17 04:27:24', 786, 299, '2005-08-26 10:25:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11630, '2005-08-17 04:27:46', 688, 72, '2005-08-19 09:58:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11631, '2005-08-17 04:28:56', 59, 168, '2005-08-24 00:42:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11632, '2005-08-17 04:29:32', 2551, 238, '2005-08-22 03:44:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11633, '2005-08-17 04:30:09', 1706, 468, '2005-08-20 06:56:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11634, '2005-08-17 04:31:49', 2576, 206, '2005-08-21 02:51:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11635, '2005-08-17 04:33:17', 2642, 98, '2005-08-21 07:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11636, '2005-08-17 04:36:31', 791, 276, '2005-08-24 00:03:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11637, '2005-08-17 04:36:39', 479, 283, '2005-08-18 02:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11638, '2005-08-17 04:39:09', 3421, 152, '2005-08-25 06:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11639, '2005-08-17 04:43:29', 3985, 462, '2005-08-25 01:04:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11640, '2005-08-17 04:44:33', 1718, 501, '2005-08-21 09:29:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11641, '2005-08-17 04:45:39', 2717, 79, '2005-08-20 10:38:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11642, '2005-08-17 04:48:05', 3790, 25, '2005-08-18 01:53:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11643, '2005-08-17 04:49:35', 1378, 197, '2005-08-24 07:05:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11644, '2005-08-17 04:49:46', 1760, 438, '2005-08-24 08:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11645, '2005-08-17 04:50:56', 4261, 35, '2005-08-25 23:03:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11646, '2006-02-14 15:16:03', 478, 11, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11647, '2005-08-17 04:54:14', 3016, 110, '2005-08-23 04:16:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11648, '2005-08-17 04:56:16', 3362, 465, '2005-08-26 00:53:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11649, '2005-08-17 04:59:26', 3222, 217, '2005-08-20 04:02:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11650, '2005-08-17 05:00:03', 3979, 418, '2005-08-22 01:45:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11651, '2005-08-17 05:02:25', 3681, 143, '2005-08-24 08:15:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11652, '2006-02-14 15:16:03', 1622, 597, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11653, '2005-08-17 05:06:10', 4475, 358, '2005-08-24 03:09:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11654, '2005-08-17 05:06:19', 1048, 218, '2005-08-18 04:32:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11655, '2005-08-17 05:11:07', 1699, 113, '2005-08-26 10:18:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11656, '2005-08-17 05:11:09', 1451, 56, '2005-08-25 07:51:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11657, '2006-02-14 15:16:03', 3043, 53, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11658, '2005-08-17 05:19:17', 2008, 422, '2005-08-24 07:03:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11659, '2005-08-17 05:20:45', 2881, 112, '2005-08-22 10:18:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11660, '2005-08-17 05:22:42', 4081, 525, '2005-08-23 01:03:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11661, '2005-08-17 05:25:57', 1008, 27, '2005-08-25 04:37:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11662, '2005-08-17 05:27:37', 2730, 177, '2005-08-26 09:56:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11663, '2005-08-17 05:30:19', 3798, 373, '2005-08-25 08:14:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11664, '2005-08-17 05:35:52', 1343, 433, '2005-08-18 02:40:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11665, '2005-08-17 05:36:57', 334, 254, '2005-08-23 01:38:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11666, '2005-08-17 05:45:10', 250, 531, '2005-08-19 06:47:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11667, '2005-08-17 05:46:55', 1516, 582, '2005-08-26 08:19:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11668, '2005-08-17 05:47:32', 2162, 249, '2005-08-20 03:11:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11669, '2005-08-17 05:48:51', 3224, 487, '2005-08-22 01:22:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13719, '2006-02-14 15:16:03', 3547, 208, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11670, '2005-08-17 05:48:59', 4437, 286, '2005-08-19 08:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11671, '2005-08-17 05:50:21', 3569, 338, '2005-08-20 03:43:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11672, '2006-02-14 15:16:03', 3947, 521, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11673, '2005-08-17 05:54:15', 823, 303, '2005-08-21 08:12:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11674, '2005-08-17 05:56:27', 582, 306, '2005-08-24 08:50:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11675, '2005-08-17 05:57:54', 1322, 514, '2005-08-21 23:57:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11676, '2006-02-14 15:16:03', 4496, 216, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11677, '2005-08-17 06:06:26', 2206, 407, '2005-08-20 04:35:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11678, '2005-08-17 06:07:39', 3511, 176, '2005-08-21 10:51:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11679, '2005-08-17 06:08:54', 3337, 72, '2005-08-21 07:50:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11680, '2005-08-17 06:12:27', 4538, 221, '2005-08-23 08:54:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11681, '2005-08-17 06:13:30', 1260, 543, '2005-08-26 01:29:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11682, '2005-08-17 06:13:40', 2544, 387, '2005-08-18 06:11:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11683, '2005-08-17 06:15:17', 2603, 66, '2005-08-26 05:33:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11684, '2005-08-17 06:27:15', 4277, 517, '2005-08-22 02:11:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11685, '2005-08-17 06:39:16', 3552, 51, '2005-08-22 04:20:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11686, '2005-08-17 06:39:30', 1393, 392, '2005-08-21 10:19:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11687, '2005-08-17 06:39:59', 1977, 169, '2005-08-23 04:53:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11688, '2005-08-17 06:41:58', 2229, 82, '2005-08-25 04:38:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11689, '2005-08-17 06:42:08', 2390, 419, '2005-08-26 06:09:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11690, '2005-08-17 06:44:22', 3934, 267, '2005-08-24 03:49:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11691, '2005-08-17 06:51:05', 2529, 515, '2005-08-24 09:53:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11692, '2005-08-17 06:52:41', 1222, 350, '2005-08-24 12:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11693, '2005-08-17 06:56:56', 793, 221, '2005-08-24 06:20:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11694, '2005-08-17 06:57:30', 3540, 410, '2005-08-24 07:52:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11695, '2005-08-17 07:01:08', 1110, 386, '2005-08-21 09:21:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11696, '2005-08-17 07:01:09', 3816, 522, '2005-08-21 09:12:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11697, '2005-08-17 07:09:19', 383, 329, '2005-08-19 02:02:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11698, '2005-08-17 07:09:59', 3946, 353, '2005-08-19 04:31:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11699, '2005-08-17 07:11:58', 3997, 339, '2005-08-26 12:08:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11700, '2005-08-17 07:12:31', 2365, 104, '2005-08-18 04:21:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11701, '2005-08-17 07:15:47', 993, 34, '2005-08-19 01:44:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11702, '2005-08-17 07:18:56', 3286, 526, '2005-08-24 06:33:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11703, '2005-08-17 07:19:29', 1692, 279, '2005-08-20 09:35:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11704, '2005-08-17 07:21:22', 1099, 135, '2005-08-25 06:06:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11705, '2005-08-17 07:22:25', 4242, 489, '2005-08-18 06:42:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11706, '2005-08-17 07:23:46', 4234, 414, '2005-08-18 10:13:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11707, '2005-08-17 07:24:59', 1030, 581, '2005-08-24 10:40:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11708, '2005-08-17 07:26:47', 76, 582, '2005-08-22 04:11:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11709, '2006-02-14 15:16:03', 1720, 330, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11710, '2005-08-17 07:29:44', 613, 553, '2005-08-19 02:06:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11711, '2005-08-17 07:30:55', 1503, 470, '2005-08-18 09:21:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11712, '2005-08-17 07:32:51', 3607, 203, '2005-08-21 09:18:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11713, '2005-08-17 07:34:05', 1919, 590, '2005-08-25 07:49:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11714, '2005-08-17 07:34:55', 17, 151, '2005-08-18 04:07:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11715, '2005-08-17 07:40:55', 1615, 452, '2005-08-25 11:19:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11716, '2005-08-17 07:40:55', 3054, 287, '2005-08-21 05:56:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11717, '2005-08-17 07:44:09', 1371, 566, '2005-08-20 09:39:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11718, '2005-08-17 07:44:42', 3673, 555, '2005-08-23 03:02:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11719, '2005-08-17 07:46:05', 2054, 338, '2005-08-23 08:52:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11720, '2005-08-17 07:46:54', 1707, 121, '2005-08-26 04:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11721, '2005-08-17 07:49:17', 1923, 46, '2005-08-18 04:08:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11722, '2005-08-17 07:53:03', 2430, 321, '2005-08-22 06:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11723, '2005-08-17 07:56:22', 1665, 341, '2005-08-22 03:49:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11724, '2005-08-17 08:04:44', 4484, 207, '2005-08-25 03:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11725, '2005-08-17 08:09:00', 519, 45, '2005-08-18 09:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11726, '2005-08-17 08:11:10', 4438, 266, '2005-08-22 05:45:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11727, '2005-08-17 08:12:20', 98, 6, '2005-08-19 12:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11728, '2005-08-17 08:12:26', 726, 444, '2005-08-18 03:26:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11729, '2005-08-17 08:14:41', 2819, 215, '2005-08-22 02:54:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11730, '2005-08-17 08:22:00', 3817, 98, '2005-08-22 05:43:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11731, '2005-08-17 08:24:35', 917, 52, '2005-08-24 02:54:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11732, '2005-08-17 08:29:46', 460, 137, '2005-08-23 14:21:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11733, '2005-08-17 08:31:03', 439, 251, '2005-08-21 05:44:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11734, '2005-08-17 08:34:22', 4063, 337, '2005-08-25 11:56:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11735, '2005-08-17 08:35:42', 2555, 452, '2005-08-26 11:04:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11736, '2005-08-17 08:40:55', 4217, 535, '2005-08-26 09:03:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11737, '2005-08-17 08:42:08', 4128, 549, '2005-08-19 08:14:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11738, '2005-08-17 08:45:55', 3042, 347, '2005-08-26 07:09:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11739, '2006-02-14 15:16:03', 4568, 373, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11740, '2005-08-17 08:48:31', 2441, 27, '2005-08-24 07:47:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11741, '2005-08-17 08:48:39', 1819, 473, '2005-08-20 07:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11742, '2005-08-17 08:48:43', 596, 470, '2005-08-23 07:18:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11743, '2005-08-17 08:49:05', 294, 336, '2005-08-22 08:53:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11744, '2005-08-17 08:54:30', 297, 26, '2005-08-25 03:28:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11745, '2005-08-17 09:00:01', 4018, 240, '2005-08-26 14:29:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11746, '2005-08-17 09:03:24', 4571, 299, '2005-08-25 06:08:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11747, '2005-08-17 09:03:31', 1041, 555, '2005-08-19 08:23:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11748, '2005-08-17 09:04:02', 1175, 595, '2005-08-21 12:22:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11749, '2005-08-17 09:04:03', 4141, 567, '2005-08-19 09:32:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11750, '2005-08-17 09:07:00', 665, 190, '2005-08-23 08:16:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11751, '2005-08-17 09:07:56', 3309, 51, '2005-08-26 13:16:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11752, '2005-08-17 09:10:55', 1833, 481, '2005-08-18 06:22:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11753, '2005-08-17 09:11:52', 2599, 43, '2005-08-25 05:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11754, '2006-02-14 15:16:03', 3747, 163, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11755, '2005-08-17 09:15:35', 3457, 513, '2005-08-23 06:28:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11756, '2005-08-17 09:29:22', 1798, 198, '2005-08-21 12:17:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11757, '2006-02-14 15:16:03', 1295, 550, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11758, '2005-08-17 09:33:02', 11, 533, '2005-08-24 05:03:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11759, '2005-08-17 09:41:23', 2655, 108, '2005-08-19 11:58:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11760, '2005-08-17 09:44:22', 626, 545, '2005-08-24 14:39:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11761, '2005-08-17 09:44:59', 2230, 13, '2005-08-25 07:46:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11762, '2005-08-17 09:48:06', 1204, 244, '2005-08-26 13:12:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11763, '2005-08-17 09:51:39', 872, 586, '2005-08-21 10:15:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11764, '2005-08-17 09:51:54', 4502, 252, '2005-08-20 07:11:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11765, '2005-08-17 09:55:28', 4311, 308, '2005-08-19 15:53:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11766, '2005-08-17 09:58:40', 2999, 544, '2005-08-21 04:59:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11767, '2005-08-17 10:00:40', 2374, 77, '2005-08-25 04:14:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11768, '2005-08-17 10:02:29', 1307, 564, '2005-08-23 10:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11769, '2005-08-17 10:04:49', 1406, 418, '2005-08-20 09:22:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11770, '2005-08-17 10:05:05', 2862, 475, '2005-08-20 15:59:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11771, '2005-08-17 10:17:09', 2575, 324, '2005-08-25 10:58:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11772, '2005-08-17 10:18:57', 1021, 237, '2005-08-26 12:48:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11773, '2005-08-17 10:19:51', 1886, 384, '2005-08-23 04:30:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11774, '2005-08-17 10:20:39', 1679, 488, '2005-08-23 13:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11775, '2005-08-17 10:25:53', 256, 574, '2005-08-22 08:37:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11776, '2005-08-17 10:27:19', 2400, 306, '2005-08-20 14:02:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11777, '2005-08-17 10:27:19', 4065, 83, '2005-08-26 13:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11778, '2005-08-17 10:31:40', 1306, 213, '2005-08-25 13:53:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11779, '2005-08-17 10:31:58', 181, 126, '2005-08-24 15:28:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11780, '2005-08-17 10:34:24', 2268, 297, '2005-08-21 04:55:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11781, '2005-08-17 10:37:00', 1853, 506, '2005-08-21 12:03:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11782, '2006-02-14 15:16:03', 4098, 354, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11783, '2005-08-17 10:39:24', 979, 152, '2005-08-21 12:43:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11784, '2005-08-17 10:48:05', 3101, 297, '2005-08-19 06:47:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11785, '2005-08-17 10:54:46', 2760, 182, '2005-08-23 14:15:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11786, '2005-08-17 10:57:40', 1487, 435, '2005-08-24 06:48:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11787, '2005-08-17 10:59:00', 1980, 195, '2005-08-19 05:56:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11788, '2005-08-17 10:59:18', 1310, 560, '2005-08-22 11:12:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11789, '2005-08-17 10:59:24', 851, 150, '2005-08-26 16:17:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11790, '2005-08-17 11:00:08', 2384, 451, '2005-08-20 05:15:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11791, '2005-08-17 11:01:11', 3640, 219, '2005-08-22 06:31:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11792, '2005-08-17 11:03:53', 3703, 376, '2005-08-26 06:34:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11793, '2005-08-17 11:05:53', 1955, 352, '2005-08-25 12:25:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11794, '2005-08-17 11:08:48', 3486, 453, '2005-08-20 13:36:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11795, '2005-08-17 11:13:38', 2220, 565, '2005-08-19 14:20:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11796, '2005-08-17 11:16:47', 3983, 435, '2005-08-18 16:55:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11797, '2005-08-17 11:17:21', 1142, 546, '2005-08-18 09:14:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11798, '2005-08-17 11:21:43', 3974, 448, '2005-08-25 07:43:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11799, '2005-08-17 11:25:25', 40, 501, '2005-08-25 13:03:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11800, '2005-08-17 11:29:52', 2284, 350, '2005-08-21 08:37:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11801, '2005-08-17 11:30:11', 659, 126, '2005-08-23 09:54:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11802, '2005-08-17 11:32:51', 2815, 221, '2005-08-22 10:56:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11803, '2005-08-17 11:42:08', 3648, 160, '2005-08-22 07:45:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11804, '2005-08-17 11:42:45', 1040, 556, '2005-08-25 07:11:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11805, '2005-08-17 11:48:47', 1208, 208, '2005-08-26 11:06:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11806, '2005-08-17 11:49:28', 3203, 125, '2005-08-22 15:42:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11807, '2005-08-17 11:51:15', 4052, 201, '2005-08-21 11:47:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11808, '2005-08-17 11:51:16', 4042, 462, '2005-08-18 14:01:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11809, '2005-08-17 11:51:39', 1136, 305, '2005-08-24 17:14:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11810, '2005-08-17 11:56:48', 1548, 270, '2005-08-20 17:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11811, '2005-08-17 11:59:18', 195, 130, '2005-08-18 09:13:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11812, '2005-08-17 12:00:54', 119, 132, '2005-08-18 16:08:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11813, '2005-08-17 12:06:54', 1074, 36, '2005-08-21 17:52:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11814, '2005-08-17 12:09:20', 3462, 509, '2005-08-25 16:56:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11815, '2005-08-17 12:13:26', 272, 192, '2005-08-22 17:15:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11816, '2005-08-17 12:14:16', 3897, 224, '2005-08-19 06:15:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11817, '2005-08-17 12:20:01', 2297, 38, '2005-08-19 18:06:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11818, '2005-08-17 12:22:04', 213, 512, '2005-08-25 15:59:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11819, '2005-08-17 12:25:17', 656, 208, '2005-08-19 16:12:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11820, '2005-08-17 12:25:33', 2801, 401, '2005-08-19 07:04:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11821, '2005-08-17 12:27:55', 2711, 20, '2005-08-18 07:07:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11822, '2005-08-17 12:32:39', 1317, 263, '2005-08-18 12:30:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11823, '2005-08-17 12:36:37', 2626, 352, '2005-08-22 11:10:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11824, '2005-08-17 12:37:54', 2639, 1, '2005-08-19 10:11:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11825, '2005-08-17 12:43:30', 2656, 296, '2005-08-20 15:25:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11826, '2005-08-17 12:43:46', 1837, 536, '2005-08-19 16:59:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11827, '2005-08-17 12:44:27', 3064, 523, '2005-08-24 13:31:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11828, '2005-08-17 12:48:28', 2593, 268, '2005-08-24 09:24:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11829, '2005-08-17 12:52:04', 2207, 563, '2005-08-19 10:50:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11830, '2005-08-17 12:53:15', 3713, 522, '2005-08-25 08:08:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11831, '2005-08-17 12:54:47', 4562, 32, '2005-08-21 11:21:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11832, '2005-08-17 12:55:31', 2331, 125, '2005-08-19 08:31:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11833, '2005-08-17 13:00:33', 3728, 424, '2005-08-18 13:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11834, '2005-08-17 13:00:40', 2407, 261, '2005-08-22 12:50:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11835, '2005-08-17 13:03:13', 2796, 479, '2005-08-19 10:50:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11836, '2005-08-17 13:03:36', 2253, 198, '2005-08-19 17:15:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11837, '2005-08-17 13:04:41', 1085, 81, '2005-08-26 14:19:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11838, '2005-08-17 13:06:00', 3576, 161, '2005-08-20 11:44:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11839, '2005-08-17 13:08:45', 2282, 80, '2005-08-18 15:05:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11840, '2005-08-17 13:09:01', 1824, 491, '2005-08-19 17:42:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11841, '2005-08-17 13:12:20', 1524, 270, '2005-08-21 11:16:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11842, '2005-08-17 13:13:37', 2680, 422, '2005-08-20 08:32:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11843, '2005-08-17 13:14:50', 3091, 187, '2005-08-22 11:31:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11844, '2005-08-17 13:16:04', 3791, 368, '2005-08-18 10:16:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11845, '2005-08-17 13:16:38', 14, 65, '2005-08-18 11:21:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11846, '2005-08-17 13:18:29', 3306, 283, '2005-08-22 18:05:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11847, '2006-02-14 15:16:03', 1784, 337, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11848, '2006-02-14 15:16:03', 3680, 152, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11849, '2005-08-17 13:24:55', 1191, 92, '2005-08-22 12:50:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11850, '2005-08-17 13:30:15', 1437, 80, '2005-08-21 17:24:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11851, '2005-08-17 13:30:27', 3225, 376, '2005-08-20 15:34:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11852, '2005-08-17 13:38:27', 2358, 596, '2005-08-24 08:50:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11853, '2005-08-17 13:39:32', 3888, 6, '2005-08-23 18:44:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11854, '2005-08-17 13:42:52', 137, 313, '2005-08-26 14:04:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11855, '2005-08-17 13:43:07', 1062, 535, '2005-08-26 08:07:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11856, '2005-08-17 13:44:49', 305, 28, '2005-08-21 17:20:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11857, '2005-08-17 13:48:30', 101, 146, '2005-08-18 15:55:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11858, '2005-08-17 13:50:31', 3483, 503, '2005-08-19 08:45:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11859, '2005-08-17 13:51:20', 423, 144, '2005-08-21 13:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11860, '2005-08-17 13:52:26', 4354, 257, '2005-08-24 14:47:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11861, '2005-08-17 13:53:47', 2674, 232, '2005-08-21 16:07:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11862, '2005-08-17 13:54:53', 2604, 529, '2005-08-19 10:48:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11863, '2005-08-17 13:56:01', 1003, 112, '2005-08-23 18:38:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11864, '2005-08-17 14:02:01', 2985, 96, '2005-08-21 19:54:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11865, '2005-08-17 14:03:46', 2577, 345, '2005-08-19 08:39:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11866, '2006-02-14 15:16:03', 2758, 200, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11867, '2005-08-17 14:04:28', 938, 434, '2005-08-21 10:08:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11868, '2005-08-17 14:05:34', 2909, 445, '2005-08-19 15:47:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11869, '2005-08-17 14:10:22', 3453, 19, '2005-08-24 18:39:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11870, '2005-08-17 14:11:28', 4251, 432, '2005-08-24 16:43:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11871, '2005-08-17 14:11:44', 3013, 484, '2005-08-18 17:50:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11872, '2005-08-17 14:11:45', 4306, 113, '2005-08-21 17:02:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11873, '2005-08-17 14:14:39', 4021, 554, '2005-08-18 17:20:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11874, '2005-08-17 14:16:40', 2637, 467, '2005-08-18 15:51:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11875, '2005-08-17 14:16:48', 1787, 294, '2005-08-26 14:20:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11876, '2005-08-17 14:18:21', 3982, 426, '2005-08-20 19:48:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11877, '2005-08-17 14:21:11', 4528, 445, '2005-08-25 19:46:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11878, '2005-08-17 14:23:52', 255, 549, '2005-08-21 14:23:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11879, '2005-08-17 14:25:09', 2500, 312, '2005-08-26 09:19:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11880, '2005-08-17 14:28:28', 1539, 597, '2005-08-26 12:32:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11881, '2005-08-17 14:31:56', 3124, 272, '2005-08-21 11:05:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11882, '2005-08-17 14:33:41', 2401, 234, '2005-08-26 17:25:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11883, '2005-08-17 14:41:28', 221, 551, '2005-08-19 09:54:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11884, '2005-08-17 14:43:23', 797, 178, '2005-08-25 15:38:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11885, '2005-08-17 14:53:53', 3931, 481, '2005-08-22 10:59:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11886, '2005-08-17 14:58:51', 608, 204, '2005-08-19 16:07:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11887, '2005-08-17 15:03:13', 3290, 54, '2005-08-19 09:49:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11888, '2005-08-17 15:04:05', 1100, 160, '2005-08-25 18:52:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11889, '2005-08-17 15:08:27', 293, 395, '2005-08-18 17:10:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11890, '2005-08-17 15:08:43', 3023, 487, '2005-08-26 14:56:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11891, '2005-08-17 15:11:55', 2619, 115, '2005-08-22 11:11:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11892, '2005-08-17 15:13:21', 746, 227, '2005-08-21 09:19:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11893, '2005-08-17 15:13:29', 2321, 496, '2005-08-25 11:09:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11894, '2005-08-17 15:15:01', 1223, 67, '2005-08-26 13:49:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11895, '2005-08-17 15:15:07', 2156, 236, '2005-08-18 11:00:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11896, '2005-08-17 15:19:54', 259, 436, '2005-08-24 18:22:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11897, '2005-08-17 15:24:06', 3904, 238, '2005-08-23 11:50:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11898, '2005-08-17 15:24:12', 3163, 169, '2005-08-24 13:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11899, '2005-08-17 15:29:12', 3179, 84, '2005-08-24 17:41:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11900, '2005-08-17 15:30:44', 1931, 239, '2005-08-19 16:12:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11901, '2005-08-17 15:35:47', 4274, 70, '2005-08-20 10:33:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11902, '2005-08-17 15:37:34', 1387, 63, '2005-08-22 17:28:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11903, '2005-08-17 15:37:45', 1196, 542, '2005-08-23 18:31:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11904, '2005-08-17 15:39:26', 2846, 145, '2005-08-21 18:24:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11905, '2005-08-17 15:40:18', 2725, 349, '2005-08-26 15:14:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11906, '2005-08-17 15:40:46', 325, 478, '2005-08-20 15:20:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11907, '2005-08-17 15:40:47', 3928, 505, '2005-08-20 19:55:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11908, '2005-08-17 15:43:09', 3390, 314, '2005-08-24 14:32:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11909, '2006-02-14 15:16:03', 871, 474, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11910, '2005-08-17 15:44:37', 4254, 418, '2005-08-19 10:58:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11911, '2005-08-17 15:51:35', 3578, 472, '2005-08-26 20:26:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11912, '2005-08-17 15:51:49', 744, 573, '2005-08-24 18:48:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11913, '2005-08-17 15:53:17', 741, 295, '2005-08-24 18:50:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11914, '2005-08-17 16:04:42', 1634, 230, '2005-08-22 19:29:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11915, '2005-08-17 16:05:28', 1557, 269, '2005-08-25 19:53:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11916, '2005-08-17 16:05:51', 2631, 86, '2005-08-20 10:23:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11917, '2005-08-17 16:08:17', 1608, 270, '2005-08-20 20:01:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11918, '2005-08-17 16:08:42', 2169, 533, '2005-08-20 20:12:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11919, '2005-08-17 16:08:49', 4497, 40, '2005-08-20 16:59:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11920, '2005-08-17 16:10:19', 4253, 402, '2005-08-20 13:54:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11921, '2005-08-17 16:12:27', 494, 485, '2005-08-25 22:07:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11922, '2005-08-17 16:20:37', 3707, 15, '2005-08-26 16:53:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11923, '2005-08-17 16:21:47', 1907, 72, '2005-08-18 14:26:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11924, '2005-08-17 16:22:05', 1711, 202, '2005-08-26 12:34:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11925, '2005-08-17 16:23:04', 1441, 370, '2005-08-21 11:38:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11926, '2005-08-17 16:25:02', 2111, 516, '2005-08-22 11:36:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11927, '2005-08-17 16:25:03', 3134, 178, '2005-08-23 16:41:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11928, '2005-08-17 16:28:24', 79, 261, '2005-08-23 17:50:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11929, '2005-08-17 16:28:51', 3765, 327, '2005-08-25 19:36:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11930, '2005-08-17 16:28:53', 1299, 5, '2005-08-25 10:31:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11931, '2005-08-17 16:35:14', 2022, 242, '2005-08-19 19:16:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11932, '2005-08-17 16:36:12', 151, 364, '2005-08-18 19:34:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11933, '2005-08-17 16:38:20', 2574, 438, '2005-08-22 14:31:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11934, '2005-08-17 16:40:00', 1230, 596, '2005-08-20 20:13:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11935, '2005-08-17 16:42:13', 1640, 66, '2005-08-22 20:38:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11936, '2005-08-17 16:45:34', 1127, 380, '2005-08-21 13:33:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11937, '2005-08-17 16:48:36', 2926, 515, '2005-08-24 19:01:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11938, '2005-08-17 16:54:54', 3927, 426, '2005-08-24 19:18:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11939, '2005-08-17 16:55:57', 3305, 516, '2005-08-24 21:36:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11940, '2005-08-17 16:56:28', 1188, 163, '2005-08-18 15:09:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11941, '2005-08-17 16:56:57', 159, 566, '2005-08-24 16:29:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11942, '2006-02-14 15:16:03', 4094, 576, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11943, '2005-08-17 17:00:42', 4466, 69, '2005-08-26 22:07:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11944, '2005-08-17 17:02:42', 27, 389, '2005-08-21 16:40:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11945, '2005-08-17 17:05:33', 1108, 380, '2005-08-20 18:37:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11946, '2005-08-17 17:05:53', 2953, 569, '2005-08-19 13:56:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11947, '2005-08-17 17:08:13', 2928, 220, '2005-08-23 21:53:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11948, '2005-08-17 17:11:05', 3329, 40, '2005-08-25 21:16:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11949, '2005-08-17 17:12:26', 854, 198, '2005-08-23 20:48:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11950, '2005-08-17 17:13:16', 4412, 190, '2005-08-26 21:25:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11951, '2005-08-17 17:14:02', 1394, 155, '2005-08-26 12:04:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11952, '2005-08-17 17:14:57', 2411, 288, '2005-08-19 19:15:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11953, '2005-08-17 17:16:42', 2993, 399, '2005-08-23 18:28:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11954, '2005-08-17 17:18:36', 220, 145, '2005-08-18 19:49:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11955, '2005-08-17 17:21:35', 1221, 319, '2005-08-24 22:06:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11956, '2005-08-17 17:22:05', 2533, 457, '2005-08-25 22:19:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11957, '2005-08-17 17:22:29', 1924, 198, '2005-08-23 21:47:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11958, '2005-08-17 17:23:20', 2061, 217, '2005-08-24 14:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11959, '2005-08-17 17:23:35', 2694, 101, '2005-08-20 20:57:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11960, '2005-08-17 17:24:30', 3924, 84, '2005-08-18 14:28:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11961, '2005-08-17 17:28:01', 2015, 276, '2005-08-21 20:43:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11962, '2005-08-17 17:34:38', 4384, 29, '2005-08-21 12:59:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11963, '2005-08-17 17:35:47', 232, 211, '2005-08-23 16:19:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11964, '2005-08-17 17:37:03', 2225, 309, '2005-08-25 11:55:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11965, '2005-08-17 17:39:45', 194, 490, '2005-08-19 12:05:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11966, '2005-08-17 17:40:04', 3702, 283, '2005-08-20 15:45:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11967, '2005-08-17 17:45:00', 1151, 521, '2005-08-22 13:03:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11968, '2005-08-17 17:47:34', 698, 239, '2005-08-18 19:40:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11969, '2005-08-17 17:49:37', 668, 550, '2005-08-19 19:45:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11970, '2005-08-17 17:53:09', 1779, 21, '2005-08-24 14:41:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11971, '2005-08-17 17:53:42', 2756, 131, '2005-08-18 12:11:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11972, '2005-08-17 17:55:46', 1282, 308, '2005-08-22 15:31:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11973, '2005-08-17 17:55:58', 1472, 131, '2005-08-21 19:55:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11974, '2005-08-17 17:56:48', 1609, 485, '2005-08-21 19:14:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11975, '2005-08-17 17:58:39', 3843, 458, '2005-08-20 19:11:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11976, '2005-08-17 17:59:19', 498, 373, '2005-08-23 14:51:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11977, '2005-08-17 18:01:15', 1528, 536, '2005-08-23 23:03:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11978, '2005-08-17 18:02:10', 4380, 499, '2005-08-18 20:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11979, '2005-08-17 18:07:13', 568, 255, '2005-08-19 23:12:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11980, '2005-08-17 18:10:18', 4165, 589, '2005-08-20 13:28:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11981, '2005-08-17 18:10:40', 3228, 294, '2005-08-20 16:56:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11982, '2005-08-17 18:13:07', 118, 186, '2005-08-18 19:06:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11983, '2005-08-17 18:13:55', 2580, 304, '2005-08-23 18:27:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11984, '2005-08-17 18:16:30', 3577, 96, '2005-08-24 21:09:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11985, '2005-08-17 18:19:44', 2208, 198, '2005-08-18 19:14:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11986, '2005-08-17 18:21:58', 1610, 352, '2005-08-18 13:05:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11987, '2005-08-17 18:21:59', 1478, 494, '2005-08-25 19:20:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11988, '2005-08-17 18:23:50', 3429, 62, '2005-08-18 22:30:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11989, '2005-08-17 18:23:58', 3686, 439, '2005-08-20 20:31:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11990, '2005-08-17 18:26:22', 3012, 17, '2005-08-19 14:34:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11991, '2005-08-17 18:27:08', 940, 361, '2005-08-25 14:07:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11992, '2005-08-17 18:27:22', 4132, 136, '2005-08-26 22:38:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11993, '2005-08-17 18:27:49', 295, 303, '2005-08-21 00:04:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11994, '2005-08-17 18:29:35', 3428, 319, '2005-08-25 23:39:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11995, '2006-02-14 15:16:03', 3953, 69, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11996, '2005-08-17 18:34:37', 2720, 510, '2005-08-20 22:25:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11997, '2005-08-17 18:34:38', 2193, 411, '2005-08-26 00:12:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11998, '2005-08-17 18:46:21', 4258, 299, '2005-08-18 20:29:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (11999, '2005-08-17 18:47:07', 4333, 125, '2005-08-20 23:26:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12000, '2005-08-17 18:49:44', 2256, 149, '2005-08-24 16:34:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12001, '2006-02-14 15:16:03', 4158, 52, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12002, '2005-08-17 18:56:02', 1386, 75, '2005-08-20 17:36:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12003, '2005-08-17 18:56:05', 3868, 70, '2005-08-18 23:52:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12004, '2005-08-17 18:56:53', 2690, 499, '2005-08-26 14:56:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12005, '2005-08-17 18:56:55', 2062, 403, '2005-08-25 20:23:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12006, '2005-08-17 19:09:12', 4072, 272, '2005-08-24 13:50:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12007, '2005-08-17 19:10:34', 3007, 268, '2005-08-24 14:09:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12008, '2005-08-17 19:16:18', 865, 562, '2005-08-18 14:24:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12009, '2006-02-14 15:16:03', 2134, 296, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12010, '2005-08-17 19:17:54', 1076, 554, '2005-08-26 00:41:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12011, '2005-08-17 19:19:44', 495, 313, '2005-08-23 00:56:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12012, '2005-08-17 19:20:48', 2698, 69, '2005-08-22 16:50:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12013, '2005-08-17 19:23:02', 3530, 586, '2005-08-23 00:31:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12014, '2005-08-17 19:29:44', 1778, 554, '2005-08-23 20:40:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12015, '2005-08-17 19:32:44', 593, 11, '2005-08-23 13:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12016, '2005-08-17 19:33:24', 2109, 327, '2005-08-21 19:59:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12017, '2005-08-17 19:33:49', 344, 573, '2005-08-22 01:16:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12018, '2005-08-17 19:44:46', 1921, 319, '2005-08-26 20:24:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12019, '2005-08-17 19:48:55', 2566, 90, '2005-08-21 18:20:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12020, '2005-08-17 19:50:33', 3258, 72, '2005-08-25 17:54:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12021, '2005-08-17 19:52:43', 3977, 27, '2005-08-23 21:49:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12022, '2005-08-17 19:52:45', 2067, 461, '2005-08-18 18:26:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12023, '2005-08-17 19:54:54', 247, 22, '2005-08-26 23:03:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12024, '2005-08-17 19:57:34', 2398, 484, '2005-08-21 23:00:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12025, '2005-08-17 19:59:06', 4019, 209, '2005-08-23 14:39:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12026, '2005-08-17 20:00:10', 1568, 468, '2005-08-26 01:54:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12027, '2005-08-17 20:01:12', 45, 285, '2005-08-26 21:08:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12028, '2005-08-17 20:03:47', 607, 316, '2005-08-23 17:09:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12029, '2005-08-17 20:07:01', 3516, 148, '2005-08-19 19:36:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12030, '2005-08-17 20:10:48', 449, 434, '2005-08-19 00:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12031, '2005-08-17 20:11:35', 2793, 10, '2005-08-24 23:48:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12032, '2005-08-17 20:14:26', 1106, 141, '2005-08-26 16:01:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12033, '2005-08-17 20:14:34', 2731, 321, '2005-08-26 00:22:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12034, '2005-08-17 20:15:31', 834, 321, '2005-08-24 15:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12035, '2005-08-17 20:18:06', 2335, 469, '2005-08-21 16:41:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12036, '2005-08-17 20:19:06', 3620, 85, '2005-08-18 19:57:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12037, '2005-08-17 20:21:35', 766, 356, '2005-08-22 17:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12038, '2005-08-17 20:28:26', 3794, 148, '2005-08-20 23:09:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12039, '2005-08-17 20:29:08', 4404, 563, '2005-08-23 21:20:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12040, '2005-08-17 20:29:56', 1288, 558, '2005-08-26 22:17:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12041, '2005-08-17 20:34:33', 2389, 295, '2005-08-19 00:47:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12042, '2005-08-17 20:36:37', 1772, 570, '2005-08-21 15:03:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12043, '2005-08-17 20:38:21', 3706, 592, '2005-08-22 16:52:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12044, '2005-08-17 20:39:37', 3377, 388, '2005-08-19 18:34:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12045, '2005-08-17 20:40:46', 469, 556, '2005-08-20 18:18:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12046, '2005-08-17 20:47:46', 3895, 435, '2005-08-19 16:09:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12047, '2005-08-17 20:48:32', 3886, 251, '2005-08-26 00:07:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12048, '2005-08-17 20:49:24', 3773, 466, '2005-08-27 02:01:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12049, '2005-08-17 20:53:27', 2433, 178, '2005-08-26 19:45:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12050, '2005-08-17 20:55:25', 2348, 405, '2005-08-22 20:31:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12051, '2005-08-17 20:56:15', 4001, 579, '2005-08-25 19:08:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12052, '2005-08-17 20:57:02', 99, 536, '2005-08-25 19:04:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12053, '2005-08-17 20:57:27', 4448, 280, '2005-08-20 19:51:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12054, '2005-08-17 20:59:56', 3780, 53, '2005-08-23 19:57:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12055, '2005-08-17 21:02:19', 1481, 35, '2005-08-18 15:24:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12056, '2005-08-17 21:03:48', 1091, 460, '2005-08-21 22:42:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12057, '2005-08-17 21:04:35', 1878, 263, '2005-08-25 00:17:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12058, '2005-08-17 21:07:41', 2438, 540, '2005-08-26 16:07:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12059, '2005-08-17 21:09:23', 4111, 393, '2005-08-25 23:09:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12060, '2005-08-17 21:11:57', 2373, 127, '2005-08-21 01:42:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12061, '2005-08-17 21:13:35', 144, 532, '2005-08-22 19:18:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12062, '2005-08-17 21:24:47', 1791, 330, '2005-08-20 20:35:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12063, '2005-08-17 21:24:48', 1141, 550, '2005-08-23 22:10:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12064, '2006-02-14 15:16:03', 298, 284, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12065, '2005-08-17 21:31:46', 3644, 77, '2005-08-26 02:26:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12066, '2006-02-14 15:16:03', 2474, 267, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12067, '2005-08-17 21:36:47', 2013, 514, '2005-08-22 01:10:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12068, '2005-08-17 21:37:08', 4327, 388, '2005-08-26 00:10:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12069, '2005-08-17 21:39:40', 631, 389, '2005-08-22 01:12:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12070, '2005-08-17 21:46:47', 1357, 158, '2005-08-22 22:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12071, '2005-08-17 21:49:14', 1874, 507, '2005-08-22 18:20:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12072, '2005-08-17 21:50:25', 209, 61, '2005-08-25 22:36:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12073, '2005-08-17 21:50:39', 2939, 173, '2005-08-21 02:59:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12074, '2005-08-17 21:50:57', 711, 417, '2005-08-20 00:58:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12075, '2005-08-17 21:54:55', 3147, 125, '2005-08-23 23:04:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12076, '2005-08-17 21:58:19', 4278, 298, '2005-08-20 22:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12077, '2005-08-17 21:59:14', 3589, 550, '2005-08-22 03:23:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12078, '2005-08-17 22:00:22', 684, 137, '2005-08-24 02:54:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12079, '2005-08-17 22:04:17', 646, 230, '2005-08-24 20:22:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12080, '2005-08-17 22:08:04', 1491, 394, '2005-08-19 22:55:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12081, '2005-08-17 22:10:46', 620, 597, '2005-08-22 22:37:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12082, '2005-08-17 22:13:15', 3435, 521, '2005-08-24 18:30:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12083, '2005-08-17 22:13:37', 1985, 474, '2005-08-19 19:01:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12084, '2005-08-17 22:16:49', 2706, 60, '2005-08-24 17:42:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12085, '2005-08-17 22:17:09', 600, 31, '2005-08-21 01:45:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12086, '2005-08-17 22:20:01', 3963, 140, '2005-08-26 02:14:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12087, '2005-08-17 22:20:12', 324, 144, '2005-08-20 02:11:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12088, '2005-08-17 22:20:16', 1754, 360, '2005-08-25 23:30:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12089, '2005-08-17 22:20:29', 651, 538, '2005-08-24 02:12:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12090, '2005-08-17 22:21:43', 3392, 391, '2005-08-20 23:53:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12091, '2005-08-17 22:22:50', 2161, 555, '2005-08-27 03:55:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12092, '2005-08-17 22:28:15', 3964, 38, '2005-08-18 16:46:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12093, '2005-08-17 22:28:40', 216, 141, '2005-08-22 02:05:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12094, '2005-08-17 22:31:04', 1050, 130, '2005-08-23 22:45:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12095, '2005-08-17 22:32:37', 1089, 46, '2005-08-20 04:00:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12096, '2005-08-17 22:32:50', 44, 463, '2005-08-25 03:33:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12097, '2005-08-17 22:35:24', 4135, 325, '2005-08-18 20:31:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12098, '2005-08-17 22:38:31', 534, 545, '2005-08-20 01:56:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12099, '2005-08-17 22:38:54', 1743, 195, '2005-08-18 21:29:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12100, '2005-08-17 22:41:10', 4365, 391, '2005-08-24 21:31:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12102, '2005-08-17 22:45:26', 4268, 392, '2005-08-24 01:47:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12103, '2005-08-17 22:49:09', 4363, 153, '2005-08-24 21:53:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12104, '2005-08-17 22:53:00', 4551, 16, '2005-08-23 19:49:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12105, '2005-08-17 22:54:45', 2848, 390, '2005-08-21 00:33:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12106, '2005-08-17 22:55:32', 3234, 465, '2005-08-19 23:55:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12107, '2005-08-17 22:56:24', 1060, 141, '2005-08-24 19:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12108, '2005-08-17 22:56:39', 1675, 207, '2005-08-26 19:37:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12109, '2005-08-17 22:58:35', 1423, 509, '2005-08-25 19:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12110, '2005-08-17 22:59:46', 2984, 511, '2005-08-23 17:51:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12111, '2005-08-17 22:59:55', 2905, 317, '2005-08-22 19:33:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12112, '2005-08-17 23:00:31', 4290, 576, '2005-08-25 02:05:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12113, '2005-08-17 23:01:00', 2707, 393, '2005-08-25 03:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12114, '2005-08-17 23:02:00', 1405, 65, '2005-08-26 18:02:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12115, '2005-08-17 23:04:15', 1228, 457, '2005-08-20 22:25:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12116, '2006-02-14 15:16:03', 3082, 560, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12117, '2005-08-17 23:11:12', 4140, 303, '2005-08-22 23:56:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12118, '2005-08-17 23:14:25', 158, 89, '2005-08-26 22:26:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12119, '2005-08-17 23:16:44', 4298, 567, '2005-08-20 02:13:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12120, '2005-08-17 23:16:46', 2912, 323, '2005-08-19 00:11:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12121, '2005-08-17 23:20:40', 3423, 69, '2005-08-22 21:30:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12122, '2005-08-17 23:20:45', 4030, 375, '2005-08-25 04:23:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12123, '2005-08-17 23:22:18', 361, 497, '2005-08-19 23:36:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12124, '2005-08-17 23:22:46', 2036, 22, '2005-08-21 01:40:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12125, '2005-08-17 23:24:25', 136, 573, '2005-08-25 03:08:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12126, '2005-08-17 23:25:21', 2304, 302, '2005-08-23 21:51:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12127, '2006-02-14 15:16:03', 4218, 582, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12128, '2005-08-17 23:31:09', 2252, 415, '2005-08-24 05:07:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12129, '2005-08-17 23:31:25', 891, 146, '2005-08-26 19:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12130, '2006-02-14 15:16:03', 1358, 516, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12131, '2005-08-17 23:34:16', 3380, 21, '2005-08-26 01:18:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12132, '2005-08-17 23:37:03', 2600, 403, '2005-08-22 04:53:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12133, '2005-08-17 23:47:16', 1958, 132, '2005-08-19 03:46:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12134, '2005-08-17 23:49:43', 2682, 288, '2005-08-21 21:00:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12135, '2005-08-17 23:50:24', 1019, 381, '2005-08-23 18:01:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12136, '2005-08-17 23:51:30', 3944, 527, '2005-08-23 01:35:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12137, '2005-08-17 23:52:26', 3632, 109, '2005-08-27 00:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12138, '2005-08-17 23:55:54', 388, 317, '2005-08-26 23:32:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12139, '2005-08-17 23:57:13', 1537, 342, '2005-08-24 19:13:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12140, '2005-08-17 23:57:55', 322, 408, '2005-08-21 20:09:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12141, '2006-02-14 15:16:03', 731, 101, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12142, '2005-08-18 00:04:12', 3748, 373, '2005-08-24 01:24:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12143, '2005-08-18 00:06:26', 2876, 117, '2005-08-24 02:45:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12144, '2006-02-14 15:16:03', 512, 587, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12145, '2005-08-18 00:10:04', 3482, 5, '2005-08-26 00:51:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12146, '2005-08-18 00:10:04', 3833, 434, '2005-08-25 19:18:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12147, '2005-08-18 00:10:20', 705, 41, '2005-08-23 20:36:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12148, '2005-08-18 00:13:15', 2409, 254, '2005-08-20 01:27:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12149, '2005-08-18 00:13:51', 3696, 277, '2005-08-26 19:47:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12150, '2005-08-18 00:13:55', 3781, 555, '2005-08-20 23:35:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12151, '2005-08-18 00:14:03', 1976, 4, '2005-08-18 23:52:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12152, '2005-08-18 00:21:35', 2797, 367, '2005-08-22 02:51:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12153, '2005-08-18 00:22:30', 3929, 387, '2005-08-23 04:13:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12154, '2005-08-18 00:23:56', 2491, 163, '2005-08-21 00:31:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12155, '2005-08-18 00:24:30', 2065, 315, '2005-08-18 19:12:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12156, '2005-08-18 00:27:33', 3270, 212, '2005-08-26 01:43:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12157, '2005-08-18 00:33:45', 2311, 569, '2005-08-22 19:33:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12158, '2005-08-18 00:34:20', 4121, 289, '2005-08-22 20:10:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12159, '2005-08-18 00:36:09', 2243, 106, '2005-08-27 06:31:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12160, '2005-08-18 00:37:59', 1328, 481, '2005-08-19 20:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12161, '2005-08-18 00:41:46', 2420, 444, '2005-08-26 22:59:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12162, '2005-08-18 00:44:30', 2697, 284, '2005-08-25 03:34:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12163, '2005-08-18 00:46:01', 1349, 455, '2005-08-22 06:16:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12164, '2005-08-18 00:46:38', 3849, 587, '2005-08-19 04:38:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12165, '2005-08-18 00:53:37', 4215, 24, '2005-08-27 00:09:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12166, '2005-08-18 00:57:06', 3627, 184, '2005-08-26 03:13:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12167, '2005-08-18 01:00:02', 3085, 338, '2005-08-21 00:04:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12168, '2005-08-18 01:03:52', 2859, 535, '2005-08-18 20:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12169, '2005-08-18 01:05:54', 2281, 323, '2005-08-24 02:16:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12170, '2005-08-18 01:06:10', 1125, 289, '2005-08-25 02:40:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12171, '2005-08-18 01:06:13', 454, 457, '2005-08-22 19:39:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12172, '2005-08-18 01:07:00', 1162, 226, '2005-08-22 21:01:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12173, '2005-08-18 01:08:34', 2830, 41, '2005-08-24 20:52:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12174, '2005-08-18 01:08:53', 1458, 101, '2005-08-20 03:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12175, '2005-08-18 01:10:17', 4558, 328, '2005-08-19 05:25:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12176, '2005-08-18 01:10:33', 3873, 255, '2005-08-24 02:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12177, '2005-08-18 01:15:47', 522, 470, '2005-08-24 23:23:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12178, '2005-08-18 01:17:32', 1152, 276, '2005-08-25 19:32:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12179, '2005-08-18 01:21:21', 1499, 222, '2005-08-19 00:59:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12180, '2005-08-18 01:28:15', 2276, 20, '2005-08-20 20:52:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12181, '2005-08-18 01:28:18', 532, 81, '2005-08-23 21:17:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12182, '2005-08-18 01:30:19', 296, 555, '2005-08-21 05:52:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12183, '2005-08-18 01:34:13', 3153, 344, '2005-08-24 04:38:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12184, '2005-08-18 01:36:00', 1723, 51, '2005-08-21 01:59:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12185, '2005-08-18 01:40:14', 1558, 588, '2005-08-25 05:04:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12186, '2005-08-18 01:43:36', 1342, 312, '2005-08-23 07:13:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12187, '2005-08-18 01:45:50', 3360, 38, '2005-08-22 20:12:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12188, '2005-08-18 01:51:43', 2989, 456, '2005-08-18 22:23:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12189, '2005-08-18 01:51:44', 1764, 363, '2005-08-26 01:01:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12190, '2005-08-18 01:54:44', 2464, 28, '2005-08-27 04:32:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12191, '2005-08-18 01:57:11', 2667, 316, '2005-08-22 22:53:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12192, '2005-08-18 02:01:40', 3450, 270, '2005-08-21 05:45:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12193, '2005-08-18 02:03:59', 1086, 290, '2005-08-25 05:32:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12194, '2005-08-18 02:04:47', 292, 558, '2005-08-25 20:45:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12195, '2005-08-18 02:07:49', 943, 347, '2005-08-19 23:54:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12196, '2005-08-18 02:08:48', 4302, 111, '2005-08-26 00:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12197, '2005-08-18 02:08:58', 3687, 564, '2005-08-26 21:54:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12198, '2005-08-18 02:09:20', 1628, 86, '2005-08-21 21:28:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12199, '2005-08-18 02:09:23', 424, 96, '2005-08-22 20:33:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12200, '2005-08-18 02:12:33', 840, 52, '2005-08-18 20:47:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12201, '2005-08-18 02:14:06', 3676, 540, '2005-08-23 04:44:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12202, '2005-08-18 02:14:08', 672, 563, '2005-08-24 04:35:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12203, '2005-08-18 02:18:52', 4228, 591, '2005-08-22 21:01:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12204, '2005-08-18 02:20:35', 304, 575, '2005-08-26 01:27:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12205, '2005-08-18 02:21:08', 774, 437, '2005-08-27 00:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12206, '2005-08-18 02:22:20', 3275, 254, '2005-08-23 05:36:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12207, '2005-08-18 02:24:07', 3745, 265, '2005-08-22 07:53:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12208, '2005-08-18 02:25:25', 2039, 551, '2005-08-20 04:53:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12209, '2005-08-18 02:27:20', 279, 243, '2005-08-21 00:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12210, '2005-08-18 02:27:29', 3035, 217, '2005-08-20 23:32:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12211, '2005-08-18 02:31:18', 1484, 19, '2005-08-26 02:36:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12212, '2005-08-18 02:33:29', 3898, 449, '2005-08-25 07:10:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12213, '2005-08-18 02:33:55', 4058, 157, '2005-08-24 03:14:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12214, '2005-08-18 02:34:22', 2094, 231, '2005-08-21 07:48:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12215, '2005-08-18 02:35:39', 4095, 47, '2005-08-24 00:36:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12216, '2005-08-18 02:37:07', 4139, 131, '2005-08-19 02:09:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12217, '2005-08-18 02:44:44', 2556, 105, '2005-08-24 03:27:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12218, '2005-08-18 02:48:14', 1933, 70, '2005-08-21 01:52:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12219, '2005-08-18 02:49:54', 2249, 271, '2005-08-23 07:52:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12220, '2005-08-18 02:50:02', 982, 530, '2005-08-22 00:20:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12221, '2005-08-18 02:50:51', 2488, 98, '2005-08-27 06:22:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12222, '2006-02-14 15:16:03', 3949, 22, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12223, '2005-08-18 02:58:40', 4142, 397, '2005-08-23 23:30:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12224, '2005-08-18 02:59:09', 1781, 372, '2005-08-19 06:22:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12225, '2005-08-18 03:00:11', 1876, 306, '2005-08-24 05:01:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12226, '2005-08-18 03:00:48', 682, 234, '2005-08-25 00:43:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12227, '2005-08-18 03:04:28', 3671, 591, '2005-08-21 08:52:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12228, '2005-08-18 03:08:10', 2772, 9, '2005-08-20 02:48:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12229, '2005-08-18 03:08:23', 1123, 382, '2005-08-22 03:42:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12230, '2005-08-18 03:11:04', 1910, 231, '2005-08-27 04:06:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12231, '2005-08-18 03:11:44', 1115, 231, '2005-08-24 03:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12232, '2005-08-18 03:14:14', 2399, 87, '2005-08-19 05:44:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12233, '2005-08-18 03:16:54', 174, 535, '2005-08-22 04:48:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12234, '2005-08-18 03:17:33', 3823, 352, '2005-08-25 04:44:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12235, '2005-08-18 03:17:50', 957, 595, '2005-08-20 02:49:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12236, '2005-08-18 03:19:29', 1190, 474, '2005-08-23 07:39:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12237, '2005-08-18 03:24:38', 4422, 381, '2005-08-25 09:05:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12238, '2005-08-18 03:25:08', 4043, 46, '2005-08-20 02:41:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12239, '2005-08-18 03:26:42', 1948, 75, '2005-08-24 23:48:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12240, '2005-08-18 03:27:11', 1168, 30, '2005-08-26 04:34:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12241, '2005-08-18 03:33:17', 1261, 248, '2005-08-21 03:13:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12242, '2005-08-18 03:37:31', 2095, 121, '2005-08-25 06:50:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12243, '2005-08-18 03:38:54', 1829, 354, '2005-08-27 06:56:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12244, '2005-08-18 03:39:11', 4441, 362, '2005-08-21 02:57:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12245, '2005-08-18 03:46:40', 2960, 576, '2005-08-24 22:27:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12246, '2005-08-18 03:48:41', 3199, 258, '2005-08-25 05:12:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12247, '2005-08-18 03:51:51', 2264, 254, '2005-08-24 05:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12248, '2005-08-18 03:53:18', 2120, 562, '2005-08-22 04:53:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12249, '2005-08-18 03:53:34', 3586, 135, '2005-08-21 01:14:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12250, '2005-08-18 03:57:29', 921, 1, '2005-08-22 23:05:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12251, '2005-08-18 03:59:02', 3044, 276, '2005-08-19 02:38:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12252, '2005-08-18 03:59:51', 127, 350, '2005-08-25 08:54:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12253, '2005-08-18 04:00:50', 566, 446, '2005-08-19 04:43:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12254, '2005-08-18 04:05:29', 2858, 6, '2005-08-23 04:17:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12255, '2005-08-18 04:07:20', 2100, 266, '2005-08-21 22:19:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12256, '2005-08-18 04:09:39', 2975, 572, '2005-08-22 01:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12257, '2005-08-18 04:11:03', 269, 87, '2005-08-25 01:20:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12258, '2005-08-18 04:11:13', 2861, 83, '2005-08-21 23:40:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12259, '2005-08-18 04:14:35', 2904, 429, '2005-08-18 22:30:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12260, '2005-08-18 04:15:43', 1352, 150, '2005-08-26 23:31:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12261, '2005-08-18 04:16:06', 4076, 485, '2005-08-27 08:04:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12262, '2005-08-18 04:16:15', 591, 125, '2005-08-20 09:16:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12263, '2005-08-18 04:16:18', 4053, 131, '2005-08-21 07:22:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12264, '2005-08-18 04:17:33', 3073, 87, '2005-08-26 08:07:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12265, '2005-08-18 04:22:01', 537, 247, '2005-08-20 03:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12266, '2005-08-18 04:22:31', 2192, 467, '2005-08-19 04:25:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12267, '2005-08-18 04:24:30', 652, 388, '2005-08-26 03:01:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12268, '2005-08-18 04:26:54', 93, 39, '2005-08-23 06:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12269, '2005-08-18 04:27:54', 724, 573, '2005-08-25 07:03:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12270, '2005-08-18 04:32:05', 2456, 190, '2005-08-21 01:37:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12271, '2005-08-18 04:33:11', 3866, 471, '2005-08-20 23:10:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12272, '2005-08-18 04:39:10', 1964, 15, '2005-08-24 09:41:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12273, '2005-08-18 04:40:50', 3539, 431, '2005-08-25 01:44:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12274, '2005-08-18 04:41:47', 265, 47, '2005-08-27 07:00:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12275, '2005-08-18 04:42:02', 1474, 507, '2005-08-25 00:50:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12276, '2005-08-18 04:43:22', 4491, 397, '2005-08-22 01:49:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12277, '2006-02-14 15:16:03', 407, 33, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12278, '2005-08-18 04:46:45', 3205, 294, '2005-08-24 08:59:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12279, '2005-08-18 04:47:30', 4159, 421, '2005-08-19 09:47:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12280, '2005-08-18 04:49:27', 4032, 46, '2005-08-21 03:39:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12281, '2005-08-18 04:50:32', 4576, 417, '2005-08-21 00:14:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12282, '2005-08-18 04:54:20', 3623, 173, '2005-08-23 05:28:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12283, '2005-08-18 04:54:25', 574, 240, '2005-08-23 04:02:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12284, '2005-08-18 04:55:49', 3162, 147, '2005-08-22 08:45:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12285, '2005-08-18 04:56:43', 3531, 215, '2005-08-19 23:32:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12286, '2005-08-18 04:57:59', 3729, 34, '2005-08-18 23:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12287, '2005-08-18 04:58:06', 2238, 136, '2005-08-24 00:06:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12288, '2005-08-18 05:01:20', 4401, 523, '2005-08-25 09:51:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12289, '2005-08-18 05:05:28', 443, 575, '2005-08-26 09:02:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12290, '2005-08-18 05:08:03', 4100, 283, '2005-08-23 08:10:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12291, '2005-08-18 05:08:37', 4270, 73, '2005-08-23 09:01:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12292, '2005-08-18 05:08:54', 1417, 58, '2005-08-27 02:51:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12293, '2005-08-18 05:13:36', 614, 514, '2005-08-25 04:00:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12294, '2005-08-18 05:14:44', 2479, 4, '2005-08-27 01:32:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12295, '2005-08-18 05:15:46', 1651, 532, '2005-08-26 02:23:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12296, '2005-08-18 05:16:28', 2091, 258, '2005-08-22 10:32:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12297, '2005-08-18 05:19:57', 903, 436, '2005-08-21 00:53:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12298, '2005-08-18 05:30:31', 904, 46, '2005-08-27 07:33:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12299, '2005-08-18 05:32:32', 892, 176, '2005-08-22 08:14:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12300, '2005-08-18 05:36:14', 3213, 540, '2005-08-25 00:20:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12301, '2005-08-18 05:36:20', 2293, 317, '2005-08-23 03:15:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12302, '2005-08-18 05:41:39', 765, 514, '2005-08-22 06:02:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12303, '2005-08-18 05:43:22', 1604, 245, '2005-08-27 08:54:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12304, '2005-08-18 05:44:29', 1381, 228, '2005-08-24 04:31:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12305, '2005-08-18 05:46:29', 4463, 534, '2005-08-22 11:14:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12306, '2005-08-18 05:47:55', 3853, 541, '2005-08-21 01:56:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12307, '2005-08-18 05:48:23', 2679, 187, '2005-08-26 02:32:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12308, '2005-08-18 05:48:53', 2877, 569, '2005-08-22 09:03:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12309, '2005-08-18 05:58:40', 762, 9, '2005-08-20 02:20:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12310, '2005-08-18 06:02:34', 3814, 385, '2005-08-24 01:08:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12311, '2005-08-18 06:07:00', 1650, 211, '2005-08-21 07:54:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12312, '2005-08-18 06:07:26', 80, 185, '2005-08-21 02:07:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12313, '2005-08-18 06:07:31', 2053, 180, '2005-08-27 00:20:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12314, '2005-08-18 06:10:02', 2204, 455, '2005-08-25 02:48:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12315, '2005-08-18 06:15:06', 2012, 579, '2005-08-24 07:45:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12316, '2005-08-18 06:16:09', 4325, 94, '2005-08-27 05:54:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12317, '2005-08-18 06:17:06', 90, 510, '2005-08-22 08:56:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12318, '2005-08-18 06:21:56', 3694, 332, '2005-08-27 06:07:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12319, '2005-08-18 06:26:45', 999, 368, '2005-08-23 01:35:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12320, '2005-08-18 06:26:51', 3248, 267, '2005-08-20 04:00:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12321, '2005-08-18 06:27:05', 516, 274, '2005-08-24 02:26:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12322, '2005-08-18 06:35:28', 4235, 365, '2005-08-23 07:34:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12323, '2005-08-18 06:36:22', 4107, 336, '2005-08-26 11:36:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12324, '2005-08-18 06:38:20', 2436, 221, '2005-08-20 02:28:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12325, '2005-08-18 06:41:30', 1844, 404, '2005-08-26 02:49:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12326, '2005-08-18 06:41:59', 1865, 114, '2005-08-19 10:16:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12327, '2005-08-18 06:43:22', 2425, 261, '2005-08-25 10:50:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12328, '2005-08-18 06:43:56', 1355, 77, '2005-08-23 10:19:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12329, '2005-08-18 06:44:30', 3127, 397, '2005-08-25 04:05:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12330, '2005-08-18 06:46:33', 889, 587, '2005-08-26 11:35:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12331, '2005-08-18 06:47:19', 4565, 483, '2005-08-25 05:51:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12332, '2005-08-18 06:51:05', 627, 235, '2005-08-20 04:28:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12333, '2005-08-18 06:51:39', 4370, 18, '2005-08-21 01:44:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12334, '2005-08-18 06:52:36', 2629, 160, '2005-08-25 12:06:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12335, '2005-08-18 06:59:15', 2776, 150, '2005-08-20 06:47:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12336, '2005-08-18 06:59:41', 2484, 75, '2005-08-23 01:36:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12337, '2005-08-18 07:02:24', 4221, 117, '2005-08-20 10:11:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12338, '2005-08-18 07:04:24', 274, 408, '2005-08-19 08:36:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12339, '2005-08-18 07:05:06', 1600, 370, '2005-08-19 02:27:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12340, '2005-08-18 07:07:01', 3561, 239, '2005-08-20 05:06:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12341, '2005-08-18 07:09:27', 130, 154, '2005-08-21 03:44:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12342, '2005-08-18 07:12:46', 1408, 63, '2005-08-21 07:44:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12343, '2005-08-18 07:15:13', 448, 507, '2005-08-27 11:07:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12344, '2005-08-18 07:15:19', 3675, 269, '2005-08-24 04:58:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12345, '2005-08-18 07:16:58', 2359, 44, '2005-08-25 05:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12346, '2005-08-18 07:17:55', 1200, 265, '2005-08-21 11:35:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12347, '2005-08-18 07:18:10', 1788, 454, '2005-08-19 05:49:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12348, '2005-08-18 07:21:47', 434, 186, '2005-08-25 04:41:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12349, '2005-08-18 07:23:42', 4191, 545, '2005-08-19 04:25:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12350, '2005-08-18 07:29:46', 1333, 172, '2005-08-21 12:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12351, '2005-08-18 07:32:12', 2299, 95, '2005-08-24 04:29:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12352, '2006-02-14 15:16:03', 643, 155, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12353, '2005-08-18 07:33:08', 1594, 141, '2005-08-21 03:42:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12354, '2005-08-18 07:34:07', 2913, 499, '2005-08-26 05:56:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12355, '2005-08-18 07:36:23', 4112, 452, '2005-08-20 08:59:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12356, '2005-08-18 07:37:05', 493, 529, '2005-08-24 10:49:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12357, '2005-08-18 07:40:52', 166, 19, '2005-08-22 02:51:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12358, '2005-08-18 07:41:43', 504, 16, '2005-08-20 03:46:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12359, '2005-08-18 07:44:05', 4172, 28, '2005-08-19 02:26:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12360, '2005-08-18 07:46:35', 929, 123, '2005-08-26 12:01:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12361, '2005-08-18 07:47:31', 1418, 250, '2005-08-22 12:08:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12362, '2005-08-18 07:48:05', 3131, 367, '2005-08-20 05:16:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12363, '2005-08-18 07:52:49', 3447, 181, '2005-08-26 03:20:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12364, '2005-08-18 07:55:09', 3398, 84, '2005-08-19 05:29:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12365, '2005-08-18 07:55:09', 4350, 303, '2005-08-24 05:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12366, '2005-08-18 07:55:14', 3799, 115, '2005-08-22 06:12:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12367, '2005-08-18 07:57:14', 1822, 7, '2005-08-27 07:07:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12368, '2005-08-18 07:57:38', 3777, 392, '2005-08-25 05:49:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12369, '2005-08-18 07:57:43', 484, 337, '2005-08-26 09:36:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12370, '2005-08-18 07:57:47', 3343, 503, '2005-08-22 11:32:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12371, '2005-08-18 08:02:46', 622, 451, '2005-08-19 02:50:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12372, '2005-08-18 08:04:35', 2982, 131, '2005-08-27 08:13:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12373, '2005-08-18 08:07:25', 777, 367, '2005-08-27 03:41:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12374, '2005-08-18 08:07:45', 939, 74, '2005-08-26 10:42:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12375, '2005-08-18 08:20:08', 3508, 365, '2005-08-21 08:50:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12376, '2005-08-18 08:20:29', 852, 116, '2005-08-20 13:20:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12377, '2005-08-18 08:26:05', 4564, 31, '2005-08-23 02:51:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12378, '2005-08-18 08:26:13', 4418, 266, '2005-08-19 07:21:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12379, '2005-08-18 08:26:48', 2879, 99, '2005-08-19 10:08:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12380, '2005-08-18 08:27:28', 55, 215, '2005-08-25 02:58:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12381, '2005-08-18 08:31:43', 3651, 190, '2005-08-23 12:24:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12382, '2005-08-18 08:32:33', 3049, 566, '2005-08-26 03:45:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12383, '2005-08-18 08:36:03', 1641, 295, '2005-08-23 03:30:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12384, '2005-08-18 08:36:58', 2557, 193, '2005-08-23 05:08:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12385, '2005-08-18 08:39:33', 3143, 146, '2005-08-21 14:22:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12386, '2005-08-18 08:45:57', 3303, 199, '2005-08-24 04:50:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12387, '2005-08-18 08:46:24', 3604, 530, '2005-08-21 02:56:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12388, '2005-08-18 08:48:09', 4016, 555, '2005-08-26 09:05:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12389, '2005-08-18 08:48:36', 1891, 394, '2005-08-22 08:59:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12390, '2005-08-18 08:51:42', 3603, 377, '2005-08-23 13:06:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12391, '2005-08-18 08:52:53', 1507, 307, '2005-08-22 12:15:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12392, '2005-08-18 08:57:58', 2695, 113, '2005-08-25 05:20:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12393, '2005-08-18 09:02:41', 2435, 396, '2005-08-26 12:47:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12394, '2005-08-18 09:05:15', 3605, 330, '2005-08-23 11:10:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12395, '2005-08-18 09:06:30', 2020, 541, '2005-08-21 12:09:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12396, '2005-08-18 09:11:23', 3624, 40, '2005-08-26 05:35:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12397, '2005-08-18 09:12:52', 1872, 371, '2005-08-27 10:44:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12398, '2005-08-18 09:13:24', 4247, 321, '2005-08-27 14:58:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12399, '2005-08-18 09:13:42', 3950, 347, '2005-08-27 11:44:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12400, '2005-08-18 09:19:12', 1767, 10, '2005-08-26 06:52:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12401, '2005-08-18 09:20:51', 4314, 479, '2005-08-21 05:50:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12402, '2005-08-18 09:27:34', 385, 123, '2005-08-25 13:10:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12403, '2005-08-18 09:31:05', 2124, 440, '2005-08-23 09:54:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12404, '2005-08-18 09:36:34', 1097, 342, '2005-08-23 10:12:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12405, '2005-08-18 09:37:30', 228, 266, '2005-08-27 13:11:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12406, '2005-08-18 09:38:02', 4368, 510, '2005-08-22 12:56:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12407, '2005-08-18 09:39:26', 391, 220, '2005-08-24 05:19:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12408, '2005-08-18 09:40:38', 2360, 143, '2005-08-19 04:45:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12409, '2005-08-18 09:43:58', 2568, 64, '2005-08-19 15:02:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12410, '2005-08-18 09:45:33', 1904, 210, '2005-08-27 08:50:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12411, '2005-08-18 09:47:57', 1234, 181, '2005-08-21 05:54:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12412, '2005-08-18 09:49:52', 1578, 75, '2005-08-23 12:32:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12413, '2005-08-18 09:50:34', 3466, 366, '2005-08-23 05:57:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12414, '2005-08-18 09:50:40', 4454, 32, '2005-08-26 06:45:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12415, '2005-08-18 09:54:01', 392, 443, '2005-08-24 15:41:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12416, '2005-08-18 09:56:48', 3784, 515, '2005-08-22 12:34:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12417, '2005-08-18 09:57:00', 3500, 71, '2005-08-19 08:56:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12418, '2005-08-18 09:59:36', 4186, 241, '2005-08-19 11:35:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12419, '2005-08-18 10:01:48', 3111, 133, '2005-08-19 13:40:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12420, '2005-08-18 10:01:50', 452, 477, '2005-08-22 08:14:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12421, '2005-08-18 10:04:06', 4067, 158, '2005-08-24 08:45:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12422, '2005-08-18 10:13:12', 1855, 451, '2005-08-20 14:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12423, '2005-08-18 10:14:52', 1014, 470, '2005-08-26 13:16:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12424, '2005-08-18 10:16:57', 2055, 319, '2005-08-27 04:41:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12425, '2005-08-18 10:18:06', 2000, 405, '2005-08-27 08:16:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12426, '2005-08-18 10:24:11', 799, 75, '2005-08-22 15:34:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12427, '2005-08-18 10:24:17', 1759, 333, '2005-08-27 14:22:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12428, '2005-08-18 10:24:21', 3735, 121, '2005-08-24 05:12:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12429, '2005-08-18 10:26:46', 2994, 436, '2005-08-27 13:23:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12430, '2005-08-18 10:32:41', 2840, 196, '2005-08-22 16:16:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12431, '2005-08-18 10:34:59', 4461, 89, '2005-08-22 14:42:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12432, '2005-08-18 10:35:13', 2543, 263, '2005-08-26 08:20:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12433, '2005-08-18 10:37:49', 1776, 552, '2005-08-19 08:00:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12434, '2005-08-18 10:38:08', 3078, 314, '2005-08-22 16:14:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12435, '2005-08-18 10:38:31', 3211, 160, '2005-08-26 15:18:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12436, '2005-08-18 10:41:05', 3761, 499, '2005-08-23 07:36:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12437, '2005-08-18 10:42:43', 4036, 467, '2005-08-26 11:58:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12438, '2005-08-18 10:42:52', 2043, 186, '2005-08-25 11:42:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12439, '2005-08-18 10:44:57', 3204, 153, '2005-08-22 06:51:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12440, '2005-08-18 10:47:35', 2779, 474, '2005-08-21 11:10:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12441, '2005-08-18 10:47:57', 2163, 561, '2005-08-26 07:11:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12442, '2005-08-18 10:50:07', 78, 270, '2005-08-21 08:06:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12443, '2005-08-18 10:50:59', 2048, 233, '2005-08-26 07:48:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12444, '2005-08-18 10:53:12', 1639, 285, '2005-08-19 13:54:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12445, '2005-08-18 10:56:20', 3347, 350, '2005-08-21 16:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12446, '2005-08-18 10:56:29', 2138, 448, '2005-08-23 05:30:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12447, '2005-08-18 10:57:01', 4084, 469, '2005-08-27 06:05:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12448, '2005-08-18 10:59:04', 3889, 72, '2005-08-21 06:45:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12449, '2005-08-18 11:03:04', 663, 285, '2005-08-19 07:34:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12450, '2005-08-18 11:04:04', 3439, 518, '2005-08-22 07:24:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12451, '2005-08-18 11:04:42', 2780, 183, '2005-08-20 08:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12452, '2005-08-18 11:14:35', 4260, 358, '2005-08-27 09:09:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12453, '2005-08-18 11:17:07', 2487, 104, '2005-08-25 12:34:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12454, '2005-08-18 11:19:02', 4219, 184, '2005-08-19 12:00:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12455, '2005-08-18 11:19:47', 4478, 46, '2005-08-22 16:08:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12456, '2005-08-18 11:21:51', 4578, 85, '2005-08-21 13:28:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12457, '2006-02-14 15:16:03', 2145, 80, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12458, '2005-08-18 11:22:53', 4579, 277, '2005-08-22 14:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12459, '2005-08-18 11:25:11', 421, 39, '2005-08-22 06:13:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12460, '2005-08-18 11:25:13', 3550, 419, '2005-08-27 06:27:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12461, '2005-08-18 11:28:14', 1569, 27, '2005-08-21 09:47:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12462, '2005-08-18 11:28:55', 890, 574, '2005-08-20 12:06:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12463, '2005-08-18 11:31:34', 30, 214, '2005-08-23 12:04:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12464, '2005-08-18 11:33:34', 1954, 157, '2005-08-27 14:33:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12465, '2005-08-18 11:35:02', 1733, 486, '2005-08-21 11:52:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12466, '2005-08-18 11:36:55', 2686, 462, '2005-08-23 13:46:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12467, '2005-08-18 11:40:09', 1414, 212, '2005-08-19 13:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12468, '2005-08-18 11:41:47', 1689, 80, '2005-08-24 16:43:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12469, '2005-08-18 11:53:07', 2395, 237, '2005-08-24 16:00:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12470, '2005-08-18 11:55:42', 1290, 82, '2005-08-24 08:27:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12471, '2005-08-18 11:57:00', 242, 101, '2005-08-26 13:17:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12472, '2005-08-18 11:58:48', 4458, 297, '2005-08-27 16:37:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12473, '2005-08-18 11:59:44', 1237, 303, '2005-08-21 13:38:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12474, '2005-08-18 12:10:03', 2240, 78, '2005-08-27 17:05:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12475, '2005-08-18 12:14:21', 3118, 401, '2005-08-24 14:43:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12476, '2005-08-18 12:22:40', 2784, 122, '2005-08-20 17:29:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12477, '2005-08-18 12:25:01', 4516, 74, '2005-08-25 17:25:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12478, '2005-08-18 12:25:16', 4512, 42, '2005-08-22 06:27:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12479, '2005-08-18 12:26:37', 1119, 401, '2005-08-21 18:08:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12480, '2005-08-18 12:26:43', 3339, 446, '2005-08-26 13:23:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12481, '2005-08-18 12:31:34', 2424, 218, '2005-08-21 16:08:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12482, '2005-08-18 12:37:36', 3778, 247, '2005-08-26 09:53:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12483, '2005-08-18 12:38:37', 1805, 488, '2005-08-24 13:26:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12484, '2005-08-18 12:39:37', 3690, 300, '2005-08-24 08:47:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12485, '2005-08-18 12:41:41', 422, 345, '2005-08-22 16:38:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12486, '2005-08-18 12:42:50', 2991, 515, '2005-08-27 13:41:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12487, '2005-08-18 12:45:24', 2554, 485, '2005-08-22 12:39:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12488, '2005-08-18 12:48:22', 3323, 29, '2005-08-19 16:19:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12489, '2006-02-14 15:16:03', 387, 60, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12490, '2005-08-18 12:48:45', 1577, 187, '2005-08-27 15:53:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12491, '2005-08-18 12:48:45', 2354, 247, '2005-08-22 12:40:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12492, '2005-08-18 12:49:04', 2839, 224, '2005-08-26 17:55:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12493, '2005-08-18 12:53:38', 3029, 487, '2005-08-27 13:15:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12494, '2005-08-18 12:53:49', 3845, 522, '2005-08-26 15:52:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12495, '2005-08-18 12:56:37', 1225, 102, '2005-08-22 06:58:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12496, '2005-08-18 12:58:25', 456, 489, '2005-08-27 18:43:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12497, '2005-08-18 12:58:40', 824, 388, '2005-08-24 08:24:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12498, '2005-08-18 13:01:08', 1063, 408, '2005-08-21 13:12:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12499, '2005-08-18 13:05:37', 2611, 42, '2005-08-19 07:41:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12500, '2005-08-18 13:05:51', 36, 310, '2005-08-19 14:54:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12501, '2005-08-18 13:13:13', 728, 173, '2005-08-23 07:24:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12502, '2005-08-18 13:16:31', 2153, 235, '2005-08-19 17:47:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12503, '2005-08-18 13:16:46', 3548, 379, '2005-08-19 10:24:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12504, '2005-08-18 13:17:07', 4429, 44, '2005-08-24 09:13:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12505, '2005-08-18 13:17:30', 3741, 406, '2005-08-23 18:03:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12506, '2006-02-14 15:16:03', 1132, 114, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12507, '2005-08-18 13:19:13', 199, 584, '2005-08-27 11:48:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12508, '2005-08-18 13:20:13', 1059, 29, '2005-08-22 12:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12509, '2005-08-18 13:21:52', 2462, 175, '2005-08-20 12:14:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12510, '2005-08-18 13:22:25', 3051, 394, '2005-08-27 17:38:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12511, '2005-08-18 13:23:19', 919, 447, '2005-08-22 11:43:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12512, '2005-08-18 13:28:27', 3959, 148, '2005-08-26 19:08:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12513, '2005-08-18 13:31:45', 29, 527, '2005-08-25 08:26:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12514, '2005-08-18 13:33:55', 3310, 400, '2005-08-23 12:50:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12515, '2005-08-18 13:39:26', 2703, 63, '2005-08-22 09:05:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12516, '2005-08-18 13:39:53', 1332, 302, '2005-08-20 08:33:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12517, '2005-08-18 13:40:20', 2908, 520, '2005-08-27 14:04:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12518, '2005-08-18 13:41:32', 3860, 264, '2005-08-23 13:01:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12519, '2005-08-18 13:42:14', 2394, 203, '2005-08-24 16:44:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12520, '2005-08-18 13:42:45', 681, 52, '2005-08-23 12:54:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12521, '2005-08-18 13:43:07', 1022, 369, '2005-08-21 07:53:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12522, '2005-08-18 13:45:40', 4435, 342, '2005-08-27 17:05:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12523, '2005-08-18 13:45:41', 888, 230, '2005-08-27 10:46:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12524, '2006-02-14 15:16:03', 857, 438, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12525, '2005-08-18 13:48:31', 2357, 96, '2005-08-23 13:04:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12526, '2005-08-18 13:48:43', 3541, 54, '2005-08-19 10:05:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12527, '2005-08-18 13:48:46', 2536, 459, '2005-08-26 13:31:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12528, '2005-08-18 13:52:41', 3381, 398, '2005-08-27 09:09:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12529, '2005-08-18 13:53:36', 1956, 382, '2005-08-19 18:20:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12530, '2005-08-18 13:54:48', 1054, 521, '2005-08-26 08:58:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12531, '2005-08-18 13:57:50', 2771, 27, '2005-08-22 09:46:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12532, '2005-08-18 13:57:58', 114, 184, '2005-08-24 14:58:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12533, '2005-08-18 14:01:40', 795, 331, '2005-08-20 15:32:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12534, '2005-08-18 14:04:41', 995, 187, '2005-08-25 16:57:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12535, '2005-08-18 14:05:22', 2944, 516, '2005-08-25 16:35:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12536, '2005-08-18 14:06:06', 2343, 373, '2005-08-25 14:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12537, '2005-08-18 14:06:39', 57, 56, '2005-08-25 09:36:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12538, '2005-08-18 14:09:09', 1373, 118, '2005-08-23 19:12:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12539, '2005-08-18 14:10:09', 3259, 136, '2005-08-19 19:44:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12540, '2005-08-18 14:17:30', 2826, 304, '2005-08-26 15:33:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12541, '2005-08-18 14:18:30', 4357, 584, '2005-08-26 10:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12542, '2005-08-18 14:21:11', 1920, 230, '2005-08-20 16:06:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12543, '2005-08-18 14:23:55', 330, 324, '2005-08-20 12:42:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12544, '2005-08-18 14:25:51', 3783, 354, '2005-08-26 18:42:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12545, '2005-08-18 14:28:00', 1988, 168, '2005-08-26 14:10:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12546, '2005-08-18 14:29:37', 610, 30, '2005-08-26 09:47:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12547, '2005-08-18 14:29:39', 3046, 591, '2005-08-22 16:52:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12548, '2005-08-18 14:35:26', 750, 426, '2005-08-27 18:58:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12549, '2005-08-18 14:38:07', 1010, 377, '2005-08-21 08:45:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12550, '2005-08-18 14:40:38', 4267, 138, '2005-08-19 13:33:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12551, '2005-08-18 14:46:26', 2195, 15, '2005-08-19 16:59:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12552, '2005-08-18 14:46:34', 4303, 413, '2005-08-20 11:02:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12553, '2005-08-18 14:46:54', 2893, 454, '2005-08-22 13:41:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12554, '2005-08-18 14:47:28', 715, 404, '2005-08-25 14:34:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12555, '2005-08-18 14:49:22', 4434, 557, '2005-08-26 14:11:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12556, '2005-08-18 14:49:55', 1984, 3, '2005-08-24 15:20:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12557, '2005-08-18 14:51:03', 313, 364, '2005-08-19 13:30:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12558, '2005-08-18 14:52:35', 167, 289, '2005-08-26 09:45:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12559, '2005-08-18 14:53:58', 39, 513, '2005-08-25 20:22:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12560, '2005-08-18 14:54:19', 829, 596, '2005-08-27 13:39:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12561, '2005-08-18 14:58:51', 812, 392, '2005-08-20 10:53:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12562, '2005-08-18 15:00:03', 529, 212, '2005-08-23 12:55:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12563, '2005-08-18 15:08:29', 2552, 393, '2005-08-27 15:15:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12564, '2005-08-18 15:11:35', 263, 348, '2005-08-22 11:45:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12565, '2005-08-18 15:12:17', 1284, 211, '2005-08-19 12:26:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12566, '2005-08-18 15:13:04', 1684, 407, '2005-08-21 19:29:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12567, '2005-08-18 15:14:36', 2931, 308, '2005-08-26 18:56:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12568, '2005-08-18 15:15:44', 2654, 569, '2005-08-22 19:32:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12569, '2005-08-18 15:20:46', 1009, 29, '2005-08-24 12:38:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12570, '2005-08-18 15:23:31', 3973, 211, '2005-08-22 09:59:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12571, '2005-08-18 15:31:18', 1013, 591, '2005-08-23 15:20:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12572, '2005-08-18 15:32:54', 1366, 253, '2005-08-21 10:30:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12573, '2005-08-18 15:32:57', 1416, 182, '2005-08-21 18:29:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12574, '2006-02-14 15:16:03', 177, 317, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12575, '2005-08-18 15:37:42', 3441, 117, '2005-08-25 19:17:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12576, '2005-08-18 15:38:31', 329, 119, '2005-08-22 21:29:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12577, '2005-08-18 15:39:46', 4134, 16, '2005-08-25 18:05:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12578, '2005-08-18 15:47:11', 930, 514, '2005-08-21 10:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12579, '2005-08-18 15:47:49', 3021, 547, '2005-08-20 18:12:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12580, '2005-08-18 15:49:08', 1197, 53, '2005-08-24 11:03:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12581, '2005-08-18 15:49:15', 4309, 70, '2005-08-23 20:18:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12582, '2005-08-18 15:51:12', 4467, 462, '2005-08-20 12:05:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12583, '2005-08-18 15:51:36', 3090, 108, '2005-08-20 18:47:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12584, '2005-08-18 15:51:36', 4487, 371, '2005-08-25 19:21:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12585, '2005-08-18 15:52:12', 773, 110, '2005-08-22 21:00:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12586, '2005-08-18 15:54:39', 4245, 460, '2005-08-21 19:29:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12587, '2005-08-18 16:03:13', 3081, 499, '2005-08-25 19:30:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12588, '2005-08-18 16:04:45', 694, 415, '2005-08-23 20:30:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12589, '2005-08-18 16:06:31', 956, 275, '2005-08-27 17:20:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12590, '2005-08-18 16:11:35', 2624, 308, '2005-08-23 10:35:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12591, '2005-08-18 16:16:41', 723, 546, '2005-08-24 10:29:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12592, '2005-08-18 16:17:50', 1618, 305, '2005-08-25 20:20:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12593, '2005-08-18 16:17:54', 4092, 72, '2005-08-21 18:02:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12594, '2005-08-18 16:24:24', 4421, 198, '2005-08-25 15:45:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12595, '2005-08-18 16:27:08', 1662, 286, '2005-08-19 14:53:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12596, '2005-08-18 16:29:35', 3662, 378, '2005-08-24 16:48:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12597, '2005-08-18 16:34:02', 3804, 474, '2005-08-25 17:30:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12598, '2005-08-18 16:34:03', 3159, 340, '2005-08-22 16:44:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12599, '2005-08-18 16:42:45', 2032, 34, '2005-08-23 18:27:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12600, '2005-08-18 16:44:24', 1475, 171, '2005-08-25 17:28:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12601, '2005-08-18 16:47:52', 3099, 598, '2005-08-24 11:05:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12602, '2005-08-18 16:49:50', 2001, 533, '2005-08-21 11:13:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12603, '2005-08-18 16:56:20', 2769, 119, '2005-08-25 11:50:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12604, '2005-08-18 16:58:48', 4127, 12, '2005-08-19 19:36:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12605, '2005-08-18 16:59:37', 1359, 496, '2005-08-20 18:09:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12606, '2005-08-18 17:02:21', 359, 275, '2005-08-24 22:38:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12607, '2005-08-18 17:03:49', 2130, 526, '2005-08-19 18:29:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12608, '2005-08-18 17:05:15', 624, 366, '2005-08-23 17:00:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12609, '2005-08-18 17:06:22', 2327, 486, '2005-08-20 21:30:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12610, '2006-02-14 15:16:03', 3181, 269, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12611, '2005-08-18 17:09:42', 1925, 359, '2005-08-24 11:57:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12612, '2005-08-18 17:10:05', 1035, 129, '2005-08-26 15:55:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12613, '2005-08-18 17:16:01', 3877, 8, '2005-08-23 18:40:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12614, '2005-08-18 17:16:03', 2233, 60, '2005-08-26 16:56:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12615, '2005-08-18 17:16:07', 2191, 29, '2005-08-27 12:57:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12616, '2005-08-18 17:22:41', 2952, 476, '2005-08-25 18:52:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12617, '2005-08-18 17:22:48', 3573, 564, '2005-08-24 17:40:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12618, '2005-08-18 17:24:02', 302, 117, '2005-08-19 15:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12619, '2005-08-18 17:24:15', 980, 592, '2005-08-21 15:56:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12620, '2005-08-18 17:26:38', 2663, 221, '2005-08-25 13:24:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12621, '2005-08-18 17:31:36', 4566, 439, '2005-08-24 16:43:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12622, '2005-08-18 17:34:11', 278, 529, '2005-08-24 16:10:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12623, '2005-08-18 17:34:19', 3670, 177, '2005-08-20 21:30:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12624, '2005-08-18 17:35:00', 1135, 434, '2005-08-27 12:18:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12625, '2005-08-18 17:36:19', 2645, 108, '2005-08-23 11:42:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12626, '2005-08-18 17:36:45', 4230, 361, '2005-08-26 17:12:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12627, '2005-08-18 17:37:11', 3760, 150, '2005-08-19 14:59:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12628, '2005-08-18 17:40:25', 3210, 520, '2005-08-25 13:39:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12629, '2005-08-18 17:40:33', 1705, 459, '2005-08-26 21:09:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12630, '2005-08-18 17:49:28', 1457, 452, '2005-08-24 12:23:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12631, '2005-08-18 17:52:51', 2782, 339, '2005-08-25 14:40:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12632, '2005-08-18 17:54:21', 827, 381, '2005-08-22 18:58:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12633, '2005-08-18 17:55:38', 4341, 469, '2005-08-23 17:19:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12634, '2005-08-18 17:58:14', 1037, 549, '2005-08-19 21:08:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12635, '2005-08-18 18:00:23', 331, 15, '2005-08-23 16:40:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12636, '2005-08-18 18:00:29', 1645, 380, '2005-08-26 20:08:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12637, '2005-08-18 18:06:53', 4005, 145, '2005-08-19 17:36:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12638, '2005-08-18 18:11:39', 2849, 172, '2005-08-25 21:54:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12639, '2005-08-18 18:13:05', 562, 500, '2005-08-27 16:00:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12640, '2005-08-18 18:14:49', 1715, 544, '2005-08-24 21:25:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12641, '2005-08-18 18:18:08', 776, 467, '2005-08-19 23:17:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12642, '2005-08-18 18:19:16', 2080, 167, '2005-08-20 17:30:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12643, '2005-08-18 18:21:06', 2245, 165, '2005-08-24 14:26:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12644, '2005-08-18 18:22:27', 1511, 300, '2005-08-26 00:01:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12645, '2006-02-14 15:16:03', 1658, 457, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12646, '2005-08-18 18:25:06', 3103, 388, '2005-08-24 18:45:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12647, '2005-08-18 18:29:51', 323, 520, '2005-08-27 22:51:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12648, '2005-08-18 18:30:21', 3545, 519, '2005-08-25 19:17:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12649, '2005-08-18 18:31:47', 3201, 530, '2005-08-22 21:07:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12650, '2005-08-18 18:33:20', 3237, 276, '2005-08-21 17:45:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12651, '2005-08-18 18:36:16', 8, 34, '2005-08-22 22:01:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12652, '2005-08-18 18:48:58', 2118, 9, '2005-08-21 14:15:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12653, '2005-08-18 18:53:17', 3353, 78, '2005-08-26 14:08:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12654, '2005-08-18 18:56:40', 2217, 438, '2005-08-20 17:51:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12655, '2005-08-18 18:57:44', 859, 533, '2005-08-27 22:40:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12656, '2005-08-18 18:58:35', 3981, 286, '2005-08-21 00:41:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12657, '2005-08-18 19:02:16', 3621, 100, '2005-08-21 14:59:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12658, '2005-08-18 19:05:42', 4320, 193, '2005-08-19 19:08:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12659, '2005-08-18 19:05:49', 336, 329, '2005-08-24 22:12:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12660, '2005-08-18 19:07:23', 414, 21, '2005-08-27 17:20:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12661, '2005-08-18 19:10:10', 1547, 333, '2005-08-22 20:30:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12662, '2005-08-18 19:10:41', 1412, 75, '2005-08-23 16:59:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12663, '2005-08-18 19:10:52', 1163, 375, '2005-08-19 15:46:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12664, '2005-08-18 19:10:54', 2732, 577, '2005-08-25 19:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12665, '2006-02-14 15:16:03', 1701, 410, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12666, '2005-08-18 19:11:41', 4156, 251, '2005-08-21 18:04:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12667, '2005-08-18 19:11:45', 104, 545, '2005-08-27 13:34:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12668, '2005-08-18 19:16:47', 1986, 14, '2005-08-19 16:31:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12669, '2005-08-18 19:17:47', 4530, 433, '2005-08-24 14:55:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12670, '2005-08-18 19:17:58', 1716, 580, '2005-08-23 20:54:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12671, '2005-08-18 19:19:59', 1734, 577, '2005-08-23 17:53:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12672, '2006-02-14 15:16:03', 1722, 228, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12673, '2005-08-18 19:21:56', 4204, 535, '2005-08-26 22:44:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12674, '2005-08-18 19:24:56', 636, 185, '2005-08-26 22:16:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12675, '2005-08-18 19:34:02', 569, 140, '2005-08-23 13:36:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12676, '2005-08-18 19:34:40', 2581, 393, '2005-08-20 18:03:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12677, '2005-08-18 19:36:05', 1311, 334, '2005-08-22 21:23:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12678, '2005-08-18 19:41:27', 2504, 181, '2005-08-23 15:14:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12679, '2005-08-18 19:42:11', 1535, 463, '2005-08-25 01:01:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12680, '2005-08-18 19:43:46', 833, 259, '2005-08-27 00:08:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12681, '2005-08-18 19:48:06', 1570, 518, '2005-08-23 15:05:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12682, '2006-02-14 15:16:03', 1148, 245, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12683, '2005-08-18 19:50:43', 1802, 166, '2005-08-26 00:47:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12684, '2005-08-18 19:51:27', 978, 196, '2005-08-19 15:56:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12685, '2005-08-18 19:51:29', 4283, 114, '2005-08-27 14:58:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12686, '2005-08-18 19:55:09', 501, 385, '2005-08-26 14:17:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12687, '2005-08-18 19:57:39', 3092, 285, '2005-08-27 01:36:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12688, '2005-08-18 19:59:54', 2315, 65, '2005-08-26 18:52:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12689, '2005-08-18 20:06:34', 1066, 296, '2005-08-22 20:11:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12690, '2005-08-18 20:06:57', 3574, 361, '2005-08-24 20:54:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12691, '2005-08-18 20:07:46', 3744, 534, '2005-08-26 18:49:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12692, '2005-08-18 20:09:19', 2781, 273, '2005-08-21 00:14:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12693, '2005-08-18 20:10:19', 1543, 584, '2005-08-25 21:11:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12694, '2005-08-18 20:10:39', 1741, 268, '2005-08-25 20:47:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12695, '2005-08-18 20:11:35', 446, 483, '2005-08-25 18:29:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12696, '2005-08-18 20:13:08', 3989, 374, '2005-08-19 18:02:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12697, '2005-08-18 20:14:56', 2774, 152, '2005-08-23 21:54:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12698, '2006-02-14 15:16:03', 3657, 497, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12699, '2005-08-18 20:20:59', 3695, 66, '2005-08-22 17:00:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12700, '2005-08-18 20:24:46', 540, 397, '2005-08-23 21:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12701, '2005-08-18 20:26:47', 2337, 489, '2005-08-26 23:36:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12702, '2005-08-18 20:30:33', 1884, 474, '2005-08-27 01:22:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12703, '2005-08-18 20:37:13', 1278, 453, '2005-08-26 16:13:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12704, '2005-08-18 20:43:00', 51, 93, '2005-08-21 22:28:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12705, '2005-08-18 20:44:14', 2342, 517, '2005-08-23 20:46:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12706, '2005-08-18 20:44:34', 1079, 170, '2005-08-26 21:47:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12707, '2005-08-18 20:52:02', 1565, 426, '2005-08-25 19:03:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12708, '2005-08-18 20:59:17', 3448, 28, '2005-08-24 22:40:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12709, '2005-08-18 20:59:51', 3878, 476, '2005-08-26 01:21:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12710, '2005-08-18 21:02:50', 3011, 310, '2005-08-26 15:07:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12711, '2005-08-18 21:03:32', 2530, 122, '2005-08-26 17:31:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12712, '2005-08-18 21:04:13', 2628, 444, '2005-08-25 18:15:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12713, '2005-08-18 21:07:28', 1505, 56, '2005-08-24 17:46:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12714, '2005-08-18 21:08:01', 868, 372, '2005-08-27 17:09:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12715, '2005-08-18 21:09:38', 3768, 266, '2005-08-21 20:25:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12716, '2006-02-14 15:16:03', 858, 570, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12717, '2005-08-18 21:15:40', 3551, 167, '2005-08-20 00:59:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12718, '2005-08-18 21:21:44', 3221, 176, '2005-08-20 01:01:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12719, '2006-02-14 15:16:03', 1094, 87, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12720, '2005-08-18 21:28:42', 2676, 419, '2005-08-25 18:02:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12721, '2005-08-18 21:30:12', 1045, 239, '2005-08-22 22:45:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12722, '2005-08-18 21:33:53', 913, 416, '2005-08-27 23:47:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12723, '2005-08-18 21:34:16', 4167, 430, '2005-08-22 22:37:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12724, '2005-08-18 21:37:20', 2224, 242, '2005-08-27 21:56:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12725, '2005-08-18 21:43:09', 4071, 51, '2005-08-23 18:50:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12726, '2005-08-18 21:44:46', 20, 397, '2005-08-19 21:58:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12727, '2005-08-18 21:45:15', 15, 178, '2005-08-24 15:52:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12728, '2005-08-18 21:47:48', 3156, 129, '2005-08-25 16:13:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12729, '2005-08-18 21:52:59', 3711, 424, '2005-08-21 00:02:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12730, '2005-08-18 21:55:01', 75, 7, '2005-08-22 01:23:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12731, '2005-08-18 21:55:38', 1719, 128, '2005-08-23 20:30:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12732, '2005-08-18 21:57:50', 3307, 535, '2005-08-19 18:28:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12733, '2005-08-18 21:59:00', 3243, 144, '2005-08-24 02:25:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12734, '2005-08-18 22:04:52', 3619, 121, '2005-08-25 00:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12735, '2005-08-18 22:04:54', 3679, 383, '2005-08-23 21:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12736, '2006-02-14 15:16:03', 3591, 244, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12737, '2005-08-18 22:11:37', 736, 204, '2005-08-26 04:08:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12738, '2005-08-18 22:11:47', 4313, 589, '2005-08-27 17:55:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12739, '2005-08-18 22:15:18', 4129, 292, '2005-08-27 00:37:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12740, '2005-08-18 22:17:04', 1157, 330, '2005-08-23 23:42:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12741, '2005-08-18 22:17:05', 2084, 435, '2005-08-25 20:07:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12742, '2005-08-18 22:22:03', 1742, 68, '2005-08-22 04:01:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12743, '2005-08-18 22:22:31', 2630, 565, '2005-08-27 00:31:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12744, '2005-08-18 22:22:36', 3815, 593, '2005-08-24 00:26:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12745, '2005-08-18 22:22:45', 262, 24, '2005-08-20 01:44:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12747, '2005-08-18 22:28:22', 4075, 549, '2005-08-22 22:25:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12748, '2005-08-18 22:29:05', 3249, 373, '2005-08-24 18:25:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12749, '2005-08-18 22:31:21', 828, 388, '2005-08-20 22:53:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12750, '2005-08-18 22:32:39', 3717, 535, '2005-08-26 01:54:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12751, '2005-08-18 22:33:22', 2791, 352, '2005-08-20 20:28:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12752, '2005-08-18 22:33:36', 3595, 514, '2005-08-27 23:55:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12753, '2005-08-18 22:37:39', 1494, 470, '2005-08-27 00:21:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12754, '2005-08-18 22:37:41', 4154, 134, '2005-08-27 20:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12755, '2005-08-18 22:38:47', 105, 439, '2005-08-22 23:58:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12756, '2005-08-18 22:52:13', 1840, 89, '2005-08-21 17:22:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12757, '2005-08-18 22:57:45', 1095, 147, '2005-08-21 22:43:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12758, '2005-08-18 22:58:34', 2279, 30, '2005-08-22 23:33:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12759, '2006-02-14 15:16:03', 4193, 354, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12760, '2005-08-18 23:03:19', 4188, 363, '2005-08-24 17:53:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12761, '2005-08-18 23:05:22', 2684, 364, '2005-08-22 01:08:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12762, '2005-08-18 23:06:54', 3909, 502, '2005-08-21 18:30:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12763, '2005-08-18 23:07:01', 393, 472, '2005-08-21 18:45:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12764, '2005-08-18 23:14:15', 26, 183, '2005-08-22 20:23:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12765, '2005-08-18 23:21:50', 2244, 298, '2005-08-28 04:42:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12766, '2005-08-18 23:25:20', 3737, 50, '2005-08-27 04:43:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12767, '2005-08-18 23:25:49', 3351, 432, '2005-08-28 02:40:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12768, '2005-08-18 23:26:11', 1993, 458, '2005-08-19 20:31:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12769, '2005-08-18 23:26:40', 926, 504, '2005-08-25 03:03:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12770, '2005-08-18 23:29:00', 1654, 575, '2005-08-26 20:57:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12771, '2005-08-18 23:29:23', 3076, 484, '2005-08-22 17:31:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12772, '2005-08-18 23:29:25', 1179, 397, '2005-08-23 20:32:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12773, '2005-08-18 23:32:19', 4390, 360, '2005-08-27 04:40:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12774, '2005-08-18 23:34:22', 3601, 21, '2005-08-28 05:00:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12775, '2005-08-18 23:35:56', 4374, 54, '2005-08-26 18:37:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12776, '2005-08-18 23:37:33', 2345, 55, '2005-08-23 03:07:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12777, '2005-08-18 23:39:22', 3467, 130, '2005-08-27 20:28:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12778, '2005-08-18 23:40:23', 3626, 290, '2005-08-19 18:14:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12779, '2005-08-18 23:44:00', 1814, 325, '2005-08-26 05:27:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12780, '2005-08-18 23:48:16', 54, 373, '2005-08-20 18:13:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12781, '2005-08-18 23:50:24', 1187, 168, '2005-08-21 02:31:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12782, '2005-08-18 23:56:23', 1454, 495, '2005-08-25 18:47:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12783, '2005-08-19 00:01:14', 1109, 503, '2005-08-21 22:02:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12784, '2005-08-19 00:02:46', 447, 513, '2005-08-20 04:39:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12785, '2005-08-19 00:05:49', 4190, 145, '2005-08-21 04:39:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12786, '2006-02-14 15:16:03', 97, 512, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12787, '2005-08-19 00:07:58', 2023, 278, '2005-08-24 00:42:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12788, '2005-08-19 00:15:09', 644, 90, '2005-08-27 21:54:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12789, '2005-08-19 00:16:19', 2412, 557, '2005-08-25 00:18:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12790, '2005-08-19 00:16:54', 1281, 44, '2005-08-26 02:00:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12791, '2005-08-19 00:17:09', 3594, 573, '2005-08-22 23:46:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12792, '2006-02-14 15:16:03', 1435, 405, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12793, '2005-08-19 00:20:36', 1195, 403, '2005-08-28 02:43:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12794, '2005-08-19 00:20:37', 1586, 336, '2005-08-26 01:48:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12795, '2005-08-19 00:21:52', 2745, 360, '2005-08-22 22:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12796, '2005-08-19 00:22:24', 1285, 368, '2005-08-19 22:53:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12797, '2005-08-19 00:24:08', 1595, 5, '2005-08-21 22:53:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12798, '2005-08-19 00:24:33', 4244, 534, '2005-08-21 23:01:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12799, '2005-08-19 00:27:01', 3885, 197, '2005-08-22 03:30:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12800, '2005-08-19 00:27:11', 257, 545, '2005-08-22 01:08:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12801, '2005-08-19 00:27:19', 960, 202, '2005-08-26 03:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12802, '2005-08-19 00:27:41', 2461, 462, '2005-08-28 03:24:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12803, '2005-08-19 00:28:21', 1058, 390, '2005-08-23 02:02:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12804, '2005-08-19 00:33:15', 147, 365, '2005-08-28 02:16:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12805, '2005-08-19 00:36:34', 2964, 345, '2005-08-26 20:38:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12806, '2005-08-19 00:37:26', 4488, 423, '2005-08-23 18:49:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12807, '2005-08-19 00:38:46', 2323, 513, '2005-08-28 03:37:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12808, '2005-08-19 00:40:41', 3920, 55, '2005-08-21 06:39:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12809, '2005-08-19 00:42:24', 2005, 22, '2005-08-23 06:06:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12810, '2005-08-19 00:44:10', 1340, 250, '2005-08-22 22:30:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12811, '2005-08-19 00:51:28', 641, 54, '2005-08-24 01:57:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12812, '2005-08-19 00:54:02', 4024, 450, '2005-08-22 20:35:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12813, '2005-08-19 00:54:22', 3285, 500, '2005-08-19 21:17:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12814, '2005-08-19 00:58:24', 204, 465, '2005-08-21 05:46:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12815, '2005-08-19 00:59:42', 435, 588, '2005-08-25 21:43:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12816, '2005-08-19 01:04:05', 4051, 342, '2005-08-24 01:25:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12817, '2005-08-19 01:04:35', 1246, 113, '2005-08-25 21:14:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12818, '2005-08-19 01:04:59', 3069, 528, '2005-08-26 21:39:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12819, '2005-08-19 01:05:05', 1117, 542, '2005-08-22 05:50:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12820, '2005-08-19 01:05:08', 2936, 127, '2005-08-21 05:37:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12821, '2005-08-19 01:07:02', 3418, 41, '2005-08-23 01:22:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12822, '2005-08-19 01:15:24', 419, 426, '2005-08-20 06:38:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12823, '2005-08-19 01:15:47', 426, 316, '2005-08-22 05:32:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12824, '2005-08-19 01:18:00', 1875, 247, '2005-08-22 01:12:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12825, '2005-08-19 01:23:58', 4495, 328, '2005-08-20 00:19:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12826, '2005-08-19 01:25:11', 1277, 439, '2005-08-27 01:22:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12827, '2005-08-19 01:27:23', 880, 253, '2005-08-27 02:22:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12828, '2005-08-19 01:37:47', 4208, 378, '2005-08-24 22:31:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12829, '2005-08-19 01:38:18', 1129, 326, '2005-08-25 22:23:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12830, '2005-08-19 01:40:25', 4080, 409, '2005-08-20 23:49:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12831, '2005-08-19 01:40:43', 1916, 183, '2005-08-28 05:22:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12832, '2005-08-19 01:41:44', 2820, 563, '2005-08-24 23:15:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12833, '2005-08-19 01:42:28', 3723, 59, '2005-08-26 20:13:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12834, '2005-08-19 01:47:30', 757, 133, '2005-08-24 20:08:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12835, '2005-08-19 01:47:45', 1477, 124, '2005-08-26 00:58:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12836, '2005-08-19 01:48:33', 1380, 196, '2005-08-23 04:46:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12837, '2005-08-19 01:51:09', 2288, 495, '2005-08-22 07:14:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12838, '2005-08-19 01:51:50', 1207, 308, '2005-08-27 23:12:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12839, '2005-08-19 01:53:43', 1970, 360, '2005-08-28 02:27:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12840, '2005-08-19 01:54:11', 2098, 182, '2005-08-28 01:11:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12841, '2005-08-19 01:55:55', 4233, 257, '2005-08-24 02:56:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12842, '2005-08-19 01:57:21', 2540, 119, '2005-08-28 01:10:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12843, '2005-08-19 01:58:54', 3279, 128, '2005-08-20 00:20:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12844, '2005-08-19 01:59:08', 4146, 584, '2005-08-24 22:21:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12845, '2005-08-19 02:02:37', 1698, 106, '2005-08-22 01:08:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12846, '2005-08-19 02:03:26', 286, 305, '2005-08-25 07:39:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12847, '2005-08-19 02:04:07', 384, 91, '2005-08-23 20:13:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12848, '2005-08-19 02:05:11', 2833, 539, '2005-08-24 05:27:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12849, '2005-08-19 02:05:37', 3489, 280, '2005-08-23 07:00:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12850, '2005-08-19 02:08:06', 1816, 440, '2005-08-20 21:06:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12851, '2005-08-19 02:12:12', 3311, 194, '2005-08-25 23:51:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12852, '2005-08-19 02:12:40', 2446, 260, '2005-08-19 23:42:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12853, '2005-08-19 02:15:32', 3753, 232, '2005-08-27 21:26:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12854, '2005-08-19 02:18:51', 4577, 362, '2005-08-24 04:16:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12855, '2005-08-19 02:18:58', 2900, 242, '2005-08-19 20:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12856, '2005-08-19 02:19:13', 132, 4, '2005-08-23 07:49:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12857, '2005-08-19 02:20:13', 4307, 443, '2005-08-20 20:20:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12858, '2005-08-19 02:22:16', 3024, 144, '2005-08-26 07:25:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12859, '2005-08-19 02:23:23', 2289, 139, '2005-08-28 04:55:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12860, '2005-08-19 02:24:41', 778, 548, '2005-08-25 07:43:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12861, '2005-08-19 02:30:24', 3115, 287, '2005-08-22 08:23:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12862, '2005-08-19 02:31:59', 473, 198, '2005-08-26 08:16:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12863, '2005-08-19 02:35:59', 780, 234, '2005-08-21 21:13:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12864, '2005-08-19 02:38:26', 4481, 465, '2005-08-22 21:42:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12865, '2005-08-19 02:38:50', 3437, 460, '2005-08-21 02:33:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12866, '2005-08-19 02:39:47', 1766, 229, '2005-08-27 02:14:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12867, '2005-08-19 02:40:11', 4499, 330, '2005-08-20 04:01:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12868, '2005-08-19 02:47:19', 4054, 551, '2005-08-20 00:30:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12869, '2005-08-19 02:50:36', 3939, 99, '2005-08-26 21:38:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12870, '2005-08-19 02:54:38', 991, 86, '2005-08-27 00:45:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12871, '2005-08-19 02:55:36', 2625, 217, '2005-08-22 01:00:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12872, '2005-08-19 02:57:37', 1975, 54, '2005-08-22 23:23:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12873, '2005-08-19 03:05:41', 2140, 138, '2005-08-22 06:57:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12874, '2005-08-19 03:07:57', 848, 254, '2005-08-22 22:42:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12875, '2005-08-19 03:10:21', 1708, 483, '2005-08-26 01:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12876, '2005-08-19 03:12:19', 803, 356, '2005-08-20 02:24:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12877, '2005-08-19 03:16:58', 1016, 40, '2005-08-25 02:10:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12878, '2005-08-19 03:17:08', 1182, 596, '2005-08-23 03:44:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12879, '2005-08-19 03:22:55', 3556, 210, '2005-08-24 22:00:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12880, '2005-08-19 03:27:17', 3386, 552, '2005-08-28 06:16:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12881, '2005-08-19 03:28:13', 1432, 121, '2005-08-25 05:25:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12882, '2005-08-19 03:33:46', 911, 153, '2005-08-21 22:49:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12883, '2005-08-19 03:33:47', 964, 555, '2005-08-23 21:55:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12884, '2005-08-19 03:34:04', 2768, 348, '2005-08-28 01:00:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12885, '2005-08-19 03:37:25', 883, 185, '2005-08-20 22:10:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12886, '2005-08-19 03:38:32', 2157, 174, '2005-08-26 02:17:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12887, '2005-08-19 03:38:54', 1214, 150, '2005-08-27 08:45:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12888, '2005-08-19 03:41:09', 4398, 146, '2005-08-24 07:09:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12889, '2005-08-19 03:41:31', 4376, 515, '2005-08-27 00:46:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12890, '2005-08-19 03:42:08', 3831, 150, '2005-08-19 23:08:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12891, '2006-02-14 15:16:03', 2764, 388, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12892, '2005-08-19 03:46:34', 1044, 121, '2005-08-21 05:11:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12893, '2005-08-19 03:46:43', 168, 498, '2005-08-20 08:38:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12894, '2005-08-19 03:49:28', 4581, 541, '2005-08-25 01:51:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12895, '2005-08-19 03:50:48', 4372, 396, '2005-08-26 09:13:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12896, '2005-08-19 03:52:44', 148, 220, '2005-08-24 22:27:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12897, '2006-02-14 15:16:03', 1512, 178, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12898, '2005-08-19 03:54:34', 1555, 586, '2005-08-23 08:14:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12899, '2005-08-19 04:03:34', 830, 105, '2005-08-20 08:34:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12900, '2005-08-19 04:03:49', 849, 408, '2005-08-24 22:11:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12901, '2006-02-14 15:16:03', 2799, 180, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12902, '2006-02-14 15:16:03', 464, 91, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12903, '2005-08-19 04:09:38', 2340, 302, '2005-08-26 03:24:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12904, '2005-08-19 04:10:50', 459, 257, '2005-08-27 23:24:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12905, '2005-08-19 04:13:37', 1043, 480, '2005-08-26 23:52:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12906, '2005-08-19 04:13:43', 2060, 401, '2005-08-20 04:24:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12907, '2005-08-19 04:16:13', 2844, 422, '2005-08-27 02:43:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12908, '2005-08-19 04:19:05', 175, 340, '2005-08-25 09:50:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12909, '2005-08-19 04:20:25', 4300, 210, '2005-08-24 06:40:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12910, '2005-08-19 04:23:13', 3968, 128, '2005-08-20 22:27:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12911, '2005-08-19 04:24:10', 1770, 367, '2005-08-26 00:35:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12912, '2005-08-19 04:24:35', 1747, 364, '2005-08-27 07:13:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12913, '2005-08-19 04:25:39', 3719, 356, '2005-08-25 07:23:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12914, '2005-08-19 04:25:59', 4396, 501, '2005-08-23 08:04:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12915, '2006-02-14 15:16:03', 2651, 516, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12916, '2005-08-19 04:27:05', 2277, 157, '2005-08-21 02:33:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12917, '2005-08-19 04:27:11', 107, 152, '2005-08-20 03:04:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12918, '2005-08-19 04:31:36', 972, 13, '2005-08-25 05:50:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12919, '2005-08-19 04:32:15', 2121, 263, '2005-08-24 05:56:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12920, '2005-08-19 04:32:32', 2516, 511, '2005-08-27 00:44:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12921, '2005-08-19 04:47:48', 781, 234, '2005-08-25 00:07:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12922, '2005-08-19 04:48:48', 342, 25, '2005-08-23 23:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12923, '2005-08-19 04:50:20', 1390, 531, '2005-08-22 10:42:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12924, '2005-08-19 04:51:47', 3807, 519, '2005-08-26 07:50:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12925, '2005-08-19 04:59:01', 3361, 57, '2005-08-27 02:03:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12926, '2005-08-19 05:00:16', 23, 336, '2005-08-26 06:12:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12927, '2005-08-19 05:02:46', 1171, 223, '2005-08-23 01:08:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12928, '2005-08-19 05:04:09', 4531, 353, '2005-08-24 09:09:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12929, '2005-08-19 05:05:23', 1531, 310, '2005-08-25 04:37:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12930, '2005-08-19 05:11:32', 4410, 414, '2005-08-22 02:20:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12931, '2005-08-19 05:11:47', 3070, 407, '2005-08-21 00:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12932, '2005-08-19 05:17:30', 2295, 416, '2005-08-21 09:24:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12933, '2005-08-19 05:18:20', 4103, 589, '2005-08-27 00:13:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12934, '2005-08-19 05:18:42', 3242, 591, '2005-08-24 10:42:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12935, '2005-08-19 05:20:25', 193, 279, '2005-08-21 03:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12936, '2005-08-19 05:25:06', 654, 387, '2005-08-28 08:21:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12937, '2005-08-19 05:25:30', 3826, 348, '2005-08-22 10:40:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12938, '2006-02-14 15:16:03', 3987, 28, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12939, '2005-08-19 05:38:25', 3375, 181, '2005-08-23 23:52:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12940, '2005-08-19 05:38:29', 2222, 340, '2005-08-20 08:15:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12941, '2005-08-19 05:39:26', 2951, 195, '2005-08-22 09:50:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12942, '2005-08-19 05:40:36', 3938, 103, '2005-08-27 02:04:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12943, '2005-08-19 05:46:26', 3930, 547, '2005-08-22 03:26:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12944, '2005-08-19 05:48:12', 2956, 148, '2005-08-28 10:10:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12945, '2005-08-19 05:51:46', 3638, 312, '2005-08-23 11:22:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12946, '2005-08-19 05:53:34', 2066, 444, '2005-08-20 07:30:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12947, '2005-08-19 05:54:21', 935, 499, '2005-08-22 09:17:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12948, '2005-08-19 05:55:14', 4173, 442, '2005-08-22 01:05:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12949, '2005-08-19 05:55:52', 4209, 279, '2005-08-23 00:01:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12950, '2005-08-19 05:55:58', 1064, 463, '2005-08-23 08:05:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12951, '2005-08-19 05:56:44', 2143, 70, '2005-08-24 11:28:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12952, '2005-08-19 06:00:52', 2460, 228, '2005-08-20 02:17:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12953, '2005-08-19 06:04:07', 3954, 429, '2005-08-28 11:05:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12954, '2005-08-19 06:04:34', 3592, 63, '2005-08-28 02:12:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12955, '2005-08-19 06:05:58', 2040, 410, '2005-08-26 04:24:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12956, '2005-08-19 06:06:26', 3613, 241, '2005-08-28 08:37:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12957, '2005-08-19 06:12:44', 2219, 512, '2005-08-28 10:49:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12958, '2005-08-19 06:19:21', 4214, 569, '2005-08-20 02:21:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12959, '2006-02-14 15:16:03', 1540, 284, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12960, '2005-08-19 06:21:52', 3498, 152, '2005-08-25 04:16:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12961, '2005-08-19 06:22:37', 4529, 386, '2005-08-23 00:49:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12962, '2005-08-19 06:22:48', 575, 171, '2005-08-27 07:47:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12963, '2005-08-19 06:26:04', 1521, 2, '2005-08-23 11:37:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12964, '2005-08-19 06:29:13', 2854, 142, '2005-08-22 12:23:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12965, '2005-08-19 06:33:00', 4308, 430, '2005-08-22 02:02:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12966, '2005-08-19 06:37:48', 3196, 69, '2005-08-26 03:59:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12967, '2005-08-19 06:37:51', 3404, 170, '2005-08-25 06:58:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12968, '2005-08-19 06:38:18', 3108, 166, '2005-08-20 08:29:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12969, '2005-08-19 06:38:59', 191, 224, '2005-08-25 09:09:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12970, '2006-02-14 15:16:03', 3999, 216, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12971, '2005-08-19 06:42:43', 3504, 492, '2005-08-23 10:49:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12972, '2005-08-19 06:43:28', 1218, 55, '2005-08-27 11:30:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12973, '2005-08-19 06:48:11', 128, 163, '2005-08-22 07:18:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12974, '2005-08-19 06:51:02', 3599, 218, '2005-08-25 11:48:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12975, '2005-08-19 06:51:19', 3300, 236, '2005-08-25 04:22:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12976, '2005-08-19 06:52:58', 66, 592, '2005-08-26 11:23:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12977, '2005-08-19 06:55:33', 2004, 388, '2005-08-27 07:38:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12978, '2005-08-19 06:57:27', 3252, 167, '2005-08-20 09:10:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12979, '2005-08-19 07:00:35', 1227, 267, '2005-08-21 06:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12980, '2005-08-19 07:03:14', 1854, 144, '2005-08-26 05:07:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12981, '2005-08-19 07:04:00', 3925, 481, '2005-08-21 09:17:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12982, '2005-08-19 07:06:34', 1258, 44, '2005-08-21 06:53:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12983, '2005-08-19 07:06:51', 406, 148, '2005-08-28 10:35:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12984, '2005-08-19 07:06:51', 4211, 537, '2005-08-22 04:04:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12985, '2005-08-19 07:08:05', 4133, 83, '2005-08-24 02:25:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12986, '2005-08-19 07:09:36', 1145, 210, '2005-08-22 05:01:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12987, '2005-08-19 07:11:44', 3665, 134, '2005-08-20 04:17:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12988, '2006-02-14 15:16:03', 81, 236, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12989, '2005-08-19 07:19:04', 2929, 306, '2005-08-21 10:58:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12990, '2005-08-19 07:20:39', 1825, 360, '2005-08-21 12:31:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12991, '2005-08-19 07:21:24', 2227, 126, '2005-08-21 04:31:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12992, '2005-08-19 07:23:06', 3022, 597, '2005-08-23 06:11:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12993, '2005-08-19 07:24:03', 4225, 484, '2005-08-26 07:15:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12994, '2005-08-19 07:26:10', 3809, 506, '2005-08-20 07:02:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12995, '2005-08-19 07:26:30', 2069, 566, '2005-08-25 12:47:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12996, '2005-08-19 07:31:32', 4445, 380, '2005-08-25 11:59:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12997, '2005-08-19 07:31:46', 1661, 311, '2005-08-24 09:20:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12998, '2005-08-19 07:32:16', 2301, 354, '2005-08-24 01:56:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (12999, '2005-08-19 07:34:53', 661, 24, '2005-08-26 03:57:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13000, '2005-08-19 07:36:42', 2341, 141, '2005-08-22 08:50:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13001, '2005-08-19 07:36:44', 2505, 254, '2005-08-22 13:06:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13002, '2005-08-19 07:37:58', 3892, 477, '2005-08-26 11:32:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13003, '2005-08-19 07:39:29', 3431, 451, '2005-08-23 05:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13004, '2005-08-19 07:40:08', 771, 442, '2005-08-20 11:49:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13005, '2005-08-19 07:45:42', 3417, 104, '2005-08-20 12:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13006, '2005-08-19 07:47:16', 3157, 134, '2005-08-21 06:17:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13007, '2005-08-19 07:47:43', 4280, 430, '2005-08-26 02:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13008, '2006-02-14 15:16:03', 1838, 181, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13009, '2005-08-19 07:50:35', 677, 376, '2005-08-21 06:04:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13010, '2005-08-19 07:52:21', 825, 413, '2005-08-27 12:51:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13011, '2005-08-19 07:53:58', 1998, 529, '2005-08-24 12:00:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13012, '2005-08-19 07:54:59', 1690, 145, '2005-08-26 09:50:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13013, '2005-08-19 07:55:51', 841, 293, '2005-08-26 05:14:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13014, '2005-08-19 07:56:08', 3400, 344, '2005-08-21 10:20:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13015, '2005-08-19 07:56:51', 3461, 126, '2005-08-28 07:05:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13016, '2005-08-19 07:57:14', 3095, 175, '2005-08-23 03:29:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13017, '2005-08-19 08:02:24', 2160, 104, '2005-08-26 07:32:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13018, '2005-08-19 08:04:50', 2122, 168, '2005-08-26 11:46:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13019, '2005-08-19 08:07:43', 2827, 597, '2005-08-20 12:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13020, '2005-08-19 08:07:50', 4501, 92, '2005-08-28 11:42:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13021, '2005-08-19 08:08:04', 1242, 309, '2005-08-26 12:04:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13022, '2006-02-14 15:16:03', 2266, 336, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13023, '2005-08-19 08:13:54', 1566, 69, '2005-08-27 13:18:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13024, '2005-08-19 08:19:21', 2917, 401, '2005-08-27 05:18:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13025, '2006-02-14 15:16:03', 4066, 269, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13026, '2005-08-19 08:22:45', 3026, 79, '2005-08-21 09:31:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13027, '2005-08-19 08:25:16', 3756, 128, '2005-08-25 13:42:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13028, '2005-08-19 08:27:23', 2165, 371, '2005-08-24 03:46:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13029, '2005-08-19 08:28:04', 3283, 293, '2005-08-22 12:25:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13030, '2005-08-19 08:28:11', 2614, 240, '2005-08-24 07:20:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13031, '2005-08-19 08:30:04', 1525, 567, '2005-08-23 09:35:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13032, '2005-08-19 08:31:50', 3699, 82, '2005-08-23 04:00:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13033, '2005-08-19 08:34:39', 1682, 344, '2005-08-28 10:13:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13034, '2005-08-19 08:41:29', 990, 387, '2005-08-20 07:36:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13035, '2005-08-19 08:46:45', 4082, 135, '2005-08-22 11:42:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13036, '2005-08-19 08:48:37', 1469, 20, '2005-08-22 04:13:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13037, '2005-08-19 08:53:57', 65, 275, '2005-08-28 08:56:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13038, '2005-08-19 08:55:16', 2226, 532, '2005-08-25 12:23:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13039, '2005-08-19 08:55:19', 1952, 370, '2005-08-20 07:39:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13040, '2005-08-19 09:04:24', 4113, 425, '2005-08-23 12:36:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13041, '2005-08-19 09:05:38', 1576, 462, '2005-08-27 06:34:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13042, '2005-08-19 09:06:08', 1047, 414, '2005-08-22 13:46:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13043, '2005-08-19 09:07:13', 24, 127, '2005-08-27 07:49:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13044, '2005-08-19 09:14:31', 809, 142, '2005-08-20 11:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13045, '2005-08-19 09:17:35', 389, 254, '2005-08-23 12:04:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13046, '2005-08-19 09:21:10', 965, 37, '2005-08-26 13:00:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13047, '2005-08-19 09:24:49', 2704, 394, '2005-08-24 11:06:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13048, '2005-08-19 09:25:06', 1029, 486, '2005-08-28 11:18:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13049, '2005-08-19 09:25:40', 4122, 53, '2005-08-27 10:19:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13050, '2005-08-19 09:31:23', 3682, 131, '2005-08-26 06:56:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13051, '2005-08-19 09:31:33', 4064, 90, '2005-08-28 06:15:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13052, '2005-08-19 09:31:42', 3036, 502, '2005-08-28 15:11:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13053, '2005-08-19 09:31:48', 2044, 140, '2005-08-28 07:51:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13054, '2005-08-19 09:34:02', 2983, 325, '2005-08-23 05:25:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13055, '2005-08-19 09:36:28', 3580, 485, '2005-08-24 05:53:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13056, '2006-02-14 15:16:03', 3751, 115, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13057, '2005-08-19 09:40:05', 876, 105, '2005-08-28 13:22:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13058, '2005-08-19 09:40:53', 2437, 24, '2005-08-26 05:48:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13059, '2005-08-19 09:42:01', 3810, 341, '2005-08-21 12:07:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13060, '2005-08-19 09:43:25', 507, 22, '2005-08-28 15:22:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13061, '2005-08-19 09:43:39', 730, 576, '2005-08-24 10:03:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13062, '2005-08-19 09:44:17', 1790, 385, '2005-08-27 11:42:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13063, '2005-08-19 09:45:41', 1192, 5, '2005-08-24 09:11:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13064, '2005-08-19 09:46:53', 4131, 588, '2005-08-21 08:29:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13065, '2005-08-19 09:48:52', 1887, 518, '2005-08-22 07:12:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13066, '2005-08-19 09:50:39', 3730, 336, '2005-08-22 14:01:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13067, '2005-08-19 09:51:17', 3825, 172, '2005-08-25 09:58:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13068, '2005-08-19 09:55:16', 3019, 1, '2005-08-20 14:44:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13069, '2005-08-19 09:55:20', 368, 299, '2005-08-24 04:10:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13070, '2005-08-19 09:56:23', 2214, 235, '2005-08-24 09:08:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13071, '2005-08-19 10:01:07', 527, 578, '2005-08-26 14:26:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13072, '2005-08-19 10:03:30', 2313, 447, '2005-08-22 14:27:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13073, '2005-08-19 10:05:38', 855, 506, '2005-08-26 07:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13074, '2005-08-19 10:06:53', 3266, 341, '2005-08-28 09:56:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13075, '2005-08-19 10:10:10', 4125, 224, '2005-08-21 08:44:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13076, '2005-08-19 10:10:26', 1226, 201, '2005-08-22 05:41:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13077, '2005-08-19 10:15:19', 433, 241, '2005-08-21 06:51:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13078, '2005-08-19 10:16:43', 4104, 479, '2005-08-27 11:35:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13079, '2006-02-14 15:16:03', 733, 107, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13080, '2005-08-19 10:18:00', 4222, 452, '2005-08-22 06:37:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13081, '2005-08-19 10:19:06', 3077, 170, '2005-08-20 05:49:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13082, '2005-08-19 10:19:19', 2117, 387, '2005-08-28 05:02:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13083, '2005-08-19 10:26:45', 3469, 455, '2005-08-23 05:31:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13084, '2005-08-19 10:27:25', 3792, 204, '2005-08-26 07:32:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13085, '2005-08-19 10:28:22', 360, 215, '2005-08-22 07:37:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13086, '2005-08-19 10:32:28', 3712, 350, '2005-08-26 07:57:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13087, '2005-08-19 10:33:52', 2693, 171, '2005-08-27 09:15:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13088, '2005-08-19 10:36:11', 4281, 457, '2005-08-21 09:12:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13089, '2005-08-19 10:38:56', 1783, 63, '2005-08-24 12:41:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13090, '2005-08-19 10:39:54', 1447, 52, '2005-08-28 10:31:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13091, '2005-08-19 10:40:10', 1815, 127, '2005-08-23 09:03:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13092, '2005-08-19 10:41:09', 4359, 480, '2005-08-25 05:11:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13093, '2005-08-19 10:46:16', 1667, 160, '2005-08-26 08:05:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13094, '2005-08-19 10:47:58', 3178, 494, '2005-08-21 06:20:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13095, '2005-08-19 10:48:10', 520, 508, '2005-08-28 06:15:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13096, '2005-08-19 10:49:03', 420, 13, '2005-08-21 05:33:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13097, '2005-08-19 10:50:43', 4194, 157, '2005-08-24 11:10:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13098, '2005-08-19 10:51:59', 3770, 51, '2005-08-24 11:27:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13099, '2005-08-19 10:55:19', 969, 436, '2005-08-27 10:54:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13100, '2005-08-19 10:55:45', 916, 451, '2005-08-25 12:28:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13101, '2005-08-19 11:01:54', 1804, 39, '2005-08-27 16:06:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13102, '2005-08-19 11:02:03', 2885, 285, '2005-08-28 13:05:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13103, '2005-08-19 11:05:51', 1751, 274, '2005-08-26 09:16:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13104, '2005-08-19 11:06:06', 310, 591, '2005-08-21 13:50:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13105, '2005-08-19 11:06:16', 729, 279, '2005-08-27 15:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13106, '2006-02-14 15:16:03', 3212, 440, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13107, '2005-08-19 11:13:58', 3870, 356, '2005-08-20 15:03:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13108, '2006-02-14 15:16:03', 3630, 73, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13109, '2005-08-19 11:23:20', 46, 259, '2005-08-25 17:05:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13110, '2005-08-19 11:24:37', 62, 447, '2005-08-21 05:48:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13111, '2005-08-19 11:25:10', 580, 26, '2005-08-21 05:52:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13112, '2005-08-19 11:27:10', 2074, 259, '2005-08-22 05:32:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13113, '2005-08-19 11:27:20', 2393, 573, '2005-08-23 12:40:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13114, '2005-08-19 11:27:32', 4342, 550, '2005-08-28 11:21:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13115, '2005-08-19 11:27:43', 1961, 84, '2005-08-20 10:58:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13116, '2005-08-19 11:31:41', 1544, 150, '2005-08-27 16:05:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13117, '2005-08-19 11:33:20', 3430, 385, '2005-08-20 11:55:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13118, '2005-08-19 11:39:58', 470, 181, '2005-08-25 14:44:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13119, '2005-08-19 11:44:59', 1401, 240, '2005-08-20 12:30:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13120, '2005-08-19 11:47:38', 2273, 314, '2005-08-26 08:20:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13121, '2005-08-19 11:51:39', 3517, 251, '2005-08-22 11:50:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13122, '2005-08-19 11:53:49', 3319, 277, '2005-08-26 16:01:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13123, '2005-08-19 11:55:13', 2804, 220, '2005-08-21 05:55:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13124, '2005-08-19 11:55:59', 2105, 78, '2005-08-26 06:01:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13125, '2005-08-19 11:57:49', 3722, 192, '2005-08-26 07:53:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13126, '2005-08-19 12:00:28', 1392, 253, '2005-08-28 17:27:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13127, '2005-08-19 12:04:03', 2582, 178, '2005-08-27 13:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13128, '2005-08-19 12:04:16', 485, 206, '2005-08-26 16:06:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13129, '2005-08-19 12:05:04', 4455, 274, '2005-08-26 10:24:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13130, '2005-08-19 12:06:42', 2006, 254, '2005-08-23 12:08:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13131, '2005-08-19 12:08:13', 1466, 480, '2005-08-27 13:43:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13132, '2005-08-19 12:10:57', 1748, 529, '2005-08-27 12:22:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13133, '2005-08-19 12:11:03', 1635, 523, '2005-08-28 12:36:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13134, '2005-08-19 12:14:14', 1354, 184, '2005-08-20 11:52:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13135, '2005-08-19 12:22:52', 1585, 361, '2005-08-21 14:04:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13136, '2005-08-19 12:24:23', 2532, 50, '2005-08-28 08:37:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13137, '2005-08-19 12:26:32', 4431, 20, '2005-08-22 13:26:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13138, '2005-08-19 12:30:01', 3138, 214, '2005-08-21 06:35:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13139, '2005-08-19 12:32:10', 2099, 554, '2005-08-24 12:12:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13140, '2005-08-19 12:35:56', 4210, 323, '2005-08-27 18:24:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13141, '2005-08-19 12:41:41', 4545, 376, '2005-08-21 08:17:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13142, '2005-08-19 12:42:28', 1404, 269, '2005-08-26 14:52:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13143, '2005-08-19 12:44:38', 1655, 371, '2005-08-25 10:59:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13144, '2005-08-19 12:45:55', 3766, 456, '2005-08-27 10:37:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13145, '2005-08-19 12:53:53', 1383, 72, '2005-08-23 08:06:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13146, '2005-08-19 12:54:42', 1463, 116, '2005-08-26 07:31:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13147, '2005-08-19 12:55:09', 3490, 37, '2005-08-22 18:10:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13148, '2005-08-19 12:55:30', 1762, 137, '2005-08-21 11:01:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13149, '2005-08-19 13:07:12', 1436, 40, '2005-08-28 18:12:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13150, '2005-08-19 13:08:19', 1514, 457, '2005-08-25 18:00:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13151, '2005-08-19 13:08:23', 3045, 16, '2005-08-20 12:38:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13152, '2005-08-19 13:09:32', 3571, 597, '2005-08-25 14:47:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13153, '2005-08-19 13:09:47', 3896, 431, '2005-08-23 17:35:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13154, '2005-08-19 13:09:54', 2465, 255, '2005-08-26 16:40:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13155, '2005-08-19 13:10:23', 290, 442, '2005-08-25 19:07:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13156, '2005-08-19 13:10:42', 770, 512, '2005-08-25 15:08:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13157, '2005-08-19 13:12:28', 4391, 592, '2005-08-20 10:41:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13158, '2005-08-19 13:18:10', 944, 327, '2005-08-25 09:27:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13159, '2005-08-19 13:19:59', 2300, 497, '2005-08-21 09:22:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13160, '2005-08-19 13:21:04', 410, 484, '2005-08-22 18:49:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13161, '2006-02-14 15:16:03', 986, 175, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13162, '2005-08-19 13:28:26', 1845, 478, '2005-08-24 17:37:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13163, '2005-08-19 13:29:46', 3068, 57, '2005-08-22 07:48:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13164, '2005-08-19 13:30:55', 1104, 145, '2005-08-26 10:12:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13165, '2005-08-19 13:34:10', 138, 289, '2005-08-21 18:33:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13166, '2005-08-19 13:36:28', 4386, 504, '2005-08-22 07:57:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13167, '2005-08-19 13:36:41', 557, 120, '2005-08-23 15:29:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13168, '2005-08-19 13:37:28', 2210, 186, '2005-08-27 17:54:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13169, '2005-08-19 13:43:35', 1709, 141, '2005-08-26 09:31:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13170, '2005-08-19 13:45:48', 1072, 176, '2005-08-27 11:00:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13171, '2005-08-19 13:48:54', 1765, 122, '2005-08-27 18:57:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13172, '2005-08-19 13:49:07', 1301, 298, '2005-08-20 19:39:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13173, '2005-08-19 13:50:36', 1304, 29, '2005-08-26 12:34:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13174, '2005-08-19 13:52:50', 2303, 482, '2005-08-22 14:43:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13175, '2005-08-19 13:54:53', 3187, 239, '2005-08-20 16:25:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13176, '2005-08-19 13:56:54', 2269, 1, '2005-08-23 08:50:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13177, '2005-08-19 13:56:58', 3172, 126, '2005-08-23 13:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13178, '2006-02-14 15:16:03', 693, 394, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13179, '2005-08-19 13:59:53', 1624, 104, '2005-08-25 12:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13180, '2005-08-19 14:00:38', 3443, 322, '2005-08-20 09:56:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13181, '2005-08-19 14:00:56', 1256, 128, '2005-08-24 13:52:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13182, '2006-02-14 15:16:03', 364, 496, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13183, '2005-08-19 14:09:26', 2404, 301, '2005-08-28 08:44:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13184, '2005-08-19 14:16:18', 4395, 393, '2005-08-20 08:44:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13185, '2005-08-19 14:22:30', 241, 174, '2005-08-20 10:13:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13186, '2005-08-19 14:23:19', 2802, 176, '2005-08-28 11:26:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13187, '2005-08-19 14:24:48', 1944, 543, '2005-08-20 19:37:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13188, '2005-08-19 14:27:03', 583, 472, '2005-08-28 09:15:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13189, '2005-08-19 14:27:16', 3444, 368, '2005-08-28 10:34:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13190, '2005-08-19 14:27:59', 4316, 290, '2005-08-26 13:45:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13191, '2005-08-19 14:28:48', 2753, 371, '2005-08-23 12:53:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13192, '2005-08-19 14:30:06', 966, 532, '2005-08-27 15:20:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13193, '2005-08-19 14:33:45', 523, 118, '2005-08-28 08:46:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13194, '2005-08-19 14:34:12', 2473, 58, '2005-08-26 10:18:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13195, '2005-08-19 14:39:14', 2537, 565, '2005-08-24 10:30:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13196, '2005-08-19 14:40:32', 458, 202, '2005-08-26 18:15:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13197, '2005-08-19 14:44:03', 3190, 358, '2005-08-22 10:11:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13198, '2005-08-19 14:47:18', 4273, 169, '2005-08-21 18:09:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13199, '2005-08-19 14:53:22', 4291, 339, '2005-08-27 19:03:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13200, '2005-08-19 14:55:58', 2746, 577, '2005-08-27 11:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13201, '2005-08-19 14:56:05', 111, 508, '2005-08-25 14:37:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13202, '2005-08-19 14:58:30', 3546, 381, '2005-08-27 17:10:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13203, '2005-08-19 15:00:58', 804, 257, '2005-08-27 15:38:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13204, '2005-08-19 15:02:48', 4524, 152, '2005-08-24 18:07:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13205, '2005-08-19 15:05:26', 2616, 495, '2005-08-25 10:41:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13206, '2005-08-19 15:05:34', 2477, 504, '2005-08-21 20:37:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13207, '2005-08-19 15:14:38', 674, 58, '2005-08-27 16:09:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13208, '2005-08-19 15:18:55', 609, 435, '2005-08-24 11:59:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13209, '2006-02-14 15:16:03', 1574, 5, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13210, '2005-08-19 15:23:38', 2789, 487, '2005-08-21 11:57:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13211, '2005-08-19 15:23:41', 1968, 289, '2005-08-22 16:58:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13212, '2005-08-19 15:24:07', 3691, 158, '2005-08-24 21:03:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13213, '2005-08-19 15:25:48', 1546, 13, '2005-08-22 09:32:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13214, '2005-08-19 15:31:06', 2675, 157, '2005-08-20 19:58:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13215, '2005-08-19 15:35:38', 3740, 460, '2005-08-27 12:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13216, '2005-08-19 15:36:05', 4335, 422, '2005-08-25 19:03:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13217, '2005-08-19 15:38:39', 616, 565, '2005-08-21 14:33:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13218, '2005-08-19 15:39:39', 4148, 257, '2005-08-22 17:28:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13219, '2005-08-19 15:40:28', 2075, 288, '2005-08-22 21:20:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13220, '2005-08-19 15:42:32', 1017, 448, '2005-08-25 13:37:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13221, '2005-08-19 15:45:47', 120, 468, '2005-08-26 21:10:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13222, '2005-08-19 15:47:58', 1656, 91, '2005-08-26 12:43:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13223, '2005-08-19 15:52:04', 332, 461, '2005-08-22 16:27:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13224, '2005-08-19 15:52:13', 3086, 526, '2005-08-28 20:53:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13225, '2005-08-19 15:54:33', 1420, 562, '2005-08-25 16:40:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13226, '2005-08-19 16:05:36', 2850, 46, '2005-08-21 10:07:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13227, '2005-08-19 16:05:38', 2759, 288, '2005-08-20 21:39:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13228, '2005-08-19 16:08:16', 2497, 571, '2005-08-20 18:55:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13229, '2005-08-19 16:08:33', 634, 283, '2005-08-22 19:54:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13230, '2005-08-19 16:12:07', 3645, 151, '2005-08-21 12:19:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13231, '2005-08-19 16:12:49', 2126, 280, '2005-08-27 17:14:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13232, '2005-08-19 16:13:32', 2370, 206, '2005-08-28 14:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13233, '2005-08-19 16:14:41', 1057, 279, '2005-08-24 21:13:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13234, '2005-08-19 16:17:15', 976, 559, '2005-08-27 12:36:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13235, '2005-08-19 16:17:53', 3902, 367, '2005-08-27 14:57:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13236, '2005-08-19 16:18:24', 4574, 267, '2005-08-27 17:48:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13237, '2005-08-19 16:18:36', 1272, 169, '2005-08-25 15:22:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13238, '2005-08-19 16:20:56', 985, 348, '2005-08-23 15:51:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13239, '2005-08-19 16:22:13', 3296, 541, '2005-08-23 19:26:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13240, '2005-08-19 16:22:14', 1411, 179, '2005-08-20 13:24:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13241, '2005-08-19 16:25:00', 3106, 33, '2005-08-26 12:27:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13242, '2005-08-19 16:28:47', 230, 414, '2005-08-24 22:13:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13243, '2005-08-19 16:33:16', 355, 251, '2005-08-25 13:19:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13244, '2005-08-19 16:43:04', 3246, 298, '2005-08-22 15:21:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13245, '2005-08-19 16:43:41', 1001, 261, '2005-08-20 21:17:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13246, '2006-02-14 15:16:03', 1849, 411, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13247, '2005-08-19 16:45:59', 1271, 24, '2005-08-25 15:25:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13248, '2005-08-19 16:47:41', 2864, 559, '2005-08-28 18:11:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13249, '2005-08-19 16:47:41', 3084, 377, '2005-08-20 13:30:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13250, '2005-08-19 16:47:55', 2524, 448, '2005-08-26 16:54:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13251, '2005-08-19 16:48:37', 4216, 111, '2005-08-20 16:33:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13252, '2005-08-19 16:50:50', 775, 451, '2005-08-22 22:09:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13253, '2005-08-19 16:53:56', 472, 399, '2005-08-20 11:38:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13254, '2005-08-19 16:54:01', 3412, 532, '2005-08-27 19:50:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13255, '2005-08-19 16:54:12', 1101, 150, '2005-08-28 17:00:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13256, '2005-08-19 16:54:12', 2719, 289, '2005-08-28 16:54:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13257, '2005-08-19 17:01:20', 164, 300, '2005-08-24 17:26:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13258, '2005-08-19 17:05:37', 2246, 349, '2005-08-24 17:36:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13259, '2005-08-19 17:08:53', 2518, 458, '2005-08-23 14:14:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13260, '2005-08-19 17:09:22', 578, 251, '2005-08-24 21:31:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13261, '2006-02-14 15:16:03', 3538, 417, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13262, '2005-08-19 17:20:15', 4483, 184, '2005-08-26 18:28:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13263, '2005-08-19 17:26:55', 214, 206, '2005-08-28 20:07:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13264, '2005-08-19 17:27:10', 1881, 109, '2005-08-27 16:00:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13265, '2005-08-19 17:29:00', 3933, 314, '2005-08-20 12:59:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13266, '2005-08-19 17:31:20', 1326, 571, '2005-08-21 11:41:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13267, '2005-08-19 17:31:36', 550, 335, '2005-08-21 13:47:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13268, '2005-08-19 17:33:50', 1166, 255, '2005-08-25 17:15:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13269, '2005-08-19 17:34:00', 2382, 461, '2005-08-20 15:17:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13270, '2005-08-19 17:41:16', 405, 159, '2005-08-23 20:22:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13271, '2005-08-19 17:42:06', 3872, 242, '2005-08-27 18:39:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13272, '2005-08-19 17:49:13', 2531, 145, '2005-08-23 15:49:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13273, '2005-08-19 17:49:13', 4181, 433, '2005-08-21 14:15:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13274, '2005-08-19 17:50:03', 704, 272, '2005-08-20 14:39:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13275, '2005-08-19 17:53:38', 710, 377, '2005-08-23 16:29:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13276, '2005-08-19 17:53:42', 625, 516, '2005-08-28 20:49:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13277, '2005-08-19 17:57:35', 3820, 316, '2005-08-25 15:45:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13278, '2005-08-19 17:57:53', 2691, 282, '2005-08-22 23:16:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13279, '2005-08-19 18:02:18', 2472, 343, '2005-08-24 22:15:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13280, '2005-08-19 18:02:51', 218, 368, '2005-08-21 23:17:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13281, '2005-08-19 18:07:47', 113, 220, '2005-08-20 21:51:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13282, '2005-08-19 18:08:18', 4373, 59, '2005-08-24 14:08:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13283, '2005-08-19 18:10:19', 2602, 180, '2005-08-23 16:09:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13284, '2005-08-19 18:12:31', 2128, 338, '2005-08-25 21:26:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13285, '2005-08-19 18:18:44', 2139, 182, '2005-08-20 12:33:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13286, '2005-08-19 18:28:07', 2685, 245, '2005-08-22 17:23:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13287, '2005-08-19 18:28:24', 2716, 569, '2005-08-26 20:13:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13288, '2005-08-19 18:30:10', 3558, 162, '2005-08-20 19:20:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13289, '2005-08-19 18:31:30', 3527, 497, '2005-08-20 13:43:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13290, '2005-08-19 18:31:50', 4174, 23, '2005-08-25 15:49:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13291, '2005-08-19 18:32:11', 1631, 243, '2005-08-20 18:22:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13292, '2005-08-19 18:35:32', 1336, 171, '2005-08-22 00:27:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13293, '2005-08-19 18:35:52', 380, 399, '2005-08-23 17:18:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13294, '2005-08-19 18:36:35', 156, 534, '2005-08-20 13:57:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13295, '2006-02-14 15:16:03', 2408, 229, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13296, '2005-08-19 18:43:53', 1728, 300, '2005-08-21 23:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13297, '2005-08-19 18:45:49', 3818, 359, '2005-08-22 14:58:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13298, '2006-02-14 15:16:03', 2133, 361, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13299, '2005-08-19 18:46:33', 4385, 373, '2005-08-22 20:45:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13300, '2005-08-19 18:46:56', 842, 531, '2005-08-28 20:23:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13301, '2005-08-19 18:53:15', 2261, 494, '2005-08-26 21:37:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13302, '2005-08-19 18:54:26', 4041, 51, '2005-08-21 23:01:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13303, '2005-08-19 18:55:21', 34, 184, '2005-08-23 18:49:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13304, '2005-08-19 18:56:32', 2979, 405, '2005-08-23 20:04:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13305, '2005-08-19 18:57:05', 2386, 337, '2005-08-28 22:28:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13306, '2005-08-19 18:57:29', 2742, 229, '2005-08-20 20:09:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13307, '2005-08-19 18:58:44', 2242, 547, '2005-08-22 00:15:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13308, '2005-08-19 18:59:42', 3189, 414, '2005-08-28 13:21:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13309, '2005-08-19 19:04:00', 2108, 91, '2005-08-28 23:08:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13310, '2005-08-19 19:05:16', 2563, 311, '2005-08-23 22:47:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13311, '2005-08-19 19:07:09', 3890, 520, '2005-08-20 23:07:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13312, '2005-08-19 19:09:14', 2891, 418, '2005-08-23 00:50:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13313, '2005-08-19 19:11:41', 3709, 580, '2005-08-21 23:53:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13314, '2005-08-19 19:12:43', 2899, 347, '2005-08-27 00:20:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13315, '2005-08-19 19:16:18', 3151, 54, '2005-08-21 20:58:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13316, '2005-08-19 19:23:30', 4450, 10, '2005-08-22 23:37:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13317, '2005-08-19 19:25:42', 3349, 20, '2005-08-20 20:57:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13318, '2005-08-19 19:33:57', 1389, 413, '2005-08-21 17:52:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13319, '2005-08-19 19:35:13', 2496, 438, '2005-08-27 17:59:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13320, '2005-08-19 19:35:33', 4522, 172, '2005-08-24 20:09:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13321, '2005-08-19 19:40:37', 4183, 280, '2005-08-21 19:09:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13322, '2005-08-19 19:43:08', 2149, 559, '2005-08-24 16:30:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13323, '2005-08-19 19:48:07', 1055, 133, '2005-08-23 15:28:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13324, '2005-08-19 19:51:00', 4349, 564, '2005-08-20 20:26:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13325, '2005-08-19 19:52:02', 2388, 334, '2005-08-22 21:14:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13326, '2005-08-19 19:52:52', 429, 576, '2005-08-20 18:56:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13327, '2005-08-19 19:55:45', 1808, 72, '2005-08-22 15:05:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13328, '2005-08-19 19:56:01', 605, 462, '2005-08-20 22:16:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13329, '2005-08-19 19:56:55', 3136, 373, '2005-08-25 01:19:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13330, '2005-08-19 19:59:21', 4276, 297, '2005-08-20 15:34:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13331, '2005-08-19 20:00:25', 3867, 23, '2005-08-21 17:03:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13332, '2005-08-19 20:00:51', 3144, 503, '2005-08-25 14:30:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13333, '2006-02-14 15:16:03', 1092, 64, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13334, '2005-08-19 20:02:33', 461, 379, '2005-08-22 00:45:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13335, '2005-08-19 20:03:18', 1861, 74, '2005-08-24 20:09:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13336, '2005-08-19 20:03:22', 1011, 289, '2005-08-24 23:42:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13337, '2005-08-19 20:06:57', 3584, 374, '2005-08-20 16:31:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13338, '2005-08-19 20:09:59', 3739, 86, '2005-08-23 22:59:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13339, '2005-08-19 20:18:36', 1428, 15, '2005-08-28 21:34:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13340, '2005-08-19 20:18:39', 4358, 45, '2005-08-28 21:06:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13341, '2005-08-19 20:18:53', 1749, 460, '2005-08-27 14:36:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13342, '2005-08-19 20:21:36', 3476, 172, '2005-08-21 16:26:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13343, '2005-08-19 20:22:08', 1032, 591, '2005-08-27 17:21:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13344, '2005-08-19 20:22:44', 4392, 514, '2005-08-25 18:39:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13345, '2005-08-19 20:25:24', 47, 55, '2005-08-27 20:38:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13346, '2005-08-19 20:28:21', 4541, 131, '2005-08-28 00:28:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13347, '2005-08-19 20:28:48', 4038, 562, '2005-08-28 19:33:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13348, '2005-08-19 20:31:48', 275, 456, '2005-08-21 21:01:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13349, '2005-08-19 20:43:16', 4262, 234, '2005-08-20 16:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13350, '2005-08-19 20:44:00', 3523, 214, '2005-08-27 01:23:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13351, '2006-02-14 15:16:03', 4130, 42, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13352, '2005-08-19 20:51:40', 2689, 80, '2005-08-24 01:22:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13353, '2005-08-19 20:53:43', 2790, 131, '2005-08-25 01:25:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13354, '2005-08-19 20:55:23', 1356, 213, '2005-08-27 20:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13355, '2005-08-19 20:59:19', 585, 396, '2005-08-23 21:44:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13356, '2005-08-19 21:02:21', 2713, 324, '2005-08-24 00:31:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13357, '2005-08-19 21:02:59', 3295, 393, '2005-08-25 23:46:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13358, '2005-08-19 21:04:20', 1510, 439, '2005-08-24 20:49:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13359, '2005-08-19 21:04:49', 4175, 434, '2005-08-27 01:46:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13360, '2005-08-19 21:05:11', 3396, 327, '2005-08-24 16:05:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13361, '2005-08-19 21:07:22', 4289, 107, '2005-08-21 21:26:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13362, '2005-08-19 21:07:54', 869, 565, '2005-08-20 17:29:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13363, '2005-08-19 21:07:59', 588, 288, '2005-08-21 17:08:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13364, '2005-08-19 21:09:30', 2773, 236, '2005-08-25 18:37:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13365, '2005-08-19 21:12:37', 4136, 307, '2005-08-25 19:56:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13366, '2005-08-19 21:14:45', 602, 259, '2005-08-21 03:06:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13367, '2005-08-19 21:19:27', 4569, 290, '2005-08-24 15:22:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13368, '2005-08-19 21:19:35', 1073, 342, '2005-08-21 16:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13369, '2005-08-19 21:19:47', 2728, 116, '2005-08-24 23:25:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13370, '2005-08-19 21:20:11', 239, 101, '2005-08-25 22:51:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13371, '2005-08-19 21:21:47', 3401, 34, '2005-08-26 16:17:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13372, '2005-08-19 21:23:19', 3366, 150, '2005-08-24 22:12:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13373, '2005-08-19 21:23:31', 4045, 7, '2005-08-25 22:38:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13374, '2006-02-14 15:16:03', 2721, 227, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13375, '2005-08-19 21:31:31', 949, 120, '2005-08-29 00:17:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13376, '2005-08-19 21:31:45', 898, 40, '2005-08-22 01:14:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13377, '2005-08-19 21:32:23', 1316, 572, '2005-08-25 22:24:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13378, '2005-08-19 21:33:35', 2708, 368, '2005-08-20 22:47:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13379, '2005-08-19 21:33:39', 1623, 227, '2005-08-22 21:00:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13380, '2005-08-19 21:36:58', 4250, 451, '2005-08-22 23:55:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13381, '2005-08-19 21:37:57', 2823, 21, '2005-08-21 18:07:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13382, '2005-08-19 21:38:41', 3720, 436, '2005-08-28 15:49:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13383, '2005-08-19 21:38:44', 3193, 434, '2005-08-28 23:22:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13384, '2005-08-19 21:38:51', 1462, 440, '2005-08-23 17:55:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13385, '2005-08-19 21:39:35', 4323, 252, '2005-08-22 22:38:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13386, '2005-08-19 21:43:58', 4476, 324, '2005-08-24 20:29:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13387, '2005-08-19 21:46:10', 123, 504, '2005-08-24 01:16:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13388, '2005-08-19 21:46:49', 942, 317, '2005-08-27 16:18:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13389, '2005-08-19 21:52:51', 3352, 257, '2005-08-25 02:38:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13390, '2006-02-14 15:16:03', 2855, 135, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13391, '2005-08-19 22:01:42', 4220, 16, '2005-08-24 22:20:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13392, '2005-08-19 22:03:22', 692, 409, '2005-08-28 19:27:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13393, '2005-08-19 22:03:46', 958, 15, '2005-08-28 19:19:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13394, '2005-08-19 22:05:19', 2597, 45, '2005-08-21 23:53:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13395, '2005-08-19 22:05:40', 53, 80, '2005-08-22 01:31:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13396, '2005-08-19 22:06:09', 4169, 517, '2005-08-23 23:26:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13397, '2005-08-19 22:06:35', 3863, 379, '2005-08-29 01:11:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13398, '2005-08-19 22:08:48', 3376, 405, '2005-08-23 03:24:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13399, '2005-08-19 22:09:28', 2309, 21, '2005-08-25 20:25:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13400, '2005-08-19 22:11:44', 2173, 179, '2005-08-20 23:27:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13401, '2005-08-19 22:16:16', 488, 139, '2005-08-25 19:01:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13402, '2005-08-19 22:16:53', 3264, 372, '2005-08-22 22:28:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13403, '2005-08-19 22:18:07', 3241, 3, '2005-08-27 19:23:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13404, '2005-08-19 22:18:42', 416, 414, '2005-08-23 16:29:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13405, '2005-08-19 22:20:49', 1554, 181, '2005-08-28 21:21:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13406, '2005-08-19 22:22:01', 3031, 113, '2005-08-22 18:16:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13407, '2005-08-19 22:26:26', 2512, 131, '2005-08-22 16:34:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13408, '2005-08-19 22:34:51', 2795, 575, '2005-08-21 03:30:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13409, '2005-08-19 22:36:26', 873, 214, '2005-08-22 01:52:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13410, '2005-08-19 22:41:44', 1421, 104, '2005-08-26 18:05:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13411, '2005-08-19 22:43:38', 4425, 21, '2005-08-26 18:29:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13412, '2005-08-19 22:46:35', 2806, 404, '2005-08-26 18:06:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13413, '2005-08-19 22:46:46', 1501, 390, '2005-08-24 22:52:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13414, '2005-08-19 22:47:34', 4126, 438, '2005-08-21 02:50:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13415, '2005-08-19 22:48:09', 1105, 181, '2005-08-25 02:09:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13416, '2005-08-19 22:48:48', 1075, 204, '2005-08-21 22:09:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13417, '2005-08-19 22:51:39', 92, 468, '2005-08-23 03:34:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13418, '2005-08-19 22:53:56', 2113, 246, '2005-08-28 02:05:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13419, '2006-02-14 15:16:03', 3507, 537, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13420, '2005-08-19 22:57:25', 1796, 102, '2005-08-28 22:46:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13421, '2006-02-14 15:16:03', 9, 366, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13422, '2005-08-19 23:07:24', 3835, 404, '2005-08-28 04:12:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13423, '2005-08-19 23:07:42', 546, 311, '2005-08-26 20:45:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13424, '2005-08-19 23:10:09', 4340, 216, '2005-08-23 02:25:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13425, '2005-08-19 23:11:44', 2274, 340, '2005-08-25 21:19:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13426, '2005-08-19 23:15:00', 3409, 213, '2005-08-21 01:53:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13427, '2005-08-19 23:19:02', 3120, 239, '2005-08-21 18:30:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13428, '2006-02-14 15:16:03', 106, 44, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13429, '2005-08-19 23:25:37', 3677, 23, '2005-08-28 01:04:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13430, '2005-08-19 23:25:43', 2852, 381, '2005-08-22 18:41:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13431, '2005-08-19 23:28:15', 1700, 229, '2005-08-25 04:44:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13432, '2005-08-19 23:29:06', 2216, 78, '2005-08-23 00:57:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13433, '2005-08-19 23:30:53', 1647, 171, '2005-08-22 05:18:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13434, '2005-08-19 23:34:26', 2073, 221, '2005-08-23 18:33:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13435, '2005-08-19 23:35:44', 3919, 30, '2005-08-24 18:14:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13436, '2005-08-19 23:36:25', 2499, 29, '2005-08-23 18:38:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13437, '2005-08-19 23:37:52', 2292, 67, '2005-08-28 22:17:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13438, '2005-08-19 23:38:02', 1750, 520, '2005-08-26 21:36:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13439, '2005-08-19 23:42:16', 3535, 551, '2005-08-26 21:24:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13440, '2005-08-19 23:42:52', 2842, 260, '2005-08-25 19:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13441, '2005-08-19 23:48:23', 3188, 125, '2005-08-28 23:47:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13442, '2005-08-19 23:50:45', 2432, 356, '2005-08-27 22:01:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13443, '2005-08-19 23:53:42', 3161, 236, '2005-08-28 05:37:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13444, '2005-08-20 00:00:24', 2564, 37, '2005-08-21 05:59:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13445, '2005-08-20 00:05:33', 1630, 495, '2005-08-21 21:20:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13446, '2005-08-20 00:06:13', 3226, 488, '2005-08-22 19:56:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13447, '2005-08-20 00:09:36', 285, 542, '2005-08-25 01:22:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13448, '2005-08-20 00:12:43', 2870, 327, '2005-08-25 02:33:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13449, '2005-08-20 00:17:01', 1297, 400, '2005-08-23 20:42:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13450, '2005-08-20 00:18:15', 135, 61, '2005-08-24 19:36:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13451, '2005-08-20 00:18:25', 3837, 6, '2005-08-29 01:08:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13452, '2005-08-20 00:20:07', 2449, 430, '2005-08-25 05:43:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13453, '2005-08-20 00:30:51', 2203, 164, '2005-08-28 18:43:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13454, '2005-08-20 00:30:52', 1553, 430, '2005-08-27 19:45:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13455, '2005-08-20 00:32:17', 1315, 133, '2005-08-26 19:33:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13456, '2005-08-20 00:33:19', 1644, 13, '2005-08-22 01:47:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13457, '2005-08-20 00:33:22', 1220, 256, '2005-08-26 21:37:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13458, '2005-08-20 00:35:30', 4223, 228, '2005-08-21 20:51:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13459, '2005-08-20 00:45:40', 3666, 114, '2005-08-29 02:53:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13460, '2005-08-20 00:48:24', 244, 410, '2005-08-28 04:13:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13461, '2005-08-20 00:49:04', 2621, 421, '2005-08-28 02:49:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13462, '2005-08-20 00:49:19', 3865, 489, '2005-08-26 06:21:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13463, '2005-08-20 00:50:54', 510, 21, '2005-08-28 23:00:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13464, '2006-02-14 15:16:03', 4292, 576, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13465, '2005-08-20 00:54:14', 1305, 575, '2005-08-21 20:55:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13466, '2005-08-20 00:55:16', 3088, 262, '2005-08-22 22:48:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13467, '2005-08-20 00:56:44', 696, 373, '2005-08-20 20:16:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13468, '2005-08-20 00:56:44', 1851, 266, '2005-08-29 06:26:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13469, '2005-08-20 00:59:36', 1410, 235, '2005-08-24 22:41:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13470, '2005-08-20 01:01:16', 3097, 141, '2005-08-21 03:19:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13471, '2005-08-20 01:02:26', 1391, 296, '2005-08-25 06:37:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13472, '2005-08-20 01:03:31', 3074, 137, '2005-08-28 02:54:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13473, '2005-08-20 01:03:50', 381, 390, '2005-08-22 02:33:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13474, '2005-08-20 01:04:32', 1209, 116, '2005-08-21 20:26:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13475, '2005-08-20 01:05:05', 3214, 68, '2005-08-20 20:22:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13476, '2005-08-20 01:06:04', 2866, 7, '2005-08-24 23:56:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13477, '2005-08-20 01:07:00', 1442, 222, '2005-08-26 02:47:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13478, '2005-08-20 01:07:14', 2190, 466, '2005-08-22 03:41:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13479, '2005-08-20 01:09:11', 1262, 87, '2005-08-26 05:35:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13480, '2005-08-20 01:10:27', 206, 16, '2005-08-27 22:18:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13481, '2005-08-20 01:11:12', 2678, 157, '2005-08-26 23:07:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13482, '2005-08-20 01:14:30', 1627, 183, '2005-08-24 04:57:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13483, '2005-08-20 01:16:38', 2550, 441, '2005-08-21 20:43:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13484, '2005-08-20 01:16:52', 1533, 152, '2005-08-22 23:47:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13485, '2005-08-20 01:20:14', 3802, 379, '2005-08-22 01:28:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13486, '2006-02-14 15:16:03', 4460, 274, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13487, '2005-08-20 01:27:05', 2609, 458, '2005-08-24 00:41:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13488, '2005-08-20 01:28:42', 867, 444, '2005-08-25 06:17:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13489, '2005-08-20 01:29:06', 2934, 443, '2005-08-27 21:11:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13490, '2005-08-20 01:29:29', 238, 18, '2005-08-21 22:36:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13491, '2005-08-20 01:30:56', 2503, 258, '2005-08-28 23:26:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13492, '2005-08-20 01:32:04', 1155, 462, '2005-08-29 02:14:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13493, '2005-08-20 01:33:36', 2927, 37, '2005-08-24 06:32:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13494, '2005-08-20 01:36:34', 1632, 414, '2005-08-21 06:52:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13495, '2005-08-20 01:40:25', 3881, 92, '2005-08-23 06:32:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13496, '2005-08-20 01:42:29', 3040, 454, '2005-08-29 06:47:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13497, '2005-08-20 01:46:38', 1296, 481, '2005-08-26 05:37:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13498, '2005-08-20 01:51:23', 1603, 578, '2005-08-24 05:32:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13499, '2005-08-20 01:52:30', 1893, 300, '2005-08-28 04:57:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13500, '2005-08-20 01:54:39', 1353, 577, '2005-08-25 21:23:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13501, '2005-08-20 01:56:20', 4369, 390, '2005-08-22 23:07:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13502, '2005-08-20 01:58:15', 1324, 309, '2005-08-21 20:21:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13503, '2005-08-20 02:00:33', 453, 15, '2005-08-28 21:03:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13504, '2005-08-20 02:01:48', 4322, 293, '2005-08-25 21:52:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13505, '2005-08-20 02:05:57', 914, 536, '2005-08-23 05:52:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13506, '2005-08-20 02:07:06', 1334, 261, '2005-08-26 08:06:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13507, '2005-08-20 02:10:27', 3324, 478, '2005-08-23 04:03:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13508, '2005-08-20 02:12:54', 4120, 408, '2005-08-28 21:47:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13509, '2005-08-20 02:14:16', 3698, 128, '2005-08-22 06:36:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13510, '2005-08-20 02:18:30', 691, 107, '2005-08-27 01:33:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13511, '2005-08-20 02:21:40', 2973, 23, '2005-08-21 03:26:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13512, '2005-08-20 02:27:13', 4508, 62, '2005-08-28 04:40:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13513, '2005-08-20 02:27:53', 1653, 454, '2005-08-22 06:10:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13514, '2005-08-20 02:28:09', 3407, 96, '2005-08-25 00:41:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13515, '2005-08-20 02:29:47', 3438, 194, '2005-08-23 08:12:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13516, '2005-08-20 02:32:45', 4286, 95, '2005-08-27 04:38:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13517, '2005-08-20 02:33:17', 533, 186, '2005-08-23 22:40:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13518, '2005-08-20 02:36:17', 352, 528, '2005-08-24 08:06:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13519, '2005-08-20 02:37:07', 182, 12, '2005-08-23 01:26:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13520, '2005-08-20 02:41:46', 3326, 74, '2005-08-22 01:53:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13521, '2005-08-20 02:42:28', 2586, 384, '2005-08-22 06:12:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13522, '2005-08-20 02:44:06', 2940, 343, '2005-08-28 05:30:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13523, '2005-08-20 02:47:03', 163, 572, '2005-08-28 07:43:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13524, '2005-08-20 02:48:43', 4557, 593, '2005-08-27 03:14:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13525, '2005-08-20 02:50:44', 3514, 111, '2005-08-26 22:58:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13526, '2005-08-20 02:58:42', 1966, 277, '2005-08-27 22:36:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13527, '2005-08-20 03:00:47', 4424, 521, '2005-08-25 01:03:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13528, '2005-08-20 03:03:31', 1847, 202, '2005-08-26 03:09:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13529, '2005-08-20 03:07:47', 1979, 193, '2005-08-21 21:50:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13530, '2005-08-20 03:12:43', 597, 156, '2005-08-23 09:01:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13531, '2005-08-20 03:26:10', 2778, 156, '2005-08-25 03:41:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13532, '2005-08-20 03:29:28', 1433, 168, '2005-08-23 22:53:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13533, '2005-08-20 03:30:00', 1801, 436, '2005-08-27 05:53:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13534, '2006-02-14 15:16:03', 2476, 75, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13535, '2005-08-20 03:30:25', 1563, 86, '2005-08-28 04:35:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13536, '2005-08-20 03:35:16', 667, 183, '2005-08-25 04:06:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13537, '2005-08-20 03:39:15', 2521, 418, '2005-08-23 22:03:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13538, '2006-02-14 15:16:03', 581, 279, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13539, '2005-08-20 03:40:27', 3110, 518, '2005-08-27 07:15:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13540, '2005-08-20 03:41:23', 3785, 557, '2005-08-27 09:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13541, '2005-08-20 03:41:41', 1363, 15, '2005-08-24 23:14:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13542, '2005-08-20 03:41:57', 4543, 147, '2005-08-29 03:21:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13543, '2005-08-20 03:43:13', 2142, 163, '2005-08-29 07:14:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13544, '2005-08-20 03:44:26', 58, 538, '2005-08-27 22:11:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13545, '2005-08-20 03:50:15', 615, 417, '2005-08-27 22:24:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13546, '2005-08-20 03:50:24', 2492, 390, '2005-08-28 03:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13547, '2005-08-20 03:53:16', 3122, 456, '2005-08-25 04:02:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13548, '2005-08-20 03:53:20', 4389, 319, '2005-08-27 21:54:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13549, '2005-08-20 03:58:41', 508, 274, '2005-08-28 22:49:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13550, '2005-08-20 03:58:51', 208, 206, '2005-08-28 00:45:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13551, '2005-08-20 04:00:30', 1049, 503, '2005-08-21 06:26:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13552, '2005-08-20 04:03:51', 758, 578, '2005-08-23 02:48:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13553, '2005-08-20 04:07:21', 4407, 314, '2005-08-28 09:55:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13554, '2005-08-20 04:08:39', 2648, 569, '2005-08-28 07:11:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13555, '2005-08-20 04:09:50', 3176, 93, '2005-08-29 05:20:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13556, '2005-08-20 04:10:26', 3914, 266, '2005-08-26 06:45:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13557, '2005-08-20 04:12:41', 2290, 23, '2005-08-21 02:33:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13558, '2005-08-20 04:13:17', 1551, 564, '2005-08-24 06:38:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13559, '2005-08-20 04:16:07', 2413, 444, '2005-08-24 23:23:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13560, '2005-08-20 04:17:16', 820, 56, '2005-08-28 08:38:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13561, '2006-02-14 15:16:03', 3202, 530, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13562, '2005-08-20 04:31:45', 4547, 36, '2005-08-25 09:59:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13563, '2005-08-20 04:33:31', 599, 366, '2005-08-24 07:08:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13564, '2005-08-20 04:34:46', 678, 36, '2005-08-28 23:18:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13565, '2005-08-20 04:38:52', 3378, 214, '2005-08-27 07:17:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13566, '2005-08-20 04:45:32', 4397, 558, '2005-08-28 02:12:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13567, '2005-08-20 04:49:21', 543, 242, '2005-08-26 10:27:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13568, '2005-08-20 05:02:46', 1243, 151, '2005-08-27 03:12:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13569, '2005-08-20 05:02:59', 1934, 496, '2005-08-28 00:51:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13570, '2005-08-20 05:04:57', 2808, 188, '2005-08-24 06:19:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13571, '2005-08-20 05:05:14', 1251, 458, '2005-08-25 03:59:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13572, '2005-08-20 05:07:27', 660, 11, '2005-08-23 23:33:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13573, '2005-08-20 05:10:14', 3032, 59, '2005-08-22 00:59:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13574, '2005-08-20 05:10:39', 2383, 552, '2005-08-21 02:21:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13575, '2005-08-20 05:15:20', 2729, 339, '2005-08-28 07:36:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13576, '2005-08-20 05:19:56', 2669, 223, '2005-08-22 09:08:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13577, '2006-02-14 15:16:03', 3844, 448, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13578, '2006-02-14 15:16:03', 4301, 352, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13579, '2005-08-20 05:22:06', 4237, 333, '2005-08-28 02:33:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13580, '2005-08-20 05:23:34', 4419, 526, '2005-08-23 02:45:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13581, '2005-08-20 05:26:15', 1753, 119, '2005-08-21 11:07:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13582, '2005-08-20 05:28:11', 211, 166, '2005-08-23 02:06:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13583, '2005-08-20 05:29:45', 176, 74, '2005-08-26 06:49:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13584, '2006-02-14 15:16:03', 3966, 548, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13585, '2005-08-20 05:32:23', 3314, 470, '2005-08-27 23:36:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13586, '2005-08-20 05:40:33', 4544, 445, '2005-08-25 01:32:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13587, '2006-02-14 15:16:03', 2455, 431, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13588, '2005-08-20 05:47:11', 702, 279, '2005-08-28 02:45:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13589, '2005-08-20 05:47:25', 3216, 574, '2005-08-23 01:29:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13590, '2005-08-20 05:48:59', 4417, 264, '2005-08-25 00:44:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13591, '2005-08-20 05:50:05', 3089, 390, '2005-08-27 08:43:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13592, '2005-08-20 05:50:35', 1509, 470, '2005-08-23 04:52:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13593, '2005-08-20 05:50:52', 261, 585, '2005-08-27 05:28:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13594, '2005-08-20 05:53:31', 3424, 7, '2005-08-23 09:01:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13595, '2005-08-20 05:54:27', 673, 545, '2005-08-29 01:25:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13596, '2005-08-20 05:58:58', 482, 513, '2005-08-27 08:35:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13597, '2005-08-20 05:59:05', 3697, 72, '2005-08-24 05:38:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13598, '2005-08-20 05:59:17', 2803, 259, '2005-08-29 01:02:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13599, '2005-08-20 06:00:03', 3333, 150, '2005-08-29 07:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13600, '2005-08-20 06:00:25', 431, 528, '2005-08-28 02:39:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13601, '2005-08-20 06:01:15', 2166, 189, '2005-08-29 06:14:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13602, '2005-08-20 06:02:02', 2805, 348, '2005-08-27 04:51:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13603, '2005-08-20 06:02:48', 937, 362, '2005-08-29 09:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13604, '2005-08-20 06:03:33', 4352, 353, '2005-08-21 07:06:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13605, '2005-08-20 06:06:17', 4446, 522, '2005-08-26 00:53:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13606, '2005-08-20 06:07:01', 83, 146, '2005-08-27 04:59:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13607, '2005-08-20 06:08:42', 2692, 491, '2005-08-21 01:59:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13608, '2005-08-20 06:10:44', 4110, 193, '2005-08-24 07:08:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13609, '2005-08-20 06:11:51', 299, 328, '2005-08-23 04:13:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13610, '2005-08-20 06:14:12', 2526, 3, '2005-08-26 00:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13611, '2005-08-20 06:20:42', 1460, 112, '2005-08-28 10:07:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13612, '2005-08-20 06:22:08', 675, 505, '2005-08-28 02:22:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13613, '2005-08-20 06:23:53', 2415, 201, '2005-08-29 11:40:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13614, '2005-08-20 06:28:37', 3736, 381, '2005-08-22 07:54:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13615, '2005-08-20 06:28:53', 1864, 539, '2005-08-27 11:40:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13616, '2005-08-20 06:30:33', 1694, 194, '2005-08-27 09:29:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13617, '2005-08-20 06:35:30', 4059, 526, '2005-08-29 09:03:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13618, '2005-08-20 06:36:46', 390, 390, '2005-08-29 05:17:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13619, '2005-08-20 06:39:26', 1068, 365, '2005-08-23 05:22:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13620, '2005-08-20 06:41:27', 2361, 92, '2005-08-24 11:02:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13621, '2005-08-20 06:43:44', 3754, 581, '2005-08-23 06:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13622, '2005-08-20 06:45:32', 3355, 335, '2005-08-25 02:40:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13623, '2005-08-20 06:49:46', 3948, 321, '2005-08-25 05:19:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13624, '2005-08-20 06:51:02', 430, 63, '2005-08-29 02:39:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13625, '2005-08-20 06:52:03', 60, 422, '2005-08-27 07:43:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13626, '2005-08-20 06:55:24', 594, 524, '2005-08-29 12:32:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13627, '2005-08-20 06:59:00', 603, 329, '2005-08-29 11:43:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13628, '2005-08-20 07:03:53', 1006, 500, '2005-08-22 11:27:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13629, '2005-08-20 07:04:07', 1834, 392, '2005-08-25 12:36:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13630, '2005-08-20 07:05:56', 3346, 244, '2005-08-29 04:15:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13631, '2005-08-20 07:07:37', 1015, 535, '2005-08-22 04:01:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13632, '2005-08-20 07:10:52', 4008, 409, '2005-08-29 10:19:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13633, '2005-08-20 07:13:47', 3227, 301, '2005-08-24 11:25:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13634, '2005-08-20 07:16:45', 850, 411, '2005-08-22 03:38:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13635, '2005-08-20 07:17:35', 669, 286, '2005-08-29 06:27:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13636, '2005-08-20 07:20:09', 1467, 349, '2005-08-23 09:58:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13637, '2005-08-20 07:21:15', 2298, 342, '2005-08-24 10:13:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13638, '2005-08-20 07:21:15', 3255, 493, '2005-08-23 11:09:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13639, '2005-08-20 07:22:07', 2489, 562, '2005-08-23 11:24:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13640, '2005-08-20 07:22:53', 3427, 541, '2005-08-21 11:54:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13641, '2005-08-20 07:34:42', 367, 281, '2005-08-26 05:18:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13642, '2005-08-20 07:42:17', 4415, 452, '2005-08-29 10:49:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13643, '2005-08-20 07:42:24', 2443, 398, '2005-08-26 09:13:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13644, '2005-08-20 07:46:30', 970, 464, '2005-08-27 01:54:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13645, '2005-08-20 07:47:05', 157, 387, '2005-08-23 02:58:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13646, '2005-08-20 07:47:08', 1347, 242, '2005-08-29 08:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13647, '2005-08-20 07:48:07', 3269, 519, '2005-08-28 07:56:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13648, '2005-08-20 07:48:10', 3921, 596, '2005-08-22 12:15:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13649, '2005-08-20 07:48:38', 1495, 259, '2005-08-23 07:43:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13650, '2005-08-20 07:49:06', 2644, 322, '2005-08-28 10:11:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13651, '2005-08-20 07:50:08', 1082, 256, '2005-08-21 07:11:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13652, '2005-08-20 07:52:34', 2548, 67, '2005-08-23 08:58:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13653, '2005-08-20 07:54:54', 4029, 129, '2005-08-29 06:43:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13654, '2005-08-20 07:58:21', 1582, 469, '2005-08-21 09:40:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13655, '2005-08-20 07:59:13', 4294, 207, '2005-08-22 12:04:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13656, '2005-08-20 08:01:07', 3180, 411, '2005-08-28 13:16:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13657, '2005-08-20 08:01:39', 1752, 414, '2005-08-23 07:31:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13658, '2005-08-20 08:02:22', 3827, 487, '2005-08-28 06:00:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13659, '2005-08-20 08:05:52', 3610, 520, '2005-08-24 12:38:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13660, '2005-08-20 08:05:56', 3972, 72, '2005-08-22 13:22:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13661, '2005-08-20 08:05:59', 3996, 471, '2005-08-29 12:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13662, '2005-08-20 08:11:58', 3880, 592, '2005-08-26 13:34:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13663, '2005-08-20 08:12:33', 3969, 240, '2005-08-27 03:23:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13664, '2005-08-20 08:18:36', 3750, 264, '2005-08-26 11:04:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13665, '2005-08-20 08:19:20', 117, 291, '2005-08-28 06:26:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13666, '2005-08-20 08:20:19', 2007, 451, '2005-08-22 03:22:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13667, '2005-08-20 08:25:34', 3856, 280, '2005-08-24 07:04:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13668, '2005-08-20 08:26:06', 3659, 123, '2005-08-25 05:52:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13669, '2005-08-20 08:26:32', 4504, 261, '2005-08-27 08:10:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13670, '2005-08-20 08:27:01', 1951, 147, '2005-08-29 05:59:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13671, '2005-08-20 08:27:03', 1473, 201, '2005-08-26 03:56:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13672, '2005-08-20 08:27:27', 2068, 201, '2005-08-22 06:15:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13673, '2005-08-20 08:27:30', 343, 332, '2005-08-26 05:14:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13674, '2005-08-20 08:30:54', 3397, 36, '2005-08-22 02:59:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13675, '2005-08-20 08:32:51', 350, 493, '2005-08-27 03:52:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13676, '2005-08-20 08:33:21', 3170, 103, '2005-08-25 02:51:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13677, '2005-08-20 08:34:41', 4013, 15, '2005-08-26 11:51:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13678, '2005-08-20 08:38:24', 1118, 337, '2005-08-27 13:54:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13679, '2005-08-20 08:39:34', 2878, 229, '2005-08-29 10:06:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13680, '2005-08-20 08:44:06', 2822, 70, '2005-08-27 09:58:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13681, '2005-08-20 08:47:37', 3039, 328, '2005-08-27 09:47:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13682, '2005-08-20 08:50:39', 287, 30, '2005-08-21 09:05:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13683, '2005-08-20 08:54:55', 1729, 255, '2005-08-24 14:10:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13684, '2005-08-20 08:55:53', 2213, 348, '2005-08-25 08:11:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13685, '2005-08-20 08:57:11', 3336, 260, '2005-08-27 07:26:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13686, '2005-08-20 08:57:28', 666, 306, '2005-08-24 07:21:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13687, '2005-08-20 08:57:51', 3629, 290, '2005-08-22 07:02:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13688, '2005-08-20 08:59:38', 1116, 572, '2005-08-28 04:54:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13689, '2005-08-20 09:04:30', 819, 336, '2005-08-22 05:38:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13690, '2005-08-20 09:07:27', 3721, 513, '2005-08-23 08:03:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13691, '2005-08-20 09:07:39', 676, 548, '2005-08-28 15:03:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13692, '2005-08-20 09:07:52', 1928, 65, '2005-08-21 05:17:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13693, '2005-08-20 09:11:42', 933, 552, '2005-08-24 15:00:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13694, '2005-08-20 09:13:23', 3654, 454, '2005-08-28 06:10:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13695, '2005-08-20 09:13:25', 3114, 258, '2005-08-27 11:51:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13696, '2005-08-20 09:16:15', 1279, 206, '2005-08-21 03:33:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13697, '2005-08-20 09:21:08', 291, 76, '2005-08-29 12:33:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13698, '2005-08-20 09:24:26', 3829, 364, '2005-08-22 05:04:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13699, '2005-08-20 09:26:14', 3913, 21, '2005-08-29 08:16:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13700, '2005-08-20 09:26:17', 4229, 265, '2005-08-27 05:49:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13701, '2005-08-20 09:27:05', 1643, 564, '2005-08-21 14:54:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13702, '2005-08-20 09:27:20', 700, 296, '2005-08-29 15:04:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13703, '2005-08-20 09:29:35', 2296, 356, '2005-08-27 08:03:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13704, '2005-08-20 09:32:04', 3373, 4, '2005-08-23 14:29:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13705, '2005-08-20 09:32:23', 3663, 451, '2005-08-21 13:51:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13706, '2005-08-20 09:32:56', 3005, 363, '2005-08-28 05:22:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13707, '2005-08-20 09:33:58', 826, 232, '2005-08-23 07:44:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13708, '2005-08-20 09:34:07', 2236, 218, '2005-08-26 10:17:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13709, '2005-08-20 09:34:51', 4089, 422, '2005-08-23 04:13:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13710, '2005-08-20 09:35:20', 756, 333, '2005-08-21 05:29:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13711, '2005-08-20 09:35:20', 2318, 453, '2005-08-28 09:06:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13712, '2005-08-20 09:38:04', 1039, 581, '2005-08-21 06:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13713, '2006-02-14 15:16:03', 3075, 267, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13714, '2005-08-20 09:41:09', 2659, 277, '2005-08-22 06:28:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13715, '2005-08-20 09:43:06', 1028, 292, '2005-08-27 10:22:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13716, '2005-08-20 09:48:32', 86, 386, '2005-08-26 07:20:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13717, '2005-08-20 09:50:52', 1629, 300, '2005-08-28 11:32:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13718, '2005-08-20 09:53:44', 205, 19, '2005-08-29 13:46:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13720, '2005-08-20 10:01:39', 813, 427, '2005-08-27 08:26:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13721, '2005-08-20 10:02:59', 1444, 297, '2005-08-24 07:02:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13722, '2005-08-20 10:03:45', 1581, 422, '2005-08-25 04:26:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13723, '2005-08-20 10:05:30', 411, 110, '2005-08-27 07:43:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13724, '2005-08-20 10:07:28', 200, 80, '2005-08-24 07:47:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13725, '2005-08-20 10:08:27', 3861, 306, '2005-08-28 06:52:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13726, '2005-08-20 10:08:40', 2258, 214, '2005-08-23 14:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13727, '2005-08-20 10:08:53', 4201, 85, '2005-08-27 09:30:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13728, '2005-08-20 10:11:07', 1962, 157, '2005-08-23 10:32:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13729, '2005-08-20 10:17:08', 4108, 415, '2005-08-28 15:35:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13730, '2005-08-20 10:17:09', 1330, 548, '2005-08-28 10:45:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13731, '2005-08-20 10:22:08', 1133, 450, '2005-08-21 12:04:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13732, '2005-08-20 10:24:41', 1138, 17, '2005-08-22 04:44:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13733, '2005-08-20 10:25:12', 3994, 85, '2005-08-21 10:49:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13734, '2005-08-20 10:29:57', 4561, 374, '2005-08-25 14:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13735, '2005-08-20 10:31:01', 1813, 35, '2005-08-26 05:00:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13736, '2005-08-20 10:31:23', 3369, 32, '2005-08-28 06:51:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13737, '2005-08-20 10:41:50', 4319, 200, '2005-08-25 14:33:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13738, '2005-08-20 10:42:42', 2748, 273, '2005-08-25 09:32:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13739, '2005-08-20 10:45:10', 3027, 441, '2005-08-28 08:46:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13740, '2005-08-20 10:48:43', 4366, 21, '2005-08-29 15:30:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13741, '2005-08-20 10:48:47', 3887, 195, '2005-08-21 11:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13742, '2005-08-20 10:49:15', 1377, 580, '2005-08-21 11:05:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13743, '2005-08-20 10:51:27', 3693, 57, '2005-08-24 15:54:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13744, '2005-08-20 10:51:45', 2962, 408, '2005-08-25 06:42:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13745, '2005-08-20 10:53:49', 1264, 142, '2005-08-25 13:25:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13746, '2005-08-20 10:55:28', 3742, 520, '2005-08-25 07:48:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13747, '2005-08-20 10:56:06', 3332, 74, '2005-08-29 10:29:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13748, '2005-08-20 10:59:54', 2198, 410, '2005-08-23 12:33:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13749, '2005-08-20 11:00:37', 2811, 282, '2005-08-26 12:04:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13750, '2005-08-20 11:11:42', 3363, 246, '2005-08-29 16:16:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13751, '2005-08-20 11:17:03', 185, 105, '2005-08-22 14:12:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13752, '2005-08-20 11:17:45', 1794, 77, '2005-08-29 13:25:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13753, '2006-02-14 15:16:03', 3746, 495, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13754, '2005-08-20 11:18:08', 1740, 108, '2005-08-22 11:55:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13755, '2005-08-20 11:18:53', 1927, 342, '2005-08-27 06:51:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13756, '2006-02-14 15:16:03', 1146, 252, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13757, '2005-08-20 11:20:12', 1147, 14, '2005-08-23 10:14:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13758, '2005-08-20 11:21:26', 864, 255, '2005-08-29 14:37:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13759, '2005-08-20 11:24:48', 595, 269, '2005-08-29 10:29:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13760, '2005-08-20 11:26:33', 3459, 436, '2005-08-27 11:12:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13761, '2005-08-20 11:28:50', 3149, 376, '2005-08-21 12:05:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13762, '2005-08-20 11:29:32', 451, 566, '2005-08-23 17:25:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13763, '2005-08-20 11:37:56', 4171, 469, '2005-08-26 13:12:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13764, '2005-08-20 11:38:16', 989, 386, '2005-08-27 08:01:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13765, '2005-08-20 11:39:00', 2104, 219, '2005-08-21 06:05:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13766, '2005-08-20 11:42:01', 1313, 189, '2005-08-27 13:44:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13767, '2005-08-20 11:43:36', 2739, 506, '2005-08-22 17:10:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13768, '2005-08-20 11:43:43', 3847, 198, '2005-08-27 07:56:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13769, '2005-08-20 11:43:52', 2868, 56, '2005-08-28 13:19:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13770, '2005-08-20 11:45:54', 998, 538, '2005-08-22 17:08:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13771, '2005-08-20 11:47:21', 2278, 512, '2005-08-22 17:09:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13772, '2005-08-20 11:47:52', 2038, 387, '2005-08-28 05:50:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13773, '2005-08-20 11:50:14', 3389, 64, '2005-08-26 12:35:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13774, '2005-08-20 11:54:01', 735, 244, '2005-08-22 13:25:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13775, '2005-08-20 11:56:30', 1858, 116, '2005-08-28 12:48:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13776, '2005-08-20 11:57:06', 2439, 137, '2005-08-26 10:55:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13777, '2005-08-20 12:03:35', 3587, 29, '2005-08-27 10:13:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13778, '2005-08-20 12:03:44', 2385, 539, '2005-08-28 12:09:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13779, '2005-08-20 12:03:54', 63, 440, '2005-08-28 15:24:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13780, '2006-02-14 15:16:03', 1775, 14, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13781, '2005-08-20 12:06:45', 971, 368, '2005-08-26 06:50:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13782, '2005-08-20 12:09:26', 577, 305, '2005-08-23 08:31:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13783, '2005-08-20 12:11:03', 2643, 28, '2005-08-21 15:53:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13784, '2005-08-20 12:11:28', 3087, 431, '2005-08-25 08:11:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13785, '2005-08-20 12:11:46', 379, 453, '2005-08-21 06:39:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13786, '2005-08-20 12:13:24', 515, 94, '2005-08-28 07:24:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13787, '2005-08-20 12:15:23', 253, 188, '2005-08-27 06:24:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13788, '2005-08-20 12:15:41', 3177, 393, '2005-08-28 16:28:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13789, '2005-08-20 12:16:38', 2523, 53, '2005-08-25 07:29:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13790, '2005-08-20 12:17:27', 1385, 11, '2005-08-25 12:20:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13791, '2005-08-20 12:21:05', 1890, 67, '2005-08-22 17:58:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13792, '2005-08-20 12:21:37', 4157, 78, '2005-08-27 14:28:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13793, '2005-08-20 12:22:04', 2598, 424, '2005-08-27 09:51:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13794, '2005-08-20 12:25:32', 2148, 557, '2005-08-23 06:38:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13795, '2005-08-20 12:32:09', 2837, 331, '2005-08-21 17:28:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13796, '2005-08-20 12:32:32', 28, 209, '2005-08-29 10:48:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13797, '2005-08-20 12:33:36', 2857, 529, '2005-08-25 18:03:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13798, '2006-02-14 15:16:03', 526, 15, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13799, '2005-08-20 12:36:42', 4413, 196, '2005-08-28 08:47:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13800, '2005-08-20 12:40:48', 1552, 407, '2005-08-22 15:06:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13801, '2005-08-20 12:40:53', 1464, 433, '2005-08-21 16:29:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13802, '2005-08-20 12:44:53', 2079, 156, '2005-08-22 09:18:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13803, '2005-08-20 12:46:17', 1084, 486, '2005-08-24 15:44:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13804, '2005-08-20 12:46:32', 2232, 19, '2005-08-29 14:04:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13805, '2005-08-20 12:53:12', 349, 454, '2005-08-27 15:21:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13806, '2005-08-20 12:53:46', 444, 341, '2005-08-21 10:36:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13807, '2005-08-20 12:55:40', 3822, 4, '2005-08-28 09:06:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13808, '2005-08-20 12:55:43', 3689, 262, '2005-08-29 11:01:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13809, '2005-08-20 12:56:03', 1597, 207, '2005-08-27 11:58:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13810, '2005-08-20 12:59:38', 2228, 450, '2005-08-21 17:40:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13811, '2005-08-20 13:00:30', 1235, 168, '2005-08-24 10:18:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13812, '2005-08-20 13:01:43', 2788, 122, '2005-08-22 16:32:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13813, '2005-08-20 13:03:26', 601, 455, '2005-08-25 08:42:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13814, '2005-08-20 13:07:23', 2129, 436, '2005-08-22 16:23:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13815, '2005-08-20 13:08:53', 3388, 582, '2005-08-29 13:11:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13816, '2005-08-20 13:13:56', 273, 27, '2005-08-25 09:46:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13817, '2005-08-20 13:15:30', 1935, 293, '2005-08-22 18:48:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13818, '2005-08-20 13:20:09', 1283, 495, '2005-08-21 18:41:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13819, '2005-08-20 13:23:15', 1459, 296, '2005-08-22 16:02:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13820, '2005-08-20 13:26:37', 3191, 81, '2005-08-27 14:05:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13821, '2005-08-20 13:33:47', 2402, 355, '2005-08-25 18:09:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13822, '2005-08-20 13:39:28', 807, 499, '2005-08-24 07:40:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13823, '2005-08-20 13:42:10', 3875, 89, '2005-08-22 18:45:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13824, '2005-08-20 13:43:12', 2845, 413, '2005-08-22 17:26:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13825, '2005-08-20 13:43:22', 2135, 167, '2005-08-29 19:13:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13826, '2005-08-20 13:46:38', 401, 436, '2005-08-29 13:07:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13827, '2005-08-20 13:47:19', 1103, 342, '2005-08-28 09:13:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13828, '2005-08-20 13:49:52', 2391, 450, '2005-08-25 07:49:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13829, '2005-08-20 13:50:17', 3980, 146, '2005-08-24 11:30:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13830, '2005-08-20 13:57:59', 2874, 61, '2005-08-25 11:29:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13831, '2005-08-20 13:59:35', 570, 480, '2005-08-24 12:50:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13832, '2005-08-20 14:00:25', 3299, 29, '2005-08-28 10:11:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13833, '2005-08-20 14:00:29', 792, 175, '2005-08-29 12:01:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13834, '2005-08-20 14:03:08', 875, 426, '2005-08-22 10:12:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13835, '2005-08-20 14:06:33', 3738, 143, '2005-08-26 12:15:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13836, '2005-08-20 14:18:16', 4271, 375, '2005-08-21 18:13:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13837, '2005-08-20 14:19:03', 3220, 67, '2005-08-22 16:25:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13838, '2005-08-20 14:22:46', 1134, 437, '2005-08-29 12:28:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13839, '2005-08-20 14:23:16', 1056, 437, '2005-08-26 19:11:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13840, '2005-08-20 14:23:20', 1211, 40, '2005-08-28 11:53:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13841, '2005-08-20 14:25:18', 3277, 203, '2005-08-29 15:49:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13842, '2005-08-20 14:29:37', 4337, 180, '2005-08-29 18:19:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13843, '2005-08-20 14:30:01', 3058, 308, '2005-08-27 10:06:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13844, '2005-08-20 14:30:26', 983, 179, '2005-08-29 17:08:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13845, '2005-08-20 14:31:21', 3993, 559, '2005-08-29 18:29:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13846, '2005-08-20 14:32:31', 3289, 257, '2005-08-28 16:58:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13847, '2005-08-20 14:33:59', 2647, 82, '2005-08-25 08:49:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13848, '2005-08-20 14:37:49', 802, 447, '2005-08-25 13:15:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13849, '2005-08-20 14:42:34', 3774, 261, '2005-08-24 13:09:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13850, '2005-08-20 14:43:03', 3030, 546, '2005-08-27 11:41:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13851, '2005-08-20 14:44:22', 3278, 80, '2005-08-22 18:10:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13852, '2005-08-20 14:45:23', 85, 535, '2005-08-22 16:47:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13853, '2005-08-20 14:47:02', 1680, 186, '2005-08-26 20:32:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13854, '2005-08-20 14:48:42', 4192, 158, '2005-08-21 14:55:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13855, '2005-08-20 14:48:55', 1617, 96, '2005-08-28 14:45:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13856, '2005-08-20 14:49:32', 4196, 407, '2005-08-29 12:37:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13857, '2005-08-20 14:50:06', 2542, 366, '2005-08-24 10:38:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13858, '2005-08-20 14:50:57', 2167, 33, '2005-08-23 12:10:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13859, '2005-08-20 14:53:43', 4381, 504, '2005-08-28 09:50:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13860, '2005-08-20 14:55:09', 558, 275, '2005-08-22 20:42:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13861, '2005-08-20 14:56:53', 303, 154, '2005-08-22 18:13:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13862, '2005-08-20 14:57:01', 3271, 170, '2005-08-27 10:48:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13863, '2005-08-20 14:57:50', 2417, 563, '2005-08-29 15:36:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13864, '2005-08-20 14:59:55', 3935, 214, '2005-08-22 09:30:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13865, '2005-08-20 15:04:09', 3647, 275, '2005-08-24 10:06:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13866, '2005-08-20 15:05:29', 3432, 343, '2005-08-23 11:27:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13867, '2005-08-20 15:05:42', 4514, 591, '2005-08-29 10:48:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13868, '2005-08-20 15:06:26', 3173, 51, '2005-08-22 19:08:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13869, '2005-08-20 15:08:57', 1990, 386, '2005-08-29 13:13:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13870, '2005-08-20 15:09:16', 563, 167, '2005-08-28 10:00:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13871, '2005-08-20 15:10:13', 3206, 372, '2005-08-29 19:43:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13872, '2005-08-20 15:10:30', 2416, 421, '2005-08-24 10:14:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13873, '2005-08-20 15:11:11', 1683, 306, '2005-08-22 20:13:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13874, '2005-08-20 15:11:48', 72, 86, '2005-08-21 18:26:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13875, '2005-08-20 15:13:11', 348, 83, '2005-08-21 13:11:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13876, '2005-08-20 15:15:28', 3137, 334, '2005-08-23 12:42:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13877, '2005-08-20 15:16:18', 3387, 5, '2005-08-22 18:20:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13878, '2005-08-20 15:17:38', 49, 481, '2005-08-21 21:11:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13879, '2005-08-20 15:18:10', 4022, 112, '2005-08-22 19:23:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13880, '2005-08-20 15:18:20', 3911, 268, '2005-08-24 18:03:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13881, '2005-08-20 15:18:55', 2831, 144, '2005-08-25 11:25:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13882, '2005-08-20 15:23:26', 3245, 51, '2005-08-22 13:03:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13883, '2005-08-20 15:28:53', 584, 568, '2005-08-21 13:11:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13884, '2005-08-20 15:30:51', 3182, 466, '2005-08-26 13:34:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13885, '2005-08-20 15:32:09', 3195, 537, '2005-08-26 15:54:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13886, '2005-08-20 15:34:43', 2248, 73, '2005-08-26 11:48:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13887, '2005-08-20 15:39:00', 4002, 413, '2005-08-24 16:17:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13888, '2005-08-20 15:39:42', 1943, 297, '2005-08-28 13:41:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13889, '2005-08-20 15:40:06', 4406, 501, '2005-08-22 14:09:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13890, '2005-08-20 15:41:00', 2965, 54, '2005-08-22 16:00:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13891, '2005-08-20 15:42:05', 2042, 289, '2005-08-25 13:26:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13892, '2005-08-20 15:50:17', 1236, 337, '2005-08-29 13:33:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13893, '2005-08-20 15:52:52', 3503, 390, '2005-08-27 16:21:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13894, '2005-08-20 15:55:20', 2649, 360, '2005-08-26 17:26:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13895, '2005-08-20 15:58:28', 3060, 12, '2005-08-26 15:07:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13896, '2005-08-20 15:59:56', 1338, 278, '2005-08-21 20:14:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13897, '2005-08-20 16:02:28', 628, 258, '2005-08-23 14:29:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13898, '2006-02-14 15:16:03', 4007, 369, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13899, '2005-08-20 16:05:11', 427, 204, '2005-08-23 15:14:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13900, '2005-08-20 16:05:41', 1140, 66, '2005-08-22 15:13:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13901, '2005-08-20 16:06:53', 3281, 166, '2005-08-28 11:30:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13902, '2005-08-20 16:07:08', 1165, 275, '2005-08-24 16:43:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13903, '2005-08-20 16:07:55', 1676, 272, '2005-08-25 18:26:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13904, '2005-08-20 16:11:34', 721, 93, '2005-08-26 12:46:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13905, '2005-08-20 16:12:48', 2714, 437, '2005-08-28 16:05:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13906, '2005-08-20 16:16:03', 3960, 87, '2005-08-21 13:29:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13907, '2005-08-20 16:17:27', 806, 328, '2005-08-24 20:14:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13908, '2005-08-20 16:21:40', 3661, 532, '2005-08-29 21:16:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13909, '2005-08-20 16:26:36', 1508, 309, '2005-08-21 20:59:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13910, '2005-08-20 16:30:49', 252, 133, '2005-08-24 13:30:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13911, '2005-08-20 16:31:33', 4400, 304, '2005-08-28 19:26:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13912, '2005-08-20 16:32:10', 968, 207, '2005-08-29 17:37:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13913, '2005-08-20 16:37:35', 4259, 197, '2005-08-26 13:12:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13914, '2005-08-20 16:38:57', 3037, 237, '2005-08-26 14:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13915, '2005-08-20 16:42:53', 1180, 129, '2005-08-23 20:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13916, '2005-08-20 16:43:02', 2971, 302, '2005-08-25 19:21:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13917, '2005-08-20 16:43:28', 4326, 10, '2005-08-29 16:44:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13918, '2005-08-20 16:47:32', 3301, 248, '2005-08-21 12:00:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13919, '2005-08-20 16:47:34', 909, 129, '2005-08-23 21:27:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13920, '2005-08-20 16:51:18', 3200, 460, '2005-08-27 16:05:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13921, '2005-08-20 16:57:11', 3943, 59, '2005-08-22 19:25:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13922, '2005-08-20 17:02:37', 1398, 237, '2005-08-29 19:28:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13923, '2005-08-20 17:05:02', 3129, 588, '2005-08-27 11:22:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13924, '2005-08-20 17:05:18', 3066, 444, '2005-08-23 16:54:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13925, '2005-08-20 17:05:34', 4034, 565, '2005-08-27 15:32:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13926, '2005-08-20 17:09:27', 932, 158, '2005-08-28 13:42:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13927, '2005-08-20 17:11:58', 4284, 417, '2005-08-24 12:44:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13928, '2005-08-20 17:12:28', 1121, 244, '2005-08-21 13:33:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13929, '2005-08-20 17:13:48', 946, 57, '2005-08-28 15:19:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13930, '2005-08-20 17:15:06', 3585, 58, '2005-08-21 14:29:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13931, '2005-08-20 17:16:10', 3884, 32, '2005-08-27 12:03:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13932, '2005-08-20 17:17:00', 471, 441, '2005-08-24 14:06:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13933, '2005-08-20 17:17:07', 647, 159, '2005-08-22 18:10:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13934, '2005-08-20 17:18:48', 4567, 457, '2005-08-26 15:31:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13935, '2005-08-20 17:20:49', 4426, 205, '2005-08-24 16:52:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13936, '2005-08-20 17:22:35', 1731, 364, '2005-08-23 20:07:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13937, '2005-08-20 17:22:51', 1755, 172, '2005-08-27 15:51:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13938, '2005-08-20 17:24:45', 3743, 463, '2005-08-21 18:39:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13939, '2005-08-20 17:28:01', 2700, 585, '2005-08-23 14:40:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13940, '2005-08-20 17:28:57', 2638, 187, '2005-08-27 22:07:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13941, '2006-02-14 15:16:03', 2727, 476, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13942, '2005-08-20 17:30:52', 4403, 211, '2005-08-25 13:46:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13943, '2005-08-20 17:31:18', 22, 464, '2005-08-24 11:33:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13944, '2005-08-20 17:41:16', 3685, 408, '2005-08-23 12:02:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13945, '2005-08-20 17:43:56', 3328, 270, '2005-08-26 19:19:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13946, '2005-08-20 17:44:32', 3564, 529, '2005-08-28 19:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13947, '2005-08-20 17:46:06', 2562, 218, '2005-08-29 23:44:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13948, '2005-08-20 17:50:48', 4033, 410, '2005-08-25 20:56:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13949, '2005-08-20 17:55:13', 1518, 34, '2005-08-22 20:49:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13950, '2005-08-20 17:58:00', 3978, 93, '2005-08-29 23:23:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13951, '2005-08-20 17:58:11', 2034, 40, '2005-08-26 14:50:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13952, '2006-02-14 15:16:03', 224, 199, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13953, '2005-08-20 18:00:37', 1818, 371, '2005-08-28 14:52:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13954, '2005-08-20 18:02:41', 3812, 207, '2005-08-27 21:52:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13955, '2005-08-20 18:05:12', 2613, 273, '2005-08-29 18:25:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13956, '2005-08-20 18:08:19', 3757, 484, '2005-08-29 17:03:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13957, '2005-08-20 18:09:04', 2889, 179, '2005-08-23 16:52:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13958, '2005-08-20 18:11:44', 2380, 33, '2005-08-28 14:59:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13959, '2005-08-20 18:16:21', 2283, 142, '2005-08-22 13:56:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13960, '2005-08-20 18:16:26', 4177, 459, '2005-08-29 14:06:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13961, '2005-08-20 18:16:34', 2271, 129, '2005-08-21 16:14:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13962, '2005-08-20 18:18:06', 1434, 348, '2005-08-24 22:16:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13963, '2005-08-20 18:20:18', 4145, 368, '2005-08-24 21:26:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13964, '2005-08-20 18:24:26', 108, 128, '2005-08-21 21:19:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13965, '2006-02-14 15:16:03', 670, 324, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13966, '2005-08-20 18:28:28', 4520, 260, '2005-08-22 16:49:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13967, '2005-08-20 18:28:46', 2751, 459, '2005-08-26 17:37:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13968, '2006-02-14 15:16:03', 3715, 15, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13969, '2005-08-20 18:42:40', 1836, 237, '2005-08-27 17:33:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13970, '2005-08-20 18:43:34', 1942, 418, '2005-08-22 15:17:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13971, '2005-08-20 18:44:53', 1678, 64, '2005-08-22 16:25:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13972, '2005-08-20 18:52:17', 1687, 553, '2005-08-28 15:19:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13973, '2005-08-20 18:52:43', 1181, 58, '2005-08-21 19:11:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13974, '2005-08-20 18:54:59', 1912, 479, '2005-08-28 13:02:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13975, '2005-08-20 18:58:23', 3821, 286, '2005-08-25 20:58:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13976, '2005-08-20 19:02:16', 1785, 278, '2005-08-25 17:58:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13977, '2005-08-20 19:02:34', 1126, 115, '2005-08-24 14:14:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13978, '2005-08-20 19:03:25', 1263, 260, '2005-08-27 18:02:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13979, '2005-08-20 19:03:49', 2998, 211, '2005-08-24 21:23:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13980, '2005-08-20 19:04:40', 1067, 391, '2005-08-21 18:36:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13981, '2005-08-20 19:07:20', 3342, 249, '2005-08-23 15:13:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13982, '2005-08-20 19:08:25', 2901, 448, '2005-08-28 15:59:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13983, '2005-08-20 19:08:32', 457, 231, '2005-08-29 23:45:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13984, '2005-08-20 19:12:30', 2183, 473, '2005-08-29 22:04:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13985, '2005-08-20 19:13:06', 1081, 339, '2005-08-24 21:24:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13986, '2005-08-20 19:13:23', 3701, 152, '2005-08-22 20:59:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13987, '2005-08-20 19:19:30', 1443, 246, '2005-08-23 15:37:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13988, '2005-08-20 19:21:28', 3567, 466, '2005-08-21 22:20:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13989, '2005-08-20 19:27:50', 1470, 252, '2005-08-28 15:17:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13990, '2005-08-20 19:29:23', 2272, 481, '2005-08-25 18:50:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13991, '2005-08-20 19:29:44', 1971, 296, '2005-08-24 21:10:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13992, '2005-08-20 19:30:35', 2798, 136, '2005-08-24 19:09:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13993, '2005-08-20 19:32:29', 1158, 93, '2005-08-26 16:59:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13994, '2005-08-20 19:33:21', 142, 180, '2005-08-24 20:55:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13995, '2005-08-20 19:34:43', 3789, 381, '2005-08-25 22:25:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13996, '2005-08-20 19:45:43', 3341, 306, '2005-08-22 16:47:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13997, '2005-08-20 19:51:28', 2330, 175, '2005-08-26 01:29:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13998, '2005-08-20 19:52:38', 3936, 530, '2005-08-26 14:57:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (13999, '2005-08-20 19:53:32', 4149, 239, '2005-08-26 19:01:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14000, '2005-08-20 20:06:05', 3907, 276, '2005-08-28 17:02:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14001, '2005-08-20 20:07:15', 1318, 120, '2005-08-27 00:50:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14002, '2005-08-20 20:12:19', 87, 33, '2005-08-23 00:23:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14003, '2005-08-20 20:16:06', 3165, 256, '2005-08-28 14:36:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14004, '2005-08-20 20:16:35', 3445, 358, '2005-08-28 17:23:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14005, '2005-08-20 20:19:05', 1415, 135, '2005-08-26 01:42:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14006, '2005-08-20 20:21:36', 2189, 186, '2005-08-21 15:26:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14007, '2005-08-20 20:22:47', 374, 284, '2005-08-28 20:40:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14008, '2005-08-20 20:26:00', 2427, 560, '2005-08-28 17:23:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14009, '2005-08-20 20:26:53', 3004, 382, '2005-08-21 23:32:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14010, '2005-08-20 20:29:46', 934, 537, '2005-08-26 17:37:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14011, '2005-08-20 20:32:56', 1212, 379, '2005-08-28 21:44:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14012, '2005-08-20 20:42:12', 1866, 274, '2005-08-23 23:10:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14013, '2005-08-20 20:42:50', 3941, 496, '2005-08-25 21:37:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14014, '2005-08-20 20:47:09', 2188, 335, '2005-08-21 22:08:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14015, '2005-08-20 20:47:43', 3145, 554, '2005-08-26 19:37:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14016, '2005-08-20 20:52:03', 509, 220, '2005-08-23 18:04:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14017, '2005-08-20 20:55:32', 920, 230, '2005-08-23 16:12:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14018, '2006-02-14 15:16:03', 2136, 533, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14019, '2005-08-20 20:59:15', 1929, 202, '2005-08-28 17:29:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14020, '2005-08-20 20:59:43', 2257, 72, '2005-08-23 17:11:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14021, '2005-08-20 21:02:12', 4394, 147, '2005-08-27 22:15:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14022, '2005-08-20 21:08:49', 4068, 170, '2005-08-29 21:57:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14023, '2005-08-20 21:10:32', 2668, 304, '2005-08-23 20:57:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14024, '2005-08-20 21:13:58', 1492, 87, '2005-08-29 23:02:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14025, '2005-08-20 21:19:36', 4521, 37, '2005-08-29 23:39:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14026, '2005-08-20 21:21:08', 115, 231, '2005-08-22 23:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14027, '2005-08-20 21:21:34', 284, 432, '2005-08-28 17:46:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14028, '2005-08-20 21:23:03', 4061, 158, '2005-08-25 17:29:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14029, '2005-08-20 21:23:11', 2653, 219, '2005-08-22 18:01:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14030, '2005-08-20 21:23:54', 1027, 127, '2005-08-27 01:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14031, '2005-08-20 21:24:24', 440, 361, '2005-08-23 21:47:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14032, '2005-08-20 21:26:55', 3542, 317, '2005-08-26 19:19:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14033, '2005-08-20 21:30:53', 525, 243, '2005-08-23 01:45:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14034, '2005-08-20 21:31:52', 3484, 200, '2005-08-29 00:13:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14035, '2005-08-20 21:31:58', 2035, 260, '2005-08-22 16:28:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14036, '2005-08-20 21:35:27', 202, 256, '2005-08-23 03:29:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14037, '2005-08-20 21:35:58', 3655, 372, '2005-08-29 23:06:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14038, '2005-08-20 21:39:23', 1069, 589, '2005-08-27 23:57:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14039, '2005-08-20 21:39:43', 4187, 383, '2005-08-24 19:03:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14040, '2005-08-20 21:43:44', 905, 17, '2005-08-25 16:30:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14041, '2005-08-20 21:45:23', 52, 247, '2005-08-26 01:42:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14042, '2005-08-20 21:45:51', 505, 322, '2005-08-23 19:57:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14043, '2005-08-20 21:46:43', 1485, 586, '2005-08-21 18:27:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14044, '2005-08-20 21:48:38', 1422, 145, '2005-08-29 02:56:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14045, '2005-08-20 21:50:11', 3010, 509, '2005-08-25 19:03:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14046, '2005-08-20 21:53:21', 2352, 524, '2005-08-23 17:51:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14047, '2005-08-20 22:00:43', 186, 579, '2005-08-24 03:17:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14048, '2005-08-20 22:03:18', 3475, 105, '2005-08-25 02:57:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14049, '2005-08-20 22:08:55', 1335, 112, '2005-08-28 20:24:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14050, '2005-08-20 22:09:04', 1737, 596, '2005-08-26 01:39:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14051, '2005-08-20 22:09:51', 4012, 362, '2005-08-29 04:04:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14052, '2005-08-20 22:11:46', 3893, 514, '2005-08-22 20:26:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14053, '2005-08-20 22:13:59', 2177, 5, '2005-08-26 20:50:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14054, '2005-08-20 22:17:01', 338, 50, '2005-08-21 21:34:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14055, '2005-08-20 22:18:00', 1571, 148, '2005-08-22 02:09:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14056, '2005-08-20 22:18:53', 1300, 22, '2005-08-27 01:05:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14057, '2005-08-20 22:22:59', 1526, 333, '2005-08-25 16:58:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14058, '2005-08-20 22:24:35', 178, 430, '2005-08-30 02:26:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14059, '2005-08-20 22:24:44', 2045, 141, '2005-08-26 21:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14060, '2006-02-14 15:16:03', 3100, 175, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14061, '2005-08-20 22:32:11', 73, 53, '2005-08-22 19:28:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14062, '2005-08-20 22:34:34', 2841, 239, '2005-08-25 17:11:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14063, '2005-08-20 22:36:40', 1215, 275, '2005-08-25 00:18:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14064, '2005-08-20 22:39:16', 2938, 103, '2005-08-22 00:45:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14065, '2005-08-20 22:40:47', 3758, 190, '2005-08-24 01:47:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14066, '2005-08-20 22:45:58', 2444, 274, '2005-08-29 00:23:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14067, '2005-08-20 22:49:23', 1376, 259, '2005-08-29 22:28:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14068, '2005-08-20 22:50:59', 818, 412, '2005-08-29 00:45:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14069, '2005-08-20 22:51:25', 2239, 197, '2005-08-30 00:30:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14070, '2005-08-20 22:56:34', 846, 581, '2005-08-29 22:02:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14071, '2005-08-20 23:01:56', 2471, 550, '2005-08-22 02:14:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14072, '2005-08-20 23:07:10', 2387, 515, '2005-08-23 03:38:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14073, '2005-08-20 23:12:57', 2996, 230, '2005-08-28 18:47:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14074, '2005-08-20 23:16:07', 1303, 506, '2005-08-26 04:45:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14075, '2005-08-20 23:18:54', 3793, 32, '2005-08-26 21:59:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14076, '2005-08-20 23:20:10', 1070, 574, '2005-08-24 04:00:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14077, '2005-08-20 23:24:07', 3184, 21, '2005-08-29 02:53:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14078, '2005-08-20 23:26:40', 1642, 396, '2005-08-28 02:30:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14079, '2005-08-20 23:29:25', 3528, 348, '2005-08-25 04:16:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14080, '2005-08-20 23:29:50', 3962, 266, '2005-08-26 00:33:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14081, '2005-08-20 23:35:13', 589, 392, '2005-08-28 01:41:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14082, '2005-08-20 23:42:00', 3767, 179, '2005-08-27 00:59:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14083, '2005-08-20 23:42:31', 1823, 176, '2005-08-28 21:44:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14084, '2005-08-20 23:42:46', 900, 37, '2005-08-24 20:06:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14085, '2005-08-20 23:46:24', 3506, 471, '2005-08-29 02:31:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14086, '2005-08-20 23:47:54', 3244, 253, '2005-08-27 22:49:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14087, '2005-08-20 23:53:40', 2368, 289, '2005-08-26 20:22:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14088, '2005-08-20 23:57:24', 1184, 518, '2005-08-28 21:49:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14089, '2005-08-20 23:59:02', 1400, 425, '2005-08-27 00:19:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14090, '2005-08-21 00:11:16', 3254, 168, '2005-08-23 19:48:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14091, '2005-08-21 00:11:17', 3304, 53, '2005-08-27 18:38:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14092, '2005-08-21 00:14:32', 1596, 273, '2005-08-24 22:22:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14093, '2005-08-21 00:21:29', 1176, 177, '2005-08-22 04:01:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14094, '2005-08-21 00:21:35', 3674, 471, '2005-08-23 05:27:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14095, '2005-08-21 00:25:45', 1550, 489, '2005-08-28 23:00:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14096, '2005-08-21 00:27:46', 2089, 342, '2005-08-22 22:53:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14097, '2005-08-21 00:28:48', 4351, 88, '2005-08-29 22:15:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14098, '2005-08-21 00:30:32', 6, 554, NULL, 2, '2006-02-23 09:12:08'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14099, '2005-08-21 00:31:03', 2452, 224, '2005-08-27 03:18:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14100, '2005-08-21 00:31:07', 4295, 397, '2005-08-25 05:31:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14101, '2005-08-21 00:33:03', 1892, 19, '2005-08-24 01:59:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14102, '2005-08-21 00:35:21', 3772, 584, '2005-08-30 04:51:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14103, '2005-08-21 00:37:00', 1438, 409, '2005-08-25 22:09:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14104, '2005-08-21 00:37:44', 912, 178, '2005-08-21 22:55:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14105, '2005-08-21 00:44:34', 1111, 71, '2005-08-29 19:00:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14106, '2005-08-21 00:46:01', 2673, 315, '2005-08-27 23:44:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14107, '2006-02-14 15:16:03', 3998, 251, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14108, '2005-08-21 00:52:45', 4339, 243, '2005-08-21 19:35:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14109, '2005-08-21 00:52:58', 1046, 180, '2005-08-22 00:09:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14110, '2005-08-21 00:53:09', 2709, 35, '2005-08-24 05:33:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14111, '2005-08-21 00:59:01', 1294, 130, '2005-08-22 20:43:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14112, '2005-08-21 01:00:46', 734, 141, '2005-08-27 03:46:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14113, '2005-08-21 01:03:30', 931, 288, '2005-08-23 06:46:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14114, '2005-08-21 01:07:11', 2270, 8, '2005-08-24 20:33:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14115, '2005-08-21 01:10:29', 1945, 257, '2005-08-24 01:21:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14116, '2005-08-21 01:11:17', 2356, 142, '2005-08-24 23:45:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14117, '2005-08-21 01:11:59', 573, 493, '2005-08-22 06:56:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14118, '2005-08-21 01:13:37', 2605, 337, '2005-08-28 02:35:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14119, '2005-08-21 01:15:59', 129, 53, '2005-08-27 23:36:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14120, '2005-08-21 01:25:00', 4069, 302, '2005-08-24 23:21:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14121, '2005-08-21 01:26:33', 4207, 417, '2005-08-28 22:47:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14122, '2005-08-21 01:29:01', 3955, 86, '2005-08-27 05:31:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14123, '2005-08-21 01:31:25', 143, 66, '2005-08-23 02:32:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14124, '2005-08-21 01:31:51', 311, 35, '2005-08-24 22:20:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14125, '2005-08-21 01:32:16', 2174, 265, '2005-08-26 00:09:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14126, '2005-08-21 01:32:17', 2738, 215, '2005-08-23 01:02:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14127, '2005-08-21 01:33:32', 4532, 550, '2005-08-22 02:47:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14128, '2005-08-21 01:35:58', 2594, 81, '2005-08-21 21:23:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14129, '2005-08-21 01:42:15', 3572, 362, '2005-08-23 20:04:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14130, '2005-08-21 01:43:11', 3859, 352, '2005-08-27 21:16:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14131, '2005-08-21 01:43:40', 4382, 267, '2005-08-29 02:00:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14132, '2005-08-21 01:43:58', 3806, 91, '2005-08-26 20:16:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14133, '2005-08-21 01:44:14', 2463, 453, '2005-08-30 02:19:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14134, '2005-08-21 01:45:54', 2159, 497, '2005-08-24 01:36:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14135, '2005-08-21 01:53:54', 347, 59, '2005-08-27 05:57:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14136, '2005-08-21 01:57:26', 268, 135, '2005-08-28 01:11:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14137, '2006-02-14 15:16:03', 2346, 53, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14138, '2005-08-21 01:59:37', 1238, 121, '2005-08-30 01:17:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14139, '2005-08-21 02:04:33', 2280, 561, '2005-08-22 04:16:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14140, '2005-08-21 02:04:57', 2070, 65, '2005-08-29 06:41:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14141, '2005-08-21 02:07:22', 4527, 190, '2005-08-30 07:32:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14142, '2005-08-21 02:07:43', 1479, 544, '2005-08-23 02:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14143, '2005-08-21 02:10:32', 2549, 146, '2005-08-23 23:50:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14144, '2005-08-21 02:10:57', 2366, 46, '2005-08-28 01:02:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14145, '2005-08-21 02:11:38', 150, 314, '2005-08-22 22:19:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14146, '2005-08-21 02:13:31', 2151, 192, '2005-08-24 22:47:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14147, '2005-08-21 02:14:03', 1476, 366, '2005-08-27 22:38:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14148, '2005-08-21 02:17:49', 1605, 528, '2005-08-22 00:12:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14149, '2005-08-21 02:22:47', 3371, 518, '2005-08-24 02:36:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14150, '2005-08-21 02:23:03', 2324, 161, '2005-08-25 22:50:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14151, '2005-08-21 02:23:25', 2785, 426, '2005-08-30 07:08:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14152, '2005-08-21 02:23:50', 2561, 379, '2005-08-25 06:05:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14153, '2005-08-21 02:24:33', 1502, 120, '2005-08-27 05:28:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14154, '2005-08-21 02:30:00', 951, 468, '2005-08-28 01:41:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14155, '2005-08-21 02:31:35', 769, 148, '2005-08-27 06:00:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14156, '2005-08-21 02:35:16', 437, 147, '2005-08-27 01:32:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14157, '2005-08-21 02:43:15', 4471, 128, '2005-08-24 02:47:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14158, '2005-08-21 02:43:20', 474, 114, '2005-08-28 02:19:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14159, '2005-08-21 02:45:58', 3231, 144, '2005-08-27 04:53:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14160, '2006-02-14 15:16:03', 2428, 493, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14161, '2005-08-21 02:51:59', 2744, 21, '2005-08-28 21:38:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14162, '2005-08-21 02:55:34', 3788, 315, '2005-08-27 00:13:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14163, '2005-08-21 02:56:52', 1007, 204, '2005-08-21 21:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14164, '2005-08-21 02:58:02', 2381, 274, '2005-08-29 23:17:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14165, '2005-08-21 02:59:17', 4151, 150, '2005-08-24 23:09:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14166, '2005-08-21 02:59:31', 2457, 190, '2005-08-24 23:19:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14167, '2005-08-21 02:59:48', 1005, 64, '2005-08-29 22:17:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14168, '2005-08-21 03:00:03', 1321, 49, '2005-08-29 06:04:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14169, '2005-08-21 03:00:31', 3800, 396, '2005-08-30 01:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14170, '2005-08-21 03:00:39', 894, 259, '2005-08-27 23:07:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14171, '2005-08-21 03:00:42', 4179, 320, '2005-08-24 00:54:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14172, '2006-02-14 15:16:03', 2158, 450, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14173, '2005-08-21 03:01:01', 3175, 152, '2005-08-22 02:40:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14174, '2005-08-21 03:01:45', 1862, 29, '2005-08-22 07:19:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14175, '2006-02-14 15:16:03', 2021, 452, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14176, '2005-08-21 03:09:23', 4420, 556, '2005-08-26 21:26:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14177, '2005-08-21 03:11:33', 409, 121, '2005-08-28 21:41:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14178, '2005-08-21 03:13:45', 2178, 524, '2005-08-22 01:50:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14179, '2005-08-21 03:14:27', 3956, 79, '2005-08-26 00:46:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14180, '2005-08-21 03:16:15', 796, 262, '2005-08-24 22:31:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14181, '2005-08-21 03:16:30', 197, 210, '2005-08-29 06:25:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14182, '2005-08-21 03:17:10', 2422, 519, '2005-08-24 21:46:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14183, '2005-08-21 03:24:29', 1888, 26, '2005-08-22 07:25:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14184, '2005-08-21 03:24:50', 3759, 148, '2005-08-29 01:46:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14185, '2005-08-21 03:28:37', 3957, 579, '2005-08-26 01:15:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14186, '2005-08-21 03:31:07', 3158, 461, '2005-08-28 07:29:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14187, '2005-08-21 03:32:03', 4031, 275, '2005-08-25 03:29:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14188, '2005-08-21 03:32:04', 4492, 548, '2005-08-22 07:26:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14189, '2005-08-21 03:32:17', 2209, 127, '2005-08-22 04:46:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14190, '2005-08-21 03:35:21', 4203, 517, '2005-08-29 07:35:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14191, '2005-08-21 03:35:58', 301, 423, '2005-08-28 00:28:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14192, '2005-08-21 03:37:42', 3563, 26, '2005-08-28 05:31:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14193, '2005-08-21 03:38:27', 513, 25, '2005-08-28 09:16:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14194, '2005-08-21 03:40:11', 2003, 138, '2005-08-26 07:38:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14195, '2005-08-21 03:40:35', 3732, 93, '2005-08-23 01:22:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14196, '2005-08-21 03:40:40', 4477, 281, '2005-08-25 05:55:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14197, '2005-08-21 03:47:25', 340, 469, '2005-08-30 09:15:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14198, '2005-08-21 03:48:31', 465, 381, '2005-08-24 07:10:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14199, '2005-08-21 03:48:43', 658, 442, '2005-08-23 04:01:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14200, '2005-08-21 03:51:27', 2339, 349, '2005-08-29 22:00:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14201, '2005-08-21 03:51:34', 314, 427, '2005-08-30 03:42:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14202, '2005-08-21 03:51:52', 1995, 473, '2005-08-22 09:35:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14203, '2005-08-21 03:51:52', 3668, 95, '2005-08-24 06:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14204, '2006-02-14 15:16:03', 4334, 287, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14205, '2005-08-21 03:57:15', 315, 406, '2005-08-30 08:46:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14206, '2005-08-21 03:59:26', 860, 279, '2005-08-26 03:52:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14207, '2005-08-21 04:08:19', 1327, 569, '2005-08-29 07:59:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14208, '2005-08-21 04:09:18', 4180, 299, '2005-08-22 03:29:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14209, '2005-08-21 04:17:56', 896, 472, '2005-08-27 06:57:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14210, '2005-08-21 04:28:02', 1867, 468, '2005-08-24 02:14:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14211, '2005-08-21 04:29:11', 300, 372, '2005-08-24 02:50:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14212, '2005-08-21 04:29:26', 4540, 354, '2005-08-24 00:46:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14213, '2005-08-21 04:30:47', 382, 511, '2005-08-24 23:01:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14214, '2005-08-21 04:30:49', 4510, 198, '2005-08-26 04:42:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14215, '2005-08-21 04:34:11', 35, 54, '2005-08-27 10:30:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14216, '2006-02-14 15:16:03', 3763, 186, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14217, '2005-08-21 04:37:56', 2847, 66, '2005-08-26 03:55:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14218, '2005-08-21 04:43:59', 4087, 104, '2005-08-27 10:29:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14219, '2006-02-14 15:16:03', 3718, 334, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14220, '2006-02-14 15:16:03', 2618, 162, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14221, '2005-08-21 04:49:41', 3824, 51, '2005-08-29 23:52:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14222, '2005-08-21 04:49:48', 714, 7, '2005-08-25 05:34:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14223, '2005-08-21 04:51:51', 514, 392, '2005-08-29 00:37:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14224, '2005-08-21 04:53:08', 3634, 323, '2005-08-27 04:12:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14225, '2005-08-21 04:53:37', 984, 4, '2005-08-25 23:39:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14226, '2005-08-21 04:55:37', 1793, 316, '2005-08-24 04:32:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14227, '2005-08-21 04:56:31', 4102, 277, '2005-08-22 05:04:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14228, '2005-08-21 04:57:08', 2016, 71, '2005-08-25 00:06:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14229, '2005-08-21 04:57:15', 4479, 186, '2005-08-26 10:00:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14230, '2005-08-21 04:57:29', 844, 584, '2005-08-27 08:14:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14231, '2005-08-21 05:04:34', 1244, 307, '2005-08-23 04:58:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14232, '2005-08-21 05:07:02', 2710, 176, '2005-08-29 06:57:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14233, '2005-08-21 05:07:08', 2943, 599, '2005-08-28 03:20:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14234, '2005-08-21 05:07:12', 1439, 271, '2005-08-23 06:44:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14235, '2005-08-21 05:08:42', 125, 558, '2005-08-29 23:36:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14236, '2005-08-21 05:13:16', 172, 25, '2005-08-26 04:03:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14237, '2005-08-21 05:15:00', 3284, 410, '2005-08-25 10:06:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14238, '2005-08-21 05:16:40', 3148, 192, '2005-08-30 02:13:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14239, '2005-08-21 05:18:57', 1559, 416, '2005-08-22 00:12:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14240, '2005-08-21 05:19:39', 3294, 12, '2005-08-22 23:25:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14241, '2005-08-21 05:24:55', 2547, 291, '2005-08-30 03:33:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14242, '2005-08-21 05:25:59', 1588, 68, '2005-08-27 07:22:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14243, '2006-02-14 15:16:03', 1489, 264, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14244, '2005-08-21 05:29:55', 1150, 43, '2005-08-24 01:06:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14245, '2005-08-21 05:30:54', 975, 354, '2005-08-26 07:02:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14246, '2005-08-21 05:34:09', 3499, 120, '2005-08-26 06:12:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14247, '2005-08-21 05:35:17', 267, 302, '2005-08-26 03:22:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14248, '2005-08-21 05:35:57', 725, 293, '2005-08-28 05:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14249, '2005-08-21 05:38:05', 695, 268, '2005-08-28 09:07:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14250, '2005-08-21 05:39:35', 3008, 313, '2005-08-28 10:06:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14251, '2005-08-21 05:42:20', 139, 486, '2005-08-26 06:20:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14252, '2005-08-21 05:44:07', 2660, 13, '2005-08-29 08:53:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14253, '2005-08-21 05:47:52', 4246, 456, '2005-08-25 04:28:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14254, '2005-08-21 05:51:28', 1549, 589, '2005-08-29 06:05:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14255, '2005-08-21 05:51:37', 3125, 492, '2005-08-29 10:00:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14256, '2005-08-21 05:52:27', 2922, 331, '2005-08-29 02:10:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14257, '2005-08-21 05:52:57', 3830, 178, '2005-08-29 03:18:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14258, '2005-08-21 05:56:36', 752, 359, '2005-08-26 06:14:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14259, '2005-08-21 06:00:22', 3705, 583, '2005-08-22 05:38:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14260, '2005-08-21 06:01:08', 2961, 40, '2005-08-29 09:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14261, '2005-08-21 06:07:24', 1426, 166, '2005-08-26 09:57:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14262, '2005-08-21 06:08:13', 1430, 324, '2005-08-30 10:55:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14263, '2005-08-21 06:08:15', 2595, 533, '2005-08-29 09:22:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14264, '2005-08-21 06:18:22', 3426, 295, '2005-08-25 08:08:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14265, '2005-08-21 06:20:14', 3116, 134, '2005-08-23 09:05:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14266, '2005-08-21 06:20:51', 3543, 269, '2005-08-23 00:44:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14267, '2006-02-14 15:16:03', 2199, 527, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14268, '2005-08-21 06:21:24', 2442, 278, '2005-08-23 05:39:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14269, '2005-08-21 06:22:07', 531, 241, '2005-08-30 00:41:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14270, '2005-08-21 06:22:18', 4083, 171, '2005-08-27 08:04:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14271, '2005-08-21 06:23:29', 4506, 224, '2005-08-27 04:49:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14272, '2005-08-21 06:24:55', 3908, 243, '2005-08-28 02:25:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14273, '2005-08-21 06:26:48', 2640, 388, '2005-08-30 10:34:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14274, '2005-08-21 06:29:20', 3183, 405, '2005-08-26 06:25:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14275, '2005-08-21 06:30:30', 3238, 163, '2005-08-25 12:28:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14276, '2005-08-21 06:34:05', 3637, 318, '2005-08-28 10:13:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14277, '2005-08-21 06:34:41', 2652, 566, '2005-08-28 10:53:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14278, '2006-02-14 15:16:03', 2334, 557, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14279, '2005-08-21 06:39:08', 3325, 387, '2005-08-29 11:01:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14280, '2005-08-21 06:39:58', 1561, 481, '2005-08-23 04:50:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14281, '2005-08-21 06:40:48', 1848, 166, '2005-08-26 11:42:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14282, '2005-08-21 06:41:29', 3107, 450, '2005-08-22 12:37:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14283, '2005-08-21 06:44:14', 3052, 253, '2005-08-24 01:01:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14284, '2005-08-21 06:44:37', 633, 486, '2005-08-28 05:03:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14285, '2005-08-21 06:50:48', 402, 249, '2005-08-28 11:35:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14286, '2005-08-21 06:53:53', 2377, 558, '2005-08-27 11:37:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14287, '2005-08-21 06:53:59', 2426, 427, '2005-08-25 03:10:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14288, '2005-08-21 06:57:34', 587, 512, '2005-08-26 11:32:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14289, '2005-08-21 06:58:49', 1185, 103, '2005-08-25 11:29:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14290, '2005-08-21 07:02:59', 790, 366, '2005-08-28 02:57:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14291, '2005-08-21 07:03:05', 3988, 56, '2005-08-26 12:56:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14292, '2005-08-21 07:06:20', 1959, 251, '2005-08-22 01:39:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14293, '2005-08-21 07:06:47', 3555, 364, '2005-08-22 05:07:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14294, '2005-08-21 07:07:26', 354, 455, '2005-08-22 02:20:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14295, '2005-08-21 07:09:27', 2187, 336, '2005-08-22 01:27:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14296, '2005-08-21 07:13:23', 3813, 275, '2005-08-26 11:14:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14297, '2005-08-21 07:13:46', 1712, 566, '2005-08-25 09:07:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14298, '2005-08-21 07:17:10', 4317, 410, '2005-08-25 10:10:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14299, '2005-08-21 07:18:57', 4028, 342, '2005-08-24 01:28:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14300, '2005-08-21 07:19:37', 690, 382, '2005-08-25 12:06:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14301, '2005-08-21 07:19:48', 283, 162, '2005-08-28 02:06:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14302, '2005-08-21 07:19:57', 1287, 511, '2005-08-28 02:59:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14303, '2005-08-21 07:22:43', 992, 475, '2005-08-24 11:52:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14304, '2005-08-21 07:23:10', 2650, 417, '2005-08-26 11:21:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14305, '2005-08-21 07:29:05', 2056, 58, '2005-08-27 08:18:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14306, '2005-08-21 07:32:35', 4027, 453, '2005-08-30 05:53:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14307, '2005-08-21 07:34:52', 2894, 328, '2005-08-29 09:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14308, '2005-08-21 07:43:21', 3478, 419, '2005-08-25 02:39:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14309, '2005-08-21 07:44:17', 4447, 468, '2005-08-30 07:23:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14310, '2005-08-21 07:44:32', 95, 177, '2005-08-22 09:02:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14311, '2005-08-21 07:45:47', 1761, 69, '2005-08-27 02:23:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14312, '2005-08-21 07:48:34', 1090, 238, '2005-08-23 04:45:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14313, '2005-08-21 07:49:53', 3384, 468, '2005-08-30 05:52:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14314, '2005-08-21 07:50:14', 4115, 178, '2005-08-24 10:47:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14315, '2005-08-21 07:56:39', 1164, 459, '2005-08-27 04:52:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14316, '2005-08-21 07:59:47', 386, 64, '2005-08-23 02:20:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14317, '2005-08-21 08:00:40', 2090, 471, '2005-08-27 06:52:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14318, '2006-02-14 15:16:03', 1042, 508, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14319, '2005-08-21 08:00:55', 4480, 410, '2005-08-26 05:04:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14320, '2005-08-21 08:04:40', 3121, 199, '2005-08-22 02:09:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14321, '2005-08-21 08:05:12', 967, 236, '2005-08-23 02:17:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14322, '2005-08-21 08:06:30', 2818, 221, '2005-08-29 10:12:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14323, '2005-08-21 08:08:43', 1257, 97, '2005-08-25 10:44:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14324, '2005-08-21 08:10:56', 1361, 155, '2005-08-30 12:09:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14325, '2005-08-21 08:15:38', 4432, 313, '2005-08-23 08:08:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14326, '2005-08-21 08:15:41', 1052, 17, '2005-08-27 05:22:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14327, '2005-08-21 08:18:18', 553, 457, '2005-08-30 02:21:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14328, '2005-08-21 08:18:20', 3194, 489, '2005-08-25 03:05:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14329, '2005-08-21 08:22:56', 3544, 6, '2005-08-28 02:22:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14330, '2005-08-21 08:29:20', 763, 84, '2005-08-30 03:59:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14331, '2005-08-21 08:29:38', 3128, 372, '2005-08-29 13:18:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14332, '2005-08-21 08:30:43', 1388, 496, '2005-08-29 10:51:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14333, '2005-08-21 08:31:03', 2976, 93, '2005-08-28 03:39:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14334, '2005-08-21 08:32:32', 1448, 595, '2005-08-25 02:53:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14335, '2005-08-21 08:33:07', 2610, 263, '2005-08-26 14:16:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14336, '2005-08-21 08:33:42', 3166, 362, '2005-08-23 03:27:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14337, '2005-08-21 08:34:26', 3529, 506, '2005-08-24 11:31:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14338, '2005-08-21 08:36:03', 1789, 205, '2005-08-24 12:31:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14339, '2005-08-21 08:37:15', 1744, 30, '2005-08-26 03:37:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14340, '2005-08-21 08:38:21', 2181, 230, '2005-08-25 09:25:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14341, '2005-08-21 08:38:24', 4498, 560, '2005-08-26 12:36:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14342, '2005-08-21 08:39:26', 2749, 559, '2005-08-23 11:40:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14343, '2005-08-21 08:40:21', 3769, 238, '2005-08-29 03:06:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14344, '2005-08-21 08:40:56', 1562, 341, '2005-08-27 12:40:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14345, '2005-08-21 08:41:15', 1726, 598, '2005-08-24 11:59:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14346, '2005-08-21 08:42:26', 109, 17, '2005-08-23 09:18:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14347, '2005-08-21 08:42:31', 3862, 214, '2005-08-25 07:11:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14348, '2005-08-21 08:54:26', 885, 496, '2005-08-24 02:55:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14349, '2005-08-21 08:54:53', 96, 119, '2005-08-30 14:27:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14350, '2005-08-21 08:58:38', 3174, 222, '2005-08-30 03:29:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14351, '2005-08-21 09:04:20', 2037, 66, '2005-08-25 05:27:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14352, '2005-08-21 09:06:29', 1224, 527, '2005-08-28 13:36:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14353, '2005-08-21 09:07:50', 1612, 129, '2005-08-22 10:31:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14354, '2005-08-21 09:08:14', 1137, 382, '2005-08-30 05:27:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14355, '2005-08-21 09:08:29', 649, 271, '2005-08-27 10:08:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14356, '2005-08-21 09:08:51', 3169, 65, '2005-08-24 04:36:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14357, '2005-08-21 09:13:09', 2906, 233, '2005-08-22 05:41:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14358, '2005-08-21 09:14:28', 861, 112, '2005-08-24 05:05:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14359, '2005-08-21 09:16:19', 1841, 401, '2005-08-22 09:28:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14360, '2005-08-21 09:16:40', 2677, 246, '2005-08-29 11:43:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14361, '2006-02-14 15:16:03', 1231, 191, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14362, '2005-08-21 09:19:49', 1992, 312, '2005-08-26 11:06:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14363, '2005-08-21 09:20:03', 2579, 560, '2005-08-23 14:26:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14364, '2005-08-21 09:25:11', 3513, 236, '2005-08-29 09:04:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14365, '2005-08-21 09:25:13', 618, 457, '2005-08-27 11:48:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14366, '2005-08-21 09:31:39', 4011, 524, '2005-08-26 11:55:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14367, '2005-08-21 09:31:44', 870, 244, '2005-08-26 03:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14368, '2005-08-21 09:31:47', 2063, 351, '2005-08-30 04:17:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14369, '2005-08-21 09:33:44', 1636, 392, '2005-08-25 08:56:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14370, '2005-08-21 09:35:14', 3520, 161, '2005-08-27 05:21:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14371, '2005-08-21 09:37:16', 2197, 221, '2005-08-27 13:50:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14372, '2005-08-21 09:39:50', 1953, 520, '2005-08-28 13:36:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14373, '2005-08-21 09:44:53', 4433, 268, '2005-08-25 15:37:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14374, '2006-02-14 15:16:03', 236, 213, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14375, '2005-08-21 09:46:35', 2507, 550, '2005-08-26 10:24:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14376, '2005-08-21 09:48:56', 1936, 582, '2005-08-22 12:15:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14377, '2005-08-21 09:49:28', 1325, 6, '2005-08-29 13:34:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14378, '2005-08-21 09:50:02', 810, 515, '2005-08-30 09:07:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14379, '2005-08-21 09:53:03', 3062, 136, '2005-08-24 14:32:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14380, '2005-08-21 09:53:52', 1523, 198, '2005-08-25 05:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14381, '2005-08-21 09:55:47', 811, 391, '2005-08-25 08:23:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14382, '2005-08-21 10:01:03', 4119, 119, '2005-08-22 13:21:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14383, '2005-08-21 10:02:05', 1941, 482, '2005-08-24 12:21:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14384, '2005-08-21 10:02:37', 2429, 371, '2005-08-26 08:20:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14385, '2005-08-21 10:02:55', 4356, 317, '2005-08-25 07:19:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14386, '2005-08-21 10:06:34', 3402, 514, '2005-08-25 14:19:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14387, '2005-08-21 10:10:01', 1286, 295, '2005-08-28 14:16:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14388, '2005-08-21 10:15:13', 1078, 274, '2005-08-30 13:41:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14389, '2005-08-21 10:15:20', 2718, 145, '2005-08-27 05:39:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14390, '2005-08-21 10:15:38', 3951, 366, '2005-08-28 05:50:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14391, '2005-08-21 10:16:27', 3117, 205, '2005-08-23 07:00:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14392, '2005-08-21 10:19:25', 847, 586, '2005-08-28 15:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14393, '2005-08-21 10:22:51', 3937, 368, '2005-08-29 08:28:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14394, '2005-08-21 10:23:10', 4555, 118, '2005-08-28 09:33:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14395, '2005-08-21 10:24:00', 632, 506, '2005-08-28 12:23:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14396, '2005-08-21 10:24:54', 3855, 353, '2005-08-22 04:49:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14397, '2005-08-21 10:25:56', 3883, 47, '2005-08-24 07:48:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14398, '2005-08-21 10:27:21', 357, 505, '2005-08-23 10:46:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14399, '2005-08-21 10:33:23', 3582, 188, '2005-08-27 08:00:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14400, '2005-08-21 10:33:45', 3891, 569, '2005-08-26 12:05:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14401, '2005-08-21 10:36:20', 3468, 407, '2005-08-30 06:45:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14402, '2005-08-21 10:38:17', 749, 467, '2005-08-27 08:36:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14403, '2005-08-21 10:40:34', 3581, 297, '2005-08-29 11:29:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14404, '2005-08-21 10:43:04', 3660, 192, '2005-08-30 10:00:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14405, '2005-08-21 10:45:01', 2777, 470, '2005-08-30 04:48:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14406, '2005-08-21 10:46:35', 2741, 181, '2005-08-28 15:55:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14407, '2005-08-21 10:46:51', 2403, 500, '2005-08-25 09:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14408, '2005-08-21 10:47:24', 222, 593, '2005-08-27 08:18:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14409, '2005-08-21 10:53:35', 1161, 314, '2005-08-25 10:40:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14410, '2005-08-21 10:54:49', 839, 196, '2005-08-26 08:28:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14411, '2005-08-21 10:54:57', 2125, 502, '2005-08-22 13:17:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14412, '2005-08-21 11:02:09', 212, 121, '2005-08-29 06:44:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14413, '2005-08-21 11:06:33', 50, 367, '2005-08-29 16:10:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14414, '2005-08-21 11:08:17', 1757, 515, '2005-08-23 08:37:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14415, '2006-02-14 15:16:03', 2670, 561, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14416, '2005-08-21 11:11:46', 3002, 384, '2005-08-25 12:33:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14417, '2005-08-21 11:13:35', 1768, 596, '2005-08-25 11:27:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14418, '2005-08-21 11:14:26', 89, 442, '2005-08-28 08:34:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14419, '2005-08-21 11:15:46', 3146, 221, '2005-08-30 16:37:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14420, '2005-08-21 11:16:15', 2495, 551, '2005-08-24 06:06:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14421, '2005-08-21 11:20:21', 4402, 406, '2005-08-24 06:26:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14422, '2005-08-21 11:21:46', 1382, 361, '2005-08-25 13:15:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14423, '2005-08-21 11:23:59', 2873, 521, '2005-08-26 11:52:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14424, '2005-08-21 11:24:11', 2535, 489, '2005-08-29 13:13:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14425, '2006-02-14 15:16:03', 2752, 560, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14426, '2006-02-14 15:16:03', 2902, 315, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14427, '2005-08-21 11:26:06', 2353, 163, '2005-08-27 10:39:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14428, '2005-08-21 11:27:07', 1614, 458, '2005-08-29 09:50:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14429, '2005-08-21 11:29:43', 2513, 66, '2005-08-24 12:05:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14430, '2005-08-21 11:31:11', 2623, 5, '2005-08-26 06:29:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14431, '2005-08-21 11:31:15', 1572, 106, '2005-08-26 11:22:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14432, '2005-08-21 11:36:15', 2294, 138, '2005-08-24 08:02:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14433, '2005-08-21 11:36:34', 732, 401, '2005-08-26 08:51:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14434, '2005-08-21 11:40:46', 2085, 549, '2005-08-24 05:50:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14435, '2005-08-21 11:44:37', 2919, 169, '2005-08-24 08:04:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14436, '2005-08-21 11:48:27', 3473, 560, '2005-08-25 15:49:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14437, '2005-08-21 11:48:32', 1504, 136, '2005-08-25 11:06:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14438, '2005-08-21 11:51:10', 1621, 392, '2005-08-28 17:10:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14439, '2005-08-21 11:52:41', 3903, 564, '2005-08-30 10:36:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14440, '2005-08-21 11:59:04', 3495, 194, '2005-08-23 10:10:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14441, '2005-08-21 11:59:38', 1210, 260, '2005-08-26 11:17:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14442, '2005-08-21 12:00:21', 122, 205, '2005-08-23 17:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14443, '2005-08-21 12:06:32', 376, 447, '2005-08-29 13:44:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14444, '2005-08-21 12:07:25', 2211, 225, '2005-08-28 08:36:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14445, '2005-08-21 12:07:42', 3186, 256, '2005-08-22 17:51:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14446, '2005-08-21 12:10:41', 4367, 21, '2005-08-26 14:42:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14447, '2005-08-21 12:12:05', 1889, 584, '2005-08-27 14:47:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14448, '2005-08-21 12:13:10', 1937, 263, '2005-08-30 08:46:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14449, '2005-08-21 12:13:18', 653, 529, '2005-08-27 15:41:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14450, '2005-08-21 12:21:25', 1194, 48, '2005-08-26 14:35:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14451, '2005-08-21 12:21:44', 3967, 467, '2005-08-22 15:07:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14452, '2005-08-21 12:23:20', 4231, 325, '2005-08-27 06:26:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14453, '2005-08-21 12:33:34', 3312, 237, '2005-08-27 11:10:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14454, '2005-08-21 12:35:49', 2475, 150, '2005-08-22 16:28:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14455, '2005-08-21 12:36:11', 3442, 68, '2005-08-27 08:12:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14456, '2005-08-21 12:38:09', 2520, 125, '2005-08-26 08:29:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14457, '2005-08-21 12:47:38', 4288, 340, '2005-08-25 13:07:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14458, '2005-08-21 12:47:53', 1769, 256, '2005-08-30 17:09:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14459, '2005-08-21 12:48:08', 1532, 98, '2005-08-27 10:50:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14460, '2005-08-21 12:48:48', 4137, 120, '2005-08-30 16:34:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14461, '2005-08-21 12:50:33', 371, 42, '2005-08-30 13:35:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14462, '2005-08-21 12:50:57', 2201, 96, '2005-08-27 10:42:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14463, '2005-08-21 12:51:49', 1403, 365, '2005-08-29 12:17:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14464, '2005-08-21 12:52:54', 2310, 121, '2005-08-25 16:42:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14465, '2005-08-21 12:54:22', 4206, 262, '2005-08-28 10:46:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14466, '2005-08-21 13:03:13', 923, 442, '2005-08-22 15:19:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14467, '2005-08-21 13:03:33', 1498, 522, '2005-08-28 15:28:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14468, '2005-08-21 13:07:10', 4168, 224, '2005-08-30 19:05:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14469, '2005-08-21 13:07:24', 1957, 554, '2005-08-24 10:37:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14470, '2005-08-21 13:09:41', 3899, 379, '2005-08-23 10:20:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14471, '2005-08-21 13:10:40', 1254, 395, '2005-08-26 16:49:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14472, '2005-08-21 13:13:57', 4097, 184, '2005-08-23 14:04:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14473, '2005-08-21 13:19:03', 2747, 298, '2005-08-23 15:12:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14474, '2005-08-21 13:22:48', 2632, 294, '2005-08-27 14:13:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14475, '2005-08-21 13:24:32', 3164, 2, '2005-08-27 08:59:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14476, '2005-08-21 13:31:07', 2821, 101, '2005-08-23 17:06:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14477, '2005-08-21 13:32:38', 1564, 126, '2005-08-25 18:02:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14478, '2005-08-21 13:33:28', 2990, 231, '2005-08-25 13:33:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14479, '2005-08-21 13:35:54', 2235, 324, '2005-08-29 12:12:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14480, '2005-08-21 13:36:40', 229, 411, '2005-08-26 08:39:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14481, '2005-08-21 13:41:14', 4099, 367, '2005-08-30 07:53:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14482, '2005-08-21 13:42:45', 2765, 23, '2005-08-27 11:55:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14483, '2005-08-21 13:43:59', 37, 275, '2005-08-28 16:38:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14484, '2005-08-21 13:47:29', 3714, 418, '2005-08-23 18:25:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14485, '2005-08-21 13:52:07', 1637, 241, '2005-08-30 13:06:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14486, '2005-08-21 13:52:54', 3119, 138, '2005-08-23 07:58:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14487, '2005-08-21 13:53:33', 2578, 526, '2005-08-29 19:32:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14488, '2006-02-14 15:16:03', 4202, 75, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14489, '2005-08-21 13:53:59', 2312, 9, '2005-08-30 15:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14490, '2005-08-21 13:54:15', 1771, 205, '2005-08-28 19:08:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14491, '2005-08-21 13:55:39', 2072, 226, '2005-08-29 17:51:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14492, '2005-08-21 13:59:08', 1591, 266, '2005-08-23 11:09:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14493, '2005-08-21 14:01:44', 2590, 389, '2005-08-28 17:20:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14494, '2005-08-21 14:02:50', 169, 5, '2005-08-22 16:45:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14495, '2005-08-21 14:04:39', 3215, 429, '2005-08-22 16:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14496, '2005-08-21 14:07:35', 2185, 223, '2005-08-24 12:31:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14497, '2005-08-21 14:09:47', 3240, 254, '2005-08-22 11:10:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14498, '2005-08-21 14:10:44', 3971, 544, '2005-08-23 08:29:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14499, '2005-08-21 14:11:19', 4109, 292, '2005-08-23 16:10:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14500, '2005-08-21 14:11:30', 2024, 451, '2005-08-27 12:19:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14501, '2005-08-21 14:14:38', 3588, 576, '2005-08-25 17:58:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14502, '2005-08-21 14:22:28', 2986, 378, '2005-08-23 10:40:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14503, '2006-02-14 15:16:03', 2144, 188, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14504, '2005-08-21 14:23:01', 4536, 312, '2005-08-27 13:56:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14505, '2005-08-21 14:26:28', 2172, 203, '2005-08-29 17:34:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14506, '2005-08-21 14:32:27', 4493, 537, '2005-08-24 19:02:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14507, '2005-08-21 14:32:45', 1969, 175, '2005-08-28 09:50:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14508, '2005-08-21 14:33:58', 703, 396, '2005-08-27 10:45:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14509, '2005-08-21 14:39:58', 541, 520, '2005-08-26 13:19:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14510, '2005-08-21 14:44:41', 1868, 547, '2005-08-30 20:19:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14511, '2005-08-21 14:45:34', 4452, 16, '2005-08-28 10:36:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14512, '2005-08-21 14:47:09', 579, 51, '2005-08-24 18:10:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14513, '2005-08-21 14:51:35', 4265, 185, '2005-08-24 13:24:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14514, '2005-08-21 14:51:52', 1259, 295, '2005-08-30 10:40:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14515, '2005-08-21 14:52:14', 2215, 242, '2005-08-27 10:27:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14516, '2006-02-14 15:16:03', 713, 457, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14517, '2005-08-21 14:57:03', 3568, 311, '2005-08-24 13:52:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14518, '2005-08-21 14:58:58', 2734, 82, '2005-08-24 13:19:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14519, '2005-08-21 14:59:29', 1541, 403, '2005-08-22 11:48:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14520, '2005-08-21 15:00:49', 4533, 150, '2005-08-30 19:04:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14521, '2005-08-21 15:01:32', 1538, 200, '2005-08-28 19:12:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14522, '2005-08-21 15:01:34', 2101, 535, '2005-08-25 16:37:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14523, '2005-08-21 15:03:45', 345, 433, '2005-08-22 18:06:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14524, '2005-08-21 15:05:27', 4409, 374, '2005-08-29 12:07:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14525, '2005-08-21 15:06:49', 3020, 420, '2005-08-22 16:30:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14526, '2006-02-14 15:16:03', 1799, 534, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14527, '2005-08-21 15:07:42', 3496, 232, '2005-08-23 12:31:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14528, '2005-08-21 15:08:05', 4305, 46, '2005-08-26 15:58:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14529, '2005-08-21 15:08:31', 1774, 380, '2005-08-29 17:15:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14530, '2005-08-21 15:10:50', 1905, 77, '2005-08-26 09:20:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14531, '2006-02-14 15:16:03', 4296, 568, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14532, '2005-08-21 15:15:03', 2057, 37, '2005-08-25 17:41:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14533, '2005-08-21 15:15:19', 2202, 586, '2005-08-26 12:47:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14534, '2005-08-21 15:16:29', 2514, 56, '2005-08-26 16:18:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14535, '2005-08-21 15:22:37', 530, 412, '2005-08-29 19:23:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14536, '2005-08-21 15:22:50', 2615, 48, '2005-08-27 17:03:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14537, '2005-08-21 15:24:24', 3755, 405, '2005-08-23 17:14:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14538, '2005-08-21 15:28:15', 3348, 471, '2005-08-22 19:55:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14539, '2005-08-21 15:29:47', 3340, 41, '2005-08-28 19:01:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14540, '2005-08-21 15:34:23', 2362, 28, '2005-08-27 11:51:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14541, '2005-08-21 15:34:32', 1275, 576, '2005-08-25 13:18:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14542, '2005-08-21 15:36:34', 1247, 101, '2005-08-27 20:24:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14543, '2005-08-21 15:39:01', 709, 579, '2005-08-28 09:47:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14544, '2005-08-21 15:41:01', 2445, 589, '2005-08-24 15:20:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14545, '2005-08-21 15:44:23', 2459, 13, '2005-08-29 20:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14546, '2005-08-21 15:50:50', 1515, 466, '2005-08-23 11:37:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14547, '2005-08-21 15:51:38', 1172, 265, '2005-08-26 15:35:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14548, '2005-08-21 15:53:52', 226, 299, '2005-08-25 15:39:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14549, '2005-08-21 15:54:21', 4117, 155, '2005-08-22 17:22:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14550, '2005-08-21 15:56:39', 2814, 473, '2005-08-23 21:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14551, '2005-08-21 15:57:25', 496, 521, '2005-08-28 11:10:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14552, '2005-08-21 15:59:27', 1991, 477, '2005-08-27 11:46:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14553, '2005-08-21 15:59:40', 3160, 434, '2005-08-23 11:54:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14554, '2005-08-21 16:03:01', 31, 38, '2005-08-26 13:09:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14555, '2005-08-21 16:03:02', 1926, 440, '2005-08-23 14:18:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14556, '2005-08-21 16:03:27', 475, 265, '2005-08-29 15:49:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14557, '2005-08-21 16:05:11', 483, 490, '2005-08-27 16:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14558, '2005-08-21 16:10:50', 3958, 273, '2005-08-28 16:36:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14559, '2005-08-21 16:11:35', 3842, 433, '2005-08-30 15:26:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14560, '2005-08-21 16:13:47', 1616, 579, '2005-08-26 15:19:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14561, '2005-08-21 16:20:43', 2498, 443, '2005-08-27 16:48:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14562, '2005-08-21 16:22:59', 3501, 107, '2005-08-22 21:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14563, '2005-08-21 16:23:53', 3984, 212, '2005-08-25 11:30:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14564, '2005-08-21 16:24:43', 3250, 22, '2005-08-26 16:58:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14565, '2005-08-21 16:24:45', 4160, 250, '2005-08-25 14:42:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14566, '2005-08-21 16:25:05', 84, 87, '2005-08-26 10:31:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14567, '2005-08-21 16:27:25', 3805, 214, '2005-08-26 10:47:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14568, '2005-08-21 16:30:48', 3331, 582, '2005-08-22 13:49:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14569, '2005-08-21 16:31:22', 884, 15, '2005-08-25 21:27:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14570, '2005-08-21 16:32:32', 955, 32, '2005-08-30 12:03:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14571, '2005-08-21 16:40:26', 2218, 296, '2005-08-29 17:10:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14572, '2005-08-21 16:44:31', 1397, 538, '2005-08-26 16:35:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14573, '2005-08-21 16:44:32', 2423, 240, '2005-08-23 14:01:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14574, '2005-08-21 16:50:34', 1611, 62, '2005-08-26 14:24:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14575, '2005-08-21 16:51:34', 3752, 159, '2005-08-30 20:13:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14576, '2005-08-21 16:52:03', 1189, 45, '2005-08-28 19:43:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14577, '2005-08-21 16:52:29', 1965, 126, '2005-08-26 12:30:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14578, '2005-08-21 16:53:38', 3141, 389, '2005-08-28 20:36:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14579, '2005-08-21 16:54:47', 1205, 260, '2005-08-28 12:35:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14580, '2005-08-21 16:56:39', 1440, 448, '2005-08-28 15:25:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14581, '2005-08-21 17:07:08', 751, 243, '2005-08-26 16:02:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14582, '2005-08-21 17:08:33', 1004, 438, '2005-08-29 18:04:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14583, '2005-08-21 17:11:47', 1203, 455, '2005-08-24 16:16:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14584, '2005-08-21 17:15:33', 2617, 481, '2005-08-24 20:24:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14585, '2005-08-21 17:18:33', 82, 30, '2005-08-26 11:36:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14586, '2005-08-21 17:19:09', 3094, 182, '2005-08-26 17:00:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14587, '2005-08-21 17:20:55', 2329, 250, '2005-08-26 17:17:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14588, '2005-08-21 17:25:53', 1350, 219, '2005-08-28 21:47:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14589, '2005-08-21 17:28:55', 2810, 179, '2005-08-22 23:06:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14590, '2005-08-21 17:29:10', 2633, 526, '2005-08-28 20:15:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14591, '2005-08-21 17:30:09', 3410, 538, '2005-08-24 12:27:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14592, '2005-08-21 17:30:17', 2681, 563, '2005-08-22 20:06:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14593, '2005-08-21 17:33:18', 1399, 564, '2005-08-24 22:11:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14594, '2005-08-21 17:34:24', 2978, 62, '2005-08-26 22:04:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14595, '2005-08-21 17:35:17', 1879, 118, '2005-08-27 12:11:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14596, '2005-08-21 17:38:37', 2010, 472, '2005-08-30 20:28:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14597, '2005-08-21 17:39:41', 1160, 472, '2005-08-25 14:07:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14598, '2005-08-21 17:40:05', 1113, 359, '2005-08-29 18:16:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14599, '2005-08-21 17:43:42', 4575, 599, '2005-08-22 18:53:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14600, '2005-08-21 17:45:21', 3532, 255, '2005-08-28 19:03:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14601, '2005-08-21 17:45:52', 548, 406, '2005-08-29 15:10:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14602, '2005-08-21 17:48:49', 3771, 370, '2005-08-28 21:38:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14603, '2005-08-21 17:51:06', 94, 26, '2005-08-28 15:36:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14604, '2006-02-14 15:16:03', 1024, 585, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14605, '2005-08-21 17:56:06', 476, 394, '2005-08-24 18:35:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14606, '2006-02-14 15:16:03', 2291, 592, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14607, '2005-08-21 17:56:50', 4518, 417, '2005-08-22 17:44:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14608, '2005-08-21 17:57:22', 3321, 90, '2005-08-25 13:20:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14609, '2005-08-21 17:57:26', 1206, 551, '2005-08-25 14:04:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14610, '2005-08-21 17:59:09', 1894, 260, '2005-08-29 21:36:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14611, '2005-08-21 18:01:41', 4078, 443, '2005-08-26 12:34:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14612, '2005-08-21 18:03:15', 4105, 445, '2005-08-27 13:39:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14613, '2005-08-21 18:03:20', 3841, 20, '2005-08-26 19:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14614, '2005-08-21 18:03:51', 3053, 468, '2005-08-30 13:37:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14615, '2005-08-21 18:06:32', 2332, 171, '2005-08-30 13:19:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14616, '2006-02-14 15:16:03', 4537, 532, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14617, '2005-08-21 18:07:40', 3562, 51, '2005-08-24 23:48:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14618, '2005-08-21 18:09:51', 4490, 270, '2005-08-28 22:47:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14619, '2005-08-21 18:10:03', 1589, 338, '2005-08-23 13:40:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14620, '2005-08-21 18:10:43', 3272, 78, '2005-08-22 15:19:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14621, '2005-08-21 18:17:59', 3622, 344, '2005-08-23 14:16:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14622, '2005-08-21 18:25:59', 2702, 559, '2005-08-31 00:11:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14623, '2005-08-21 18:29:13', 901, 33, '2005-08-26 20:48:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14624, '2005-08-21 18:32:42', 4, 344, '2005-08-23 21:09:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14625, '2005-08-21 18:34:21', 2661, 507, '2005-08-29 21:41:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14626, '2005-08-21 18:35:44', 1038, 554, '2005-08-25 23:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14627, '2005-08-21 18:35:54', 2470, 49, '2005-08-30 21:17:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14628, '2005-08-21 18:37:24', 3636, 331, '2005-08-27 20:25:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14629, '2005-08-21 18:39:52', 761, 148, '2005-08-25 19:14:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14630, '2005-08-21 18:43:44', 4049, 294, '2005-08-29 17:08:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14631, '2005-08-21 18:47:49', 782, 209, '2005-08-28 16:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14632, '2005-08-21 18:48:06', 2807, 38, '2005-08-25 00:33:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14633, '2005-08-21 18:51:10', 2137, 551, '2005-08-25 13:07:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14634, '2005-08-21 18:51:28', 486, 494, '2005-08-29 19:30:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14635, '2005-08-21 18:51:43', 2171, 108, '2005-08-27 16:30:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14636, '2005-08-21 18:59:17', 1671, 339, '2005-08-23 13:19:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14637, '2005-08-21 19:01:00', 1846, 76, '2005-08-26 23:03:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14638, '2005-08-21 19:01:36', 3583, 216, '2005-08-22 15:09:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14639, '2005-08-21 19:01:39', 3510, 210, '2005-08-26 14:08:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14640, '2005-08-21 19:03:19', 1880, 253, '2005-08-27 00:37:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14641, '2005-08-21 19:05:23', 2205, 147, '2005-08-22 22:30:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14642, '2005-08-21 19:09:40', 1280, 81, '2005-08-30 13:25:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14643, '2005-08-21 19:11:58', 798, 119, '2005-08-29 19:52:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14644, '2005-08-21 19:12:12', 3905, 453, '2005-08-29 17:08:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14645, '2005-08-21 19:12:47', 2369, 334, '2005-08-25 21:42:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14646, '2005-08-21 19:14:48', 948, 186, '2005-08-23 17:15:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14647, '2005-08-21 19:15:33', 3854, 36, '2005-08-30 18:58:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14648, '2005-08-21 19:18:01', 2250, 284, '2005-08-25 14:59:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14649, '2005-08-21 19:19:21', 4074, 43, '2005-08-22 17:23:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14650, '2005-08-21 19:24:51', 1274, 190, '2005-08-25 13:58:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14651, '2005-08-21 19:31:09', 4037, 544, '2005-08-28 14:26:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14652, '2005-08-21 19:32:05', 4163, 453, '2005-08-23 23:33:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14653, '2005-08-21 19:35:59', 491, 593, '2005-08-24 15:31:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14654, '2005-08-21 19:36:59', 687, 173, '2005-08-23 22:03:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14655, '2005-08-21 19:37:10', 785, 253, '2005-08-22 15:43:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14656, '2005-08-21 19:39:28', 4205, 201, '2005-08-24 01:36:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14657, '2005-08-21 19:39:43', 477, 244, '2005-08-26 22:39:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14658, '2005-08-21 19:41:50', 1465, 473, '2005-08-25 16:11:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14659, '2005-08-21 19:42:36', 928, 119, '2005-08-26 14:06:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14660, '2005-08-21 19:43:21', 3433, 452, '2005-08-22 20:42:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14661, '2005-08-21 19:44:21', 745, 469, '2005-08-27 14:35:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14662, '2005-08-21 19:45:27', 2969, 403, '2005-08-23 14:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14663, '2005-08-21 19:47:55', 2351, 150, '2005-08-27 17:36:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14664, '2005-08-21 19:48:47', 4377, 153, '2005-08-27 16:47:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14665, '2005-08-21 19:49:46', 2896, 58, '2005-08-30 18:00:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14666, '2005-08-21 19:51:09', 2560, 122, '2005-08-30 22:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14667, '2005-08-21 19:51:11', 2608, 55, '2005-08-23 17:37:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14668, '2005-08-21 19:51:30', 1450, 152, '2005-08-29 19:38:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14669, '2005-08-21 19:54:06', 3154, 317, '2005-08-25 23:12:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14670, '2005-08-21 19:54:11', 4324, 537, '2005-08-27 21:42:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14671, '2005-08-21 19:59:30', 2622, 53, '2005-08-22 19:39:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14672, '2005-08-21 19:59:33', 4144, 325, '2005-08-30 19:40:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14673, '2005-08-21 20:01:18', 1827, 445, '2005-08-25 18:55:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14674, '2005-08-21 20:01:34', 572, 300, '2005-08-27 18:33:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14675, '2005-08-21 20:01:51', 328, 170, '2005-08-26 14:30:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14676, '2005-08-21 20:02:18', 877, 49, '2005-08-26 21:55:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14677, '2005-08-21 20:12:30', 4411, 26, '2005-08-28 15:11:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14678, '2005-08-21 20:12:43', 1911, 383, '2005-08-31 02:11:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14679, '2005-08-21 20:14:58', 1520, 193, '2005-08-23 23:39:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14680, '2005-08-21 20:19:52', 4469, 524, '2005-08-28 17:10:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14681, '2005-08-21 20:25:13', 1083, 212, '2005-08-30 19:48:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14682, '2005-08-21 20:25:57', 2974, 314, '2005-08-28 00:42:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14683, '2005-08-21 20:27:44', 3850, 342, '2005-08-29 16:54:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14684, '2005-08-21 20:28:26', 3593, 369, '2005-08-28 19:01:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14685, '2005-08-21 20:31:25', 1320, 69, '2005-08-22 21:02:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14686, '2005-08-21 20:32:08', 814, 34, '2005-08-26 18:07:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14687, '2005-08-21 20:32:16', 306, 550, '2005-08-26 16:17:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14688, '2005-08-21 20:32:37', 2573, 219, '2005-08-27 00:06:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14689, '2005-08-21 20:33:00', 1124, 463, '2005-08-22 18:10:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14690, '2005-08-21 20:42:25', 3649, 456, '2005-08-29 18:42:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14691, '2005-08-21 20:42:29', 2131, 404, '2005-08-24 01:22:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14692, '2005-08-21 20:43:21', 1908, 192, '2005-08-28 19:02:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14693, '2005-08-21 20:44:19', 3454, 269, '2005-08-29 00:37:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14694, '2005-08-21 20:46:42', 2767, 363, '2005-08-23 16:18:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14695, '2005-08-21 20:46:47', 412, 206, '2005-08-22 22:25:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14696, '2005-08-21 20:48:05', 3776, 435, '2005-08-25 14:55:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14697, '2005-08-21 20:49:21', 48, 409, '2005-08-26 01:39:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14698, '2005-08-21 20:49:58', 4255, 196, '2005-08-29 20:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14699, '2005-08-21 20:50:48', 1427, 3, '2005-08-29 18:08:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14700, '2005-08-21 20:53:40', 3446, 360, '2005-08-23 22:01:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14701, '2005-08-21 20:54:32', 3034, 34, '2005-08-30 16:46:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14702, '2005-08-21 21:00:03', 4096, 345, '2005-08-30 16:59:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14703, '2005-08-21 21:01:19', 4329, 29, '2005-08-22 15:13:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14704, '2005-08-21 21:02:22', 4062, 248, '2005-08-27 23:10:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14705, '2005-08-21 21:02:55', 2493, 243, '2005-08-25 20:20:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14706, '2005-08-21 21:04:42', 4494, 589, '2005-08-22 19:55:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14707, '2005-08-21 21:06:29', 2916, 530, '2005-08-30 23:37:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14708, '2005-08-21 21:07:23', 2828, 226, '2005-08-28 15:47:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14709, '2005-08-21 21:07:59', 1856, 300, '2005-08-31 02:19:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14710, '2005-08-21 21:15:23', 1922, 587, '2005-08-30 19:45:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14711, '2005-08-21 21:22:07', 1973, 448, '2005-08-30 16:24:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14712, '2005-08-21 21:22:56', 1198, 226, '2005-08-25 01:53:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14713, '2005-08-21 21:27:24', 3350, 148, '2005-08-23 20:26:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14714, '2005-08-21 21:27:43', 1, 279, '2005-08-30 22:26:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14715, '2005-08-21 21:28:18', 4453, 287, '2005-08-26 22:13:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14716, '2005-08-21 21:29:55', 2285, 78, '2005-08-23 18:34:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14717, '2005-08-21 21:30:39', 3839, 366, '2005-08-26 16:58:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14718, '2005-08-21 21:39:25', 3618, 340, '2005-08-26 22:07:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14719, '2005-08-21 21:41:57', 4091, 599, '2005-08-25 20:37:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14720, '2005-08-21 21:43:53', 3617, 395, '2005-08-25 18:21:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14721, '2005-08-21 21:50:51', 4257, 349, '2005-08-30 19:21:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14722, '2005-08-21 21:50:53', 2930, 236, '2005-08-30 03:13:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14723, '2005-08-21 21:52:32', 2755, 548, '2005-08-31 00:03:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14724, '2005-08-21 21:53:47', 3559, 552, '2005-08-23 20:14:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14725, '2005-08-21 22:02:08', 4427, 403, '2005-08-23 03:59:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14726, '2005-08-21 22:08:52', 4556, 216, '2005-08-22 18:28:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14727, '2005-08-21 22:12:45', 650, 275, '2005-08-25 00:46:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14728, '2005-08-21 22:15:36', 2671, 474, '2005-08-25 17:14:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14729, '2005-08-21 22:16:57', 2483, 289, '2005-08-27 21:32:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14730, '2005-08-21 22:21:11', 2949, 439, '2005-08-30 03:02:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14731, '2005-08-21 22:21:49', 1351, 154, '2005-08-24 16:27:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14732, '2005-08-21 22:22:29', 1915, 482, '2005-08-23 18:34:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14733, '2005-08-21 22:22:33', 398, 408, '2005-08-26 21:01:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14734, '2006-02-14 15:16:03', 1369, 448, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14735, '2005-08-21 22:25:09', 950, 35, '2005-08-23 21:16:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14736, '2005-08-21 22:25:53', 207, 139, '2005-08-25 19:01:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14737, '2005-08-21 22:27:11', 1842, 124, '2005-08-25 18:51:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14738, '2005-08-21 22:29:13', 3315, 521, '2005-08-29 21:19:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14739, '2005-08-21 22:33:22', 4026, 226, '2005-08-22 19:45:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14740, '2005-08-21 22:35:33', 1717, 333, '2005-08-26 17:49:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14741, '2006-02-14 15:16:03', 612, 60, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14742, '2005-08-21 22:39:01', 2988, 421, '2005-08-26 00:17:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14743, '2005-08-21 22:41:56', 4570, 2, '2005-08-29 00:18:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14744, '2005-08-21 22:45:21', 800, 213, '2005-08-29 23:57:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14745, '2005-08-21 22:53:01', 4399, 277, '2005-08-23 23:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14746, '2005-08-21 22:54:02', 3197, 284, '2005-08-27 17:04:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14747, '2005-08-21 23:00:02', 201, 153, '2005-08-26 18:58:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14748, '2005-08-21 23:02:02', 1697, 81, '2005-08-28 05:01:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14749, '2005-08-21 23:08:33', 831, 235, '2005-08-29 20:46:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14750, '2005-08-21 23:09:32', 918, 303, '2005-08-30 00:46:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14751, '2005-08-21 23:11:23', 1156, 195, '2005-08-30 20:01:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14752, '2005-08-21 23:11:42', 1252, 362, '2005-08-28 22:12:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14753, '2005-08-21 23:11:43', 1803, 155, '2005-08-22 22:25:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14754, '2005-08-21 23:17:26', 2355, 137, '2005-08-29 18:55:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14755, '2005-08-21 23:18:08', 862, 328, '2005-08-27 01:06:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14756, '2005-08-21 23:21:23', 564, 288, '2005-08-24 01:44:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14757, '2005-08-21 23:23:37', 1154, 473, '2005-08-26 23:24:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14758, '2005-08-21 23:24:52', 2372, 339, '2005-08-27 04:25:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14759, '2005-08-21 23:28:58', 3871, 362, '2005-08-31 00:35:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14760, '2006-02-14 15:16:03', 1367, 355, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14761, '2005-08-21 23:30:28', 2657, 490, '2005-08-26 03:26:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14762, '2005-08-21 23:33:57', 4249, 1, '2005-08-23 01:30:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14763, '2005-08-21 23:34:00', 1480, 116, '2005-08-31 03:58:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14764, '2005-08-21 23:37:47', 1270, 529, '2005-08-24 00:23:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14765, '2005-08-21 23:40:28', 2817, 435, '2005-08-25 04:55:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14766, '2005-08-21 23:42:20', 768, 523, '2005-08-26 03:46:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14767, '2005-08-21 23:43:00', 1232, 69, '2005-08-29 05:26:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14768, '2005-08-21 23:44:53', 3465, 570, '2005-08-27 20:33:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14769, '2006-02-14 15:16:03', 1800, 361, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14770, '2005-08-21 23:47:16', 2977, 372, '2005-08-25 04:48:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14771, '2005-08-21 23:50:15', 2665, 149, '2005-08-28 22:55:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14772, '2005-08-21 23:50:39', 4047, 411, '2005-08-30 20:44:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14773, '2005-08-21 23:50:57', 2541, 413, '2005-08-26 04:45:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14774, '2005-08-21 23:52:32', 3185, 252, '2005-08-26 23:42:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14775, '2005-08-21 23:53:07', 4044, 400, '2005-08-22 18:07:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14776, '2005-08-21 23:53:35', 3488, 15, '2005-08-24 02:00:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14777, '2005-08-21 23:55:50', 237, 389, '2005-08-28 04:31:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14778, '2005-08-21 23:56:30', 2152, 396, '2005-08-26 00:07:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14779, '2005-08-22 00:00:56', 1087, 279, '2005-08-31 00:01:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14780, '2005-08-22 00:06:33', 3171, 491, '2005-08-22 22:02:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14781, '2005-08-22 00:15:12', 3458, 71, '2005-08-29 21:02:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14782, '2005-08-22 00:17:20', 1727, 211, '2005-08-23 01:24:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14783, '2005-08-22 00:21:57', 3419, 332, '2005-08-28 01:27:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14784, '2005-08-22 00:23:13', 441, 117, '2005-08-28 03:42:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14785, '2005-08-22 00:24:37', 1981, 560, '2005-08-25 04:15:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14786, '2005-08-22 00:24:42', 2959, 370, '2005-08-25 19:36:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14787, '2005-08-22 00:25:59', 2634, 38, '2005-08-28 22:30:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14788, '2005-08-22 00:27:59', 1917, 139, '2005-08-29 23:54:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14789, '2005-08-22 00:29:39', 2344, 279, '2005-08-25 02:25:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14790, '2005-08-22 00:34:17', 1002, 397, '2005-08-31 02:27:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14791, '2005-08-22 00:35:55', 1490, 317, '2005-08-30 20:23:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14792, '2005-08-22 00:36:41', 4436, 396, '2005-08-30 18:58:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14793, '2005-08-22 00:37:57', 4285, 154, '2005-08-29 05:44:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14794, '2005-08-22 00:39:31', 413, 156, '2005-08-28 20:08:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14795, '2005-08-22 00:40:22', 1695, 303, '2005-08-26 01:37:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14796, '2005-08-22 00:40:49', 941, 441, '2005-08-30 03:59:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14797, '2005-08-22 00:41:24', 1131, 546, '2005-08-23 18:51:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14798, '2005-08-22 00:44:08', 7, 92, '2005-08-27 02:18:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14799, '2005-08-22 00:44:57', 1276, 454, '2005-08-24 20:08:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14800, '2005-08-22 00:46:18', 3554, 533, '2005-08-26 01:44:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14801, '2005-08-22 00:46:54', 1677, 184, '2005-08-30 19:03:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14802, '2005-08-22 00:48:23', 707, 505, '2005-08-28 01:02:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14803, '2005-08-22 00:49:10', 2525, 278, '2005-08-22 23:44:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14804, '2005-08-22 00:51:25', 372, 94, '2005-08-26 21:15:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14805, '2005-08-22 00:52:01', 783, 169, '2005-08-23 03:28:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14806, '2005-08-22 00:53:08', 2049, 231, '2005-08-23 06:26:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14807, '2005-08-22 00:57:43', 335, 90, '2005-08-26 23:40:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14808, '2005-08-22 00:58:35', 1657, 362, '2005-08-29 20:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14809, '2005-08-22 01:00:42', 1077, 188, '2005-08-29 19:55:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14810, '2005-08-22 01:08:34', 1982, 78, '2005-08-25 07:00:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14811, '2005-08-22 01:09:04', 1613, 53, '2005-08-26 19:30:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14812, '2005-08-22 01:10:32', 4282, 211, '2005-08-26 05:21:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14813, '2005-08-22 01:11:37', 3364, 142, '2005-08-24 05:57:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14814, '2005-08-22 01:12:14', 3109, 250, '2005-08-27 23:24:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14815, '2005-08-22 01:12:44', 1183, 314, '2005-08-24 01:42:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14816, '2005-08-22 01:15:51', 4086, 534, '2005-08-28 04:11:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14817, '2005-08-22 01:17:16', 910, 215, '2005-08-27 02:43:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14818, '2005-08-22 01:17:18', 1619, 580, '2005-08-26 05:40:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14819, '2005-08-22 01:17:19', 2890, 410, '2005-08-30 05:54:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14820, '2005-08-22 01:18:37', 1409, 52, '2005-08-23 19:44:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14821, '2005-08-22 01:20:19', 3155, 62, '2005-08-29 03:06:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14822, '2005-08-22 01:21:14', 2835, 52, '2005-08-30 03:59:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14823, '2005-08-22 01:24:42', 680, 503, '2005-08-22 19:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14824, '2005-08-22 01:27:51', 4162, 594, '2005-08-23 03:24:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14825, '2005-08-22 01:27:57', 1449, 1, '2005-08-27 07:01:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14826, '2005-08-22 01:32:14', 4023, 426, '2005-08-23 03:52:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14827, '2005-08-22 01:32:32', 2267, 88, '2005-08-31 06:21:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14828, '2005-08-22 01:34:05', 4114, 319, '2005-08-27 06:27:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14829, '2005-08-22 01:35:37', 3606, 546, '2005-08-23 19:55:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14830, '2005-08-22 01:37:19', 637, 590, '2005-08-27 20:10:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14831, '2005-08-22 01:40:49', 3370, 156, '2005-08-23 02:47:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14832, '2005-08-22 01:43:29', 1828, 494, '2005-08-29 07:19:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14833, '2005-08-22 01:45:18', 1960, 551, '2005-08-28 21:24:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14834, '2005-08-22 01:45:58', 3105, 262, '2005-08-28 20:52:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14835, '2005-08-22 01:49:07', 755, 404, '2005-08-30 04:28:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14836, '2005-08-22 01:52:26', 4287, 418, '2005-08-22 23:39:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14837, '2005-08-22 01:54:52', 2251, 43, '2005-08-29 02:24:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14838, '2005-08-22 01:57:34', 506, 404, '2005-08-25 06:34:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14839, '2005-08-22 01:58:15', 3440, 567, '2005-08-24 05:24:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14840, '2005-08-22 01:58:42', 1240, 354, '2005-08-29 22:32:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14841, '2005-08-22 02:03:30', 4017, 384, '2005-08-28 02:08:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14842, '2005-08-22 02:04:38', 2511, 467, '2005-08-30 06:46:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14843, '2005-08-22 02:05:25', 3000, 454, '2005-08-28 22:11:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14844, '2005-08-22 02:09:12', 145, 513, '2005-08-31 05:43:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14845, '2005-08-22 02:12:44', 69, 292, '2005-08-24 02:36:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14846, '2005-08-22 02:13:48', 3840, 309, '2005-08-30 05:39:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14847, '2005-08-22 02:13:51', 2995, 327, '2005-08-29 03:42:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14848, '2005-08-22 02:14:19', 395, 218, '2005-08-26 02:54:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14849, '2005-08-22 02:15:26', 3354, 177, '2005-08-28 00:56:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14850, '2005-08-22 02:16:55', 2405, 435, '2005-08-26 21:08:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14851, '2005-08-22 02:20:44', 1139, 180, '2005-08-26 08:02:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14852, '2005-08-22 02:25:53', 2262, 352, '2005-08-25 04:27:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14853, '2005-08-22 02:26:33', 3575, 388, '2005-08-31 02:49:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14854, '2005-08-22 02:26:47', 1989, 117, '2005-08-23 05:53:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14855, '2005-08-22 02:27:32', 1668, 187, '2005-08-31 03:35:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14856, '2005-08-22 02:31:51', 3292, 151, '2005-08-26 23:41:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14857, '2005-08-22 02:42:39', 4150, 232, '2005-08-24 21:26:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14858, '2005-08-22 02:46:18', 366, 499, '2005-08-30 08:22:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14859, '2005-08-22 02:46:35', 2150, 463, '2005-08-24 22:37:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14860, '2005-08-22 02:47:07', 1368, 418, '2005-08-28 00:00:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14861, '2005-08-22 02:48:05', 1806, 422, '2005-08-27 00:50:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14862, '2005-08-22 02:51:41', 3479, 78, '2005-08-28 06:30:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14863, '2005-08-22 02:57:04', 779, 440, '2005-08-30 03:24:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14864, '2005-08-22 02:57:06', 2872, 460, '2005-08-22 22:19:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14865, '2005-08-22 03:06:38', 3775, 94, '2005-08-23 04:26:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14866, '2005-08-22 03:11:35', 2607, 445, '2005-08-30 00:10:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14867, '2005-08-22 03:14:46', 271, 114, '2005-08-25 03:53:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14868, '2005-08-22 03:15:01', 4383, 160, '2005-08-25 01:24:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14869, '2005-08-22 03:20:26', 455, 21, '2005-08-23 05:25:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14870, '2005-08-22 03:23:20', 2170, 512, '2005-08-23 06:50:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14871, '2005-08-22 03:23:24', 3411, 204, '2005-08-23 22:23:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14872, '2005-08-22 03:23:41', 962, 15, '2005-08-29 23:25:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14873, '2005-08-22 03:31:06', 3533, 314, '2005-08-31 05:34:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14874, '2005-08-22 03:32:05', 1782, 268, '2005-08-24 07:02:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14875, '2005-08-22 03:34:39', 3912, 513, '2005-08-26 03:40:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14876, '2005-08-22 03:39:29', 3669, 210, '2005-08-23 06:53:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14877, '2005-08-22 03:39:56', 974, 266, '2005-08-24 03:41:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14878, '2006-02-14 15:16:03', 1202, 441, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14879, '2005-08-22 03:42:12', 2154, 148, '2005-08-27 06:14:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14880, '2005-08-22 03:44:36', 3615, 224, '2005-08-24 05:45:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14881, '2005-08-22 03:47:39', 210, 425, '2005-08-26 05:58:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14882, '2005-08-22 03:52:21', 12, 417, '2005-08-25 04:50:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14883, '2005-08-22 03:55:02', 1946, 177, '2005-08-28 02:51:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14884, '2005-08-22 03:57:08', 2957, 547, '2005-08-23 07:11:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14885, '2005-08-22 03:58:29', 2097, 248, '2005-08-30 05:26:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14886, '2005-08-22 03:59:01', 4330, 379, '2005-08-23 01:22:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14887, '2005-08-22 04:04:31', 56, 421, '2005-08-31 02:30:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14888, '2005-08-22 04:09:18', 3345, 91, '2005-08-23 07:34:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14889, '2005-08-22 04:10:10', 1579, 299, '2005-08-24 06:23:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14890, '2005-08-22 04:10:49', 517, 346, '2005-08-30 23:23:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14891, '2005-08-22 04:11:02', 288, 482, '2005-08-27 03:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14892, '2005-08-22 04:15:05', 3061, 82, '2005-08-31 06:07:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14893, '2005-08-22 04:15:48', 2336, 461, '2005-08-30 08:05:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14894, '2005-08-22 04:16:56', 3494, 347, '2005-08-24 00:30:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14895, '2005-08-22 04:19:23', 4462, 340, '2005-08-27 04:02:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14896, '2005-08-22 04:20:55', 2508, 569, '2005-08-29 05:11:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14897, '2005-08-22 04:22:31', 1607, 175, '2005-08-26 00:09:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14898, '2005-08-22 04:26:34', 1736, 299, '2005-08-31 10:04:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14899, '2005-08-22 04:26:38', 3700, 304, '2005-08-31 08:36:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14900, '2005-08-22 04:27:48', 3420, 329, '2005-08-25 03:50:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14901, '2005-08-22 04:31:37', 4297, 258, '2005-08-29 08:24:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14902, '2005-08-22 04:31:50', 866, 423, '2005-08-23 23:47:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14903, '2005-08-22 04:31:50', 1795, 51, '2005-08-25 22:53:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14904, '2005-08-22 04:32:01', 722, 71, '2005-08-29 05:21:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14905, '2005-08-22 04:34:22', 4166, 286, '2005-08-26 04:00:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14906, '2005-08-22 04:38:18', 153, 366, '2005-08-29 23:03:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14907, '2005-08-22 04:44:09', 2469, 116, '2005-08-25 09:53:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14908, '2005-08-22 04:44:10', 102, 349, '2005-08-25 05:09:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14909, '2005-08-22 04:48:44', 1997, 155, '2005-08-25 04:59:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14910, '2005-08-22 04:50:52', 1266, 540, '2005-08-25 04:14:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14911, '2005-08-22 04:51:42', 353, 273, '2005-08-28 05:37:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14912, '2005-08-22 04:51:42', 2658, 404, '2005-08-23 23:50:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14913, '2005-08-22 04:52:13', 3609, 503, '2005-08-23 06:49:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14914, '2005-08-22 04:53:35', 4348, 156, '2005-08-26 10:35:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14915, '2006-02-14 15:16:03', 112, 349, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14916, '2005-08-22 04:56:57', 2110, 80, '2005-08-24 06:36:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14917, '2005-08-22 05:03:59', 377, 289, '2005-08-29 04:00:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14918, '2005-08-22 05:06:38', 4056, 154, '2005-08-30 01:44:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14919, '2005-08-22 05:07:17', 1587, 244, '2005-08-30 06:41:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14920, '2005-08-22 05:08:58', 3357, 106, '2005-08-23 02:51:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14921, '2005-08-22 05:12:24', 3724, 284, '2005-08-26 08:20:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14922, '2005-08-22 05:13:05', 2322, 151, '2005-08-30 04:59:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14923, '2005-08-22 05:13:33', 3434, 460, '2005-08-28 01:39:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14924, '2005-08-22 05:15:17', 4189, 118, '2005-08-23 10:11:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14925, '2005-08-22 05:16:16', 442, 128, '2005-08-30 02:47:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14926, '2005-08-22 05:18:44', 2448, 357, '2005-08-26 02:18:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14927, '2005-08-22 05:31:53', 952, 193, '2005-08-27 07:04:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14928, '2006-02-14 15:16:03', 4375, 472, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14929, '2005-08-22 05:32:38', 4195, 546, '2005-08-28 00:02:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14930, '2005-08-22 05:38:32', 2875, 584, '2005-08-30 07:21:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14931, '2005-08-22 05:38:55', 657, 63, '2005-08-28 04:15:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14932, '2005-08-22 05:40:39', 2259, 516, '2005-08-23 11:02:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14933, '2006-02-14 15:16:03', 1186, 21, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14934, '2005-08-22 05:47:15', 815, 226, '2005-08-26 11:32:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14935, '2005-08-22 05:47:31', 2025, 380, '2005-08-29 00:33:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14936, '2005-08-22 05:51:26', 3710, 241, '2005-08-29 10:21:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14937, '2005-08-22 05:51:59', 1241, 348, '2005-08-31 01:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14938, '2005-08-22 05:52:39', 408, 541, '2005-08-31 11:43:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14939, '2005-08-22 05:53:52', 719, 328, '2005-08-27 06:20:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14940, '2005-08-22 05:54:03', 2635, 46, '2005-08-24 05:52:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14941, '2005-08-22 05:58:23', 2328, 574, '2005-08-28 10:58:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14942, '2005-08-22 05:58:27', 32, 471, '2005-08-31 10:08:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14943, '2005-08-22 05:59:59', 3515, 265, '2005-08-26 10:31:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14944, '2005-08-22 06:01:26', 535, 153, '2005-08-24 10:33:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14945, '2005-08-22 06:05:38', 1567, 304, '2005-08-29 12:01:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14946, '2005-08-22 06:07:10', 1395, 308, '2005-08-28 05:25:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14947, '2005-08-22 06:07:52', 3497, 68, '2005-08-28 01:12:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14948, '2005-08-22 06:10:53', 2914, 488, '2005-08-28 11:24:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14949, '2005-08-22 06:12:16', 2434, 111, '2005-08-25 08:25:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14950, '2005-08-22 06:17:12', 635, 362, '2005-08-27 08:48:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14951, '2005-08-22 06:19:37', 2800, 197, '2005-08-30 05:51:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14952, '2005-08-22 06:20:07', 2950, 575, '2005-08-28 01:18:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14953, '2005-08-22 06:23:54', 816, 182, '2005-08-28 03:19:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14954, '2006-02-14 15:16:03', 3608, 525, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14955, '2005-08-22 06:25:52', 1534, 445, '2005-08-25 12:13:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14956, '2005-08-22 06:26:16', 3650, 571, '2005-08-25 11:06:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14957, '2005-08-22 06:29:34', 1384, 323, '2005-08-26 04:52:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14958, '2005-08-22 06:30:10', 1710, 347, '2005-08-28 09:43:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14959, '2005-08-22 06:30:28', 2009, 569, '2005-08-25 09:48:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14960, '2005-08-22 06:31:36', 3316, 147, '2005-08-29 07:10:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14961, '2005-08-22 06:35:50', 3274, 52, '2005-08-31 04:07:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14962, '2005-08-22 06:37:43', 3104, 449, '2005-08-29 03:44:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14963, '2005-08-22 06:38:10', 2672, 384, '2005-08-31 05:35:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14964, '2005-08-22 06:39:24', 2302, 500, '2005-08-26 06:05:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14965, '2005-08-22 06:45:53', 1036, 148, '2005-08-27 10:05:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14966, '2005-08-22 06:45:57', 679, 259, '2005-08-31 10:02:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14967, '2005-08-22 06:46:03', 289, 67, '2005-08-23 01:02:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14968, '2005-08-22 06:46:59', 3302, 129, '2005-08-29 07:36:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14969, '2005-08-22 06:49:15', 4060, 120, '2005-08-29 05:52:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14970, '2005-08-22 06:49:29', 536, 529, '2005-08-29 08:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14971, '2005-08-22 06:52:49', 1883, 378, '2005-08-28 06:27:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14972, '2005-08-22 06:53:21', 3422, 310, '2005-08-29 02:25:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14973, '2005-08-22 06:59:28', 2888, 201, '2005-08-30 02:28:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14974, '2005-08-22 07:04:25', 2596, 157, '2005-08-27 12:39:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14975, '2005-08-22 07:07:50', 924, 244, '2005-08-28 07:23:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14976, '2005-08-22 07:10:26', 77, 581, '2005-08-28 07:22:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14977, '2005-08-22 07:12:53', 4093, 59, '2005-08-30 08:11:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14978, '2005-08-22 07:13:15', 699, 94, '2005-08-25 12:26:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14979, '2005-08-22 07:16:36', 2320, 387, '2005-08-24 02:29:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14980, '2005-08-22 07:16:45', 2701, 518, '2005-08-26 06:04:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14981, '2005-08-22 07:19:05', 1239, 544, '2005-08-26 03:08:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14982, '2005-08-22 07:20:55', 2333, 542, '2005-08-31 04:35:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14983, '2005-08-22 07:32:23', 3579, 363, '2005-08-30 11:39:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14984, '2005-08-22 07:35:31', 1704, 334, '2005-08-30 02:32:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14985, '2005-08-22 07:35:56', 2017, 29, '2005-08-29 13:17:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14986, '2005-08-22 07:37:24', 1493, 278, '2005-08-23 04:22:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14987, '2005-08-22 07:41:08', 1513, 138, '2005-08-24 03:15:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14988, '2005-08-22 07:46:05', 2114, 186, '2005-08-29 06:43:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14989, '2005-08-22 07:47:07', 1431, 58, '2005-08-26 04:42:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14990, '2005-08-22 07:48:01', 4057, 198, '2005-08-24 06:41:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14991, '2005-08-22 07:50:44', 708, 172, '2005-08-30 06:32:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14992, '2005-08-22 07:51:47', 4430, 415, '2005-08-25 08:17:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14993, '2005-08-22 07:52:18', 3416, 437, '2005-08-27 02:13:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14994, '2005-08-22 07:52:24', 1601, 509, '2005-08-26 09:57:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14995, '2005-08-22 07:52:31', 4178, 482, '2005-08-24 05:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14996, '2005-08-22 07:52:41', 1178, 411, '2005-08-29 02:35:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14997, '2005-08-22 07:53:00', 2724, 29, '2005-08-28 03:47:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14998, '2005-08-22 07:53:14', 3852, 92, '2005-08-24 03:46:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (14999, '2005-08-22 07:54:47', 3399, 594, '2005-08-23 08:39:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15000, '2005-08-22 07:54:58', 3080, 161, '2005-08-24 12:46:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15001, '2005-08-22 08:00:49', 2869, 186, '2005-08-27 05:53:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15002, '2005-08-22 08:06:00', 4198, 242, '2005-08-24 10:48:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15003, '2005-08-22 08:11:24', 4009, 167, '2005-08-28 08:49:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15004, '2005-08-22 08:15:21', 4464, 375, '2005-08-28 10:35:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15005, '2005-08-22 08:15:44', 2897, 335, '2005-08-24 09:52:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15006, '2005-08-22 08:20:15', 2967, 97, '2005-08-23 11:57:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15007, '2005-08-22 08:21:21', 3692, 165, '2005-08-27 04:44:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15008, '2005-08-22 08:24:32', 961, 277, '2005-08-31 13:48:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15009, '2005-08-22 08:27:27', 4025, 325, '2005-08-26 05:57:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15010, '2005-08-22 08:30:17', 171, 508, '2005-08-29 13:24:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15011, '2005-08-22 08:31:07', 2722, 329, '2005-08-24 04:47:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15012, '2005-08-22 08:42:32', 1584, 454, '2005-08-28 05:04:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15013, '2005-08-22 08:42:45', 141, 141, '2005-08-24 05:20:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15014, '2005-08-22 08:43:11', 3678, 373, '2005-08-31 02:55:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15015, '2005-08-22 08:43:50', 3067, 14, '2005-08-31 06:53:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15016, '2005-08-22 08:47:35', 879, 434, '2005-08-28 14:23:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15017, '2005-08-22 08:47:44', 3975, 144, '2005-08-29 08:16:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15018, '2005-08-22 08:52:38', 394, 504, '2005-08-25 08:08:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15019, '2005-08-22 08:52:53', 3425, 450, '2005-08-25 13:07:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15020, '2005-08-22 08:54:12', 3460, 267, '2005-08-27 04:54:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15021, '2006-02-14 15:16:03', 418, 100, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15022, '2005-08-22 08:55:43', 249, 506, '2005-08-31 05:35:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15023, '2005-08-22 08:56:48', 358, 296, '2005-08-29 08:13:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15024, '2005-08-22 08:57:10', 1831, 139, '2005-08-24 10:39:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15025, '2005-08-22 08:57:24', 2107, 257, '2005-08-24 06:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15026, '2005-08-22 09:01:52', 4328, 66, '2005-08-28 09:21:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15027, '2005-08-22 09:03:04', 326, 478, '2005-08-29 04:03:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15028, '2005-08-22 09:03:44', 4248, 37, '2005-08-30 11:28:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15029, '2005-08-22 09:04:53', 2234, 139, '2005-08-25 09:03:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15030, '2005-08-22 09:10:21', 3168, 341, '2005-08-24 06:00:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15031, '2005-08-22 09:11:48', 3926, 430, '2005-08-27 06:11:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15032, '2005-08-22 09:14:09', 3414, 467, '2005-08-25 09:50:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15033, '2005-08-22 09:25:24', 2431, 168, '2005-08-28 09:56:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15034, '2005-08-22 09:33:08', 1331, 235, '2005-08-29 13:04:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15035, '2005-08-22 09:34:32', 339, 513, '2005-08-28 10:23:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15036, '2005-08-22 09:36:00', 874, 280, '2005-08-23 08:12:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15037, '2005-08-22 09:36:33', 4517, 234, '2005-08-31 11:20:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15038, '2005-08-22 09:37:27', 1685, 3, '2005-08-23 14:39:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15039, '2005-08-22 09:37:54', 895, 180, '2005-08-28 12:23:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15040, '2005-08-22 09:41:09', 3207, 523, '2005-08-23 12:49:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15041, '2005-08-22 09:43:18', 1913, 372, '2005-08-23 11:04:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15042, '2005-08-22 09:47:37', 3796, 553, '2005-08-31 04:42:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15043, '2005-08-22 09:49:32', 3797, 182, '2005-08-28 13:50:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15044, '2005-08-22 09:51:54', 4513, 439, '2005-08-31 12:45:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15045, '2005-08-22 09:53:23', 3485, 161, '2005-08-26 10:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15046, '2005-08-22 09:54:54', 1536, 474, '2005-08-26 07:34:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15047, '2005-08-22 09:57:16', 1309, 19, '2005-08-23 11:39:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15048, '2005-08-22 10:00:04', 2895, 27, '2005-08-26 08:26:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15049, '2005-08-22 10:06:28', 1573, 102, '2005-08-26 15:12:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15050, '2005-08-22 10:07:52', 3961, 167, '2005-08-23 04:45:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15051, '2005-08-22 10:08:50', 1419, 300, '2005-08-28 10:23:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15052, '2005-08-22 10:09:19', 2349, 147, '2005-08-31 09:27:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15053, '2005-08-22 10:13:09', 1065, 374, '2005-08-28 12:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15054, '2005-08-22 10:14:33', 2314, 44, '2005-08-25 15:07:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15055, '2005-08-22 10:14:39', 623, 125, '2005-08-25 07:25:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15056, '2005-08-22 10:15:54', 1871, 503, '2005-08-25 07:21:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15057, '2005-08-22 10:19:58', 4534, 20, '2005-08-28 05:12:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15058, '2005-08-22 10:20:55', 3537, 288, '2005-08-26 12:37:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15059, '2005-08-22 10:22:00', 4079, 564, '2005-08-29 07:01:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15060, '2005-08-22 10:24:32', 2740, 63, '2005-08-31 11:17:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15061, '2005-08-22 10:29:44', 3436, 90, '2005-08-24 14:40:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15062, '2005-08-22 10:34:39', 4393, 139, '2005-08-26 13:09:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15063, '2005-08-22 10:39:51', 1159, 30, '2005-08-25 16:03:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15064, '2005-08-22 10:41:58', 1233, 425, '2005-08-28 13:34:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15065, '2005-08-22 10:46:44', 468, 510, '2005-08-27 09:40:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15066, '2005-08-22 10:49:06', 2712, 530, '2005-08-23 10:25:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15067, '2005-08-22 10:49:21', 3684, 461, '2005-08-24 09:01:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15068, '2005-08-22 10:50:13', 3268, 373, '2005-08-26 05:04:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15069, '2005-08-22 10:55:42', 592, 568, '2005-08-28 06:59:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15070, '2005-08-22 10:55:45', 2687, 441, '2005-08-26 09:23:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15071, '2005-08-22 10:58:43', 417, 541, '2005-08-31 14:53:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15072, '2005-08-22 10:58:45', 2871, 405, '2005-08-30 16:18:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15073, '2005-08-22 11:01:15', 3970, 336, '2005-08-31 09:23:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15074, '2005-08-22 11:02:52', 3112, 567, '2005-08-28 07:59:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15075, '2005-08-22 11:04:52', 1938, 535, '2005-08-30 05:06:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15076, '2005-08-22 11:05:34', 4170, 287, '2005-08-27 14:40:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15077, '2005-08-22 11:09:18', 3142, 503, '2005-08-29 08:41:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15078, '2005-08-22 11:09:31', 3001, 197, '2005-08-25 12:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15079, '2005-08-22 11:09:56', 4552, 540, '2005-08-24 15:40:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15080, '2005-08-22 11:11:51', 927, 133, '2005-08-23 13:09:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15081, '2005-08-22 11:14:31', 2501, 313, '2005-08-28 14:23:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15082, '2005-08-22 11:17:06', 2046, 137, '2005-08-28 06:40:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15083, '2005-08-22 11:17:37', 1691, 397, '2005-08-28 06:27:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15084, '2005-08-22 11:17:59', 821, 287, '2005-08-23 09:23:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15085, '2005-08-22 11:19:22', 1669, 67, '2005-08-25 09:04:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15086, '2005-08-22 11:21:08', 264, 494, '2005-08-30 08:18:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15087, '2005-08-22 11:24:09', 233, 404, '2005-08-27 16:42:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15088, '2005-08-22 11:28:26', 4199, 377, '2005-08-24 15:46:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15089, '2005-08-22 11:34:06', 3288, 61, '2005-08-31 12:45:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15090, '2005-08-22 11:34:33', 2918, 582, '2005-08-31 06:09:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15091, '2005-08-22 11:34:43', 2092, 477, '2005-08-23 16:52:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15092, '2005-08-22 11:36:16', 2418, 464, '2005-08-28 09:49:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15093, '2005-08-22 11:39:03', 3534, 60, '2005-08-23 06:16:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15094, '2006-02-14 15:16:03', 922, 424, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15095, '2005-08-22 11:41:35', 489, 202, '2005-08-25 16:44:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15096, '2005-08-22 11:43:04', 1983, 33, '2005-08-29 12:16:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15097, '2005-08-22 11:43:42', 2838, 475, '2005-08-27 10:25:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15098, '2005-08-22 11:48:19', 4414, 88, '2005-08-31 11:07:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15099, '2005-08-22 11:49:16', 1940, 86, '2005-08-26 06:38:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15100, '2005-08-22 11:55:03', 4489, 312, '2005-08-25 14:55:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15101, '2005-08-22 11:56:02', 683, 335, '2005-08-28 13:08:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15102, '2005-08-22 11:58:58', 2317, 555, '2005-08-29 08:37:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15103, '2005-08-22 12:01:06', 853, 101, '2005-08-25 14:40:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15104, '2005-08-22 12:01:16', 4550, 359, '2005-08-27 17:48:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15105, '2005-08-22 12:01:33', 3965, 338, '2005-08-26 14:29:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15106, '2005-08-22 12:01:48', 399, 155, '2005-08-27 16:12:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15107, '2005-08-22 12:05:02', 2378, 376, '2005-08-23 11:09:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15108, '2005-08-22 12:10:07', 3463, 447, '2005-08-26 14:46:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15109, '2005-08-22 12:12:58', 565, 588, '2005-08-30 07:20:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15110, '2005-08-22 12:16:46', 1379, 72, '2005-08-26 13:36:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15111, '2005-08-22 12:21:43', 4101, 119, '2005-08-24 09:31:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15112, '2005-08-22 12:21:49', 2832, 160, '2005-08-27 11:03:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15113, '2005-08-22 12:23:59', 4338, 424, '2005-08-27 09:59:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15114, '2005-08-22 12:24:55', 2481, 121, '2005-08-31 17:06:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15115, '2005-08-22 12:28:01', 1739, 33, '2005-08-26 16:12:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15116, '2005-08-22 12:35:40', 518, 217, '2005-08-23 17:58:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15117, '2005-08-22 12:38:20', 2502, 292, '2005-08-27 07:36:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15118, '2005-08-22 12:38:37', 2081, 473, '2005-08-29 14:01:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15119, '2005-08-22 12:41:33', 4526, 288, '2005-08-23 14:44:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15120, '2005-08-22 12:42:47', 3083, 11, '2005-08-23 14:21:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15121, '2005-08-22 12:46:37', 2981, 415, '2005-08-25 17:42:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15122, '2005-08-22 12:47:45', 1686, 91, '2005-08-29 13:18:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15123, '2005-08-22 12:48:44', 1455, 445, '2005-08-27 11:07:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15124, '2005-08-22 12:51:38', 1598, 39, '2005-08-26 09:05:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15125, '2005-08-22 12:53:22', 3942, 221, '2005-08-29 18:44:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15126, '2005-08-22 12:53:58', 1902, 459, '2005-08-28 07:39:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15127, '2005-08-22 12:56:29', 2397, 287, '2005-08-26 10:58:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15128, '2005-08-22 12:57:26', 3229, 457, '2005-08-30 11:35:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15129, '2005-08-22 13:03:52', 3782, 234, '2005-08-29 10:56:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15130, '2005-08-22 13:04:32', 2375, 536, '2005-08-30 17:24:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15131, '2005-08-22 13:06:26', 1930, 119, '2005-08-30 16:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15132, '2005-08-22 13:11:25', 3474, 393, '2005-08-27 17:04:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15133, '2005-08-22 13:17:43', 3408, 137, '2005-08-26 08:40:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15134, '2005-08-22 13:18:25', 4442, 22, '2005-08-29 18:03:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15135, '2005-08-22 13:19:19', 555, 284, '2005-08-27 17:09:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15136, '2005-08-22 13:19:25', 2606, 435, '2005-08-24 07:28:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15137, '2005-08-22 13:20:28', 856, 241, '2005-08-26 09:35:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15138, '2005-08-22 13:36:30', 2467, 50, '2005-08-27 15:35:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15139, '2005-08-22 13:38:11', 2018, 237, '2005-08-30 09:00:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15140, '2005-08-22 13:39:20', 1402, 414, '2005-08-30 18:19:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15141, '2005-08-22 13:41:49', 227, 541, '2005-08-28 15:25:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15142, '2005-08-22 13:44:32', 1337, 351, '2005-08-29 14:19:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15143, '2005-08-22 13:46:24', 1519, 274, '2005-08-25 09:47:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15144, '2005-08-22 13:49:18', 559, 527, '2005-08-26 11:11:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15145, '2005-08-22 13:53:04', 2179, 2, '2005-08-31 15:51:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15146, '2005-08-22 13:57:55', 3102, 72, '2005-08-28 12:57:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15147, '2005-08-22 13:58:23', 2553, 4, '2005-08-28 14:33:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15148, '2005-08-22 13:59:19', 3704, 359, '2005-08-31 13:59:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15149, '2005-08-22 14:08:06', 3059, 537, '2005-08-25 08:25:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15150, '2005-08-22 14:12:05', 1797, 161, '2005-08-27 12:47:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15151, '2005-08-22 14:23:11', 4070, 463, '2005-08-30 14:01:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15152, '2005-08-22 14:25:21', 739, 123, '2005-08-31 14:28:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15153, '2005-08-22 14:26:01', 1051, 512, '2005-08-27 14:17:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15154, '2005-08-22 14:27:37', 3395, 106, '2005-08-29 20:04:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15155, '2005-08-22 14:27:46', 2641, 43, '2005-08-23 17:46:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15156, '2005-08-22 14:29:11', 1174, 494, '2005-08-30 17:48:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15157, '2005-08-22 14:30:09', 1909, 580, '2005-08-29 18:28:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15158, '2005-08-22 14:30:39', 3614, 588, '2005-08-27 15:55:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15159, '2005-08-22 14:32:25', 4355, 525, '2005-08-24 11:19:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15160, '2005-08-22 14:33:50', 4321, 249, '2005-08-28 11:26:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15161, '2005-08-22 14:37:22', 1445, 20, '2005-08-27 17:40:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15162, '2005-08-22 14:41:05', 1756, 439, '2005-08-27 20:23:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15163, '2005-08-22 14:43:13', 3597, 100, '2005-08-26 14:26:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15164, '2005-08-22 14:47:53', 997, 193, '2005-08-25 16:05:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15165, '2005-08-22 14:59:30', 3664, 168, '2005-08-29 15:46:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15166, '2005-08-22 15:05:37', 1530, 504, '2005-08-30 12:22:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15167, '2006-02-14 15:16:03', 973, 190, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15168, '2005-08-22 15:14:20', 3218, 526, '2005-08-25 20:12:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15169, '2005-08-22 15:21:56', 794, 76, '2005-08-28 09:40:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15170, '2005-08-22 15:22:15', 2123, 521, '2005-08-23 20:32:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15171, '2005-08-22 15:23:59', 1201, 119, '2005-08-28 12:05:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15172, '2005-08-22 15:25:33', 2367, 511, '2005-08-23 17:29:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15173, '2005-08-22 15:26:29', 2585, 338, '2005-08-29 14:03:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15174, '2005-08-22 15:26:36', 19, 111, '2005-08-31 10:47:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15175, '2005-08-22 15:29:15', 4318, 380, '2005-08-27 15:11:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15176, '2005-08-22 15:30:25', 3063, 115, '2005-08-31 20:00:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15177, '2005-08-22 15:34:49', 838, 493, '2005-08-26 12:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15178, '2005-08-22 15:36:04', 1745, 15, '2005-08-26 21:00:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15179, '2005-08-22 15:36:22', 450, 328, '2005-08-31 19:57:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15180, '2005-08-22 15:42:57', 234, 532, '2005-08-24 12:49:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15181, '2005-08-22 15:46:20', 3900, 266, '2005-08-27 09:56:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15182, '2005-08-22 15:47:05', 645, 443, '2005-08-25 11:55:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15183, '2005-08-22 15:49:54', 2696, 268, '2005-08-25 12:29:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15184, '2005-08-22 15:51:12', 1193, 471, '2005-08-24 19:23:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15185, '2005-08-22 15:52:50', 2948, 472, '2005-08-31 20:38:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15186, '2005-08-22 15:52:57', 1323, 104, '2005-08-24 21:12:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15187, '2005-08-22 15:53:32', 2338, 461, '2005-08-27 14:21:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15188, '2005-08-22 15:55:48', 131, 478, '2005-08-29 19:10:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15189, '2005-08-22 15:56:42', 2559, 398, '2005-08-29 12:20:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15190, '2005-08-22 15:57:38', 2096, 84, '2005-08-24 13:46:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15191, '2006-02-14 15:16:03', 3688, 75, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15192, '2005-08-22 16:06:23', 4213, 216, '2005-08-27 13:12:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15193, '2005-08-22 16:06:49', 1033, 40, '2005-08-25 17:23:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15194, '2005-08-22 16:07:34', 1217, 332, '2005-08-26 19:16:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15195, '2005-08-22 16:08:23', 1080, 508, '2005-08-30 17:56:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15196, '2005-08-22 16:11:32', 1413, 181, '2005-08-30 22:06:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15197, '2005-08-22 16:14:25', 2915, 159, '2005-08-26 16:22:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15198, '2005-08-22 16:15:33', 1253, 396, '2005-08-29 20:49:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15199, '2005-08-22 16:17:49', 18, 216, '2005-08-25 20:12:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15200, '2005-08-22 16:22:53', 1000, 374, '2005-08-24 10:25:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15201, '2005-08-22 16:24:42', 4456, 301, '2005-08-31 17:54:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15202, '2005-08-22 16:26:53', 2119, 374, '2005-08-23 13:49:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15203, '2005-08-22 16:28:00', 743, 568, '2005-08-26 16:55:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15204, '2005-08-22 16:30:43', 1471, 317, '2005-08-26 20:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15205, '2005-08-22 16:32:23', 3276, 489, '2005-08-27 16:08:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15206, '2005-08-22 16:33:39', 3901, 524, '2005-08-31 11:41:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15207, '2005-08-22 16:35:25', 1149, 442, '2005-08-23 14:06:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15208, '2005-08-22 16:35:47', 4346, 267, '2005-08-30 15:16:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15209, '2005-08-22 16:37:32', 1620, 588, '2005-08-25 19:04:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15210, '2005-08-22 16:37:36', 3811, 332, '2005-08-29 11:54:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15211, '2005-08-22 16:40:21', 3025, 410, '2005-08-28 13:33:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15212, '2005-08-22 16:44:26', 2182, 562, '2005-08-27 20:26:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15213, '2005-08-22 16:49:02', 2002, 166, '2005-08-31 20:22:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15214, '2005-08-22 16:53:29', 1500, 574, '2005-08-24 14:17:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15215, '2005-08-22 16:55:26', 1906, 344, '2005-08-25 20:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15216, '2005-08-22 16:57:02', 1633, 166, '2005-08-24 16:11:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15217, '2005-08-22 16:58:31', 91, 90, '2005-08-23 22:33:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15218, '2005-08-22 16:59:05', 10, 139, '2005-08-30 17:01:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15219, '2005-08-22 17:00:31', 3313, 544, '2005-08-31 20:16:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15220, '2005-08-22 17:02:23', 187, 128, '2005-08-28 21:02:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15221, '2005-08-22 17:12:29', 110, 253, '2005-08-24 20:46:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15222, '2005-08-22 17:12:30', 1360, 390, '2005-08-27 15:10:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15223, '2005-08-22 17:13:39', 2263, 541, '2005-08-27 11:17:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15224, '2005-08-22 17:18:05', 33, 81, '2005-08-29 14:35:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15225, '2005-08-22 17:18:32', 1646, 224, '2005-08-24 17:25:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15226, '2005-08-22 17:20:17', 318, 54, '2005-08-31 15:36:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15227, '2005-08-22 17:22:41', 2987, 151, '2005-08-23 20:59:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15228, '2005-08-22 17:27:23', 2485, 48, '2005-08-29 11:38:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15229, '2005-08-22 17:30:25', 320, 63, '2005-08-23 14:13:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15230, '2005-08-22 17:31:41', 2572, 466, '2005-08-25 21:57:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15231, '2005-08-22 17:32:57', 2980, 187, '2005-08-25 13:06:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15232, '2005-08-22 17:37:02', 61, 5, '2005-08-25 18:45:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15233, '2005-08-22 17:41:53', 4405, 197, '2005-08-24 12:59:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15234, '2006-02-14 15:16:03', 908, 228, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15235, '2005-08-22 17:43:12', 2726, 416, '2005-08-29 23:03:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15236, '2005-08-22 17:44:27', 4124, 557, '2005-08-24 23:25:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15237, '2005-08-22 17:44:30', 4485, 148, '2005-08-24 12:51:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15238, '2005-08-22 17:46:12', 403, 70, '2005-08-29 16:41:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15239, '2005-08-22 17:46:17', 1809, 501, '2005-08-26 19:03:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15240, '2005-08-22 17:46:41', 2014, 11, '2005-08-23 15:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15241, '2005-08-22 17:47:40', 832, 337, '2005-08-29 15:28:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15242, '2005-08-22 17:48:10', 2106, 364, '2005-08-27 23:32:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15243, '2005-08-22 17:48:28', 4408, 308, '2005-08-31 13:22:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15244, '2005-08-22 17:48:42', 1486, 271, '2005-08-28 13:17:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15245, '2005-08-22 17:49:35', 2545, 298, '2005-08-26 18:25:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15246, '2005-08-22 17:50:49', 3786, 100, '2005-08-30 22:21:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15247, '2005-08-22 17:52:05', 4572, 250, '2005-08-31 21:37:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15248, '2005-08-22 17:53:06', 977, 20, '2005-08-25 18:43:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15249, '2005-08-22 17:58:27', 121, 444, '2005-08-30 14:55:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15250, '2005-08-22 18:03:11', 2176, 143, '2005-08-27 12:19:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15251, '2005-08-22 18:03:57', 1994, 285, '2005-08-23 20:56:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15252, '2005-08-22 18:04:22', 1821, 453, '2005-08-25 17:14:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15253, '2005-08-22 18:05:21', 4143, 333, '2005-08-23 18:06:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15254, '2005-08-22 18:13:07', 3762, 209, '2005-08-24 21:55:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15255, '2005-08-22 18:16:50', 3415, 84, '2005-08-28 14:14:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15256, '2005-08-22 18:20:07', 1873, 198, '2005-08-28 12:57:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15257, '2005-08-22 18:21:04', 915, 223, '2005-08-30 20:13:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15258, '2005-08-22 18:22:44', 788, 293, '2005-08-25 16:54:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15259, '2005-08-22 18:23:23', 3261, 488, '2005-08-27 13:06:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15260, '2005-08-22 18:24:16', 3135, 274, '2005-08-24 21:26:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15261, '2005-08-22 18:24:34', 2200, 140, '2005-08-27 19:53:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15262, '2005-08-22 18:25:21', 2534, 298, '2005-08-28 22:19:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15263, '2005-08-22 18:27:33', 184, 324, '2005-08-30 14:05:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15264, '2005-08-22 18:27:38', 4459, 440, '2005-08-24 12:39:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15265, '2005-08-22 18:35:59', 1763, 512, '2005-08-28 21:18:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15266, '2005-08-22 18:37:24', 1870, 124, '2005-08-23 17:34:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15267, '2005-08-22 18:37:48', 2966, 153, '2005-08-24 00:22:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15268, '2005-08-22 18:39:11', 1245, 301, '2005-08-26 21:46:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15269, '2005-08-22 18:39:44', 524, 275, '2005-08-24 17:29:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15270, '2005-08-22 18:48:42', 4123, 262, '2005-08-28 15:38:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15271, '2005-08-22 18:48:48', 4232, 59, '2005-08-30 00:45:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15272, '2005-08-22 18:49:40', 1664, 422, '2005-08-28 21:22:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15273, '2005-08-22 18:53:28', 2558, 422, '2005-08-30 18:58:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15274, '2005-08-22 18:55:52', 3519, 515, '2005-08-23 20:02:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15275, '2005-08-22 18:57:39', 1522, 597, '2005-08-23 19:00:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15276, '2005-08-22 18:59:01', 4523, 490, '2005-08-23 19:49:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15277, '2005-08-22 19:02:48', 1780, 217, '2005-08-31 18:53:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15278, '2005-08-22 19:06:47', 2454, 472, '2005-08-25 01:00:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15279, '2005-08-22 19:08:49', 1088, 363, '2005-08-30 00:38:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15280, '2005-08-22 19:09:52', 3464, 317, '2005-08-28 00:39:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15281, '2005-08-22 19:10:26', 3992, 543, '2005-08-27 21:55:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15282, '2006-02-14 15:16:03', 1932, 163, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15283, '2005-08-22 19:16:04', 1688, 219, '2005-08-31 21:05:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15284, '2005-08-22 19:17:08', 2265, 393, '2005-08-29 13:28:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15285, '2005-08-22 19:17:24', 481, 233, '2005-08-25 00:25:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15286, '2005-08-22 19:17:56', 3731, 74, '2005-08-29 16:08:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15287, '2005-08-22 19:19:37', 308, 535, '2005-08-29 16:05:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15288, '2005-08-22 19:23:58', 1999, 475, '2005-08-26 23:28:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15289, '2005-08-22 19:27:24', 1026, 513, '2005-08-30 22:21:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15290, '2005-08-22 19:28:02', 270, 404, '2005-08-31 20:04:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15291, '2005-08-22 19:28:04', 1461, 494, '2005-08-26 15:07:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15292, '2005-08-22 19:28:56', 3072, 337, '2005-08-28 22:39:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15293, '2006-02-14 15:16:03', 1219, 263, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15294, '2006-02-14 15:16:03', 70, 108, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15295, '2005-08-22 19:36:21', 2164, 186, '2005-08-31 00:07:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15296, '2005-08-22 19:37:20', 2715, 55, '2005-08-24 15:16:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15297, '2006-02-14 15:16:03', 3192, 327, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15298, '2005-08-22 19:41:37', 1446, 1, '2005-08-28 22:49:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15299, '2005-08-22 19:42:57', 767, 381, '2005-08-23 15:29:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15300, '2005-08-22 19:44:00', 2319, 399, '2005-08-25 22:49:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15301, '2005-08-22 19:44:16', 619, 454, '2005-08-26 22:57:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15302, '2005-08-22 19:44:53', 188, 320, '2005-08-24 18:13:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15303, '2005-08-22 19:44:59', 1672, 390, '2005-08-30 21:59:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15304, '2005-08-22 19:45:57', 4332, 112, '2005-08-28 00:21:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15305, '2005-08-22 19:46:05', 671, 529, '2005-08-27 19:11:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15306, '2005-08-22 19:46:36', 521, 340, '2005-08-27 14:09:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15307, '2005-08-22 19:54:26', 4525, 598, '2005-08-29 01:38:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15308, '2005-08-22 19:54:31', 987, 329, '2005-08-26 23:09:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15309, '2005-08-22 19:54:52', 2743, 141, '2005-08-24 23:00:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15310, '2005-08-22 19:56:41', 2546, 360, '2005-08-24 16:32:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15311, '2005-08-22 19:56:52', 3612, 176, '2005-08-31 20:15:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15312, '2005-08-22 19:58:15', 2509, 280, '2005-08-25 19:21:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15313, '2005-08-22 19:59:42', 2587, 333, '2005-08-24 15:03:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15314, '2006-02-14 15:16:03', 2754, 412, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15315, '2005-08-22 20:03:46', 312, 1, '2005-08-30 01:51:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15316, '2005-08-22 20:07:03', 1830, 422, '2005-08-27 18:45:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15317, '2005-08-22 20:14:13', 2325, 512, '2005-08-29 18:32:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15318, '2005-08-22 20:15:16', 1738, 60, '2005-08-25 14:17:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15319, '2005-08-22 20:17:17', 3041, 188, '2005-08-25 01:06:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15320, '2005-08-22 20:17:49', 648, 407, '2005-08-28 17:31:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15321, '2005-08-22 20:20:04', 4152, 384, '2005-08-24 23:26:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15322, '2005-08-22 20:20:30', 3553, 263, '2005-08-25 01:26:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15323, '2005-08-22 20:22:40', 1153, 178, '2005-08-26 00:35:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15324, '2005-08-22 20:23:13', 161, 93, '2005-08-29 18:23:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15325, '2005-08-22 20:27:38', 3549, 74, '2005-08-23 15:24:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15326, '2006-02-14 15:16:03', 3320, 58, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15327, '2005-08-22 20:31:24', 1018, 450, '2005-08-30 23:52:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15328, '2005-08-22 20:31:38', 4546, 274, '2005-08-29 20:17:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15329, '2005-08-22 20:32:39', 1900, 521, '2005-08-23 17:15:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15330, '2005-08-22 20:35:30', 689, 427, '2005-08-30 21:54:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15331, '2005-08-22 20:37:57', 146, 147, '2005-08-25 21:56:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15332, '2005-08-22 20:41:53', 3368, 162, '2005-08-24 01:45:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15333, '2005-08-22 20:44:06', 1839, 142, '2005-08-29 22:34:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15334, '2005-08-22 20:44:35', 3882, 407, '2005-08-29 23:03:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15335, '2005-08-22 20:44:55', 1593, 363, '2005-08-28 21:43:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15336, '2005-08-22 20:47:48', 490, 461, '2005-08-31 18:17:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15337, '2005-08-22 20:49:51', 280, 237, '2005-08-26 23:27:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15338, '2005-08-22 20:51:24', 502, 13, '2005-08-24 23:41:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15339, '2005-08-22 20:52:12', 1660, 331, '2005-08-26 00:36:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15340, '2005-08-22 20:55:56', 3653, 313, '2005-08-27 18:52:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15341, '2005-08-22 20:56:31', 3359, 91, '2005-08-30 17:25:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15342, '2005-08-22 20:56:41', 3287, 459, '2005-08-26 22:51:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15343, '2005-08-22 21:01:25', 2589, 538, '2005-08-28 16:15:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15344, '2005-08-22 21:01:48', 3560, 193, '2005-08-27 15:47:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15345, '2005-08-22 21:05:50', 3481, 277, '2005-08-26 20:30:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15346, '2005-08-22 21:06:00', 3525, 266, '2005-08-28 22:08:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15347, '2005-08-22 21:12:19', 3764, 519, '2005-08-24 20:12:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15348, '2005-08-22 21:13:46', 3846, 587, '2005-08-24 17:06:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15349, '2005-08-22 21:13:51', 4055, 587, '2005-08-23 20:55:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15350, '2005-08-22 21:15:29', 1170, 488, '2005-08-24 02:56:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15351, '2005-08-22 21:15:46', 3260, 154, '2005-08-23 17:38:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15352, '2005-08-22 21:16:54', 16, 560, '2005-08-31 00:38:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15353, '2005-08-22 21:18:08', 3470, 368, '2005-08-25 20:29:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15354, '2005-08-22 21:18:59', 4212, 412, '2005-08-27 20:12:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15355, '2005-08-22 21:19:24', 3477, 493, '2005-08-28 20:36:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15356, '2005-08-22 21:24:19', 4507, 539, '2005-08-25 22:32:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15357, '2005-08-22 21:28:59', 727, 24, '2005-08-25 17:15:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15358, '2005-08-22 21:29:14', 822, 448, '2005-08-31 00:10:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15359, '2005-08-22 21:34:00', 4505, 77, '2005-08-29 18:59:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15360, '2005-08-22 21:36:51', 1950, 531, '2005-08-24 16:46:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15361, '2005-08-22 21:39:45', 1407, 380, '2005-08-23 17:32:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15362, '2005-08-22 21:40:20', 1023, 497, '2005-08-29 15:55:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15363, '2005-08-22 21:41:40', 2326, 480, '2005-08-23 21:40:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15364, '2005-08-22 21:41:41', 4184, 204, '2005-08-28 00:49:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15365, '2005-08-22 21:42:17', 3382, 327, '2005-09-01 03:14:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15366, '2005-08-22 21:45:57', 1453, 374, '2005-08-30 16:35:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15367, '2005-08-22 21:47:53', 160, 355, '2005-08-27 17:54:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15368, '2005-08-22 21:57:15', 1130, 370, '2005-08-29 16:28:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15369, '2005-08-22 21:58:06', 881, 121, '2005-08-26 00:27:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15370, '2005-08-22 21:59:29', 67, 10, '2005-08-27 16:32:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15371, '2006-02-14 15:16:03', 3672, 94, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15372, '2005-08-22 21:59:51', 3876, 273, '2005-08-23 17:01:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15373, '2005-08-22 22:08:11', 4439, 14, '2005-08-24 01:05:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15374, '2005-08-22 22:09:09', 4275, 8, '2005-08-31 01:10:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15375, '2005-08-22 22:12:02', 3864, 191, '2005-08-24 00:50:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15376, '2005-08-22 22:21:35', 2963, 390, '2005-08-28 20:56:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15377, '2005-08-22 22:22:33', 3405, 551, '2005-08-29 18:41:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15378, '2005-08-22 22:25:17', 1483, 340, '2005-08-30 17:04:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15379, '2005-08-22 22:26:13', 1899, 148, '2005-08-31 18:19:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15380, '2005-08-22 22:28:15', 3642, 423, '2005-08-28 23:21:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15381, '2005-08-22 22:28:36', 845, 110, '2005-08-24 19:26:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15382, '2005-08-22 22:30:50', 333, 376, '2005-08-24 04:07:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15383, '2005-08-22 22:31:20', 686, 405, '2005-08-28 17:43:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15384, '2005-08-22 22:34:44', 3208, 26, '2005-08-23 23:25:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15385, '2005-08-22 22:37:34', 140, 434, '2005-08-26 00:36:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15386, '2005-08-22 22:41:14', 3056, 327, '2005-08-29 22:29:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15387, '2005-08-22 22:49:13', 3879, 323, '2005-08-29 01:49:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15388, '2005-08-22 22:49:23', 3995, 50, '2005-09-01 03:50:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15389, '2005-08-22 22:51:13', 2077, 231, '2005-08-28 23:46:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15390, '2005-08-22 22:57:25', 462, 551, '2005-08-31 18:06:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15391, '2005-08-22 23:01:45', 3918, 482, '2005-08-29 02:59:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15392, '2005-08-22 23:02:15', 538, 410, '2005-09-01 01:14:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15393, '2005-08-22 23:04:09', 2924, 443, '2005-08-27 02:23:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15394, '2005-08-22 23:04:21', 3455, 507, '2005-08-25 20:53:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15395, '2005-08-22 23:06:25', 2880, 526, '2005-08-30 19:18:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15396, '2005-08-22 23:07:57', 4050, 319, '2005-08-28 19:39:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15397, '2005-08-22 23:08:46', 1482, 261, '2005-08-25 20:58:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15398, '2005-08-22 23:10:49', 4451, 109, '2005-08-28 00:49:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15399, '2005-08-22 23:11:59', 3858, 379, '2005-08-26 22:16:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15400, '2005-08-22 23:13:03', 2664, 473, '2005-08-28 18:34:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15401, '2005-08-22 23:13:10', 1721, 103, '2005-09-01 03:44:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15402, '2005-08-22 23:17:41', 1575, 293, '2005-08-30 20:07:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15403, '2005-08-22 23:18:10', 4315, 581, '2005-08-23 18:08:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15404, '2005-08-22 23:19:44', 3557, 211, '2005-08-30 19:58:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15405, '2005-08-22 23:20:41', 3263, 596, '2005-08-25 23:53:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15406, '2005-08-22 23:21:22', 400, 227, '2005-08-28 22:21:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15407, '2006-02-14 15:16:03', 3330, 42, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15408, '2005-08-22 23:26:32', 165, 156, '2005-08-30 20:22:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15409, '2005-08-22 23:26:32', 560, 188, '2005-08-24 22:44:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15410, '2005-08-22 23:27:43', 2052, 403, '2005-08-29 05:12:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15411, '2005-08-22 23:35:41', 4423, 461, '2005-08-26 00:51:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15412, '2005-08-22 23:37:11', 1267, 199, '2005-08-28 23:26:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15413, '2005-08-22 23:38:01', 2494, 476, '2005-08-23 19:27:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15414, '2005-08-22 23:43:54', 718, 532, '2005-08-30 18:26:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15415, '2005-08-22 23:48:56', 4176, 204, '2005-09-01 02:05:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15416, '2005-08-22 23:51:23', 1167, 383, '2005-08-29 20:03:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15417, '2005-08-22 23:54:04', 1826, 305, '2005-08-26 22:25:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15418, '2005-08-22 23:54:14', 808, 205, '2005-08-28 04:23:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15419, '2005-08-22 23:54:36', 1120, 450, '2005-08-25 00:52:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15420, '2005-08-22 23:55:51', 1396, 161, '2005-08-31 20:09:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15421, '2005-08-22 23:56:37', 3, 541, '2005-08-25 18:58:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15422, '2005-08-22 23:58:09', 2601, 309, '2005-08-30 19:03:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15423, '2006-02-14 15:16:03', 1786, 596, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15424, '2005-08-23 00:03:01', 3452, 138, '2005-08-27 23:27:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15425, '2005-08-23 00:05:57', 551, 259, '2005-09-01 05:08:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15426, '2005-08-23 00:07:19', 3280, 347, '2005-08-26 23:19:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15427, '2005-08-23 00:07:53', 2775, 448, '2005-09-01 02:55:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15428, '2005-08-23 00:11:52', 4379, 402, '2005-08-24 02:35:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15429, '2005-08-23 00:20:31', 740, 241, '2005-08-23 20:22:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15430, '2006-02-14 15:16:03', 4353, 282, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15431, '2005-08-23 00:26:47', 3251, 550, '2005-08-31 23:26:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15432, '2005-08-23 00:26:52', 1896, 117, '2005-08-27 06:11:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15433, '2005-08-23 00:27:18', 155, 198, '2005-08-26 21:36:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15434, '2005-08-23 00:28:16', 4378, 518, '2005-08-26 04:27:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15435, '2005-08-23 00:28:19', 2103, 468, '2005-08-26 00:44:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15436, '2005-08-23 00:30:26', 1527, 505, '2005-08-28 06:29:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15437, '2005-08-23 00:31:09', 4236, 368, '2005-08-30 06:17:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15438, '2005-08-23 00:31:57', 2030, 46, '2005-08-26 20:02:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15439, '2005-08-23 00:34:28', 3848, 136, '2005-08-27 01:07:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15440, '2005-08-23 00:37:21', 2254, 559, '2005-08-24 23:24:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15441, '2006-02-14 15:16:03', 258, 422, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15442, '2005-08-23 00:42:49', 1452, 42, '2005-08-27 00:35:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15443, '2005-08-23 00:44:15', 742, 598, '2005-09-01 05:33:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15444, '2005-08-23 00:46:52', 959, 153, '2005-08-29 20:37:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15445, '2005-08-23 00:48:29', 196, 28, '2005-08-28 00:33:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15446, '2005-08-23 00:49:24', 503, 379, '2005-08-26 02:09:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15447, '2005-08-23 00:53:57', 4090, 331, '2005-08-29 06:19:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15448, '2005-08-23 00:55:24', 2903, 490, '2005-08-25 02:20:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15449, '2005-08-23 00:55:43', 2856, 461, '2005-08-28 03:41:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15450, '2005-08-23 00:56:01', 1102, 322, '2005-08-24 01:00:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15451, '2005-08-23 00:56:27', 231, 514, '2005-08-24 00:15:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15452, '2005-08-23 00:57:12', 717, 115, '2005-08-28 00:19:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15453, '2005-08-23 01:01:01', 2, 359, '2005-08-30 20:08:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15454, '2006-02-14 15:16:03', 2946, 142, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15455, '2005-08-23 01:05:00', 3991, 238, '2005-08-26 22:56:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15456, '2005-08-23 01:07:01', 2451, 262, '2005-08-24 23:28:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15457, '2005-08-23 01:07:37', 4539, 306, '2005-08-26 19:46:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15458, '2006-02-14 15:16:03', 25, 590, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15459, '2005-08-23 01:09:48', 2058, 346, '2005-08-24 04:52:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15460, '2005-08-23 01:10:42', 2907, 20, '2005-08-28 20:49:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15461, '2005-08-23 01:13:52', 4542, 103, '2005-08-30 00:44:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15462, '2005-08-23 01:14:01', 3267, 389, '2005-08-29 19:52:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15463, '2005-08-23 01:15:07', 863, 127, '2005-08-29 06:50:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15464, '2005-08-23 01:15:18', 3235, 62, '2005-08-29 02:58:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15465, '2005-08-23 01:16:33', 362, 520, '2005-08-28 20:08:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15466, '2005-08-23 01:16:55', 571, 418, '2005-08-29 22:57:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15467, '2005-08-23 01:22:12', 3658, 103, '2005-08-29 23:42:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15468, '2005-08-23 01:25:30', 2440, 399, '2005-08-28 01:40:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15469, '2005-08-23 01:29:59', 1939, 597, '2005-08-27 04:02:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15470, '2005-08-23 01:35:12', 3009, 416, '2005-09-01 05:33:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15471, '2005-08-23 01:38:48', 2591, 139, '2005-08-31 19:47:48', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15472, '2005-08-23 01:39:05', 4293, 226, '2005-08-25 04:43:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15473, '2005-08-23 01:39:10', 356, 259, '2005-08-25 03:48:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15474, '2005-08-23 01:39:10', 3015, 188, '2005-08-23 21:46:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15475, '2005-08-23 01:44:43', 4503, 562, '2005-08-23 23:53:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15476, '2005-08-23 01:45:07', 2478, 433, '2005-08-26 21:07:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15477, '2005-08-23 01:46:35', 2406, 142, '2005-08-28 22:12:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15478, '2005-08-23 01:50:31', 4563, 167, '2005-08-27 21:40:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15479, '2005-08-23 01:50:53', 4182, 149, '2005-08-29 00:53:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15480, '2005-08-23 01:57:20', 3298, 577, '2005-08-26 04:43:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15481, '2005-08-23 01:59:14', 3262, 414, '2005-08-27 04:38:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15482, '2005-08-23 02:01:20', 3923, 181, '2005-08-24 03:25:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15483, '2005-08-23 02:02:53', 2970, 173, '2005-08-26 04:13:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15484, '2005-08-23 02:04:49', 642, 342, '2005-08-24 05:46:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15485, '2005-08-23 02:04:57', 281, 114, '2005-08-28 07:05:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15486, '2005-08-23 02:05:20', 1666, 502, '2005-08-29 07:52:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15487, '2005-08-23 02:05:51', 2636, 469, '2005-08-25 04:45:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15488, '2005-08-23 02:06:01', 4535, 385, '2005-08-29 21:35:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15489, '2005-08-23 02:06:41', 764, 285, '2005-08-25 06:50:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15490, '2005-08-23 02:08:18', 3922, 493, '2005-08-30 06:15:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15491, '2005-08-23 02:08:40', 2059, 28, '2005-08-23 20:23:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15492, '2005-08-23 02:13:46', 1298, 520, '2005-08-26 21:53:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15493, '2005-08-23 02:20:53', 3521, 308, '2005-08-25 23:02:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15494, '2005-08-23 02:25:09', 2968, 455, '2005-08-27 00:18:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15495, '2005-08-23 02:26:10', 4310, 193, '2005-08-30 01:07:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15496, '2005-08-23 02:30:23', 1863, 275, '2005-08-31 03:31:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15497, '2006-02-14 15:16:03', 363, 107, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15498, '2005-08-23 02:33:27', 1583, 83, '2005-08-23 22:30:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15499, '2005-08-23 02:37:19', 630, 488, '2005-08-23 20:57:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15500, '2005-08-23 02:39:37', 886, 74, '2005-08-27 06:42:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15501, '2005-08-23 02:39:56', 4468, 138, '2005-08-25 04:39:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15502, '2005-08-23 02:40:04', 3219, 433, '2005-08-31 00:36:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15503, '2005-08-23 02:44:49', 4519, 582, '2005-08-27 06:33:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15504, '2005-08-23 02:45:21', 1967, 315, '2005-09-01 03:24:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15505, '2005-08-23 02:46:13', 1144, 375, '2005-08-26 23:34:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15506, '2005-08-23 02:48:24', 1914, 553, '2005-08-28 04:10:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15507, '2005-08-23 02:48:26', 3130, 563, '2005-08-27 01:32:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15508, '2005-08-23 02:49:04', 4035, 293, '2005-08-29 00:58:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15509, '2005-08-23 02:51:24', 1291, 6, '2005-08-31 06:21:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15510, '2005-08-23 02:51:27', 3239, 209, '2005-09-01 02:44:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15511, '2005-08-23 02:55:42', 3327, 303, '2005-08-31 03:14:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15512, '2005-08-23 02:57:30', 4336, 25, '2005-08-25 01:47:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15513, '2005-08-23 03:01:56', 3779, 147, '2005-08-24 23:46:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15514, '2005-08-23 03:03:40', 2824, 366, '2005-08-24 01:06:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15515, '2005-08-23 03:03:53', 3940, 307, '2005-08-25 08:27:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15516, '2005-08-23 03:12:54', 219, 82, '2005-08-30 04:02:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15517, '2005-08-23 03:13:01', 2221, 187, '2005-08-25 21:14:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15518, '2005-08-23 03:19:34', 3522, 410, '2005-08-24 02:55:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15519, '2005-08-23 03:23:32', 542, 443, '2005-08-25 03:48:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15520, '2005-08-23 03:30:45', 1792, 163, '2005-09-01 00:20:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15521, '2005-08-23 03:30:51', 134, 331, '2005-08-28 22:09:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15522, '2005-08-23 03:32:31', 2396, 468, '2005-08-30 02:17:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15523, '2005-08-23 03:32:36', 2570, 432, '2005-08-26 22:08:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15524, '2005-08-23 03:36:26', 2886, 68, '2005-08-26 06:28:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15525, '2005-08-23 03:43:32', 3509, 123, '2005-08-25 07:31:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15526, '2005-08-23 03:44:30', 2892, 516, '2005-08-30 08:19:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15527, '2005-08-23 03:44:51', 88, 393, '2005-08-25 03:09:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15528, '2005-08-23 03:45:40', 3033, 114, '2005-08-25 01:16:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15529, '2005-08-23 03:46:47', 4015, 19, '2005-08-24 00:59:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15530, '2005-08-23 03:50:48', 154, 167, '2005-08-28 22:17:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15531, '2005-08-23 03:52:36', 2410, 355, '2005-08-25 23:21:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15532, '2006-02-14 15:16:03', 1061, 23, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15533, '2005-08-23 03:54:39', 1895, 400, '2005-08-26 08:27:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15534, '2005-08-23 03:55:54', 544, 169, '2005-08-24 03:54:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15535, '2005-08-23 03:58:02', 2371, 346, '2005-08-25 05:06:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15536, '2005-08-23 03:58:28', 4004, 98, '2005-08-31 03:28:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15537, '2005-08-23 04:00:30', 2958, 137, '2005-08-24 01:45:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15538, '2005-08-23 04:07:37', 4226, 211, '2005-08-28 07:37:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15539, '2005-08-23 04:09:03', 2853, 582, '2005-08-26 04:01:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15540, '2005-08-23 04:12:52', 1696, 197, '2005-08-31 04:25:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15541, '2005-08-23 04:13:53', 2762, 148, '2005-08-29 05:51:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15542, '2006-02-14 15:16:03', 21, 111, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15543, '2005-08-23 04:15:41', 3836, 282, '2005-09-01 05:09:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15544, '2005-08-23 04:17:56', 1918, 30, '2005-09-01 00:43:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15545, '2005-08-23 04:20:16', 843, 513, '2005-08-29 08:22:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15546, '2005-08-23 04:20:38', 2087, 223, '2005-09-01 09:57:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15547, '2005-08-23 04:25:50', 1488, 69, '2005-08-26 00:57:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15548, '2005-08-23 04:26:20', 2350, 334, '2005-08-28 01:27:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15549, '2005-08-23 04:27:06', 369, 170, '2005-09-01 06:07:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15550, '2005-08-23 04:27:54', 1375, 465, '2005-08-29 01:29:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15551, '2005-08-23 04:28:25', 3570, 345, '2005-08-26 07:19:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15552, '2005-08-23 04:33:23', 4347, 527, '2005-09-01 10:25:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15553, '2005-08-23 04:33:39', 1659, 232, '2005-08-25 07:53:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15554, '2005-08-23 04:48:12', 198, 280, '2005-08-29 05:11:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15555, '2005-08-23 04:51:52', 1869, 347, '2005-08-24 01:01:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15556, '2005-08-23 04:52:16', 3683, 108, '2005-09-01 02:05:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15557, '2005-08-23 04:52:17', 3641, 444, '2005-08-30 02:15:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15558, '2005-08-23 04:52:22', 638, 474, '2005-09-01 02:26:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15559, '2005-08-23 04:55:05', 1773, 517, '2005-08-30 09:01:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15560, '2005-08-23 05:01:13', 3616, 107, '2005-09-01 05:02:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15561, '2005-08-23 05:02:31', 68, 469, '2005-09-01 02:51:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15562, '2005-08-23 05:04:33', 4238, 149, '2005-08-27 09:58:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15563, '2005-08-23 05:08:58', 170, 372, '2005-08-24 04:24:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15564, '2005-08-23 05:10:42', 1268, 353, '2005-08-30 03:17:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15565, '2005-08-23 05:13:09', 71, 546, '2005-08-30 08:58:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15566, '2005-08-23 05:17:23', 4344, 76, '2005-09-01 08:09:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15567, '2005-08-23 05:20:36', 2506, 54, '2005-08-24 10:09:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15568, '2005-08-23 05:24:09', 988, 556, '2005-08-27 08:57:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15569, '2005-08-23 05:24:29', 1071, 313, '2005-08-30 08:23:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15570, '2005-08-23 05:24:55', 4014, 557, '2005-08-31 07:06:55', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15571, '2005-08-23 05:26:30', 716, 57, '2005-08-29 00:54:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15572, '2005-08-23 05:28:01', 2816, 506, '2005-08-27 00:14:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15573, '2005-08-23 05:28:36', 3133, 561, '2005-08-27 05:37:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15574, '2005-08-23 05:29:32', 3253, 130, '2005-09-01 01:25:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15575, '2005-08-23 05:30:19', 3916, 218, '2005-08-27 05:19:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15576, '2005-08-23 05:32:03', 3257, 595, '2005-08-26 02:31:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15577, '2006-02-14 15:16:03', 539, 29, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15578, '2005-08-23 05:37:13', 2829, 302, '2005-08-27 01:11:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15579, '2005-08-23 05:38:41', 3986, 480, '2005-08-29 09:18:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15580, '2005-08-23 05:39:06', 754, 279, '2005-09-01 01:14:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15581, '2005-08-23 05:42:13', 4010, 462, '2005-08-28 00:03:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15582, '2005-08-23 05:45:44', 4264, 297, '2005-08-25 07:54:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15583, '2005-08-23 05:47:55', 4299, 215, '2005-08-26 01:46:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15584, '2005-08-23 05:49:21', 3526, 500, '2005-08-27 04:49:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15585, '2005-08-23 05:55:22', 1177, 545, '2005-08-24 11:45:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15586, '2005-08-23 05:57:04', 3232, 148, '2005-08-31 01:59:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15587, '2005-08-23 06:00:28', 2510, 499, '2005-08-29 10:15:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15588, '2005-08-23 06:02:35', 1810, 503, '2005-08-30 04:01:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15589, '2005-08-23 06:03:31', 2379, 22, '2005-08-30 07:44:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15590, '2005-08-23 06:09:44', 4048, 599, '2005-09-01 06:53:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15591, '2005-08-23 06:11:52', 64, 62, '2005-08-25 05:34:52', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15593, '2005-08-23 06:15:09', 3734, 153, '2005-08-27 07:47:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15594, '2005-08-23 06:18:43', 4227, 567, '2005-09-01 09:09:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15595, '2005-08-23 06:19:12', 4046, 264, '2005-08-31 04:52:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15596, '2005-08-23 06:19:51', 3834, 186, '2005-08-25 03:32:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15597, '2005-08-23 06:21:20', 3795, 420, '2005-08-28 02:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15598, '2005-08-23 06:23:26', 2794, 66, '2005-09-01 05:43:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15599, '2005-08-23 06:25:07', 4560, 103, '2005-08-29 00:48:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15600, '2005-08-23 06:31:24', 2260, 113, '2005-08-28 06:53:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15601, '2005-08-23 06:33:26', 3643, 579, '2005-08-24 04:10:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15602, '2005-08-23 06:41:07', 1429, 81, '2005-08-24 07:16:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15603, '2005-08-23 06:41:32', 2565, 6, '2005-08-28 08:51:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15604, '2005-08-23 06:44:19', 4000, 458, '2005-08-29 07:17:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15605, '2005-08-23 06:48:47', 3152, 544, '2005-08-28 06:09:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15606, '2005-08-23 06:50:27', 1811, 279, '2005-08-28 04:23:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15607, '2005-08-23 06:54:06', 4118, 484, '2005-08-26 05:03:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15608, '2005-08-23 06:55:26', 2921, 454, '2005-08-28 10:24:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15609, '2005-08-23 06:56:04', 1730, 256, '2005-09-01 03:25:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15610, '2005-08-23 06:56:15', 2076, 215, '2005-08-24 07:37:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15611, '2005-08-23 06:56:18', 1713, 184, '2005-08-25 06:10:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15612, '2005-08-23 06:59:07', 3367, 305, '2005-09-01 11:26:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15613, '2005-08-23 07:03:19', 307, 461, '2005-08-31 07:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15614, '2005-08-23 07:05:15', 1216, 287, '2005-09-01 11:41:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15615, '2005-08-23 07:06:00', 899, 584, '2005-08-30 11:21:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15616, '2005-08-23 07:06:38', 2947, 70, '2005-08-30 04:16:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15617, '2005-08-23 07:07:22', 4085, 569, '2005-08-27 01:24:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15618, '2005-08-23 07:07:58', 1903, 60, '2005-08-29 03:48:58', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15619, '2005-08-23 07:10:14', 2468, 3, '2005-08-26 07:21:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15620, '2005-08-23 07:10:22', 1173, 270, '2005-08-28 06:51:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15621, '2005-08-23 07:13:43', 3832, 123, '2005-08-29 08:19:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15622, '2005-08-23 07:22:02', 3335, 302, '2005-09-01 06:08:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15623, '2005-08-23 07:23:29', 3003, 525, '2005-08-31 01:47:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15624, '2005-08-23 07:24:27', 396, 105, '2005-08-29 12:36:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15625, '2005-08-23 07:25:29', 4200, 207, '2005-08-27 13:17:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15626, '2005-08-23 07:25:34', 640, 370, '2005-08-28 11:01:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15627, '2005-08-23 07:25:38', 1364, 453, '2005-08-31 02:53:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15628, '2005-08-23 07:28:04', 1348, 408, '2005-08-26 04:23:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15629, '2005-08-23 07:28:22', 3725, 286, '2005-08-29 06:29:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15630, '2005-08-23 07:29:13', 3590, 580, '2005-08-31 04:33:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15631, '2005-08-23 07:30:23', 2458, 93, '2005-08-24 07:23:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15632, '2005-08-23 07:30:26', 2941, 60, '2005-08-24 07:53:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15633, '2005-08-23 07:31:10', 882, 497, '2005-08-26 04:35:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15634, '2005-08-23 07:34:18', 2517, 576, '2005-08-24 12:00:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15635, '2005-08-23 07:43:00', 3308, 4, '2005-08-27 10:47:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15636, '2005-08-23 07:50:46', 1169, 380, '2005-08-26 07:59:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15637, '2005-08-23 07:53:38', 445, 172, '2005-08-29 03:16:38', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15638, '2005-08-23 07:54:54', 3358, 563, '2005-08-30 13:33:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15639, '2005-08-23 08:03:25', 42, 214, '2005-08-24 10:21:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15640, '2005-08-23 08:04:40', 3505, 262, '2005-08-24 06:38:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15641, '2005-08-23 08:06:49', 3126, 240, '2005-08-24 13:17:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15642, '2005-08-23 08:09:11', 2627, 160, '2005-08-28 05:57:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15643, '2005-08-23 08:13:26', 103, 298, '2005-08-25 05:18:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15644, '2006-02-14 15:16:03', 3139, 43, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15645, '2006-02-14 15:16:03', 3838, 214, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15646, '2005-08-23 08:19:55', 3217, 114, '2005-08-29 02:32:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15647, '2005-08-23 08:23:56', 2051, 251, '2005-08-26 11:00:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15648, '2005-08-23 08:27:57', 4039, 80, '2005-08-30 08:53:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15649, '2005-08-23 08:28:03', 415, 60, '2005-08-30 05:11:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15650, '2005-08-23 08:29:53', 2447, 353, '2005-08-25 07:23:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15651, '2005-08-23 08:31:49', 3393, 451, '2005-08-26 02:57:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15652, '2005-08-23 08:34:10', 4440, 578, '2005-08-30 12:31:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15653, '2005-08-23 08:34:42', 2736, 439, '2005-09-01 03:07:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15654, '2005-08-23 08:34:53', 4360, 471, '2005-08-30 04:18:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15655, '2006-02-14 15:16:03', 604, 359, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15656, '2005-08-23 08:38:58', 4239, 334, '2005-08-24 04:08:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15657, '2005-08-23 08:42:40', 1897, 36, '2005-09-01 13:08:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15658, '2005-08-23 08:48:43', 3565, 22, '2005-08-25 05:38:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15659, '2005-08-23 08:48:43', 4573, 131, '2005-08-27 14:19:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15660, '2005-08-23 08:51:21', 3223, 388, '2005-08-28 06:26:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15661, '2005-08-23 08:52:03', 1599, 346, '2005-08-30 08:17:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15662, '2005-08-23 08:52:50', 3028, 223, '2005-08-24 08:08:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15663, '2005-08-23 08:54:26', 3291, 291, '2005-08-29 02:56:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15664, '2005-08-23 08:57:11', 2029, 351, '2005-08-31 14:19:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15665, '2005-08-23 08:59:12', 3471, 487, '2005-08-24 12:50:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15666, '2005-08-23 09:01:10', 3406, 586, '2005-08-31 12:32:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15667, '2005-08-23 09:02:03', 1302, 73, '2005-08-24 05:47:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15668, '2005-08-23 09:02:04', 1963, 38, '2005-08-29 03:17:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15669, '2005-08-23 09:06:17', 1542, 334, '2005-08-30 08:10:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15670, '2005-08-23 09:07:11', 2834, 211, '2005-08-31 04:32:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15671, '2005-08-23 09:08:16', 3716, 112, '2005-08-29 14:01:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15672, '2005-08-23 09:09:18', 701, 210, '2005-08-27 06:19:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15673, '2005-08-23 09:12:50', 3096, 321, '2005-08-29 12:45:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15674, '2005-08-23 09:16:39', 4482, 90, '2005-09-01 11:57:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15675, '2005-08-23 09:18:52', 4153, 293, '2005-08-30 14:59:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15676, '2005-08-23 09:23:08', 3874, 353, '2005-08-30 06:19:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15677, '2005-08-23 09:23:36', 2050, 109, '2005-08-27 05:01:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15678, '2005-08-23 09:23:45', 1345, 413, '2005-08-27 11:38:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15679, '2005-08-23 09:27:29', 2945, 103, '2005-08-28 09:14:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15680, '2005-08-23 09:33:22', 1370, 169, '2005-08-31 13:29:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15681, '2005-08-23 09:35:34', 2813, 61, '2005-08-27 08:33:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15682, '2005-08-23 09:37:34', 3293, 31, '2005-08-31 06:01:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15683, '2005-08-23 09:38:17', 3787, 168, '2005-08-30 12:31:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15684, '2005-08-23 09:40:04', 3976, 586, '2005-08-28 15:28:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15685, '2005-08-23 09:41:28', 370, 491, '2005-08-30 10:11:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15686, '2005-08-23 09:42:21', 2041, 206, '2005-08-29 12:22:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15687, '2005-08-23 09:46:33', 276, 112, '2005-09-01 06:07:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15688, '2005-08-23 09:48:45', 2851, 105, '2005-08-30 10:28:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15689, '2005-08-23 09:52:55', 248, 259, '2005-08-29 11:15:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15690, '2005-08-23 09:53:30', 2102, 554, '2005-08-29 10:27:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15691, '2005-08-23 09:53:54', 784, 200, '2005-08-27 10:14:54', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15692, '2005-08-23 10:00:02', 1852, 503, '2005-08-24 05:25:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15693, '2005-08-23 10:00:24', 748, 94, '2005-08-25 08:23:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15694, '2005-08-23 10:02:46', 3017, 506, '2005-08-31 05:46:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15695, '2006-02-14 15:16:03', 2954, 300, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15696, '2005-08-23 10:04:17', 2836, 93, '2005-08-25 08:47:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15697, '2005-08-23 10:04:36', 1987, 380, '2005-08-24 05:00:36', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15698, '2005-08-23 10:11:40', 4465, 395, '2005-08-28 08:50:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15699, '2005-08-23 10:20:35', 4155, 501, '2005-08-30 13:56:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15700, '2005-08-23 10:21:21', 2935, 552, '2005-08-24 15:37:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15701, '2005-08-23 10:22:21', 2942, 516, '2005-08-24 10:52:21', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15702, '2005-08-23 10:23:28', 1602, 56, '2005-08-29 11:08:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15703, '2005-08-23 10:23:48', 2883, 322, '2005-09-01 06:54:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15704, '2005-08-23 10:25:45', 738, 71, '2005-08-29 16:06:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15705, '2005-08-23 10:32:52', 936, 356, '2005-08-29 13:18:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15706, '2005-08-23 10:32:52', 4486, 220, '2005-08-24 07:03:52', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15707, '2005-08-23 10:35:45', 3646, 91, '2005-08-27 10:57:45', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15708, '2005-08-23 10:35:51', 1974, 46, '2005-08-27 16:02:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15709, '2005-08-23 10:36:00', 346, 206, '2005-08-28 06:18:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15710, '2006-02-14 15:16:03', 1020, 421, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15711, '2005-08-23 10:43:00', 789, 297, '2005-08-29 16:29:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15712, '2005-08-23 10:43:56', 1882, 351, '2005-08-29 15:35:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15713, '2005-08-23 10:56:15', 337, 432, '2005-08-29 09:14:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15714, '2006-02-14 15:16:03', 2083, 56, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15715, '2005-08-23 10:57:40', 3808, 86, '2005-08-28 12:40:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15716, '2005-08-23 11:02:00', 2812, 408, '2005-08-28 14:46:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15717, '2006-02-14 15:16:03', 902, 208, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15718, '2005-08-23 11:05:17', 2180, 276, '2005-08-28 12:50:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15719, '2005-08-23 11:08:46', 3990, 599, '2005-08-25 07:25:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15720, '2005-08-23 11:15:20', 2490, 456, '2005-08-31 09:49:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15721, '2005-08-23 11:16:16', 685, 154, '2005-08-28 10:21:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15722, '2005-08-23 11:16:29', 2809, 26, '2005-09-01 13:24:29', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15723, '2005-08-23 11:17:26', 3915, 504, '2005-08-31 13:58:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15724, '2005-08-23 11:22:09', 1025, 478, '2005-08-28 12:56:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15725, '2005-08-23 11:25:00', 378, 599, '2005-08-26 11:46:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15726, '2005-08-23 11:28:26', 906, 503, '2005-08-28 11:23:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15727, '2005-08-23 11:28:49', 2184, 416, '2005-08-24 06:24:49', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15728, '2005-08-23 11:30:32', 2567, 323, '2005-08-28 09:52:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15729, '2006-02-14 15:16:03', 2699, 193, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15730, '2005-08-23 11:32:35', 947, 147, '2005-08-30 13:46:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15731, '2005-08-23 11:33:25', 3403, 118, '2005-08-24 07:19:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15732, '2005-08-23 11:35:12', 3247, 412, '2005-08-26 12:50:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15733, '2005-08-23 11:37:32', 4185, 512, '2005-08-28 16:27:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15734, '2005-08-23 11:40:08', 3952, 302, '2005-08-27 08:16:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15735, '2006-02-14 15:16:03', 3167, 295, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15736, '2005-08-23 11:40:30', 4272, 127, '2005-08-30 12:40:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15737, '2005-08-23 11:52:18', 996, 83, '2005-08-28 15:28:18', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15738, '2005-08-23 11:55:50', 556, 38, '2005-08-30 15:07:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15739, '2005-08-23 11:56:22', 266, 74, '2005-08-29 16:10:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15740, '2005-08-23 12:07:51', 100, 229, '2005-08-24 13:23:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15741, '2005-08-23 12:10:54', 4243, 126, '2005-08-24 10:08:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15742, '2005-08-23 12:11:37', 1339, 200, '2005-08-31 07:28:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15743, '2005-08-23 12:12:05', 1625, 139, '2005-08-26 11:35:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15744, '2005-08-23 12:15:51', 2364, 59, '2005-08-31 17:19:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15745, '2006-02-14 15:16:03', 2737, 43, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15746, '2005-08-23 12:26:19', 2241, 246, '2005-08-26 09:51:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15747, '2005-08-23 12:29:24', 1517, 381, '2005-08-31 08:27:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15748, '2005-08-23 12:33:00', 2757, 380, '2005-08-25 15:15:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15749, '2005-08-23 12:33:41', 4224, 575, '2005-08-24 10:52:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15750, '2005-08-23 12:36:05', 4474, 496, '2005-08-24 17:40:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15751, '2005-08-23 12:41:07', 697, 199, '2005-08-29 07:03:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15752, '2005-08-23 12:41:38', 2112, 17, '2005-09-01 14:06:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15753, '2005-08-23 12:43:30', 3451, 144, '2005-09-01 09:07:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15754, '2005-08-23 12:43:42', 2306, 356, '2005-08-27 17:45:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15755, '2005-08-23 12:46:38', 511, 423, '2005-08-25 12:59:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15756, '2005-08-23 12:47:05', 878, 112, '2005-08-28 08:34:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15757, '2005-08-23 12:47:16', 1308, 356, '2005-08-29 17:19:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15758, '2005-08-23 12:47:26', 152, 46, '2005-08-29 11:05:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15759, '2005-08-23 12:47:37', 1341, 361, '2005-09-01 11:28:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15760, '2005-08-23 12:50:00', 3050, 273, '2005-08-29 15:41:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15761, '2005-08-23 12:55:51', 4362, 416, '2005-08-26 16:51:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15762, '2005-08-23 13:01:43', 887, 351, '2005-08-26 16:35:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15763, '2005-08-23 13:02:59', 124, 158, '2005-08-24 17:45:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15764, '2005-08-23 13:05:10', 2937, 8, '2005-08-25 16:15:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15765, '2005-08-23 13:06:19', 1250, 408, '2005-08-31 12:18:19', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15766, '2005-08-23 13:10:16', 1996, 436, '2005-08-30 09:27:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15767, '2005-08-23 13:14:15', 3492, 241, '2005-08-27 14:43:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15768, '2005-08-23 13:14:47', 662, 267, '2005-08-29 14:17:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15769, '2005-08-23 13:16:15', 2392, 276, '2005-08-28 18:31:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15770, '2005-08-23 13:18:16', 1424, 113, '2005-08-29 11:31:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15771, '2005-08-23 13:18:46', 3667, 262, '2005-08-26 07:29:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15772, '2005-08-23 13:22:56', 4343, 202, '2005-08-26 10:35:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15773, '2005-08-23 13:24:57', 1626, 189, '2005-08-31 14:16:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15774, '2005-08-23 13:25:08', 1273, 254, '2005-08-28 10:08:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15775, '2005-08-23 13:25:44', 2146, 173, '2005-09-01 16:56:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15776, '2005-08-23 13:26:01', 43, 514, '2005-08-29 18:17:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15777, '2005-08-23 13:29:08', 4241, 130, '2005-08-27 18:50:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15778, '2006-02-14 15:16:03', 1269, 234, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15779, '2005-08-23 13:33:46', 1560, 419, '2005-08-28 08:40:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15780, '2006-02-14 15:16:03', 2911, 120, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15781, '2005-08-23 13:41:05', 4449, 412, '2005-08-31 13:11:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15782, '2005-08-23 13:43:26', 3282, 245, '2005-08-30 14:03:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15783, '2005-08-23 13:45:44', 397, 247, '2005-08-26 09:18:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15784, '2005-08-23 13:46:00', 126, 425, '2005-08-30 11:49:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15785, '2005-08-23 13:46:27', 1758, 543, '2005-08-27 10:16:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15786, '2005-08-23 13:48:34', 3132, 371, '2005-08-27 15:59:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15787, '2005-08-23 13:51:57', 2932, 123, '2005-08-27 17:06:57', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15788, '2005-08-23 13:54:39', 13, 269, '2005-08-26 10:17:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15789, '2005-08-23 13:56:40', 1213, 350, '2005-08-27 15:25:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15790, '2005-08-23 14:01:07', 2887, 233, '2005-08-30 10:32:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15791, '2005-08-23 14:02:13', 4147, 445, '2005-09-01 09:03:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15792, '2005-08-23 14:05:37', 2175, 581, '2005-08-28 10:54:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15793, '2005-08-23 14:06:19', 2863, 22, '2005-08-24 19:59:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15794, '2006-02-14 15:16:03', 3917, 579, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15795, '2005-08-23 14:07:56', 4371, 417, '2005-08-25 12:10:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15796, '2005-08-23 14:12:22', 1425, 158, '2005-08-28 17:03:22', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15797, '2005-08-23 14:13:47', 497, 503, '2005-08-25 09:16:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15798, '2005-08-23 14:23:03', 3803, 203, '2005-08-30 17:39:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15799, '2005-08-23 14:23:23', 2519, 215, '2005-08-24 17:15:23', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15800, '2005-08-23 14:23:44', 963, 43, '2005-08-29 17:04:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15801, '2005-08-23 14:26:04', 1590, 165, '2005-08-28 15:04:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15802, '2005-08-23 14:26:51', 41, 158, '2005-08-29 16:28:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15803, '2005-08-23 14:27:07', 500, 105, '2005-08-28 12:01:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15804, '2005-08-23 14:29:16', 3338, 585, '2005-08-26 08:41:16', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15805, '2005-08-23 14:31:19', 4511, 8, '2005-08-25 19:01:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15806, '2005-08-23 14:31:50', 2683, 166, '2005-08-27 16:08:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15807, '2005-08-23 14:35:10', 2705, 350, '2005-08-29 19:06:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15808, '2005-08-23 14:38:37', 1663, 446, '2005-08-27 14:45:37', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15809, '2005-08-23 14:42:07', 1885, 431, '2005-08-27 15:00:07', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15810, '2005-08-23 14:43:15', 2196, 171, '2005-08-25 17:41:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15811, '2005-08-23 14:43:46', 3487, 300, '2005-08-27 16:43:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15812, '2005-08-23 14:47:26', 4457, 45, '2005-09-01 10:51:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15813, '2006-02-14 15:16:03', 981, 9, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15814, '2005-08-23 14:52:50', 4361, 459, '2005-08-27 16:12:50', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15815, '2005-08-23 14:55:47', 316, 444, '2005-08-24 12:37:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15816, '2005-08-23 14:58:06', 3628, 31, '2005-08-28 13:30:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15817, '2005-08-23 14:59:51', 598, 348, '2005-08-25 15:27:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15818, '2005-08-23 14:59:58', 2620, 439, '2005-08-27 13:13:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15819, '2005-08-23 15:01:54', 3639, 274, '2005-08-31 20:01:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15820, '2005-08-23 15:03:13', 4553, 308, '2005-08-25 20:12:13', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15821, '2005-08-23 15:03:58', 1714, 233, '2005-08-24 17:46:58', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15822, '2005-08-23 15:05:59', 3602, 492, '2005-08-24 11:13:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15823, '2005-08-23 15:08:00', 3047, 81, '2005-08-24 17:52:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15824, '2005-08-23 15:09:17', 2933, 371, '2005-08-28 15:14:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15825, '2005-08-23 15:10:42', 149, 346, '2005-08-29 09:28:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15826, '2005-08-23 15:15:02', 215, 311, '2005-08-31 20:39:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15827, '2005-08-23 15:15:19', 1732, 346, '2005-08-24 10:50:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15828, '2005-08-23 15:16:32', 428, 327, '2005-08-29 12:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15829, '2005-08-23 15:17:14', 4387, 30, '2005-08-27 13:04:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15830, '2005-08-23 15:19:15', 309, 467, '2005-08-25 18:42:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15831, '2005-08-23 15:21:19', 3123, 401, '2005-08-24 15:47:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15832, '2005-08-23 15:21:35', 1468, 537, '2005-08-30 15:01:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15833, '2005-08-23 15:22:15', 801, 349, '2005-08-31 14:54:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15834, '2005-08-23 15:23:50', 217, 165, '2005-09-01 19:31:50', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15835, '2005-08-23 15:25:27', 1362, 128, '2005-09-01 16:14:27', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15836, '2005-08-23 15:29:17', 260, 468, '2005-08-26 11:44:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15837, '2005-08-23 15:29:41', 4388, 283, '2005-08-27 18:17:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15838, '2005-08-23 15:30:48', 2194, 579, '2005-08-31 11:20:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15839, '2005-08-23 15:34:46', 3726, 294, '2005-08-30 21:00:46', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15840, '2005-08-23 15:34:49', 1901, 316, '2005-08-24 16:54:49', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15841, '2005-08-23 15:35:59', 2865, 571, '2005-08-30 19:30:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15842, '2005-08-23 15:36:05', 1850, 146, '2005-08-30 14:05:05', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15843, '2005-08-23 15:37:31', 611, 215, '2005-08-28 18:41:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15844, '2005-08-23 15:38:12', 2027, 119, '2005-08-26 15:18:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15845, '2005-08-23 15:38:34', 4312, 89, '2005-08-25 10:06:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15846, '2005-08-23 15:39:18', 3635, 47, '2005-08-27 14:28:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15847, '2005-08-23 15:39:38', 2287, 163, '2005-08-24 11:46:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15848, '2005-08-23 15:41:12', 2141, 336, '2005-08-26 10:29:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15849, '2005-08-23 15:41:20', 4077, 482, '2005-08-27 15:47:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15850, '2005-08-23 15:45:42', 586, 563, '2005-08-27 19:24:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15851, '2005-08-23 15:46:33', 2286, 469, '2005-08-29 15:52:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15852, '2005-08-23 15:47:02', 1506, 140, '2005-08-25 19:37:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15853, '2005-08-23 15:54:20', 225, 500, '2005-08-24 18:53:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15854, '2005-08-23 15:58:05', 1648, 464, '2005-08-26 19:23:05', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15855, '2005-08-23 15:59:01', 2528, 192, '2005-08-29 20:26:01', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15856, '2005-08-23 15:59:12', 3379, 395, '2005-08-25 15:36:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15857, '2005-08-23 15:59:51', 2733, 575, '2005-08-26 12:01:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15858, '2005-08-23 16:07:15', 4515, 81, '2005-08-25 19:36:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15859, '2005-08-23 16:08:15', 4269, 465, '2005-08-28 11:08:15', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15860, '2005-08-23 16:08:40', 2583, 41, '2005-08-28 15:35:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15861, '2005-08-23 16:15:45', 1859, 256, '2005-09-01 11:37:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15862, '2006-02-14 15:16:03', 925, 215, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15863, '2005-08-23 16:17:09', 2783, 328, '2005-08-28 16:10:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15864, '2005-08-23 16:18:12', 3014, 256, '2005-08-29 17:10:12', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15865, '2005-08-23 16:18:25', 2031, 482, '2005-08-26 10:57:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15866, '2005-08-23 16:19:02', 3828, 296, '2005-08-31 12:29:02', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15867, '2006-02-14 15:16:03', 837, 505, NULL, 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15868, '2005-08-23 16:19:14', 2186, 306, '2005-08-29 16:14:14', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15869, '2005-08-23 16:22:20', 1344, 357, '2005-08-27 11:52:20', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15870, '2005-08-23 16:23:08', 590, 251, '2005-08-28 20:30:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15871, '2005-08-23 16:24:24', 425, 57, '2005-09-01 13:48:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15872, '2005-08-23 16:27:24', 3391, 212, '2005-08-31 11:57:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15873, '2005-08-23 16:27:59', 4548, 577, '2005-08-26 11:11:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15874, '2005-08-23 16:30:55', 621, 132, '2005-08-28 20:57:55', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15875, '2006-02-14 15:16:03', 3611, 41, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15876, '2005-08-23 16:32:10', 1735, 87, '2005-08-24 18:16:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15877, '2005-08-23 16:33:33', 2307, 559, '2005-08-26 10:36:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15878, '2005-08-23 16:34:31', 1592, 493, '2005-08-27 21:51:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15879, '2005-08-23 16:42:53', 235, 482, '2005-08-29 16:21:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15880, '2005-08-23 16:43:54', 2538, 528, '2005-08-31 14:40:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15881, '2005-08-23 16:44:25', 617, 383, '2005-08-29 13:58:25', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15882, '2005-08-23 16:44:31', 2028, 312, '2005-09-01 15:44:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15883, '2005-08-23 16:44:56', 2792, 550, '2005-08-24 22:42:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15884, '2005-08-23 16:45:28', 2255, 81, '2005-08-27 20:18:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15885, '2005-08-23 16:50:43', 2116, 565, '2005-08-29 20:19:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15886, '2005-08-23 16:50:53', 3038, 91, '2005-08-26 15:38:53', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15887, '2005-08-23 16:54:09', 4263, 201, '2005-08-26 13:20:09', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15888, '2005-08-23 16:56:14', 2955, 321, '2005-08-31 14:32:14', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15889, '2005-08-23 16:57:43', 787, 137, '2005-08-27 22:14:43', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15890, '2005-08-23 16:58:12', 3625, 87, '2005-08-24 12:23:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15891, '2005-08-23 17:00:12', 2168, 52, '2005-08-31 21:12:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15892, '2005-08-23 17:01:00', 1365, 174, '2005-08-28 12:50:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15893, '2005-08-23 17:02:00', 2571, 438, '2005-08-30 12:45:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15894, '2006-02-14 15:16:03', 4416, 168, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15895, '2005-08-23 17:09:31', 2275, 342, '2005-08-30 17:15:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15896, '2005-08-23 17:09:56', 528, 585, '2005-08-31 14:51:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15897, '2005-08-23 17:12:31', 1652, 15, '2005-08-30 17:22:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15898, '2005-08-23 17:13:01', 3502, 88, '2005-08-29 11:22:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15899, '2005-08-23 17:16:28', 3851, 596, '2005-08-29 21:46:28', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15900, '2005-08-23 17:16:30', 1112, 562, '2005-08-27 18:02:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15901, '2005-08-23 17:19:17', 2761, 226, '2005-08-30 14:24:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15902, '2005-08-23 17:28:03', 4500, 172, '2005-08-30 18:36:03', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15903, '2005-08-23 17:30:40', 1289, 267, '2005-08-29 14:12:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15904, '2005-08-23 17:32:19', 179, 37, '2005-08-24 21:05:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15905, '2005-08-23 17:33:04', 3631, 59, '2005-08-26 17:38:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15906, '2005-08-23 17:36:00', 3230, 445, '2005-08-28 15:32:00', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15907, '2005-08-23 17:39:35', 2898, 2, '2005-08-25 23:23:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15908, '2005-08-23 17:42:00', 2453, 135, '2005-08-31 22:32:00', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15909, '2005-08-23 17:42:42', 404, 452, '2005-08-26 20:25:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15910, '2005-08-23 17:43:16', 254, 456, '2005-08-24 21:55:16', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15911, '2005-08-23 17:44:53', 3006, 582, '2005-09-01 19:14:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15912, '2005-08-23 17:47:40', 3079, 229, '2005-08-31 14:43:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15913, '2005-08-23 17:48:30', 3894, 93, '2005-08-31 21:17:30', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15914, '2005-08-23 17:49:26', 747, 557, '2005-08-24 12:20:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15915, '2005-08-23 17:52:01', 3566, 167, '2005-08-24 20:40:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15916, '2005-08-23 17:56:01', 4580, 327, '2005-08-31 21:49:01', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15917, '2005-08-23 17:57:28', 2093, 589, '2005-08-29 20:03:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15918, '2005-08-23 17:57:35', 1456, 262, '2005-08-28 14:16:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15919, '2005-08-23 18:01:31', 1746, 497, '2005-08-24 16:27:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15920, '2005-08-23 18:05:10', 243, 212, '2005-08-26 18:09:10', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15921, '2005-08-23 18:06:54', 223, 522, '2005-08-30 20:19:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15922, '2005-08-23 18:07:31', 1702, 263, '2005-09-01 22:27:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15923, '2005-08-23 18:08:19', 1693, 276, '2005-08-26 18:06:19', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15924, '2005-08-23 18:08:59', 1114, 541, '2005-08-27 12:20:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15925, '2005-08-23 18:15:06', 3394, 440, '2005-08-26 18:09:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15926, '2005-08-23 18:20:56', 2231, 151, '2005-08-24 18:20:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15927, '2005-08-23 18:23:11', 2450, 401, '2005-08-24 15:09:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15928, '2005-08-23 18:23:24', 2086, 75, '2005-09-01 23:43:24', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15929, '2005-08-23 18:23:30', 1832, 477, '2005-08-27 17:04:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15930, '2005-08-23 18:26:51', 180, 379, '2005-08-31 16:12:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15931, '2005-08-23 18:28:09', 1128, 237, '2005-08-28 23:08:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15932, '2005-08-23 18:31:40', 4554, 405, '2005-08-24 16:30:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15933, '2005-08-23 18:36:44', 3493, 176, '2005-08-26 12:41:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15934, '2005-08-23 18:40:41', 994, 216, '2005-08-25 00:18:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15935, '2005-08-23 18:41:11', 907, 361, '2005-08-25 20:59:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15936, '2005-08-23 18:43:11', 1293, 411, '2005-08-26 00:19:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15937, '2005-08-23 18:43:22', 2882, 194, '2005-08-24 22:53:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15938, '2005-08-23 18:43:31', 2884, 341, '2005-08-31 00:26:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15939, '2005-08-23 18:44:21', 3209, 382, '2005-09-01 17:25:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15940, '2005-08-23 18:45:06', 1606, 86, '2005-08-30 13:00:06', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15941, '2005-08-23 18:46:44', 4304, 424, '2005-08-31 17:31:44', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15942, '2005-08-23 18:48:40', 1096, 210, '2005-09-01 18:39:40', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15943, '2005-08-23 18:49:32', 706, 462, '2005-08-27 19:20:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15944, '2005-08-23 18:50:54', 4559, 348, '2005-08-25 18:04:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15945, '2005-08-23 18:51:41', 3633, 43, '2005-08-28 18:42:41', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15946, '2005-08-23 18:54:07', 4549, 561, '2005-08-28 21:21:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15947, '2005-08-23 18:54:32', 1877, 580, '2005-08-24 22:39:32', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15948, '2005-08-23 18:59:33', 432, 520, '2005-08-31 13:02:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15949, '2005-08-23 19:06:04', 1199, 386, '2005-08-26 18:39:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15950, '2005-08-23 19:09:39', 1374, 280, '2005-08-31 17:03:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15951, '2005-08-23 19:10:32', 3018, 446, '2005-08-29 14:17:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15952, '2005-08-23 19:11:29', 1314, 224, '2005-08-28 14:41:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15953, '2005-08-23 19:13:46', 3727, 540, '2005-08-28 23:05:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15954, '2005-08-23 19:14:07', 576, 460, '2005-08-24 20:21:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15955, '2005-08-23 19:19:06', 2247, 349, '2005-08-31 23:34:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15956, '2005-08-23 19:19:21', 2763, 354, '2005-08-25 22:15:21', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15957, '2005-08-23 19:21:22', 74, 418, '2005-08-31 16:42:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15958, '2005-08-23 19:22:36', 4164, 492, '2005-08-30 01:03:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15959, '2005-08-23 19:27:04', 547, 415, '2005-08-24 15:24:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15960, '2005-08-23 19:35:42', 1497, 431, '2005-08-26 17:36:42', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15961, '2005-08-23 19:35:42', 4006, 200, '2005-08-30 22:52:42', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15962, '2005-08-23 19:42:04', 3491, 160, '2005-08-25 23:53:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15963, '2005-08-23 19:42:46', 3819, 134, '2005-08-25 22:12:46', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15964, '2005-08-23 19:45:25', 251, 141, '2005-08-26 22:43:25', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15965, '2005-08-23 19:46:39', 3449, 509, '2005-08-24 20:08:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15966, '2006-02-14 15:16:03', 4472, 374, NULL, 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15967, '2005-08-23 19:50:06', 321, 257, '2005-08-29 14:51:06', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15968, '2005-08-23 19:51:29', 3598, 257, '2005-08-24 15:07:29', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15969, '2005-08-23 19:51:30', 1807, 327, '2005-08-31 23:50:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15970, '2005-08-23 19:54:24', 4509, 395, '2005-08-24 18:07:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15971, '2005-08-23 19:59:33', 3456, 187, '2005-09-02 01:28:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15972, '2005-08-23 20:00:30', 4428, 25, '2005-08-30 00:25:30', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15973, '2005-08-23 20:04:41', 2766, 343, '2005-09-01 20:08:41', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15974, '2005-08-23 20:06:04', 3518, 201, '2005-08-27 17:33:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15975, '2005-08-23 20:06:23', 2723, 174, '2005-08-27 19:52:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15976, '2005-08-23 20:07:08', 835, 227, '2005-08-25 01:47:08', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15977, '2005-08-23 20:07:10', 1031, 550, '2005-09-01 22:12:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15978, '2005-08-23 20:08:18', 4444, 536, '2005-08-31 17:35:18', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15979, '2005-08-23 20:08:26', 3733, 536, '2005-08-26 19:19:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15980, '2005-08-23 20:10:13', 3365, 196, '2005-08-24 17:44:13', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15981, '2005-08-23 20:12:17', 2867, 489, '2005-08-30 20:43:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15982, '2005-08-23 20:13:31', 2920, 370, '2005-09-01 21:51:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15983, '2005-08-23 20:13:38', 3318, 464, '2005-08-30 18:42:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15984, '2005-08-23 20:16:27', 2011, 495, '2005-08-27 01:43:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15985, '2005-08-23 20:20:23', 2646, 179, '2005-08-26 20:55:23', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15986, '2005-08-23 20:20:37', 3472, 226, '2005-08-29 20:49:37', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15987, '2005-08-23 20:22:17', 3150, 302, '2005-08-31 21:46:17', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15988, '2005-08-23 20:23:08', 3932, 400, '2005-08-28 20:50:08', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15989, '2005-08-23 20:24:36', 38, 96, '2005-08-26 20:35:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15990, '2005-08-23 20:25:11', 3233, 512, '2005-08-25 15:01:11', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15991, '2005-08-23 20:27:34', 2078, 203, '2005-08-28 16:48:34', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15992, '2005-08-23 20:28:32', 3334, 589, '2005-08-24 21:35:32', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15993, '2005-08-23 20:28:44', 1638, 12, '2005-08-27 16:23:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15994, '2005-08-23 20:29:10', 438, 595, '2005-08-28 01:41:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15995, '2005-08-23 20:29:56', 1122, 377, '2005-08-30 18:09:56', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15996, '2005-08-23 20:31:38', 3098, 151, '2005-08-29 20:58:38', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15997, '2005-08-23 20:40:31', 2843, 447, '2005-08-26 19:47:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15998, '2005-08-23 20:41:09', 1229, 545, '2005-08-27 00:20:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (15999, '2005-08-23 20:44:10', 2584, 377, '2005-08-31 02:38:10', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16000, '2005-08-23 20:44:36', 282, 71, '2005-08-25 02:29:36', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16001, '2005-08-23 20:45:53', 245, 108, '2005-08-27 15:52:53', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16002, '2005-08-23 20:47:12', 2770, 73, '2005-08-27 23:07:12', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16003, '2005-08-23 20:47:28', 3413, 577, '2005-08-31 23:22:28', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16004, '2005-08-23 20:53:20', 2223, 147, '2005-08-31 15:15:20', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16005, '2005-08-23 21:00:22', 3265, 466, '2005-09-02 02:35:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16006, '2005-08-23 21:01:09', 240, 533, '2005-08-25 19:33:09', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16007, '2005-08-23 21:02:43', 3236, 126, '2005-08-30 23:37:43', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16008, '2005-08-23 21:04:51', 3273, 189, '2005-08-31 22:09:51', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16009, '2005-08-23 21:07:59', 3055, 133, '2005-08-29 16:54:59', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16010, '2005-08-23 21:10:24', 2539, 173, '2005-08-25 17:58:24', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16011, '2005-08-23 21:11:33', 1093, 389, '2005-08-31 17:51:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16012, '2005-08-23 21:13:39', 2421, 80, '2005-08-30 23:52:39', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16013, '2005-08-23 21:17:17', 561, 462, '2005-08-26 21:15:17', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16014, '2005-08-23 21:18:31', 3322, 532, '2005-08-31 17:28:31', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16015, '2005-08-23 21:25:03', 3113, 50, '2005-08-24 20:05:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16016, '2005-08-23 21:26:35', 3374, 595, '2005-08-28 16:06:35', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16017, '2005-08-23 21:27:11', 664, 535, '2005-08-24 23:22:11', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16018, '2005-08-23 21:27:35', 897, 439, '2005-08-30 00:36:35', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16019, '2005-08-23 21:30:45', 3093, 278, '2005-08-27 23:45:45', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16020, '2005-08-23 21:34:33', 277, 311, '2005-09-01 18:17:33', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16021, '2005-08-23 21:37:59', 3057, 314, '2005-08-31 01:52:59', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16022, '2005-08-23 21:44:27', 2925, 504, '2005-08-28 01:52:27', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16023, '2005-08-23 21:45:02', 2347, 124, '2005-08-24 21:28:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16024, '2005-08-23 21:46:47', 2910, 473, '2005-08-27 02:06:47', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16025, '2005-08-23 21:48:54', 1777, 569, '2005-08-24 22:05:54', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16026, '2005-08-23 21:49:22', 467, 484, '2005-08-27 00:47:22', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16027, '2005-08-23 21:49:33', 1724, 160, '2005-08-30 16:19:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16028, '2005-08-23 21:52:56', 2515, 119, '2005-08-30 18:16:56', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16029, '2005-08-23 21:54:02', 953, 143, '2005-08-29 23:55:02', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16030, '2005-08-23 21:56:04', 4161, 137, '2005-08-31 01:24:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16031, '2005-08-23 21:59:26', 1843, 102, '2005-08-29 20:15:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16032, '2005-08-23 21:59:57', 2527, 447, '2005-08-31 22:46:57', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16033, '2005-08-23 22:06:15', 760, 226, '2005-09-01 02:36:15', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16034, '2005-08-23 22:06:34', 655, 502, '2005-08-29 18:44:34', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16035, '2005-08-23 22:08:04', 549, 37, '2005-08-28 03:46:04', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16036, '2005-08-23 22:12:44', 1372, 425, '2005-08-25 17:48:44', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16037, '2005-08-23 22:13:04', 341, 45, '2005-09-01 02:48:04', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16038, '2005-08-23 22:14:31', 2612, 172, '2005-08-30 03:28:31', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16039, '2005-08-23 22:18:51', 545, 78, '2005-08-31 19:55:51', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16040, '2005-08-23 22:19:33', 3524, 195, '2005-09-02 02:19:33', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16041, '2005-08-23 22:20:26', 4116, 121, '2005-08-25 20:14:26', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16042, '2005-08-23 22:20:40', 629, 131, '2005-08-24 17:54:40', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16043, '2005-08-23 22:21:03', 3869, 526, '2005-08-31 03:09:03', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16044, '2005-08-23 22:24:39', 1312, 468, '2005-08-25 04:08:39', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16045, '2005-08-23 22:25:26', 772, 14, '2005-08-25 23:54:26', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16046, '2005-08-23 22:26:47', 4364, 74, '2005-08-27 18:02:47', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16047, '2005-08-23 22:42:48', 2088, 114, '2005-08-25 02:48:48', 2, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16048, '2005-08-23 22:43:07', 2019, 103, '2005-08-31 21:33:07', 1, '2006-02-16 02:30:53'); INSERT INTO rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) VALUES (16049, '2005-08-23 22:50:12', 2666, 393, '2005-08-30 01:01:12', 2, '2006-02-16 02:30:53'); SELECT pg_catalog.setval('rental_rental_id_seq', 16049, true); INSERT INTO staff (staff_id, first_name, last_name, address_id, email, store_id, active, username, password, last_update, picture) VALUES (1, 'Mike', 'Hillyer', 3, 'Mike.Hillyer@sakilastaff.com', 1, true, 'Mike', '8cb2237d0679ca88db6464eac60da96345513964', '2006-05-16 16:13:11.79328', '\x89504e470d0a5a0a'); INSERT INTO staff (staff_id, first_name, last_name, address_id, email, store_id, active, username, password, last_update, picture) VALUES (2, 'Jon', 'Stephens', 4, 'Jon.Stephens@sakilastaff.com', 2, true, 'Jon', '8cb2237d0679ca88db6464eac60da96345513964', '2006-05-16 16:13:11.79328', NULL); SELECT pg_catalog.setval('staff_staff_id_seq', 2, true); INSERT INTO store (store_id, manager_staff_id, address_id, last_update) VALUES (1, 1, 1, '2006-02-15 09:57:12'); INSERT INTO store (store_id, manager_staff_id, address_id, last_update) VALUES (2, 2, 2, '2006-02-15 09:57:12'); SELECT pg_catalog.setval('store_store_id_seq', 2, true); ALTER TABLE ONLY actor ADD CONSTRAINT actor_pkey PRIMARY KEY (actor_id); ALTER TABLE ONLY address ADD CONSTRAINT address_pkey PRIMARY KEY (address_id); ALTER TABLE ONLY category ADD CONSTRAINT category_pkey PRIMARY KEY (category_id); ALTER TABLE ONLY city ADD CONSTRAINT city_pkey PRIMARY KEY (city_id); ALTER TABLE ONLY country ADD CONSTRAINT country_pkey PRIMARY KEY (country_id); ALTER TABLE ONLY customer ADD CONSTRAINT customer_pkey PRIMARY KEY (customer_id); ALTER TABLE ONLY film_actor ADD CONSTRAINT film_actor_pkey PRIMARY KEY (actor_id, film_id); ALTER TABLE ONLY film_category ADD CONSTRAINT film_category_pkey PRIMARY KEY (film_id, category_id); ALTER TABLE ONLY film ADD CONSTRAINT film_pkey PRIMARY KEY (film_id); ALTER TABLE ONLY film_desc ADD CONSTRAINT film_text_pkey PRIMARY KEY (film_id); ALTER TABLE ONLY inventory ADD CONSTRAINT inventory_pkey PRIMARY KEY (inventory_id); ALTER TABLE ONLY language ADD CONSTRAINT language_pkey PRIMARY KEY (language_id); ALTER TABLE ONLY payment ADD CONSTRAINT payment_pkey PRIMARY KEY (payment_id); ALTER TABLE ONLY rental ADD CONSTRAINT rental_pkey PRIMARY KEY (rental_id); ALTER TABLE ONLY staff ADD CONSTRAINT staff_pkey PRIMARY KEY (staff_id); ALTER TABLE ONLY store ADD CONSTRAINT store_pkey PRIMARY KEY (store_id); CREATE INDEX film_fulltext_idx ON film USING gist (fulltext); CREATE INDEX idx_actor_last_name ON actor USING btree (last_name); CREATE INDEX idx_fk_address_id ON customer USING btree (address_id); CREATE INDEX idx_fk_city_id ON address USING btree (city_id); CREATE INDEX idx_fk_country_id ON city USING btree (country_id); CREATE INDEX idx_fk_customer_id ON payment USING btree (customer_id); CREATE INDEX idx_fk_film_id ON film_actor USING btree (film_id); CREATE INDEX idx_fk_inventory_id ON rental USING btree (inventory_id); CREATE INDEX idx_fk_language_id ON film USING btree (language_id); CREATE INDEX idx_fk_original_language_id ON film USING btree (original_language_id); CREATE INDEX idx_fk_payment_customer_id ON payment USING btree (customer_id); CREATE INDEX idx_fk_payment_staff_id ON payment USING btree (staff_id); CREATE INDEX idx_fk_staff_id ON payment USING btree (staff_id); CREATE INDEX idx_fk_store_id ON customer USING btree (store_id); CREATE INDEX idx_last_name ON customer USING btree (last_name); CREATE INDEX idx_store_id_film_id ON inventory USING btree (store_id, film_id); CREATE INDEX idx_title ON film USING btree (title); CREATE UNIQUE INDEX idx_unq_manager_staff_id ON store USING btree (manager_staff_id); CREATE UNIQUE INDEX idx_unq_rental_rental_date_inventory_id_customer_id ON rental USING btree (rental_date, inventory_id, customer_id); CREATE TRIGGER film_fulltext_trigger BEFORE INSERT OR UPDATE ON film FOR EACH ROW EXECUTE PROCEDURE tsvector_update_trigger('fulltext', 'pg_catalog.english', 'title', 'description'); CREATE TRIGGER last_updated BEFORE UPDATE ON actor FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON address FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON category FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON city FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON country FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON customer FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON film FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON film_actor FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON film_category FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON inventory FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON language FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON rental FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON staff FOR EACH ROW EXECUTE PROCEDURE last_updated(); CREATE TRIGGER last_updated BEFORE UPDATE ON store FOR EACH ROW EXECUTE PROCEDURE last_updated(); ALTER TABLE ONLY address ADD CONSTRAINT address_city_id_fkey FOREIGN KEY (city_id) REFERENCES city(city_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY city ADD CONSTRAINT city_country_id_fkey FOREIGN KEY (country_id) REFERENCES country(country_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY customer ADD CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY customer ADD CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES store(store_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film_actor ADD CONSTRAINT film_actor_actor_id_fkey FOREIGN KEY (actor_id) REFERENCES actor(actor_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film_actor ADD CONSTRAINT film_actor_film_id_fkey FOREIGN KEY (film_id) REFERENCES film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film_category ADD CONSTRAINT film_category_category_id_fkey FOREIGN KEY (category_id) REFERENCES category(category_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film_category ADD CONSTRAINT film_category_film_id_fkey FOREIGN KEY (film_id) REFERENCES film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film ADD CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES language(language_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film ADD CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES language(language_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY film_desc ADD CONSTRAINT film_text_film_id_fkey FOREIGN KEY (film_id) REFERENCES film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY inventory ADD CONSTRAINT inventory_film_id_fkey FOREIGN KEY (film_id) REFERENCES film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY inventory ADD CONSTRAINT inventory_store_id_fkey FOREIGN KEY (store_id) REFERENCES store(store_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY payment ADD CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY payment ADD CONSTRAINT payment_rental_id_fkey FOREIGN KEY (rental_id) REFERENCES rental(rental_id); ALTER TABLE ONLY payment ADD CONSTRAINT payment_staff_id_fkey FOREIGN KEY (staff_id) REFERENCES staff(staff_id); ALTER TABLE ONLY rental ADD CONSTRAINT rental_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY rental ADD CONSTRAINT rental_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES inventory(inventory_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY rental ADD CONSTRAINT rental_staff_id_fkey FOREIGN KEY (staff_id) REFERENCES staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY staff ADD CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY staff ADD CONSTRAINT staff_store_id_fkey FOREIGN KEY (store_id) REFERENCES store(store_id); ALTER TABLE ONLY store ADD CONSTRAINT store_address_id_fkey FOREIGN KEY (address_id) REFERENCES address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT; ALTER TABLE ONLY store ADD CONSTRAINT store_manager_staff_id_fkey FOREIGN KEY (manager_staff_id) REFERENCES staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT;